test-zig-cc/results/zigcc.svg

491 lines
836 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="710" onload="init(evt)" viewBox="0 0 1200 710" 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="710" 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="693.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="693.00"> </text><svg id="frames" x="10" width="1180" total_samples="2319837"><g><title>[anon] (1,365 samples, 0.06%)</title><rect x="0.0051%" y="629" width="0.0588%" height="15" fill="rgb(227,0,7)" fg:x="118" fg:w="1365"/><text x="0.2551%" y="639.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (418 samples, 0.02%)</title><rect x="0.0917%" y="437" width="0.0180%" height="15" fill="rgb(217,0,24)" fg:x="2128" fg:w="418"/><text x="0.3417%" y="447.50"></text></g><g><title>GraphBuilder::invoke (234 samples, 0.01%)</title><rect x="0.1802%" y="133" width="0.0101%" height="15" fill="rgb(221,193,54)" fg:x="4181" fg:w="234"/><text x="0.4302%" y="143.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (340 samples, 0.01%)</title><rect x="0.1767%" y="165" width="0.0147%" height="15" fill="rgb(248,212,6)" fg:x="4098" fg:w="340"/><text x="0.4267%" y="175.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (334 samples, 0.01%)</title><rect x="0.1769%" y="149" width="0.0144%" height="15" fill="rgb(208,68,35)" fg:x="4104" fg:w="334"/><text x="0.4269%" y="159.50"></text></g><g><title>GraphBuilder::try_inline_full (432 samples, 0.02%)</title><rect x="0.1761%" y="181" width="0.0186%" height="15" fill="rgb(232,128,0)" fg:x="4085" fg:w="432"/><text x="0.4261%" y="191.50"></text></g><g><title>GraphBuilder::try_inline (481 samples, 0.02%)</title><rect x="0.1760%" y="197" width="0.0207%" height="15" fill="rgb(207,160,47)" fg:x="4083" fg:w="481"/><text x="0.4260%" y="207.50"></text></g><g><title>GraphBuilder::invoke (623 samples, 0.03%)</title><rect x="0.1752%" y="213" width="0.0269%" height="15" fill="rgb(228,23,34)" fg:x="4064" fg:w="623"/><text x="0.4252%" y="223.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (839 samples, 0.04%)</title><rect x="0.1679%" y="245" width="0.0362%" height="15" fill="rgb(218,30,26)" fg:x="3896" fg:w="839"/><text x="0.4179%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (833 samples, 0.04%)</title><rect x="0.1682%" y="229" width="0.0359%" height="15" fill="rgb(220,122,19)" fg:x="3902" fg:w="833"/><text x="0.4182%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (1,050 samples, 0.05%)</title><rect x="0.1670%" y="261" width="0.0453%" height="15" fill="rgb(250,228,42)" fg:x="3874" fg:w="1050"/><text x="0.4170%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (1,103 samples, 0.05%)</title><rect x="0.1667%" y="277" width="0.0475%" height="15" fill="rgb(240,193,28)" fg:x="3867" fg:w="1103"/><text x="0.4167%" y="287.50"></text></g><g><title>GraphBuilder::invoke (1,414 samples, 0.06%)</title><rect x="0.1648%" y="293" width="0.0610%" height="15" fill="rgb(216,20,37)" fg:x="3822" fg:w="1414"/><text x="0.4148%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,794 samples, 0.08%)</title><rect x="0.1519%" y="325" width="0.0773%" height="15" fill="rgb(206,188,39)" fg:x="3524" fg:w="1794"/><text x="0.4019%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,778 samples, 0.08%)</title><rect x="0.1526%" y="309" width="0.0766%" height="15" fill="rgb(217,207,13)" fg:x="3540" fg:w="1778"/><text x="0.4026%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (2,224 samples, 0.10%)</title><rect x="0.1489%" y="341" width="0.0959%" height="15" fill="rgb(231,73,38)" fg:x="3454" fg:w="2224"/><text x="0.3989%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (2,250 samples, 0.10%)</title><rect x="0.1483%" y="357" width="0.0970%" height="15" fill="rgb(225,20,46)" fg:x="3441" fg:w="2250"/><text x="0.3983%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (350 samples, 0.02%)</title><rect x="0.2495%" y="341" width="0.0151%" height="15" fill="rgb(210,31,41)" fg:x="5787" fg:w="350"/><text x="0.4995%" y="351.50"></text></g><g><title>ciBytecodeStream::get_method (386 samples, 0.02%)</title><rect x="0.2479%" y="357" width="0.0166%" height="15" fill="rgb(221,200,47)" fg:x="5752" fg:w="386"/><text x="0.4979%" y="367.50"></text></g><g><title>GraphBuilder::invoke (2,891 samples, 0.12%)</title><rect x="0.1436%" y="373" width="0.1246%" height="15" fill="rgb(226,26,5)" fg:x="3332" fg:w="2891"/><text x="0.3936%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,420 samples, 0.15%)</title><rect x="0.1242%" y="389" width="0.1474%" height="15" fill="rgb(249,33,26)" fg:x="2882" fg:w="3420"/><text x="0.3742%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,475 samples, 0.15%)</title><rect x="0.1224%" y="405" width="0.1498%" height="15" fill="rgb(235,183,28)" fg:x="2839" fg:w="3475"/><text x="0.3724%" y="415.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,826 samples, 0.16%)</title><rect x="0.1099%" y="421" width="0.1649%" height="15" fill="rgb(221,5,38)" fg:x="2549" fg:w="3826"/><text x="0.3599%" y="431.50"></text></g><g><title>IR::IR (3,846 samples, 0.17%)</title><rect x="0.1097%" y="437" width="0.1658%" height="15" fill="rgb(247,18,42)" fg:x="2546" fg:w="3846"/><text x="0.3597%" y="447.50"></text></g><g><title>Compilation::build_hir (4,835 samples, 0.21%)</title><rect x="0.0913%" y="453" width="0.2084%" height="15" fill="rgb(241,131,45)" fg:x="2118" fg:w="4835"/><text x="0.3413%" y="463.50"></text></g><g><title>LIR_Assembler::emit_code (679 samples, 0.03%)</title><rect x="0.3004%" y="437" width="0.0293%" height="15" fill="rgb(249,31,29)" fg:x="6969" fg:w="679"/><text x="0.5504%" y="447.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (366 samples, 0.02%)</title><rect x="0.3324%" y="437" width="0.0158%" height="15" fill="rgb(225,111,53)" fg:x="7711" fg:w="366"/><text x="0.5824%" y="447.50"></text></g><g><title>Compilation::emit_code_body (1,143 samples, 0.05%)</title><rect x="0.2997%" y="453" width="0.0493%" height="15" fill="rgb(238,160,17)" fg:x="6953" fg:w="1143"/><text x="0.5497%" y="463.50"></text></g><g><title>LIRGenerator::do_Goto (250 samples, 0.01%)</title><rect x="0.3558%" y="405" width="0.0108%" height="15" fill="rgb(214,148,48)" fg:x="8255" fg:w="250"/><text x="0.6058%" y="415.50"></text></g><g><title>LIRGenerator::block_do (907 samples, 0.04%)</title><rect x="0.3495%" y="421" width="0.0391%" height="15" fill="rgb(232,36,49)" fg:x="8108" fg:w="907"/><text x="0.5995%" y="431.50"></text></g><g><title>BlockList::iterate_forward (913 samples, 0.04%)</title><rect x="0.3494%" y="437" width="0.0394%" height="15" fill="rgb(209,103,24)" fg:x="8105" fg:w="913"/><text x="0.5994%" y="447.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (464 samples, 0.02%)</title><rect x="0.4014%" y="373" width="0.0200%" height="15" fill="rgb(229,88,8)" fg:x="9311" fg:w="464"/><text x="0.6514%" y="383.50"></text></g><g><title>LinearScanWalker::activate_current (741 samples, 0.03%)</title><rect x="0.4000%" y="389" width="0.0319%" height="15" fill="rgb(213,181,19)" fg:x="9280" fg:w="741"/><text x="0.6500%" y="399.50"></text></g><g><title>IntervalWalker::walk_to (925 samples, 0.04%)</title><rect x="0.3921%" y="405" width="0.0399%" height="15" fill="rgb(254,191,54)" fg:x="9097" fg:w="925"/><text x="0.6421%" y="415.50"></text></g><g><title>LinearScan::allocate_registers (1,025 samples, 0.04%)</title><rect x="0.3911%" y="421" width="0.0442%" height="15" fill="rgb(241,83,37)" fg:x="9073" fg:w="1025"/><text x="0.6411%" y="431.50"></text></g><g><title>LinearScan::assign_reg_num (678 samples, 0.03%)</title><rect x="0.4358%" y="405" width="0.0292%" height="15" fill="rgb(233,36,39)" fg:x="10109" fg:w="678"/><text x="0.6858%" y="415.50"></text></g><g><title>LinearScan::assign_reg_num (722 samples, 0.03%)</title><rect x="0.4353%" y="421" width="0.0311%" height="15" fill="rgb(226,3,54)" fg:x="10098" fg:w="722"/><text x="0.6853%" y="431.50"></text></g><g><title>LinearScan::build_intervals (833 samples, 0.04%)</title><rect x="0.4664%" y="421" width="0.0359%" height="15" fill="rgb(245,192,40)" fg:x="10820" fg:w="833"/><text x="0.7164%" y="431.50"></text></g><g><title>LinearScan::compute_local_live_sets (293 samples, 0.01%)</title><rect x="0.5055%" y="421" width="0.0126%" height="15" fill="rgb(238,167,29)" fg:x="11727" fg:w="293"/><text x="0.7555%" y="431.50"></text></g><g><title>LinearScan::do_linear_scan (3,401 samples, 0.15%)</title><rect x="0.3900%" y="437" width="0.1466%" height="15" fill="rgb(232,182,51)" fg:x="9047" fg:w="3401"/><text x="0.6400%" y="447.50"></text></g><g><title>Compilation::emit_lir (4,353 samples, 0.19%)</title><rect x="0.3490%" y="453" width="0.1876%" height="15" fill="rgb(231,60,39)" fg:x="8096" fg:w="4353"/><text x="0.5990%" y="463.50"></text></g><g><title>Compilation::compile_java_method (10,490 samples, 0.45%)</title><rect x="0.0911%" y="469" width="0.4522%" height="15" fill="rgb(208,69,12)" fg:x="2114" fg:w="10490"/><text x="0.3411%" y="479.50"></text></g><g><title>nmethod::nmethod (315 samples, 0.01%)</title><rect x="0.5561%" y="437" width="0.0136%" height="15" fill="rgb(235,93,37)" fg:x="12900" fg:w="315"/><text x="0.8061%" y="447.50"></text></g><g><title>ciEnv::register_method (570 samples, 0.02%)</title><rect x="0.5452%" y="469" width="0.0246%" height="15" fill="rgb(213,116,39)" fg:x="12647" fg:w="570"/><text x="0.7952%" y="479.50"></text></g><g><title>nmethod::new_nmethod (507 samples, 0.02%)</title><rect x="0.5479%" y="453" width="0.0219%" height="15" fill="rgb(222,207,29)" fg:x="12710" fg:w="507"/><text x="0.7979%" y="463.50"></text></g><g><title>Compilation::compile_method (11,114 samples, 0.48%)</title><rect x="0.0908%" y="485" width="0.4791%" height="15" fill="rgb(206,96,30)" fg:x="2107" fg:w="11114"/><text x="0.3408%" y="495.50"></text></g><g><title>Compiler::compile_method (11,146 samples, 0.48%)</title><rect x="0.0896%" y="517" width="0.4805%" height="15" fill="rgb(218,138,4)" fg:x="2079" fg:w="11146"/><text x="0.3396%" y="527.50"></text></g><g><title>Compilation::Compilation (11,124 samples, 0.48%)</title><rect x="0.0906%" y="501" width="0.4795%" height="15" fill="rgb(250,191,14)" fg:x="2101" fg:w="11124"/><text x="0.3406%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,749 samples, 0.51%)</title><rect x="0.0778%" y="533" width="0.5065%" height="15" fill="rgb(239,60,40)" fg:x="1804" fg:w="11749"/><text x="0.3278%" y="543.50"></text></g><g><title>CompileQueue::get (338 samples, 0.01%)</title><rect x="0.5858%" y="533" width="0.0146%" height="15" fill="rgb(206,27,48)" fg:x="13590" fg:w="338"/><text x="0.8358%" y="543.50"></text></g><g><title>CompileBroker::compiler_thread_loop (12,140 samples, 0.52%)</title><rect x="0.0775%" y="549" width="0.5233%" height="15" fill="rgb(225,35,8)" fg:x="1799" fg:w="12140"/><text x="0.3275%" y="559.50"></text></g><g><title>Thread::call_run (12,143 samples, 0.52%)</title><rect x="0.0775%" y="581" width="0.5234%" height="15" fill="rgb(250,213,24)" fg:x="1797" fg:w="12143"/><text x="0.3275%" y="591.50"></text></g><g><title>JavaThread::thread_main_inner (12,141 samples, 0.52%)</title><rect x="0.0775%" y="565" width="0.5234%" height="15" fill="rgb(247,123,22)" fg:x="1799" fg:w="12141"/><text x="0.3275%" y="575.50"></text></g><g><title>__GI___clone (12,166 samples, 0.52%)</title><rect x="0.0766%" y="629" width="0.5244%" height="15" fill="rgb(231,138,38)" fg:x="1776" fg:w="12166"/><text x="0.3266%" y="639.50"></text></g><g><title>start_thread (12,146 samples, 0.52%)</title><rect x="0.0774%" y="613" width="0.5236%" height="15" fill="rgb(231,145,46)" fg:x="1796" fg:w="12146"/><text x="0.3274%" y="623.50"></text></g><g><title>thread_native_entry (12,146 samples, 0.52%)</title><rect x="0.0774%" y="597" width="0.5236%" height="15" fill="rgb(251,118,11)" fg:x="1796" fg:w="12146"/><text x="0.3274%" y="607.50"></text></g><g><title>C1_CompilerThre (13,925 samples, 0.60%)</title><rect x="0.0030%" y="645" width="0.6003%" height="15" fill="rgb(217,147,25)" fg:x="70" fg:w="13925"/><text x="0.2530%" y="655.50"></text></g><g><title>[anon] (3,663 samples, 0.16%)</title><rect x="0.6192%" y="629" width="0.1579%" height="15" fill="rgb(247,81,37)" fg:x="14365" fg:w="3663"/><text x="0.8692%" y="639.50"></text></g><g><title>Parse::do_one_block (360 samples, 0.02%)</title><rect x="0.8136%" y="245" width="0.0155%" height="15" fill="rgb(209,12,38)" fg:x="18874" fg:w="360"/><text x="1.0636%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (352 samples, 0.02%)</title><rect x="0.8139%" y="229" width="0.0152%" height="15" fill="rgb(227,1,9)" fg:x="18882" fg:w="352"/><text x="1.0639%" y="239.50"></text></g><g><title>Parse::do_all_blocks (372 samples, 0.02%)</title><rect x="0.8133%" y="261" width="0.0160%" height="15" fill="rgb(248,47,43)" fg:x="18868" fg:w="372"/><text x="1.0633%" y="271.50"></text></g><g><title>ParseGenerator::generate (435 samples, 0.02%)</title><rect x="0.8117%" y="293" width="0.0188%" height="15" fill="rgb(221,10,30)" fg:x="18831" fg:w="435"/><text x="1.0617%" y="303.50"></text></g><g><title>Parse::Parse (433 samples, 0.02%)</title><rect x="0.8118%" y="277" width="0.0187%" height="15" fill="rgb(210,229,1)" fg:x="18833" fg:w="433"/><text x="1.0618%" y="287.50"></text></g><g><title>Parse::do_call (657 samples, 0.03%)</title><rect x="0.8058%" y="309" width="0.0283%" height="15" fill="rgb(222,148,37)" fg:x="18693" fg:w="657"/><text x="1.0558%" y="319.50"></text></g><g><title>Parse::do_one_block (905 samples, 0.04%)</title><rect x="0.8038%" y="341" width="0.0390%" height="15" fill="rgb(234,67,33)" fg:x="18648" fg:w="905"/><text x="1.0538%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (886 samples, 0.04%)</title><rect x="0.8047%" y="325" width="0.0382%" height="15" fill="rgb(247,98,35)" fg:x="18667" fg:w="886"/><text x="1.0547%" y="335.50"></text></g><g><title>Parse::do_all_blocks (922 samples, 0.04%)</title><rect x="0.8037%" y="357" width="0.0397%" height="15" fill="rgb(247,138,52)" fg:x="18644" fg:w="922"/><text x="1.0537%" y="367.50"></text></g><g><title>ParseGenerator::generate (1,008 samples, 0.04%)</title><rect x="0.8015%" y="389" width="0.0435%" height="15" fill="rgb(213,79,30)" fg:x="18594" fg:w="1008"/><text x="1.0515%" y="399.50"></text></g><g><title>Parse::Parse (1,008 samples, 0.04%)</title><rect x="0.8015%" y="373" width="0.0435%" height="15" fill="rgb(246,177,23)" fg:x="18594" fg:w="1008"/><text x="1.0515%" y="383.50"></text></g><g><title>Parse::do_call (1,465 samples, 0.06%)</title><rect x="0.7903%" y="405" width="0.0632%" height="15" fill="rgb(230,62,27)" fg:x="18333" fg:w="1465"/><text x="1.0403%" y="415.50"></text></g><g><title>Parse::do_one_block (1,687 samples, 0.07%)</title><rect x="0.7886%" y="437" width="0.0727%" height="15" fill="rgb(216,154,8)" fg:x="18294" fg:w="1687"/><text x="1.0386%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (1,678 samples, 0.07%)</title><rect x="0.7890%" y="421" width="0.0723%" height="15" fill="rgb(244,35,45)" fg:x="18303" fg:w="1678"/><text x="1.0390%" y="431.50"></text></g><g><title>Parse::do_all_blocks (1,688 samples, 0.07%)</title><rect x="0.7886%" y="453" width="0.0728%" height="15" fill="rgb(251,115,12)" fg:x="18294" fg:w="1688"/><text x="1.0386%" y="463.50"></text></g><g><title>ParseGenerator::generate (1,707 samples, 0.07%)</title><rect x="0.7879%" y="485" width="0.0736%" height="15" fill="rgb(240,54,50)" fg:x="18277" fg:w="1707"/><text x="1.0379%" y="495.50"></text></g><g><title>Parse::Parse (1,707 samples, 0.07%)</title><rect x="0.7879%" y="469" width="0.0736%" height="15" fill="rgb(233,84,52)" fg:x="18277" fg:w="1707"/><text x="1.0379%" y="479.50"></text></g><g><title>ParseGenerator::generate (237 samples, 0.01%)</title><rect x="0.8652%" y="373" width="0.0102%" height="15" fill="rgb(207,117,47)" fg:x="20071" fg:w="237"/><text x="1.1152%" y="383.50"></text></g><g><title>Parse::Parse (237 samples, 0.01%)</title><rect x="0.8652%" y="357" width="0.0102%" height="15" fill="rgb(249,43,39)" fg:x="20071" fg:w="237"/><text x="1.1152%" y="367.50"></text></g><g><title>Parse::do_call (340 samples, 0.01%)</title><rect x="0.8625%" y="389" width="0.0147%" height="15" fill="rgb(209,38,44)" fg:x="20008" fg:w="340"/><text x="1.1125%" y="399.50"></text></g><g><title>Parse::do_all_blocks (422 samples, 0.02%)</title><rect x="0.8618%" y="437" width="0.0182%" height="15" fill="rgb(236,212,23)" fg:x="19993" fg:w="422"/><text x="1.1118%" y="447.50"></text></g><g><title>Parse::do_one_block (421 samples, 0.02%)</title><rect x="0.8619%" y="421" width="0.0181%" height="15" fill="rgb(242,79,21)" fg:x="19994" fg:w="421"/><text x="1.1119%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (415 samples, 0.02%)</title><rect x="0.8621%" y="405" width="0.0179%" height="15" fill="rgb(211,96,35)" fg:x="20000" fg:w="415"/><text x="1.1121%" y="415.50"></text></g><g><title>ParseGenerator::generate (432 samples, 0.02%)</title><rect x="0.8615%" y="469" width="0.0186%" height="15" fill="rgb(253,215,40)" fg:x="19986" fg:w="432"/><text x="1.1115%" y="479.50"></text></g><g><title>Parse::Parse (432 samples, 0.02%)</title><rect x="0.8615%" y="453" width="0.0186%" height="15" fill="rgb(211,81,21)" fg:x="19986" fg:w="432"/><text x="1.1115%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (507 samples, 0.02%)</title><rect x="0.8614%" y="485" width="0.0219%" height="15" fill="rgb(208,190,38)" fg:x="19984" fg:w="507"/><text x="1.1114%" y="495.50"></text></g><g><title>Parse::do_call (2,415 samples, 0.10%)</title><rect x="0.7797%" y="501" width="0.1041%" height="15" fill="rgb(235,213,38)" fg:x="18088" fg:w="2415"/><text x="1.0297%" y="511.50"></text></g><g><title>Parse::do_all_blocks (2,430 samples, 0.10%)</title><rect x="0.7797%" y="549" width="0.1047%" height="15" fill="rgb(237,122,38)" fg:x="18088" fg:w="2430"/><text x="1.0297%" y="559.50"></text></g><g><title>Parse::do_one_block (2,430 samples, 0.10%)</title><rect x="0.7797%" y="533" width="0.1047%" height="15" fill="rgb(244,218,35)" fg:x="18088" fg:w="2430"/><text x="1.0297%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (2,430 samples, 0.10%)</title><rect x="0.7797%" y="517" width="0.1047%" height="15" fill="rgb(240,68,47)" fg:x="18088" fg:w="2430"/><text x="1.0297%" y="527.50"></text></g><g><title>C2Compiler::compile_method (2,468 samples, 0.11%)</title><rect x="0.7782%" y="613" width="0.1064%" height="15" fill="rgb(210,16,53)" fg:x="18053" fg:w="2468"/><text x="1.0282%" y="623.50"></text></g><g><title>Compile::Compile (2,468 samples, 0.11%)</title><rect x="0.7782%" y="597" width="0.1064%" height="15" fill="rgb(235,124,12)" fg:x="18053" fg:w="2468"/><text x="1.0282%" y="607.50"></text></g><g><title>ParseGenerator::generate (2,433 samples, 0.10%)</title><rect x="0.7797%" y="581" width="0.1049%" height="15" fill="rgb(224,169,11)" fg:x="18088" fg:w="2433"/><text x="1.0297%" y="591.50"></text></g><g><title>Parse::Parse (2,433 samples, 0.10%)</title><rect x="0.7797%" y="565" width="0.1049%" height="15" fill="rgb(250,166,2)" fg:x="18088" fg:w="2433"/><text x="1.0297%" y="575.50"></text></g><g><title>PhaseCFG::do_global_code_motion (280 samples, 0.01%)</title><rect x="0.8887%" y="597" width="0.0121%" height="15" fill="rgb(242,216,29)" fg:x="20616" fg:w="280"/><text x="1.1387%" y="607.50"></text></g><g><title>PhaseCFG::global_code_motion (280 samples, 0.01%)</title><rect x="0.8887%" y="581" width="0.0121%" height="15" fill="rgb(230,116,27)" fg:x="20616" fg:w="280"/><text x="1.1387%" y="591.50"></text></g><g><title>Compile::Code_Gen (439 samples, 0.02%)</title><rect x="0.8847%" y="613" width="0.0189%" height="15" fill="rgb(228,99,48)" fg:x="20523" fg:w="439"/><text x="1.1347%" y="623.50"></text></g><g><title>Compile::BuildOopMaps (892 samples, 0.04%)</title><rect x="0.9044%" y="565" width="0.0385%" height="15" fill="rgb(253,11,6)" fg:x="20980" fg:w="892"/><text x="1.1544%" y="575.50"></text></g><g><title>Compile::shorten_branches (375 samples, 0.02%)</title><rect x="0.9457%" y="549" width="0.0162%" height="15" fill="rgb(247,143,39)" fg:x="21939" fg:w="375"/><text x="1.1957%" y="559.50"></text></g><g><title>Compile::init_buffer (444 samples, 0.02%)</title><rect x="0.9428%" y="565" width="0.0191%" height="15" fill="rgb(236,97,10)" fg:x="21872" fg:w="444"/><text x="1.1928%" y="575.50"></text></g><g><title>Compile::Output (1,352 samples, 0.06%)</title><rect x="0.9037%" y="581" width="0.0583%" height="15" fill="rgb(233,208,19)" fg:x="20965" fg:w="1352"/><text x="1.1537%" y="591.50"></text></g><g><title>Compile::Process_OopMap_Node (260 samples, 0.01%)</title><rect x="0.9711%" y="565" width="0.0112%" height="15" fill="rgb(216,164,2)" fg:x="22527" fg:w="260"/><text x="1.2211%" y="575.50"></text></g><g><title>Compile::fill_buffer (667 samples, 0.03%)</title><rect x="0.9621%" y="581" width="0.0288%" height="15" fill="rgb(220,129,5)" fg:x="22319" fg:w="667"/><text x="1.2121%" y="591.50"></text></g><g><title>Matcher::find_shared (411 samples, 0.02%)</title><rect x="0.9950%" y="565" width="0.0177%" height="15" fill="rgb(242,17,10)" fg:x="23082" fg:w="411"/><text x="1.2450%" y="575.50"></text></g><g><title>Arena::contains (594 samples, 0.03%)</title><rect x="1.0312%" y="549" width="0.0256%" height="15" fill="rgb(242,107,0)" fg:x="23921" fg:w="594"/><text x="1.2812%" y="559.50"></text></g><g><title>Matcher::Label_Root (306 samples, 0.01%)</title><rect x="1.0801%" y="517" width="0.0132%" height="15" fill="rgb(251,28,31)" fg:x="25057" fg:w="306"/><text x="1.3301%" y="527.50"></text></g><g><title>Matcher::Label_Root (518 samples, 0.02%)</title><rect x="1.0759%" y="533" width="0.0223%" height="15" fill="rgb(233,223,10)" fg:x="24959" fg:w="518"/><text x="1.3259%" y="543.50"></text></g><g><title>Matcher::ReduceInst (398 samples, 0.02%)</title><rect x="1.0982%" y="533" width="0.0172%" height="15" fill="rgb(215,21,27)" fg:x="25477" fg:w="398"/><text x="1.3482%" y="543.50"></text></g><g><title>Matcher::match_tree (1,153 samples, 0.05%)</title><rect x="1.0664%" y="549" width="0.0497%" height="15" fill="rgb(232,23,21)" fg:x="24738" fg:w="1153"/><text x="1.3164%" y="559.50"></text></g><g><title>Matcher::xform (2,546 samples, 0.11%)</title><rect x="1.0130%" y="565" width="0.1097%" height="15" fill="rgb(244,5,23)" fg:x="23501" fg:w="2546"/><text x="1.2630%" y="575.50"></text></g><g><title>Matcher::match (3,056 samples, 0.13%)</title><rect x="0.9913%" y="581" width="0.1317%" height="15" fill="rgb(226,81,46)" fg:x="22996" fg:w="3056"/><text x="1.2413%" y="591.50"></text></g><g><title>Node_Backward_Iterator::next (265 samples, 0.01%)</title><rect x="1.1735%" y="533" width="0.0114%" height="15" fill="rgb(247,70,30)" fg:x="27223" fg:w="265"/><text x="1.4235%" y="543.50"></text></g><g><title>PhaseCFG::schedule_late (783 samples, 0.03%)</title><rect x="1.1680%" y="549" width="0.0338%" height="15" fill="rgb(212,68,19)" fg:x="27095" fg:w="783"/><text x="1.4180%" y="559.50"></text></g><g><title>PhaseCFG::schedule_local (662 samples, 0.03%)</title><rect x="1.2017%" y="549" width="0.0285%" height="15" fill="rgb(240,187,13)" fg:x="27878" fg:w="662"/><text x="1.4517%" y="559.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (511 samples, 0.02%)</title><rect x="1.2324%" y="549" width="0.0220%" height="15" fill="rgb(223,113,26)" fg:x="28590" fg:w="511"/><text x="1.4824%" y="559.50"></text></g><g><title>PhaseLive::add_liveout (450 samples, 0.02%)</title><rect x="1.2929%" y="533" width="0.0194%" height="15" fill="rgb(206,192,2)" fg:x="29993" fg:w="450"/><text x="1.5429%" y="543.50"></text></g><g><title>PhaseLive::compute (1,033 samples, 0.04%)</title><rect x="1.2678%" y="549" width="0.0445%" height="15" fill="rgb(241,108,4)" fg:x="29412" fg:w="1033"/><text x="1.5178%" y="559.50"></text></g><g><title>PhaseCFG::global_code_motion (3,901 samples, 0.17%)</title><rect x="1.1450%" y="565" width="0.1682%" height="15" fill="rgb(247,173,49)" fg:x="26562" fg:w="3901"/><text x="1.3950%" y="575.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,073 samples, 0.18%)</title><rect x="1.1376%" y="581" width="0.1756%" height="15" fill="rgb(224,114,35)" fg:x="26391" fg:w="4073"/><text x="1.3876%" y="591.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,307 samples, 0.06%)</title><rect x="1.3241%" y="565" width="0.0563%" height="15" fill="rgb(245,159,27)" fg:x="30716" fg:w="1307"/><text x="1.5741%" y="575.50"></text></g><g><title>IndexSetIterator::advance_and_next (318 samples, 0.01%)</title><rect x="1.4065%" y="549" width="0.0137%" height="15" fill="rgb(245,172,44)" fg:x="32628" fg:w="318"/><text x="1.6565%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (365 samples, 0.02%)</title><rect x="1.4506%" y="533" width="0.0157%" height="15" fill="rgb(236,23,11)" fg:x="33652" fg:w="365"/><text x="1.7006%" y="543.50"></text></g><g><title>PhaseIFG::re_insert (920 samples, 0.04%)</title><rect x="1.4276%" y="549" width="0.0397%" height="15" fill="rgb(205,117,38)" fg:x="33119" fg:w="920"/><text x="1.6776%" y="559.50"></text></g><g><title>PhaseChaitin::Select (2,188 samples, 0.09%)</title><rect x="1.3804%" y="565" width="0.0943%" height="15" fill="rgb(237,72,25)" fg:x="32023" fg:w="2188"/><text x="1.6304%" y="575.50"></text></g><g><title>IndexSetIterator::advance_and_next (383 samples, 0.02%)</title><rect x="1.4873%" y="549" width="0.0165%" height="15" fill="rgb(244,70,9)" fg:x="34502" fg:w="383"/><text x="1.7373%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (448 samples, 0.02%)</title><rect x="1.5273%" y="533" width="0.0193%" height="15" fill="rgb(217,125,39)" fg:x="35431" fg:w="448"/><text x="1.7773%" y="543.50"></text></g><g><title>PhaseIFG::remove_node (998 samples, 0.04%)</title><rect x="1.5038%" y="549" width="0.0430%" height="15" fill="rgb(235,36,10)" fg:x="34885" fg:w="998"/><text x="1.7538%" y="559.50"></text></g><g><title>PhaseChaitin::Simplify (1,674 samples, 0.07%)</title><rect x="1.4747%" y="565" width="0.0722%" height="15" fill="rgb(251,123,47)" fg:x="34211" fg:w="1674"/><text x="1.7247%" y="575.50"></text></g><g><title>PhaseChaitin::Split (4,020 samples, 0.17%)</title><rect x="1.5469%" y="565" width="0.1733%" height="15" fill="rgb(221,13,13)" fg:x="35885" fg:w="4020"/><text x="1.7969%" y="575.50"></text></g><g><title>IndexSet::IndexSet (324 samples, 0.01%)</title><rect x="1.7619%" y="549" width="0.0140%" height="15" fill="rgb(238,131,9)" fg:x="40873" fg:w="324"/><text x="2.0119%" y="559.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (798 samples, 0.03%)</title><rect x="1.7807%" y="549" width="0.0344%" height="15" fill="rgb(211,50,8)" fg:x="41310" fg:w="798"/><text x="2.0307%" y="559.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (576 samples, 0.02%)</title><rect x="1.8204%" y="549" width="0.0248%" height="15" fill="rgb(245,182,24)" fg:x="42231" fg:w="576"/><text x="2.0704%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (877 samples, 0.04%)</title><rect x="1.9404%" y="533" width="0.0378%" height="15" fill="rgb(242,14,37)" fg:x="45013" fg:w="877"/><text x="2.1904%" y="543.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,092 samples, 0.13%)</title><rect x="1.8453%" y="549" width="0.1333%" height="15" fill="rgb(246,228,12)" fg:x="42807" fg:w="3092"/><text x="2.0953%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (232 samples, 0.01%)</title><rect x="2.0092%" y="533" width="0.0100%" height="15" fill="rgb(213,55,15)" fg:x="46611" fg:w="232"/><text x="2.2592%" y="543.50"></text></g><g><title>RegMask::Size (354 samples, 0.02%)</title><rect x="2.0192%" y="533" width="0.0153%" height="15" fill="rgb(209,9,3)" fg:x="46843" fg:w="354"/><text x="2.2692%" y="543.50"></text></g><g><title>RegMask::smear_to_sets (754 samples, 0.03%)</title><rect x="2.0345%" y="533" width="0.0325%" height="15" fill="rgb(230,59,30)" fg:x="47197" fg:w="754"/><text x="2.2845%" y="543.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,943 samples, 0.08%)</title><rect x="1.9838%" y="549" width="0.0838%" height="15" fill="rgb(209,121,21)" fg:x="46021" fg:w="1943"/><text x="2.2338%" y="559.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (8,165 samples, 0.35%)</title><rect x="1.7203%" y="565" width="0.3520%" height="15" fill="rgb(220,109,13)" fg:x="39909" fg:w="8165"/><text x="1.9703%" y="575.50"></text></g><g><title>PhaseChaitin::interfere_with_live (405 samples, 0.02%)</title><rect x="2.0793%" y="549" width="0.0175%" height="15" fill="rgb(232,18,1)" fg:x="48237" fg:w="405"/><text x="2.3293%" y="559.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (570 samples, 0.02%)</title><rect x="2.0723%" y="565" width="0.0246%" height="15" fill="rgb(215,41,42)" fg:x="48074" fg:w="570"/><text x="2.3223%" y="575.50"></text></g><g><title>RegMask::Size (1,307 samples, 0.06%)</title><rect x="2.2149%" y="549" width="0.0563%" height="15" fill="rgb(224,123,36)" fg:x="51383" fg:w="1307"/><text x="2.4649%" y="559.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,471 samples, 0.19%)</title><rect x="2.1120%" y="565" width="0.1927%" height="15" fill="rgb(240,125,3)" fg:x="48994" fg:w="4471"/><text x="2.3620%" y="575.50"></text></g><g><title>PhaseChaitin::merge_multidefs (581 samples, 0.03%)</title><rect x="2.3047%" y="565" width="0.0250%" height="15" fill="rgb(205,98,50)" fg:x="53466" fg:w="581"/><text x="2.5547%" y="575.50"></text></g><g><title>PhaseChaitin::elide_copy (2,184 samples, 0.09%)</title><rect x="2.4167%" y="549" width="0.0941%" height="15" fill="rgb(205,185,37)" fg:x="56063" fg:w="2184"/><text x="2.6667%" y="559.50"></text></g><g><title>find_lowest_bit (431 samples, 0.02%)</title><rect x="2.5174%" y="549" width="0.0186%" height="15" fill="rgb(238,207,15)" fg:x="58399" fg:w="431"/><text x="2.7674%" y="559.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,790 samples, 0.21%)</title><rect x="2.3298%" y="565" width="0.2065%" height="15" fill="rgb(213,199,42)" fg:x="54048" fg:w="4790"/><text x="2.5798%" y="575.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (239 samples, 0.01%)</title><rect x="2.5363%" y="565" width="0.0103%" height="15" fill="rgb(235,201,11)" fg:x="58839" fg:w="239"/><text x="2.7863%" y="575.50"></text></g><g><title>IndexSet::lrg_union (318 samples, 0.01%)</title><rect x="2.5674%" y="517" width="0.0137%" height="15" fill="rgb(207,46,11)" fg:x="59559" fg:w="318"/><text x="2.8174%" y="527.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (339 samples, 0.01%)</title><rect x="2.5819%" y="517" width="0.0146%" height="15" fill="rgb(241,35,35)" fg:x="59896" fg:w="339"/><text x="2.8319%" y="527.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (838 samples, 0.04%)</title><rect x="2.5653%" y="533" width="0.0361%" height="15" fill="rgb(243,32,47)" fg:x="59511" fg:w="838"/><text x="2.8153%" y="543.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,273 samples, 0.05%)</title><rect x="2.5466%" y="565" width="0.0549%" height="15" fill="rgb(247,202,23)" fg:x="59078" fg:w="1273"/><text x="2.7966%" y="575.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,061 samples, 0.05%)</title><rect x="2.5558%" y="549" width="0.0457%" height="15" fill="rgb(219,102,11)" fg:x="59290" fg:w="1061"/><text x="2.8058%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (549 samples, 0.02%)</title><rect x="2.6212%" y="549" width="0.0237%" height="15" fill="rgb(243,110,44)" fg:x="60807" fg:w="549"/><text x="2.8712%" y="559.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,009 samples, 0.04%)</title><rect x="2.6015%" y="565" width="0.0435%" height="15" fill="rgb(222,74,54)" fg:x="60351" fg:w="1009"/><text x="2.8515%" y="575.50"></text></g><g><title>IndexSetIterator::advance_and_next (419 samples, 0.02%)</title><rect x="2.6681%" y="549" width="0.0181%" height="15" fill="rgb(216,99,12)" fg:x="61896" fg:w="419"/><text x="2.9181%" y="559.50"></text></g><g><title>PhaseIFG::SquareUp (959 samples, 0.04%)</title><rect x="2.6450%" y="565" width="0.0413%" height="15" fill="rgb(226,22,26)" fg:x="61360" fg:w="959"/><text x="2.8950%" y="575.50"></text></g><g><title>PhaseIFG::init (419 samples, 0.02%)</title><rect x="2.6864%" y="565" width="0.0181%" height="15" fill="rgb(217,163,10)" fg:x="62319" fg:w="419"/><text x="2.9364%" y="575.50"></text></g><g><title>IndexSetIterator::advance_and_next (333 samples, 0.01%)</title><rect x="2.8252%" y="533" width="0.0144%" height="15" fill="rgb(213,25,53)" fg:x="65539" fg:w="333"/><text x="3.0752%" y="543.50"></text></g><g><title>PhaseLive::add_liveout (1,480 samples, 0.06%)</title><rect x="2.7765%" y="549" width="0.0638%" height="15" fill="rgb(252,105,26)" fg:x="64411" fg:w="1480"/><text x="3.0265%" y="559.50"></text></g><g><title>PhaseLive::compute (3,171 samples, 0.14%)</title><rect x="2.7045%" y="565" width="0.1367%" height="15" fill="rgb(220,39,43)" fg:x="62740" fg:w="3171"/><text x="2.9545%" y="575.50"></text></g><g><title>PhaseChaitin::Register_Allocate (35,483 samples, 1.53%)</title><rect x="1.3186%" y="581" width="1.5295%" height="15" fill="rgb(229,68,48)" fg:x="30590" fg:w="35483"/><text x="1.5686%" y="591.50"></text></g><g><title>Compile::Code_Gen (45,173 samples, 1.95%)</title><rect x="0.9036%" y="597" width="1.9472%" height="15" fill="rgb(252,8,32)" fg:x="20962" fg:w="45173"/><text x="1.1536%" y="607.50">C..</text></g><g><title>Parse::do_call (236 samples, 0.01%)</title><rect x="2.8602%" y="37" width="0.0102%" height="15" fill="rgb(223,20,43)" fg:x="66353" fg:w="236"/><text x="3.1102%" y="47.50"></text></g><g><title>Parse::do_one_block (310 samples, 0.01%)</title><rect x="2.8595%" y="69" width="0.0134%" height="15" fill="rgb(229,81,49)" fg:x="66335" fg:w="310"/><text x="3.1095%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (307 samples, 0.01%)</title><rect x="2.8596%" y="53" width="0.0132%" height="15" fill="rgb(236,28,36)" fg:x="66338" fg:w="307"/><text x="3.1096%" y="63.50"></text></g><g><title>Parse::do_all_blocks (313 samples, 0.01%)</title><rect x="2.8595%" y="85" width="0.0135%" height="15" fill="rgb(249,185,26)" fg:x="66335" fg:w="313"/><text x="3.1095%" y="95.50"></text></g><g><title>ParseGenerator::generate (350 samples, 0.02%)</title><rect x="2.8583%" y="117" width="0.0151%" height="15" fill="rgb(249,174,33)" fg:x="66309" fg:w="350"/><text x="3.1083%" y="127.50"></text></g><g><title>Parse::Parse (350 samples, 0.02%)</title><rect x="2.8583%" y="101" width="0.0151%" height="15" fill="rgb(233,201,37)" fg:x="66309" fg:w="350"/><text x="3.1083%" y="111.50"></text></g><g><title>Parse::do_call (451 samples, 0.02%)</title><rect x="2.8554%" y="133" width="0.0194%" height="15" fill="rgb(221,78,26)" fg:x="66241" fg:w="451"/><text x="3.1054%" y="143.50"></text></g><g><title>ParseGenerator::generate (541 samples, 0.02%)</title><rect x="2.8547%" y="213" width="0.0233%" height="15" fill="rgb(250,127,30)" fg:x="66225" fg:w="541"/><text x="3.1047%" y="223.50"></text></g><g><title>Parse::Parse (541 samples, 0.02%)</title><rect x="2.8547%" y="197" width="0.0233%" height="15" fill="rgb(230,49,44)" fg:x="66225" fg:w="541"/><text x="3.1047%" y="207.50"></text></g><g><title>Parse::do_all_blocks (534 samples, 0.02%)</title><rect x="2.8550%" y="181" width="0.0230%" height="15" fill="rgb(229,67,23)" fg:x="66232" fg:w="534"/><text x="3.1050%" y="191.50"></text></g><g><title>Parse::do_one_block (534 samples, 0.02%)</title><rect x="2.8550%" y="165" width="0.0230%" height="15" fill="rgb(249,83,47)" fg:x="66232" fg:w="534"/><text x="3.1050%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (534 samples, 0.02%)</title><rect x="2.8550%" y="149" width="0.0230%" height="15" fill="rgb(215,43,3)" fg:x="66232" fg:w="534"/><text x="3.1050%" y="159.50"></text></g><g><title>Parse::do_call (675 samples, 0.03%)</title><rect x="2.8528%" y="229" width="0.0291%" height="15" fill="rgb(238,154,13)" fg:x="66180" fg:w="675"/><text x="3.1028%" y="239.50"></text></g><g><title>Parse::do_all_blocks (687 samples, 0.03%)</title><rect x="2.8527%" y="277" width="0.0296%" height="15" fill="rgb(219,56,2)" fg:x="66179" fg:w="687"/><text x="3.1027%" y="287.50"></text></g><g><title>Parse::do_one_block (687 samples, 0.03%)</title><rect x="2.8527%" y="261" width="0.0296%" height="15" fill="rgb(233,0,4)" fg:x="66179" fg:w="687"/><text x="3.1027%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (687 samples, 0.03%)</title><rect x="2.8527%" y="245" width="0.0296%" height="15" fill="rgb(235,30,7)" fg:x="66179" fg:w="687"/><text x="3.1027%" y="255.50"></text></g><g><title>ParseGenerator::generate (689 samples, 0.03%)</title><rect x="2.8527%" y="309" width="0.0297%" height="15" fill="rgb(250,79,13)" fg:x="66178" fg:w="689"/><text x="3.1027%" y="319.50"></text></g><g><title>Parse::Parse (689 samples, 0.03%)</title><rect x="2.8527%" y="293" width="0.0297%" height="15" fill="rgb(211,146,34)" fg:x="66178" fg:w="689"/><text x="3.1027%" y="303.50"></text></g><g><title>ParseGenerator::generate (830 samples, 0.04%)</title><rect x="2.8513%" y="405" width="0.0358%" height="15" fill="rgb(228,22,38)" fg:x="66145" fg:w="830"/><text x="3.1013%" y="415.50"></text></g><g><title>Parse::Parse (830 samples, 0.04%)</title><rect x="2.8513%" y="389" width="0.0358%" height="15" fill="rgb(235,168,5)" fg:x="66145" fg:w="830"/><text x="3.1013%" y="399.50"></text></g><g><title>Parse::do_all_blocks (830 samples, 0.04%)</title><rect x="2.8513%" y="373" width="0.0358%" height="15" fill="rgb(221,155,16)" fg:x="66145" fg:w="830"/><text x="3.1013%" y="383.50"></text></g><g><title>Parse::do_one_block (830 samples, 0.04%)</title><rect x="2.8513%" y="357" width="0.0358%" height="15" fill="rgb(215,215,53)" fg:x="66145" fg:w="830"/><text x="3.1013%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (830 samples, 0.04%)</title><rect x="2.8513%" y="341" width="0.0358%" height="15" fill="rgb(223,4,10)" fg:x="66145" fg:w="830"/><text x="3.1013%" y="351.50"></text></g><g><title>Parse::do_call (830 samples, 0.04%)</title><rect x="2.8513%" y="325" width="0.0358%" height="15" fill="rgb(234,103,6)" fg:x="66145" fg:w="830"/><text x="3.1013%" y="335.50"></text></g><g><title>ParseGenerator::generate (979 samples, 0.04%)</title><rect x="2.8511%" y="501" width="0.0422%" height="15" fill="rgb(227,97,0)" fg:x="66140" fg:w="979"/><text x="3.1011%" y="511.50"></text></g><g><title>Parse::Parse (979 samples, 0.04%)</title><rect x="2.8511%" y="485" width="0.0422%" height="15" fill="rgb(234,150,53)" fg:x="66140" fg:w="979"/><text x="3.1011%" y="495.50"></text></g><g><title>Parse::do_all_blocks (979 samples, 0.04%)</title><rect x="2.8511%" y="469" width="0.0422%" height="15" fill="rgb(228,201,54)" fg:x="66140" fg:w="979"/><text x="3.1011%" y="479.50"></text></g><g><title>Parse::do_one_block (979 samples, 0.04%)</title><rect x="2.8511%" y="453" width="0.0422%" height="15" fill="rgb(222,22,37)" fg:x="66140" fg:w="979"/><text x="3.1011%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (979 samples, 0.04%)</title><rect x="2.8511%" y="437" width="0.0422%" height="15" fill="rgb(237,53,32)" fg:x="66140" fg:w="979"/><text x="3.1011%" y="447.50"></text></g><g><title>Parse::do_call (979 samples, 0.04%)</title><rect x="2.8511%" y="421" width="0.0422%" height="15" fill="rgb(233,25,53)" fg:x="66140" fg:w="979"/><text x="3.1011%" y="431.50"></text></g><g><title>ParseGenerator::generate (271 samples, 0.01%)</title><rect x="2.8933%" y="485" width="0.0117%" height="15" fill="rgb(210,40,34)" fg:x="67119" fg:w="271"/><text x="3.1433%" y="495.50"></text></g><g><title>Parse::Parse (271 samples, 0.01%)</title><rect x="2.8933%" y="469" width="0.0117%" height="15" fill="rgb(241,220,44)" fg:x="67119" fg:w="271"/><text x="3.1433%" y="479.50"></text></g><g><title>Parse::do_all_blocks (271 samples, 0.01%)</title><rect x="2.8933%" y="453" width="0.0117%" height="15" fill="rgb(235,28,35)" fg:x="67119" fg:w="271"/><text x="3.1433%" y="463.50"></text></g><g><title>Parse::do_one_block (271 samples, 0.01%)</title><rect x="2.8933%" y="437" width="0.0117%" height="15" fill="rgb(210,56,17)" fg:x="67119" fg:w="271"/><text x="3.1433%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (271 samples, 0.01%)</title><rect x="2.8933%" y="421" width="0.0117%" height="15" fill="rgb(224,130,29)" fg:x="67119" fg:w="271"/><text x="3.1433%" y="431.50"></text></g><g><title>Parse::do_call (271 samples, 0.01%)</title><rect x="2.8933%" y="405" width="0.0117%" height="15" fill="rgb(235,212,8)" fg:x="67119" fg:w="271"/><text x="3.1433%" y="415.50"></text></g><g><title>PredictedCallGenerator::generate (323 samples, 0.01%)</title><rect x="2.8933%" y="501" width="0.0139%" height="15" fill="rgb(223,33,50)" fg:x="67119" fg:w="323"/><text x="3.1433%" y="511.50"></text></g><g><title>ParseGenerator::generate (1,303 samples, 0.06%)</title><rect x="2.8511%" y="597" width="0.0562%" height="15" fill="rgb(219,149,13)" fg:x="66140" fg:w="1303"/><text x="3.1011%" y="607.50"></text></g><g><title>Parse::Parse (1,303 samples, 0.06%)</title><rect x="2.8511%" y="581" width="0.0562%" height="15" fill="rgb(250,156,29)" fg:x="66140" fg:w="1303"/><text x="3.1011%" y="591.50"></text></g><g><title>Parse::do_all_blocks (1,303 samples, 0.06%)</title><rect x="2.8511%" y="565" width="0.0562%" height="15" fill="rgb(216,193,19)" fg:x="66140" fg:w="1303"/><text x="3.1011%" y="575.50"></text></g><g><title>Parse::do_one_block (1,303 samples, 0.06%)</title><rect x="2.8511%" y="549" width="0.0562%" height="15" fill="rgb(216,135,14)" fg:x="66140" fg:w="1303"/><text x="3.1011%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (1,303 samples, 0.06%)</title><rect x="2.8511%" y="533" width="0.0562%" height="15" fill="rgb(241,47,5)" fg:x="66140" fg:w="1303"/><text x="3.1011%" y="543.50"></text></g><g><title>Parse::do_call (1,303 samples, 0.06%)</title><rect x="2.8511%" y="517" width="0.0562%" height="15" fill="rgb(233,42,35)" fg:x="66140" fg:w="1303"/><text x="3.1011%" y="527.50"></text></g><g><title>Compile::Compile (46,487 samples, 2.00%)</title><rect x="0.9036%" y="613" width="2.0039%" height="15" fill="rgb(231,13,6)" fg:x="20962" fg:w="46487"/><text x="1.1536%" y="623.50">C..</text></g><g><title>Compile::final_graph_reshaping (325 samples, 0.01%)</title><rect x="2.9077%" y="597" width="0.0140%" height="15" fill="rgb(207,181,40)" fg:x="67454" fg:w="325"/><text x="3.1577%" y="607.50"></text></g><g><title>Compile::final_graph_reshaping_walk (319 samples, 0.01%)</title><rect x="2.9080%" y="581" width="0.0138%" height="15" fill="rgb(254,173,49)" fg:x="67460" fg:w="319"/><text x="3.1580%" y="591.50"></text></g><g><title>Compile::remove_speculative_types (280 samples, 0.01%)</title><rect x="2.9277%" y="597" width="0.0121%" height="15" fill="rgb(221,1,38)" fg:x="67919" fg:w="280"/><text x="3.1777%" y="607.50"></text></g><g><title>ConnectionGraph::compute_escape (539 samples, 0.02%)</title><rect x="2.9399%" y="581" width="0.0232%" height="15" fill="rgb(206,124,46)" fg:x="68201" fg:w="539"/><text x="3.1899%" y="591.50"></text></g><g><title>ConnectionGraph::do_analysis (542 samples, 0.02%)</title><rect x="2.9399%" y="597" width="0.0234%" height="15" fill="rgb(249,21,11)" fg:x="68200" fg:w="542"/><text x="3.1899%" y="607.50"></text></g><g><title>PhaseCCP::analyze (787 samples, 0.03%)</title><rect x="2.9634%" y="597" width="0.0339%" height="15" fill="rgb(222,201,40)" fg:x="68746" fg:w="787"/><text x="3.2134%" y="607.50"></text></g><g><title>PhaseCCP::do_transform (255 samples, 0.01%)</title><rect x="2.9973%" y="597" width="0.0110%" height="15" fill="rgb(235,61,29)" fg:x="69533" fg:w="255"/><text x="3.2473%" y="607.50"></text></g><g><title>PhaseCCP::transform (255 samples, 0.01%)</title><rect x="2.9973%" y="581" width="0.0110%" height="15" fill="rgb(219,207,3)" fg:x="69533" fg:w="255"/><text x="3.2473%" y="591.50"></text></g><g><title>IdealLoopTree::iteration_split (236 samples, 0.01%)</title><rect x="3.0134%" y="581" width="0.0102%" height="15" fill="rgb(222,56,46)" fg:x="69905" fg:w="236"/><text x="3.2634%" y="591.50"></text></g><g><title>IdealLoopTree::loop_predication (301 samples, 0.01%)</title><rect x="3.0235%" y="581" width="0.0130%" height="15" fill="rgb(239,76,54)" fg:x="70141" fg:w="301"/><text x="3.2735%" y="591.50"></text></g><g><title>NTarjan::DFS (339 samples, 0.01%)</title><rect x="3.0719%" y="565" width="0.0146%" height="15" fill="rgb(231,124,27)" fg:x="71264" fg:w="339"/><text x="3.3219%" y="575.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,188 samples, 0.05%)</title><rect x="3.0384%" y="581" width="0.0512%" height="15" fill="rgb(249,195,6)" fg:x="70487" fg:w="1188"/><text x="3.2884%" y="591.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (442 samples, 0.02%)</title><rect x="3.1427%" y="565" width="0.0191%" height="15" fill="rgb(237,174,47)" fg:x="72906" fg:w="442"/><text x="3.3927%" y="575.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (408 samples, 0.02%)</title><rect x="3.1442%" y="549" width="0.0176%" height="15" fill="rgb(206,201,31)" fg:x="72940" fg:w="408"/><text x="3.3942%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,764 samples, 0.08%)</title><rect x="3.0897%" y="581" width="0.0760%" height="15" fill="rgb(231,57,52)" fg:x="71675" fg:w="1764"/><text x="3.3397%" y="591.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (311 samples, 0.01%)</title><rect x="3.2805%" y="517" width="0.0134%" height="15" fill="rgb(248,177,22)" fg:x="76103" fg:w="311"/><text x="3.5305%" y="527.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (451 samples, 0.02%)</title><rect x="3.2767%" y="533" width="0.0194%" height="15" fill="rgb(215,211,37)" fg:x="76014" fg:w="451"/><text x="3.5267%" y="543.50"></text></g><g><title>PhaseIdealLoop::dom_depth (292 samples, 0.01%)</title><rect x="3.3443%" y="517" width="0.0126%" height="15" fill="rgb(241,128,51)" fg:x="77583" fg:w="292"/><text x="3.5943%" y="527.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,283 samples, 0.06%)</title><rect x="3.3018%" y="533" width="0.0553%" height="15" fill="rgb(227,165,31)" fg:x="76597" fg:w="1283"/><text x="3.5518%" y="543.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,263 samples, 0.10%)</title><rect x="3.2605%" y="549" width="0.0975%" height="15" fill="rgb(228,167,24)" fg:x="75638" fg:w="2263"/><text x="3.5105%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,184 samples, 0.14%)</title><rect x="3.2252%" y="565" width="0.1373%" height="15" fill="rgb(228,143,12)" fg:x="74820" fg:w="3184"/><text x="3.4752%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (4,585 samples, 0.20%)</title><rect x="3.1657%" y="581" width="0.1976%" height="15" fill="rgb(249,149,8)" fg:x="73439" fg:w="4585"/><text x="3.4157%" y="591.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (246 samples, 0.01%)</title><rect x="3.3920%" y="565" width="0.0106%" height="15" fill="rgb(243,35,44)" fg:x="78689" fg:w="246"/><text x="3.6420%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (930 samples, 0.04%)</title><rect x="3.3634%" y="581" width="0.0401%" height="15" fill="rgb(246,89,9)" fg:x="78026" fg:w="930"/><text x="3.6134%" y="591.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (273 samples, 0.01%)</title><rect x="3.4314%" y="565" width="0.0118%" height="15" fill="rgb(233,213,13)" fg:x="79602" fg:w="273"/><text x="3.6814%" y="575.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (232 samples, 0.01%)</title><rect x="3.4665%" y="549" width="0.0100%" height="15" fill="rgb(233,141,41)" fg:x="80416" fg:w="232"/><text x="3.7165%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (826 samples, 0.04%)</title><rect x="3.4431%" y="565" width="0.0356%" height="15" fill="rgb(239,167,4)" fg:x="79875" fg:w="826"/><text x="3.6931%" y="575.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,693 samples, 0.07%)</title><rect x="3.4059%" y="581" width="0.0730%" height="15" fill="rgb(209,217,16)" fg:x="79011" fg:w="1693"/><text x="3.6559%" y="591.50"></text></g><g><title>PhaseIterGVN::transform_old (1,464 samples, 0.06%)</title><rect x="3.4809%" y="565" width="0.0631%" height="15" fill="rgb(219,88,35)" fg:x="80751" fg:w="1464"/><text x="3.7309%" y="575.50"></text></g><g><title>PhaseIterGVN::optimize (1,519 samples, 0.07%)</title><rect x="3.4790%" y="581" width="0.0655%" height="15" fill="rgb(220,193,23)" fg:x="80706" fg:w="1519"/><text x="3.7290%" y="591.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (12,547 samples, 0.54%)</title><rect x="3.0089%" y="597" width="0.5409%" height="15" fill="rgb(230,90,52)" fg:x="69802" fg:w="12547"/><text x="3.2589%" y="607.50"></text></g><g><title>IfNode::Ideal (372 samples, 0.02%)</title><rect x="3.5735%" y="565" width="0.0160%" height="15" fill="rgb(252,106,19)" fg:x="82900" fg:w="372"/><text x="3.8235%" y="575.50"></text></g><g><title>RegionNode::Ideal (404 samples, 0.02%)</title><rect x="3.6324%" y="565" width="0.0174%" height="15" fill="rgb(206,74,20)" fg:x="84266" fg:w="404"/><text x="3.8824%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (243 samples, 0.01%)</title><rect x="3.6508%" y="421" width="0.0105%" height="15" fill="rgb(230,138,44)" fg:x="84692" fg:w="243"/><text x="3.9008%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (260 samples, 0.01%)</title><rect x="3.6508%" y="437" width="0.0112%" height="15" fill="rgb(235,182,43)" fg:x="84692" fg:w="260"/><text x="3.9008%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (282 samples, 0.01%)</title><rect x="3.6508%" y="453" width="0.0122%" height="15" fill="rgb(242,16,51)" fg:x="84692" fg:w="282"/><text x="3.9008%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (300 samples, 0.01%)</title><rect x="3.6508%" y="469" width="0.0129%" height="15" fill="rgb(248,9,4)" fg:x="84692" fg:w="300"/><text x="3.9008%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (325 samples, 0.01%)</title><rect x="3.6508%" y="485" width="0.0140%" height="15" fill="rgb(210,31,22)" fg:x="84692" fg:w="325"/><text x="3.9008%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (355 samples, 0.02%)</title><rect x="3.6508%" y="501" width="0.0153%" height="15" fill="rgb(239,54,39)" fg:x="84692" fg:w="355"/><text x="3.9008%" y="511.50"></text></g><g><title>InitializeNode::can_capture_store (408 samples, 0.02%)</title><rect x="3.6508%" y="549" width="0.0176%" height="15" fill="rgb(230,99,41)" fg:x="84692" fg:w="408"/><text x="3.9008%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (408 samples, 0.02%)</title><rect x="3.6508%" y="533" width="0.0176%" height="15" fill="rgb(253,106,12)" fg:x="84692" fg:w="408"/><text x="3.9008%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (408 samples, 0.02%)</title><rect x="3.6508%" y="517" width="0.0176%" height="15" fill="rgb(213,46,41)" fg:x="84692" fg:w="408"/><text x="3.9008%" y="527.50"></text></g><g><title>StoreNode::Ideal (429 samples, 0.02%)</title><rect x="3.6508%" y="565" width="0.0185%" height="15" fill="rgb(215,133,35)" fg:x="84692" fg:w="429"/><text x="3.9008%" y="575.50"></text></g><g><title>PhaseIterGVN::transform_old (2,603 samples, 0.11%)</title><rect x="3.5594%" y="581" width="0.1122%" height="15" fill="rgb(213,28,5)" fg:x="82573" fg:w="2603"/><text x="3.8094%" y="591.50"></text></g><g><title>PhaseIterGVN::optimize (2,698 samples, 0.12%)</title><rect x="3.5559%" y="597" width="0.1163%" height="15" fill="rgb(215,77,49)" fg:x="82491" fg:w="2698"/><text x="3.8059%" y="607.50"></text></g><g><title>PhaseIterGVN::transform_old (263 samples, 0.01%)</title><rect x="3.6739%" y="565" width="0.0113%" height="15" fill="rgb(248,100,22)" fg:x="85228" fg:w="263"/><text x="3.9239%" y="575.50"></text></g><g><title>PhaseIterGVN::optimize (275 samples, 0.01%)</title><rect x="3.6734%" y="581" width="0.0119%" height="15" fill="rgb(208,67,9)" fg:x="85218" fg:w="275"/><text x="3.9234%" y="591.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (436 samples, 0.02%)</title><rect x="3.6731%" y="597" width="0.0188%" height="15" fill="rgb(219,133,21)" fg:x="85209" fg:w="436"/><text x="3.9231%" y="607.50"></text></g><g><title>Compile::Optimize (18,404 samples, 0.79%)</title><rect x="2.9075%" y="613" width="0.7933%" height="15" fill="rgb(246,46,29)" fg:x="67449" fg:w="18404"/><text x="3.1575%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (234 samples, 0.01%)</title><rect x="3.7016%" y="613" width="0.0101%" height="15" fill="rgb(246,185,52)" fg:x="85872" fg:w="234"/><text x="3.9516%" y="623.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (234 samples, 0.01%)</title><rect x="3.7016%" y="597" width="0.0101%" height="15" fill="rgb(252,136,11)" fg:x="85872" fg:w="234"/><text x="3.9516%" y="607.50"></text></g><g><title>C2Compiler::compile_method (234 samples, 0.01%)</title><rect x="3.7016%" y="581" width="0.0101%" height="15" fill="rgb(219,138,53)" fg:x="85872" fg:w="234"/><text x="3.9516%" y="591.50"></text></g><g><title>Compile::Compile (234 samples, 0.01%)</title><rect x="3.7016%" y="565" width="0.0101%" height="15" fill="rgb(211,51,23)" fg:x="85872" fg:w="234"/><text x="3.9516%" y="575.50"></text></g><g><title>Parse::do_call (505 samples, 0.02%)</title><rect x="3.7179%" y="485" width="0.0218%" height="15" fill="rgb(247,221,28)" fg:x="86250" fg:w="505"/><text x="3.9679%" y="495.50"></text></g><g><title>Parse::do_all_blocks (730 samples, 0.03%)</title><rect x="3.7160%" y="533" width="0.0315%" height="15" fill="rgb(251,222,45)" fg:x="86204" fg:w="730"/><text x="3.9660%" y="543.50"></text></g><g><title>Parse::do_one_block (730 samples, 0.03%)</title><rect x="3.7160%" y="517" width="0.0315%" height="15" fill="rgb(217,162,53)" fg:x="86204" fg:w="730"/><text x="3.9660%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (722 samples, 0.03%)</title><rect x="3.7163%" y="501" width="0.0311%" height="15" fill="rgb(229,93,14)" fg:x="86212" fg:w="722"/><text x="3.9663%" y="511.50"></text></g><g><title>ParseGenerator::generate (741 samples, 0.03%)</title><rect x="3.7160%" y="565" width="0.0319%" height="15" fill="rgb(209,67,49)" fg:x="86204" fg:w="741"/><text x="3.9660%" y="575.50"></text></g><g><title>Parse::Parse (741 samples, 0.03%)</title><rect x="3.7160%" y="549" width="0.0319%" height="15" fill="rgb(213,87,29)" fg:x="86204" fg:w="741"/><text x="3.9660%" y="559.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (872 samples, 0.04%)</title><rect x="3.7117%" y="613" width="0.0376%" height="15" fill="rgb(205,151,52)" fg:x="86106" fg:w="872"/><text x="3.9617%" y="623.50"></text></g><g><title>C2Compiler::compile_method (872 samples, 0.04%)</title><rect x="3.7117%" y="597" width="0.0376%" height="15" fill="rgb(253,215,39)" fg:x="86106" fg:w="872"/><text x="3.9617%" y="607.50"></text></g><g><title>Compile::Compile (872 samples, 0.04%)</title><rect x="3.7117%" y="581" width="0.0376%" height="15" fill="rgb(221,220,41)" fg:x="86106" fg:w="872"/><text x="3.9617%" y="591.50"></text></g><g><title>ParseGenerator::generate (243 samples, 0.01%)</title><rect x="3.7712%" y="517" width="0.0105%" height="15" fill="rgb(218,133,21)" fg:x="87485" fg:w="243"/><text x="4.0212%" y="527.50"></text></g><g><title>Parse::Parse (243 samples, 0.01%)</title><rect x="3.7712%" y="501" width="0.0105%" height="15" fill="rgb(221,193,43)" fg:x="87485" fg:w="243"/><text x="4.0212%" y="511.50"></text></g><g><title>Parse::do_all_blocks (243 samples, 0.01%)</title><rect x="3.7712%" y="485" width="0.0105%" height="15" fill="rgb(240,128,52)" fg:x="87485" fg:w="243"/><text x="4.0212%" y="495.50"></text></g><g><title>Parse::do_one_block (243 samples, 0.01%)</title><rect x="3.7712%" y="469" width="0.0105%" height="15" fill="rgb(253,114,12)" fg:x="87485" fg:w="243"/><text x="4.0212%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (243 samples, 0.01%)</title><rect x="3.7712%" y="453" width="0.0105%" height="15" fill="rgb(215,223,47)" fg:x="87485" fg:w="243"/><text x="4.0212%" y="463.50"></text></g><g><title>Parse::do_call (243 samples, 0.01%)</title><rect x="3.7712%" y="437" width="0.0105%" height="15" fill="rgb(248,225,23)" fg:x="87485" fg:w="243"/><text x="4.0212%" y="447.50"></text></g><g><title>ParseGenerator::generate (290 samples, 0.01%)</title><rect x="3.7712%" y="613" width="0.0125%" height="15" fill="rgb(250,108,0)" fg:x="87485" fg:w="290"/><text x="4.0212%" y="623.50"></text></g><g><title>Parse::Parse (290 samples, 0.01%)</title><rect x="3.7712%" y="597" width="0.0125%" height="15" fill="rgb(228,208,7)" fg:x="87485" fg:w="290"/><text x="4.0212%" y="607.50"></text></g><g><title>Parse::do_all_blocks (290 samples, 0.01%)</title><rect x="3.7712%" y="581" width="0.0125%" height="15" fill="rgb(244,45,10)" fg:x="87485" fg:w="290"/><text x="4.0212%" y="591.50"></text></g><g><title>Parse::do_one_block (290 samples, 0.01%)</title><rect x="3.7712%" y="565" width="0.0125%" height="15" fill="rgb(207,125,25)" fg:x="87485" fg:w="290"/><text x="4.0212%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (290 samples, 0.01%)</title><rect x="3.7712%" y="549" width="0.0125%" height="15" fill="rgb(210,195,18)" fg:x="87485" fg:w="290"/><text x="4.0212%" y="559.50"></text></g><g><title>Parse::do_call (290 samples, 0.01%)</title><rect x="3.7712%" y="533" width="0.0125%" height="15" fill="rgb(249,80,12)" fg:x="87485" fg:w="290"/><text x="4.0212%" y="543.50"></text></g><g><title>[unknown] (70,114 samples, 3.02%)</title><rect x="0.7780%" y="629" width="3.0224%" height="15" fill="rgb(221,65,9)" fg:x="18049" fg:w="70114"/><text x="1.0280%" y="639.50">[un..</text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (486 samples, 0.02%)</title><rect x="3.8107%" y="485" width="0.0209%" height="15" fill="rgb(235,49,36)" fg:x="88401" fg:w="486"/><text x="4.0607%" y="495.50"></text></g><g><title>C2Compiler::compile_method (754 samples, 0.03%)</title><rect x="3.8016%" y="517" width="0.0325%" height="15" fill="rgb(225,32,20)" fg:x="88190" fg:w="754"/><text x="4.0516%" y="527.50"></text></g><g><title>Compile::Compile (747 samples, 0.03%)</title><rect x="3.8019%" y="501" width="0.0322%" height="15" fill="rgb(215,141,46)" fg:x="88197" fg:w="747"/><text x="4.0519%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (913 samples, 0.04%)</title><rect x="3.8012%" y="533" width="0.0394%" height="15" fill="rgb(250,160,47)" fg:x="88181" fg:w="913"/><text x="4.0512%" y="543.50"></text></g><g><title>futex_wait_queue_me (245 samples, 0.01%)</title><rect x="3.8445%" y="341" width="0.0106%" height="15" fill="rgb(216,222,40)" fg:x="89186" fg:w="245"/><text x="4.0945%" y="351.50"></text></g><g><title>schedule (238 samples, 0.01%)</title><rect x="3.8448%" y="325" width="0.0103%" height="15" fill="rgb(234,217,39)" fg:x="89193" fg:w="238"/><text x="4.0948%" y="335.50"></text></g><g><title>__schedule (236 samples, 0.01%)</title><rect x="3.8449%" y="309" width="0.0102%" height="15" fill="rgb(207,178,40)" fg:x="89195" fg:w="236"/><text x="4.0949%" y="319.50"></text></g><g><title>do_futex (256 samples, 0.01%)</title><rect x="3.8444%" y="373" width="0.0110%" height="15" fill="rgb(221,136,13)" fg:x="89184" fg:w="256"/><text x="4.0944%" y="383.50"></text></g><g><title>futex_wait (255 samples, 0.01%)</title><rect x="3.8445%" y="357" width="0.0110%" height="15" fill="rgb(249,199,10)" fg:x="89185" fg:w="255"/><text x="4.0945%" y="367.50"></text></g><g><title>do_syscall_64 (259 samples, 0.01%)</title><rect x="3.8443%" y="405" width="0.0112%" height="15" fill="rgb(249,222,13)" fg:x="89182" fg:w="259"/><text x="4.0943%" y="415.50"></text></g><g><title>__x64_sys_futex (259 samples, 0.01%)</title><rect x="3.8443%" y="389" width="0.0112%" height="15" fill="rgb(244,185,38)" fg:x="89182" fg:w="259"/><text x="4.0943%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (266 samples, 0.01%)</title><rect x="3.8443%" y="421" width="0.0115%" height="15" fill="rgb(236,202,9)" fg:x="89181" fg:w="266"/><text x="4.0943%" y="431.50"></text></g><g><title>__pthread_cond_timedwait (285 samples, 0.01%)</title><rect x="3.8435%" y="469" width="0.0123%" height="15" fill="rgb(250,229,37)" fg:x="89163" fg:w="285"/><text x="4.0935%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (285 samples, 0.01%)</title><rect x="3.8435%" y="453" width="0.0123%" height="15" fill="rgb(206,174,23)" fg:x="89163" fg:w="285"/><text x="4.0935%" y="463.50"></text></g><g><title>futex_abstimed_wait_cancelable (277 samples, 0.01%)</title><rect x="3.8438%" y="437" width="0.0119%" height="15" fill="rgb(211,33,43)" fg:x="89171" fg:w="277"/><text x="4.0938%" y="447.50"></text></g><g><title>Monitor::IWait (331 samples, 0.01%)</title><rect x="3.8423%" y="501" width="0.0143%" height="15" fill="rgb(245,58,50)" fg:x="89135" fg:w="331"/><text x="4.0923%" y="511.50"></text></g><g><title>os::PlatformEvent::park (306 samples, 0.01%)</title><rect x="3.8434%" y="485" width="0.0132%" height="15" fill="rgb(244,68,36)" fg:x="89160" fg:w="306"/><text x="4.0934%" y="495.50"></text></g><g><title>Monitor::wait (346 samples, 0.01%)</title><rect x="3.8420%" y="517" width="0.0149%" height="15" fill="rgb(232,229,15)" fg:x="89128" fg:w="346"/><text x="4.0920%" y="527.50"></text></g><g><title>CompileQueue::get (395 samples, 0.02%)</title><rect x="3.8416%" y="533" width="0.0170%" height="15" fill="rgb(254,30,23)" fg:x="89118" fg:w="395"/><text x="4.0916%" y="543.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,341 samples, 0.06%)</title><rect x="3.8010%" y="549" width="0.0578%" height="15" fill="rgb(235,160,14)" fg:x="88177" fg:w="1341"/><text x="4.0510%" y="559.50"></text></g><g><title>Thread::call_run (1,345 samples, 0.06%)</title><rect x="3.8010%" y="581" width="0.0580%" height="15" fill="rgb(212,155,44)" fg:x="88177" fg:w="1345"/><text x="4.0510%" y="591.50"></text></g><g><title>JavaThread::thread_main_inner (1,345 samples, 0.06%)</title><rect x="3.8010%" y="565" width="0.0580%" height="15" fill="rgb(226,2,50)" fg:x="88177" fg:w="1345"/><text x="4.0510%" y="575.50"></text></g><g><title>__GI___clone (1,352 samples, 0.06%)</title><rect x="3.8007%" y="629" width="0.0583%" height="15" fill="rgb(234,177,6)" fg:x="88171" fg:w="1352"/><text x="4.0507%" y="639.50"></text></g><g><title>start_thread (1,346 samples, 0.06%)</title><rect x="3.8010%" y="613" width="0.0580%" height="15" fill="rgb(217,24,9)" fg:x="88177" fg:w="1346"/><text x="4.0510%" y="623.50"></text></g><g><title>thread_native_entry (1,346 samples, 0.06%)</title><rect x="3.8010%" y="597" width="0.0580%" height="15" fill="rgb(220,13,46)" fg:x="88177" fg:w="1346"/><text x="4.0510%" y="607.50"></text></g><g><title>C2_CompilerThre (75,638 samples, 3.26%)</title><rect x="0.6033%" y="645" width="3.2605%" height="15" fill="rgb(239,221,27)" fg:x="13995" fg:w="75638"/><text x="0.8533%" y="655.50">C2_..</text></g><g><title>Command-Accumul (232 samples, 0.01%)</title><rect x="3.8638%" y="645" width="0.0100%" height="15" fill="rgb(222,198,25)" fg:x="89633" fg:w="232"/><text x="4.1138%" y="655.50"></text></g><g><title>do_futex (250 samples, 0.01%)</title><rect x="3.9036%" y="485" width="0.0108%" height="15" fill="rgb(211,99,13)" fg:x="90558" fg:w="250"/><text x="4.1536%" y="495.50"></text></g><g><title>futex_wait (249 samples, 0.01%)</title><rect x="3.9037%" y="469" width="0.0107%" height="15" fill="rgb(232,111,31)" fg:x="90559" fg:w="249"/><text x="4.1537%" y="479.50"></text></g><g><title>do_syscall_64 (262 samples, 0.01%)</title><rect x="3.9035%" y="517" width="0.0113%" height="15" fill="rgb(245,82,37)" fg:x="90555" fg:w="262"/><text x="4.1535%" y="527.50"></text></g><g><title>__x64_sys_futex (261 samples, 0.01%)</title><rect x="3.9036%" y="501" width="0.0113%" height="15" fill="rgb(227,149,46)" fg:x="90556" fg:w="261"/><text x="4.1536%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (269 samples, 0.01%)</title><rect x="3.9034%" y="533" width="0.0116%" height="15" fill="rgb(218,36,50)" fg:x="90553" fg:w="269"/><text x="4.1534%" y="543.50"></text></g><g><title>__pthread_cond_timedwait (288 samples, 0.01%)</title><rect x="3.9027%" y="581" width="0.0124%" height="15" fill="rgb(226,80,48)" fg:x="90536" fg:w="288"/><text x="4.1527%" y="591.50"></text></g><g><title>__pthread_cond_wait_common (287 samples, 0.01%)</title><rect x="3.9027%" y="565" width="0.0124%" height="15" fill="rgb(238,224,15)" fg:x="90537" fg:w="287"/><text x="4.1527%" y="575.50"></text></g><g><title>futex_abstimed_wait_cancelable (280 samples, 0.01%)</title><rect x="3.9030%" y="549" width="0.0121%" height="15" fill="rgb(241,136,10)" fg:x="90544" fg:w="280"/><text x="4.1530%" y="559.50"></text></g><g><title>Parker::park (445 samples, 0.02%)</title><rect x="3.9016%" y="597" width="0.0192%" height="15" fill="rgb(208,32,45)" fg:x="90510" fg:w="445"/><text x="4.1516%" y="607.50"></text></g><g><title>Unsafe_Park (455 samples, 0.02%)</title><rect x="3.9013%" y="613" width="0.0196%" height="15" fill="rgb(207,135,9)" fg:x="90503" fg:w="455"/><text x="4.1513%" y="623.50"></text></g><g><title>[perf-23153.map] (1,003 samples, 0.04%)</title><rect x="3.8780%" y="629" width="0.0432%" height="15" fill="rgb(206,86,44)" fg:x="89963" fg:w="1003"/><text x="4.1280%" y="639.50"></text></g><g><title>ForkJoinPool.co (1,047 samples, 0.05%)</title><rect x="3.8775%" y="645" width="0.0451%" height="15" fill="rgb(245,177,15)" fg:x="89952" fg:w="1047"/><text x="4.1275%" y="655.50"></text></g><g><title>G1_Refine#0 (252 samples, 0.01%)</title><rect x="3.9279%" y="645" width="0.0109%" height="15" fill="rgb(206,64,50)" fg:x="91120" fg:w="252"/><text x="4.1779%" y="655.50"></text></g><g><title>__GI___clone (237 samples, 0.01%)</title><rect x="3.9285%" y="629" width="0.0102%" height="15" fill="rgb(234,36,40)" fg:x="91135" fg:w="237"/><text x="4.1785%" y="639.50"></text></g><g><title>start_thread (237 samples, 0.01%)</title><rect x="3.9285%" y="613" width="0.0102%" height="15" fill="rgb(213,64,8)" fg:x="91135" fg:w="237"/><text x="4.1785%" y="623.50"></text></g><g><title>thread_native_entry (237 samples, 0.01%)</title><rect x="3.9285%" y="597" width="0.0102%" height="15" fill="rgb(210,75,36)" fg:x="91135" fg:w="237"/><text x="4.1785%" y="607.50"></text></g><g><title>Thread::call_run (237 samples, 0.01%)</title><rect x="3.9285%" y="581" width="0.0102%" height="15" fill="rgb(229,88,21)" fg:x="91135" fg:w="237"/><text x="4.1785%" y="591.50"></text></g><g><title>ConcurrentGCThread::run (237 samples, 0.01%)</title><rect x="3.9285%" y="565" width="0.0102%" height="15" fill="rgb(252,204,47)" fg:x="91135" fg:w="237"/><text x="4.1785%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (326 samples, 0.01%)</title><rect x="3.9764%" y="501" width="0.0141%" height="15" fill="rgb(208,77,27)" fg:x="92245" fg:w="326"/><text x="4.2264%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue (526 samples, 0.02%)</title><rect x="3.9683%" y="517" width="0.0227%" height="15" fill="rgb(221,76,26)" fg:x="92058" fg:w="526"/><text x="4.2183%" y="527.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (649 samples, 0.03%)</title><rect x="3.9680%" y="533" width="0.0280%" height="15" fill="rgb(225,139,18)" fg:x="92051" fg:w="649"/><text x="4.2180%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (271 samples, 0.01%)</title><rect x="4.0103%" y="517" width="0.0117%" height="15" fill="rgb(230,137,11)" fg:x="93033" fg:w="271"/><text x="4.2603%" y="527.50"></text></g><g><title>Threads::possibly_parallel_oops_do (271 samples, 0.01%)</title><rect x="4.0103%" y="501" width="0.0117%" height="15" fill="rgb(212,28,1)" fg:x="93033" fg:w="271"/><text x="4.2603%" y="511.50"></text></g><g><title>Threads::possibly_parallel_threads_do (271 samples, 0.01%)</title><rect x="4.0103%" y="485" width="0.0117%" height="15" fill="rgb(248,164,17)" fg:x="93033" fg:w="271"/><text x="4.2603%" y="495.50"></text></g><g><title>JavaThread::oops_do (271 samples, 0.01%)</title><rect x="4.0103%" y="469" width="0.0117%" height="15" fill="rgb(222,171,42)" fg:x="93033" fg:w="271"/><text x="4.2603%" y="479.50"></text></g><g><title>G1ParTask::work (1,266 samples, 0.05%)</title><rect x="3.9680%" y="549" width="0.0546%" height="15" fill="rgb(243,84,45)" fg:x="92051" fg:w="1266"/><text x="4.2180%" y="559.50"></text></g><g><title>G1RootProcessor::evacuate_roots (284 samples, 0.01%)</title><rect x="4.0103%" y="533" width="0.0122%" height="15" fill="rgb(252,49,23)" fg:x="93033" fg:w="284"/><text x="4.2603%" y="543.50"></text></g><g><title>__GI___clone (1,507 samples, 0.06%)</title><rect x="3.9673%" y="629" width="0.0650%" height="15" fill="rgb(215,19,7)" fg:x="92035" fg:w="1507"/><text x="4.2173%" y="639.50"></text></g><g><title>start_thread (1,507 samples, 0.06%)</title><rect x="3.9673%" y="613" width="0.0650%" height="15" fill="rgb(238,81,41)" fg:x="92035" fg:w="1507"/><text x="4.2173%" y="623.50"></text></g><g><title>thread_native_entry (1,507 samples, 0.06%)</title><rect x="3.9673%" y="597" width="0.0650%" height="15" fill="rgb(210,199,37)" fg:x="92035" fg:w="1507"/><text x="4.2173%" y="607.50"></text></g><g><title>Thread::call_run (1,507 samples, 0.06%)</title><rect x="3.9673%" y="581" width="0.0650%" height="15" fill="rgb(244,192,49)" fg:x="92035" fg:w="1507"/><text x="4.2173%" y="591.50"></text></g><g><title>GangWorker::loop (1,507 samples, 0.06%)</title><rect x="3.9673%" y="565" width="0.0650%" height="15" fill="rgb(226,211,11)" fg:x="92035" fg:w="1507"/><text x="4.2173%" y="575.50"></text></g><g><title>GC_Thread#0 (1,543 samples, 0.07%)</title><rect x="3.9658%" y="645" width="0.0665%" height="15" fill="rgb(236,162,54)" fg:x="92001" fg:w="1543"/><text x="4.2158%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (249 samples, 0.01%)</title><rect x="4.0392%" y="501" width="0.0107%" height="15" fill="rgb(220,229,9)" fg:x="93702" fg:w="249"/><text x="4.2892%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue (381 samples, 0.02%)</title><rect x="4.0340%" y="517" width="0.0164%" height="15" fill="rgb(250,87,22)" fg:x="93582" fg:w="381"/><text x="4.2840%" y="527.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (502 samples, 0.02%)</title><rect x="4.0337%" y="533" width="0.0216%" height="15" fill="rgb(239,43,17)" fg:x="93575" fg:w="502"/><text x="4.2837%" y="543.50"></text></g><g><title>InterpreterOopMap::iterate_oop (254 samples, 0.01%)</title><rect x="4.0759%" y="437" width="0.0109%" height="15" fill="rgb(231,177,25)" fg:x="94554" fg:w="254"/><text x="4.3259%" y="447.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (240 samples, 0.01%)</title><rect x="4.0765%" y="421" width="0.0103%" height="15" fill="rgb(219,179,1)" fg:x="94568" fg:w="240"/><text x="4.3265%" y="431.50"></text></g><g><title>frame::oops_interpreted_do (256 samples, 0.01%)</title><rect x="4.0759%" y="453" width="0.0110%" height="15" fill="rgb(238,219,53)" fg:x="94554" fg:w="256"/><text x="4.3259%" y="463.50"></text></g><g><title>G1RootProcessor::process_java_roots (447 samples, 0.02%)</title><rect x="4.0678%" y="517" width="0.0193%" height="15" fill="rgb(232,167,36)" fg:x="94366" fg:w="447"/><text x="4.3178%" y="527.50"></text></g><g><title>Threads::possibly_parallel_oops_do (412 samples, 0.02%)</title><rect x="4.0693%" y="501" width="0.0178%" height="15" fill="rgb(244,19,51)" fg:x="94401" fg:w="412"/><text x="4.3193%" y="511.50"></text></g><g><title>Threads::possibly_parallel_threads_do (412 samples, 0.02%)</title><rect x="4.0693%" y="485" width="0.0178%" height="15" fill="rgb(224,6,22)" fg:x="94401" fg:w="412"/><text x="4.3193%" y="495.50"></text></g><g><title>JavaThread::oops_do (407 samples, 0.02%)</title><rect x="4.0695%" y="469" width="0.0175%" height="15" fill="rgb(224,145,5)" fg:x="94406" fg:w="407"/><text x="4.3195%" y="479.50"></text></g><g><title>G1ParTask::work (1,249 samples, 0.05%)</title><rect x="4.0337%" y="549" width="0.0538%" height="15" fill="rgb(234,130,49)" fg:x="93575" fg:w="1249"/><text x="4.2837%" y="559.50"></text></g><g><title>G1RootProcessor::evacuate_roots (459 samples, 0.02%)</title><rect x="4.0677%" y="533" width="0.0198%" height="15" fill="rgb(254,6,2)" fg:x="94365" fg:w="459"/><text x="4.3177%" y="543.50"></text></g><g><title>__GI___clone (1,459 samples, 0.06%)</title><rect x="4.0331%" y="629" width="0.0629%" height="15" fill="rgb(208,96,46)" fg:x="93562" fg:w="1459"/><text x="4.2831%" y="639.50"></text></g><g><title>start_thread (1,459 samples, 0.06%)</title><rect x="4.0331%" y="613" width="0.0629%" height="15" fill="rgb(239,3,39)" fg:x="93562" fg:w="1459"/><text x="4.2831%" y="623.50"></text></g><g><title>thread_native_entry (1,459 samples, 0.06%)</title><rect x="4.0331%" y="597" width="0.0629%" height="15" fill="rgb(233,210,1)" fg:x="93562" fg:w="1459"/><text x="4.2831%" y="607.50"></text></g><g><title>Thread::call_run (1,459 samples, 0.06%)</title><rect x="4.0331%" y="581" width="0.0629%" height="15" fill="rgb(244,137,37)" fg:x="93562" fg:w="1459"/><text x="4.2831%" y="591.50"></text></g><g><title>GangWorker::loop (1,459 samples, 0.06%)</title><rect x="4.0331%" y="565" width="0.0629%" height="15" fill="rgb(240,136,2)" fg:x="93562" fg:w="1459"/><text x="4.2831%" y="575.50"></text></g><g><title>GC_Thread#1 (1,481 samples, 0.06%)</title><rect x="4.0324%" y="645" width="0.0638%" height="15" fill="rgb(239,18,37)" fg:x="93544" fg:w="1481"/><text x="4.2824%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (322 samples, 0.01%)</title><rect x="4.1052%" y="501" width="0.0139%" height="15" fill="rgb(218,185,22)" fg:x="95233" fg:w="322"/><text x="4.3552%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue (474 samples, 0.02%)</title><rect x="4.0991%" y="517" width="0.0204%" height="15" fill="rgb(225,218,4)" fg:x="95092" fg:w="474"/><text x="4.3491%" y="527.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (563 samples, 0.02%)</title><rect x="4.0989%" y="533" width="0.0243%" height="15" fill="rgb(230,182,32)" fg:x="95087" fg:w="563"/><text x="4.3489%" y="543.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (281 samples, 0.01%)</title><rect x="4.1231%" y="501" width="0.0121%" height="15" fill="rgb(242,56,43)" fg:x="95650" fg:w="281"/><text x="4.3731%" y="511.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (281 samples, 0.01%)</title><rect x="4.1231%" y="485" width="0.0121%" height="15" fill="rgb(233,99,24)" fg:x="95650" fg:w="281"/><text x="4.3731%" y="495.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (281 samples, 0.01%)</title><rect x="4.1231%" y="469" width="0.0121%" height="15" fill="rgb(234,209,42)" fg:x="95650" fg:w="281"/><text x="4.3731%" y="479.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (288 samples, 0.01%)</title><rect x="4.1231%" y="533" width="0.0124%" height="15" fill="rgb(227,7,12)" fg:x="95650" fg:w="288"/><text x="4.3731%" y="543.50"></text></g><g><title>G1RemSet::update_rem_set (288 samples, 0.01%)</title><rect x="4.1231%" y="517" width="0.0124%" height="15" fill="rgb(245,203,43)" fg:x="95650" fg:w="288"/><text x="4.3731%" y="527.50"></text></g><g><title>frame::oops_interpreted_do (238 samples, 0.01%)</title><rect x="4.1449%" y="453" width="0.0103%" height="15" fill="rgb(238,205,33)" fg:x="96154" fg:w="238"/><text x="4.3949%" y="463.50"></text></g><g><title>G1RootProcessor::process_java_roots (294 samples, 0.01%)</title><rect x="4.1425%" y="517" width="0.0127%" height="15" fill="rgb(231,56,7)" fg:x="96100" fg:w="294"/><text x="4.3925%" y="527.50"></text></g><g><title>Threads::possibly_parallel_oops_do (288 samples, 0.01%)</title><rect x="4.1428%" y="501" width="0.0124%" height="15" fill="rgb(244,186,29)" fg:x="96106" fg:w="288"/><text x="4.3928%" y="511.50"></text></g><g><title>Threads::possibly_parallel_threads_do (288 samples, 0.01%)</title><rect x="4.1428%" y="485" width="0.0124%" height="15" fill="rgb(234,111,31)" fg:x="96106" fg:w="288"/><text x="4.3928%" y="495.50"></text></g><g><title>JavaThread::oops_do (288 samples, 0.01%)</title><rect x="4.1428%" y="469" width="0.0124%" height="15" fill="rgb(241,149,10)" fg:x="96106" fg:w="288"/><text x="4.3928%" y="479.50"></text></g><g><title>G1ParTask::work (1,336 samples, 0.06%)</title><rect x="4.0989%" y="549" width="0.0576%" height="15" fill="rgb(249,206,44)" fg:x="95087" fg:w="1336"/><text x="4.3489%" y="559.50"></text></g><g><title>G1RootProcessor::evacuate_roots (329 samples, 0.01%)</title><rect x="4.1423%" y="533" width="0.0142%" height="15" fill="rgb(251,153,30)" fg:x="96094" fg:w="329"/><text x="4.3923%" y="543.50"></text></g><g><title>__GI___clone (1,562 samples, 0.07%)</title><rect x="4.0980%" y="629" width="0.0673%" height="15" fill="rgb(239,152,38)" fg:x="95066" fg:w="1562"/><text x="4.3480%" y="639.50"></text></g><g><title>start_thread (1,562 samples, 0.07%)</title><rect x="4.0980%" y="613" width="0.0673%" height="15" fill="rgb(249,139,47)" fg:x="95066" fg:w="1562"/><text x="4.3480%" y="623.50"></text></g><g><title>thread_native_entry (1,562 samples, 0.07%)</title><rect x="4.0980%" y="597" width="0.0673%" height="15" fill="rgb(244,64,35)" fg:x="95066" fg:w="1562"/><text x="4.3480%" y="607.50"></text></g><g><title>Thread::call_run (1,562 samples, 0.07%)</title><rect x="4.0980%" y="581" width="0.0673%" height="15" fill="rgb(216,46,15)" fg:x="95066" fg:w="1562"/><text x="4.3480%" y="591.50"></text></g><g><title>GangWorker::loop (1,562 samples, 0.07%)</title><rect x="4.0980%" y="565" width="0.0673%" height="15" fill="rgb(250,74,19)" fg:x="95066" fg:w="1562"/><text x="4.3480%" y="575.50"></text></g><g><title>GC_Thread#2 (1,606 samples, 0.07%)</title><rect x="4.0962%" y="645" width="0.0692%" height="15" fill="rgb(249,42,33)" fg:x="95025" fg:w="1606"/><text x="4.3462%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (308 samples, 0.01%)</title><rect x="4.1742%" y="501" width="0.0133%" height="15" fill="rgb(242,149,17)" fg:x="96835" fg:w="308"/><text x="4.4242%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue (487 samples, 0.02%)</title><rect x="4.1671%" y="517" width="0.0210%" height="15" fill="rgb(244,29,21)" fg:x="96671" fg:w="487"/><text x="4.4171%" y="527.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (585 samples, 0.03%)</title><rect x="4.1667%" y="533" width="0.0252%" height="15" fill="rgb(220,130,37)" fg:x="96661" fg:w="585"/><text x="4.4167%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (325 samples, 0.01%)</title><rect x="4.2058%" y="517" width="0.0140%" height="15" fill="rgb(211,67,2)" fg:x="97567" fg:w="325"/><text x="4.4558%" y="527.50"></text></g><g><title>Threads::possibly_parallel_oops_do (275 samples, 0.01%)</title><rect x="4.2079%" y="501" width="0.0119%" height="15" fill="rgb(235,68,52)" fg:x="97617" fg:w="275"/><text x="4.4579%" y="511.50"></text></g><g><title>Threads::possibly_parallel_threads_do (275 samples, 0.01%)</title><rect x="4.2079%" y="485" width="0.0119%" height="15" fill="rgb(246,142,3)" fg:x="97617" fg:w="275"/><text x="4.4579%" y="495.50"></text></g><g><title>JavaThread::oops_do (275 samples, 0.01%)</title><rect x="4.2079%" y="469" width="0.0119%" height="15" fill="rgb(241,25,7)" fg:x="97617" fg:w="275"/><text x="4.4579%" y="479.50"></text></g><g><title>G1ParTask::work (1,238 samples, 0.05%)</title><rect x="4.1667%" y="549" width="0.0534%" height="15" fill="rgb(242,119,39)" fg:x="96661" fg:w="1238"/><text x="4.4167%" y="559.50"></text></g><g><title>G1RootProcessor::evacuate_roots (333 samples, 0.01%)</title><rect x="4.2057%" y="533" width="0.0144%" height="15" fill="rgb(241,98,45)" fg:x="97566" fg:w="333"/><text x="4.4557%" y="543.50"></text></g><g><title>__GI___clone (1,451 samples, 0.06%)</title><rect x="4.1663%" y="629" width="0.0625%" height="15" fill="rgb(254,28,30)" fg:x="96652" fg:w="1451"/><text x="4.4163%" y="639.50"></text></g><g><title>start_thread (1,451 samples, 0.06%)</title><rect x="4.1663%" y="613" width="0.0625%" height="15" fill="rgb(241,142,54)" fg:x="96652" fg:w="1451"/><text x="4.4163%" y="623.50"></text></g><g><title>thread_native_entry (1,451 samples, 0.06%)</title><rect x="4.1663%" y="597" width="0.0625%" height="15" fill="rgb(222,85,15)" fg:x="96652" fg:w="1451"/><text x="4.4163%" y="607.50"></text></g><g><title>Thread::call_run (1,451 samples, 0.06%)</title><rect x="4.1663%" y="581" width="0.0625%" height="15" fill="rgb(210,85,47)" fg:x="96652" fg:w="1451"/><text x="4.4163%" y="591.50"></text></g><g><title>GangWorker::loop (1,451 samples, 0.06%)</title><rect x="4.1663%" y="565" width="0.0625%" height="15" fill="rgb(224,206,25)" fg:x="96652" fg:w="1451"/><text x="4.4163%" y="575.50"></text></g><g><title>GC_Thread#3 (1,473 samples, 0.06%)</title><rect x="4.1654%" y="645" width="0.0635%" height="15" fill="rgb(243,201,19)" fg:x="96631" fg:w="1473"/><text x="4.4154%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (252 samples, 0.01%)</title><rect x="4.2363%" y="501" width="0.0109%" height="15" fill="rgb(236,59,4)" fg:x="98276" fg:w="252"/><text x="4.4863%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue (403 samples, 0.02%)</title><rect x="4.2312%" y="517" width="0.0174%" height="15" fill="rgb(254,179,45)" fg:x="98157" fg:w="403"/><text x="4.4812%" y="527.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (536 samples, 0.02%)</title><rect x="4.2309%" y="533" width="0.0231%" height="15" fill="rgb(226,14,10)" fg:x="98150" fg:w="536"/><text x="4.4809%" y="543.50"></text></g><g><title>InterpreterOopMap::iterate_oop (288 samples, 0.01%)</title><rect x="4.2723%" y="437" width="0.0124%" height="15" fill="rgb(244,27,41)" fg:x="99111" fg:w="288"/><text x="4.5223%" y="447.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (281 samples, 0.01%)</title><rect x="4.2726%" y="421" width="0.0121%" height="15" fill="rgb(235,35,32)" fg:x="99118" fg:w="281"/><text x="4.5226%" y="431.50"></text></g><g><title>frame::oops_interpreted_do (296 samples, 0.01%)</title><rect x="4.2722%" y="453" width="0.0128%" height="15" fill="rgb(218,68,31)" fg:x="99109" fg:w="296"/><text x="4.5222%" y="463.50"></text></g><g><title>G1RootProcessor::process_java_roots (449 samples, 0.02%)</title><rect x="4.2657%" y="517" width="0.0194%" height="15" fill="rgb(207,120,37)" fg:x="98958" fg:w="449"/><text x="4.5157%" y="527.50"></text></g><g><title>Threads::possibly_parallel_oops_do (372 samples, 0.02%)</title><rect x="4.2690%" y="501" width="0.0160%" height="15" fill="rgb(227,98,0)" fg:x="99035" fg:w="372"/><text x="4.5190%" y="511.50"></text></g><g><title>Threads::possibly_parallel_threads_do (372 samples, 0.02%)</title><rect x="4.2690%" y="485" width="0.0160%" height="15" fill="rgb(207,7,3)" fg:x="99035" fg:w="372"/><text x="4.5190%" y="495.50"></text></g><g><title>JavaThread::oops_do (372 samples, 0.02%)</title><rect x="4.2690%" y="469" width="0.0160%" height="15" fill="rgb(206,98,19)" fg:x="99035" fg:w="372"/><text x="4.5190%" y="479.50"></text></g><g><title>G1ParTask::work (1,283 samples, 0.06%)</title><rect x="4.2309%" y="549" width="0.0553%" height="15" fill="rgb(217,5,26)" fg:x="98150" fg:w="1283"/><text x="4.4809%" y="559.50"></text></g><g><title>G1RootProcessor::evacuate_roots (478 samples, 0.02%)</title><rect x="4.2656%" y="533" width="0.0206%" height="15" fill="rgb(235,190,38)" fg:x="98955" fg:w="478"/><text x="4.5156%" y="543.50"></text></g><g><title>__GI___clone (1,523 samples, 0.07%)</title><rect x="4.2304%" y="629" width="0.0657%" height="15" fill="rgb(247,86,24)" fg:x="98138" fg:w="1523"/><text x="4.4804%" y="639.50"></text></g><g><title>start_thread (1,523 samples, 0.07%)</title><rect x="4.2304%" y="613" width="0.0657%" height="15" fill="rgb(205,101,16)" fg:x="98138" fg:w="1523"/><text x="4.4804%" y="623.50"></text></g><g><title>thread_native_entry (1,523 samples, 0.07%)</title><rect x="4.2304%" y="597" width="0.0657%" height="15" fill="rgb(246,168,33)" fg:x="98138" fg:w="1523"/><text x="4.4804%" y="607.50"></text></g><g><title>Thread::call_run (1,523 samples, 0.07%)</title><rect x="4.2304%" y="581" width="0.0657%" height="15" fill="rgb(231,114,1)" fg:x="98138" fg:w="1523"/><text x="4.4804%" y="591.50"></text></g><g><title>GangWorker::loop (1,523 samples, 0.07%)</title><rect x="4.2304%" y="565" width="0.0657%" height="15" fill="rgb(207,184,53)" fg:x="98138" fg:w="1523"/><text x="4.4804%" y="575.50"></text></g><g><title>GC_Thread#4 (1,558 samples, 0.07%)</title><rect x="4.2289%" y="645" width="0.0672%" height="15" fill="rgb(224,95,51)" fg:x="98104" fg:w="1558"/><text x="4.4789%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (299 samples, 0.01%)</title><rect x="4.3050%" y="501" width="0.0129%" height="15" fill="rgb(212,188,45)" fg:x="99868" fg:w="299"/><text x="4.5550%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue (454 samples, 0.02%)</title><rect x="4.2984%" y="517" width="0.0196%" height="15" fill="rgb(223,154,38)" fg:x="99717" fg:w="454"/><text x="4.5484%" y="527.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (574 samples, 0.02%)</title><rect x="4.2980%" y="533" width="0.0247%" height="15" fill="rgb(251,22,52)" fg:x="99706" fg:w="574"/><text x="4.5480%" y="543.50"></text></g><g><title>G1RemSet::scan_rem_set (237 samples, 0.01%)</title><rect x="4.3302%" y="533" width="0.0102%" height="15" fill="rgb(229,209,22)" fg:x="100453" fg:w="237"/><text x="4.5802%" y="543.50"></text></g><g><title>G1CollectionSet::iterate_from (237 samples, 0.01%)</title><rect x="4.3302%" y="517" width="0.0102%" height="15" fill="rgb(234,138,34)" fg:x="100453" fg:w="237"/><text x="4.5802%" y="527.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (237 samples, 0.01%)</title><rect x="4.3302%" y="501" width="0.0102%" height="15" fill="rgb(212,95,11)" fg:x="100453" fg:w="237"/><text x="4.5802%" y="511.50"></text></g><g><title>G1RootProcessor::process_java_roots (265 samples, 0.01%)</title><rect x="4.3409%" y="517" width="0.0114%" height="15" fill="rgb(240,179,47)" fg:x="100701" fg:w="265"/><text x="4.5909%" y="527.50"></text></g><g><title>G1ParTask::work (1,271 samples, 0.05%)</title><rect x="4.2980%" y="549" width="0.0548%" height="15" fill="rgb(240,163,11)" fg:x="99706" fg:w="1271"/><text x="4.5480%" y="559.50"></text></g><g><title>G1RootProcessor::evacuate_roots (287 samples, 0.01%)</title><rect x="4.3404%" y="533" width="0.0124%" height="15" fill="rgb(236,37,12)" fg:x="100690" fg:w="287"/><text x="4.5904%" y="543.50"></text></g><g><title>__GI___clone (1,500 samples, 0.06%)</title><rect x="4.2971%" y="629" width="0.0647%" height="15" fill="rgb(232,164,16)" fg:x="99686" fg:w="1500"/><text x="4.5471%" y="639.50"></text></g><g><title>start_thread (1,500 samples, 0.06%)</title><rect x="4.2971%" y="613" width="0.0647%" height="15" fill="rgb(244,205,15)" fg:x="99686" fg:w="1500"/><text x="4.5471%" y="623.50"></text></g><g><title>thread_native_entry (1,500 samples, 0.06%)</title><rect x="4.2971%" y="597" width="0.0647%" height="15" fill="rgb(223,117,47)" fg:x="99686" fg:w="1500"/><text x="4.5471%" y="607.50"></text></g><g><title>Thread::call_run (1,500 samples, 0.06%)</title><rect x="4.2971%" y="581" width="0.0647%" height="15" fill="rgb(244,107,35)" fg:x="99686" fg:w="1500"/><text x="4.5471%" y="591.50"></text></g><g><title>GangWorker::loop (1,500 samples, 0.06%)</title><rect x="4.2971%" y="565" width="0.0647%" height="15" fill="rgb(205,140,8)" fg:x="99686" fg:w="1500"/><text x="4.5471%" y="575.50"></text></g><g><title>GC_Thread#5 (1,529 samples, 0.07%)</title><rect x="4.2961%" y="645" width="0.0659%" height="15" fill="rgb(228,84,46)" fg:x="99662" fg:w="1529"/><text x="4.5461%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (302 samples, 0.01%)</title><rect x="4.3704%" y="501" width="0.0130%" height="15" fill="rgb(254,188,9)" fg:x="101385" fg:w="302"/><text x="4.6204%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue (480 samples, 0.02%)</title><rect x="4.3636%" y="517" width="0.0207%" height="15" fill="rgb(206,112,54)" fg:x="101229" fg:w="480"/><text x="4.6136%" y="527.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (595 samples, 0.03%)</title><rect x="4.3632%" y="533" width="0.0256%" height="15" fill="rgb(216,84,49)" fg:x="101220" fg:w="595"/><text x="4.6132%" y="543.50"></text></g><g><title>G1RemSet::scan_rem_set (261 samples, 0.01%)</title><rect x="4.3937%" y="533" width="0.0113%" height="15" fill="rgb(214,194,35)" fg:x="101927" fg:w="261"/><text x="4.6437%" y="543.50"></text></g><g><title>G1CollectionSet::iterate_from (261 samples, 0.01%)</title><rect x="4.3937%" y="517" width="0.0113%" height="15" fill="rgb(249,28,3)" fg:x="101927" fg:w="261"/><text x="4.6437%" y="527.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (261 samples, 0.01%)</title><rect x="4.3937%" y="501" width="0.0113%" height="15" fill="rgb(222,56,52)" fg:x="101927" fg:w="261"/><text x="4.6437%" y="511.50"></text></g><g><title>G1ParTask::work (1,181 samples, 0.05%)</title><rect x="4.3632%" y="549" width="0.0509%" height="15" fill="rgb(245,217,50)" fg:x="101220" fg:w="1181"/><text x="4.6132%" y="559.50"></text></g><g><title>__GI___clone (1,507 samples, 0.06%)</title><rect x="4.3632%" y="629" width="0.0650%" height="15" fill="rgb(213,201,24)" fg:x="101218" fg:w="1507"/><text x="4.6132%" y="639.50"></text></g><g><title>start_thread (1,507 samples, 0.06%)</title><rect x="4.3632%" y="613" width="0.0650%" height="15" fill="rgb(248,116,28)" fg:x="101218" fg:w="1507"/><text x="4.6132%" y="623.50"></text></g><g><title>thread_native_entry (1,507 samples, 0.06%)</title><rect x="4.3632%" y="597" width="0.0650%" height="15" fill="rgb(219,72,43)" fg:x="101218" fg:w="1507"/><text x="4.6132%" y="607.50"></text></g><g><title>Thread::call_run (1,507 samples, 0.06%)</title><rect x="4.3632%" y="581" width="0.0650%" height="15" fill="rgb(209,138,14)" fg:x="101218" fg:w="1507"/><text x="4.6132%" y="591.50"></text></g><g><title>GangWorker::loop (1,507 samples, 0.06%)</title><rect x="4.3632%" y="565" width="0.0650%" height="15" fill="rgb(222,18,33)" fg:x="101218" fg:w="1507"/><text x="4.6132%" y="575.50"></text></g><g><title>GC_Thread#6 (1,536 samples, 0.07%)</title><rect x="4.3620%" y="645" width="0.0662%" height="15" fill="rgb(213,199,7)" fg:x="101191" fg:w="1536"/><text x="4.6120%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (323 samples, 0.01%)</title><rect x="4.4387%" y="501" width="0.0139%" height="15" fill="rgb(250,110,10)" fg:x="102970" fg:w="323"/><text x="4.6887%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue (519 samples, 0.02%)</title><rect x="4.4306%" y="517" width="0.0224%" height="15" fill="rgb(248,123,6)" fg:x="102782" fg:w="519"/><text x="4.6806%" y="527.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (622 samples, 0.03%)</title><rect x="4.4303%" y="533" width="0.0268%" height="15" fill="rgb(206,91,31)" fg:x="102776" fg:w="622"/><text x="4.6803%" y="543.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (245 samples, 0.01%)</title><rect x="4.4757%" y="421" width="0.0106%" height="15" fill="rgb(211,154,13)" fg:x="103828" fg:w="245"/><text x="4.7257%" y="431.50"></text></g><g><title>InterpreterOopMap::iterate_oop (262 samples, 0.01%)</title><rect x="4.4750%" y="437" width="0.0113%" height="15" fill="rgb(225,148,7)" fg:x="103812" fg:w="262"/><text x="4.7250%" y="447.50"></text></g><g><title>frame::oops_interpreted_do (274 samples, 0.01%)</title><rect x="4.4749%" y="453" width="0.0118%" height="15" fill="rgb(220,160,43)" fg:x="103811" fg:w="274"/><text x="4.7249%" y="463.50"></text></g><g><title>JavaThread::oops_do (370 samples, 0.02%)</title><rect x="4.4709%" y="469" width="0.0159%" height="15" fill="rgb(213,52,39)" fg:x="103717" fg:w="370"/><text x="4.7209%" y="479.50"></text></g><g><title>G1RootProcessor::process_java_roots (416 samples, 0.02%)</title><rect x="4.4689%" y="517" width="0.0179%" height="15" fill="rgb(243,137,7)" fg:x="103672" fg:w="416"/><text x="4.7189%" y="527.50"></text></g><g><title>Threads::possibly_parallel_oops_do (371 samples, 0.02%)</title><rect x="4.4709%" y="501" width="0.0160%" height="15" fill="rgb(230,79,13)" fg:x="103717" fg:w="371"/><text x="4.7209%" y="511.50"></text></g><g><title>Threads::possibly_parallel_threads_do (371 samples, 0.02%)</title><rect x="4.4709%" y="485" width="0.0160%" height="15" fill="rgb(247,105,23)" fg:x="103717" fg:w="371"/><text x="4.7209%" y="495.50"></text></g><g><title>G1ParTask::work (1,316 samples, 0.06%)</title><rect x="4.4303%" y="549" width="0.0567%" height="15" fill="rgb(223,179,41)" fg:x="102776" fg:w="1316"/><text x="4.6803%" y="559.50"></text></g><g><title>G1RootProcessor::evacuate_roots (420 samples, 0.02%)</title><rect x="4.4689%" y="533" width="0.0181%" height="15" fill="rgb(218,9,34)" fg:x="103672" fg:w="420"/><text x="4.7189%" y="543.50"></text></g><g><title>__GI___clone (1,559 samples, 0.07%)</title><rect x="4.4294%" y="629" width="0.0672%" height="15" fill="rgb(222,106,8)" fg:x="102755" fg:w="1559"/><text x="4.6794%" y="639.50"></text></g><g><title>start_thread (1,559 samples, 0.07%)</title><rect x="4.4294%" y="613" width="0.0672%" height="15" fill="rgb(211,220,0)" fg:x="102755" fg:w="1559"/><text x="4.6794%" y="623.50"></text></g><g><title>thread_native_entry (1,559 samples, 0.07%)</title><rect x="4.4294%" y="597" width="0.0672%" height="15" fill="rgb(229,52,16)" fg:x="102755" fg:w="1559"/><text x="4.6794%" y="607.50"></text></g><g><title>Thread::call_run (1,559 samples, 0.07%)</title><rect x="4.4294%" y="581" width="0.0672%" height="15" fill="rgb(212,155,18)" fg:x="102755" fg:w="1559"/><text x="4.6794%" y="591.50"></text></g><g><title>GangWorker::loop (1,559 samples, 0.07%)</title><rect x="4.4294%" y="565" width="0.0672%" height="15" fill="rgb(242,21,14)" fg:x="102755" fg:w="1559"/><text x="4.6794%" y="575.50"></text></g><g><title>GC_Thread#7 (1,589 samples, 0.07%)</title><rect x="4.4282%" y="645" width="0.0685%" height="15" fill="rgb(222,19,48)" fg:x="102727" fg:w="1589"/><text x="4.6782%" y="655.50"></text></g><g><title>finish_task_switch (233 samples, 0.01%)</title><rect x="4.5154%" y="309" width="0.0100%" height="15" fill="rgb(232,45,27)" fg:x="104749" fg:w="233"/><text x="4.7654%" y="319.50"></text></g><g><title>futex_wait_queue_me (340 samples, 0.01%)</title><rect x="4.5123%" y="357" width="0.0147%" height="15" fill="rgb(249,103,42)" fg:x="104677" fg:w="340"/><text x="4.7623%" y="367.50"></text></g><g><title>schedule (313 samples, 0.01%)</title><rect x="4.5134%" y="341" width="0.0135%" height="15" fill="rgb(246,81,33)" fg:x="104704" fg:w="313"/><text x="4.7634%" y="351.50"></text></g><g><title>__schedule (307 samples, 0.01%)</title><rect x="4.5137%" y="325" width="0.0132%" height="15" fill="rgb(252,33,42)" fg:x="104710" fg:w="307"/><text x="4.7637%" y="335.50"></text></g><g><title>do_futex (372 samples, 0.02%)</title><rect x="4.5120%" y="389" width="0.0160%" height="15" fill="rgb(209,212,41)" fg:x="104670" fg:w="372"/><text x="4.7620%" y="399.50"></text></g><g><title>futex_wait (371 samples, 0.02%)</title><rect x="4.5120%" y="373" width="0.0160%" height="15" fill="rgb(207,154,6)" fg:x="104671" fg:w="371"/><text x="4.7620%" y="383.50"></text></g><g><title>do_syscall_64 (384 samples, 0.02%)</title><rect x="4.5117%" y="421" width="0.0166%" height="15" fill="rgb(223,64,47)" fg:x="104665" fg:w="384"/><text x="4.7617%" y="431.50"></text></g><g><title>__x64_sys_futex (382 samples, 0.02%)</title><rect x="4.5118%" y="405" width="0.0165%" height="15" fill="rgb(211,161,38)" fg:x="104667" fg:w="382"/><text x="4.7618%" y="415.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (399 samples, 0.02%)</title><rect x="4.5117%" y="437" width="0.0172%" height="15" fill="rgb(219,138,40)" fg:x="104664" fg:w="399"/><text x="4.7617%" y="447.50"></text></g><g><title>__pthread_cond_timedwait (439 samples, 0.02%)</title><rect x="4.5101%" y="485" width="0.0189%" height="15" fill="rgb(241,228,46)" fg:x="104628" fg:w="439"/><text x="4.7601%" y="495.50"></text></g><g><title>__pthread_cond_wait_common (439 samples, 0.02%)</title><rect x="4.5101%" y="469" width="0.0189%" height="15" fill="rgb(223,209,38)" fg:x="104628" fg:w="439"/><text x="4.7601%" y="479.50"></text></g><g><title>futex_abstimed_wait_cancelable (425 samples, 0.02%)</title><rect x="4.5107%" y="453" width="0.0183%" height="15" fill="rgb(236,164,45)" fg:x="104642" fg:w="425"/><text x="4.7607%" y="463.50"></text></g><g><title>Monitor::IWait (493 samples, 0.02%)</title><rect x="4.5092%" y="517" width="0.0213%" height="15" fill="rgb(231,15,5)" fg:x="104606" fg:w="493"/><text x="4.7592%" y="527.50"></text></g><g><title>os::PlatformEvent::park (478 samples, 0.02%)</title><rect x="4.5098%" y="501" width="0.0206%" height="15" fill="rgb(252,35,15)" fg:x="104621" fg:w="478"/><text x="4.7598%" y="511.50"></text></g><g><title>Monitor::wait (496 samples, 0.02%)</title><rect x="4.5092%" y="533" width="0.0214%" height="15" fill="rgb(248,181,18)" fg:x="104605" fg:w="496"/><text x="4.7592%" y="543.50"></text></g><g><title>__GI___clone (723 samples, 0.03%)</title><rect x="4.5081%" y="629" width="0.0312%" height="15" fill="rgb(233,39,42)" fg:x="104580" fg:w="723"/><text x="4.7581%" y="639.50"></text></g><g><title>start_thread (723 samples, 0.03%)</title><rect x="4.5081%" y="613" width="0.0312%" height="15" fill="rgb(238,110,33)" fg:x="104580" fg:w="723"/><text x="4.7581%" y="623.50"></text></g><g><title>thread_native_entry (723 samples, 0.03%)</title><rect x="4.5081%" y="597" width="0.0312%" height="15" fill="rgb(233,195,10)" fg:x="104580" fg:w="723"/><text x="4.7581%" y="607.50"></text></g><g><title>Thread::call_run (723 samples, 0.03%)</title><rect x="4.5081%" y="581" width="0.0312%" height="15" fill="rgb(254,105,3)" fg:x="104580" fg:w="723"/><text x="4.7581%" y="591.50"></text></g><g><title>JavaThread::thread_main_inner (723 samples, 0.03%)</title><rect x="4.5081%" y="565" width="0.0312%" height="15" fill="rgb(221,225,9)" fg:x="104580" fg:w="723"/><text x="4.7581%" y="575.50"></text></g><g><title>NMethodSweeper::sweeper_loop (723 samples, 0.03%)</title><rect x="4.5081%" y="549" width="0.0312%" height="15" fill="rgb(224,227,45)" fg:x="104580" fg:w="723"/><text x="4.7581%" y="559.50"></text></g><g><title>Sweeper_thread (757 samples, 0.03%)</title><rect x="4.5069%" y="645" width="0.0326%" height="15" fill="rgb(229,198,43)" fg:x="104553" fg:w="757"/><text x="4.7569%" y="655.50"></text></g><g><title>[perf-23153.map] (906 samples, 0.04%)</title><rect x="4.5421%" y="629" width="0.0391%" height="15" fill="rgb(206,209,35)" fg:x="105370" fg:w="906"/><text x="4.7921%" y="639.50"></text></g><g><title>Thread-0 (1,014 samples, 0.04%)</title><rect x="4.5395%" y="645" width="0.0437%" height="15" fill="rgb(245,195,53)" fg:x="105310" fg:w="1014"/><text x="4.7895%" y="655.50"></text></g><g><title>Monitor::wait (257 samples, 0.01%)</title><rect x="4.5872%" y="533" width="0.0111%" height="15" fill="rgb(240,92,26)" fg:x="106415" fg:w="257"/><text x="4.8372%" y="543.50"></text></g><g><title>Monitor::IWait (257 samples, 0.01%)</title><rect x="4.5872%" y="517" width="0.0111%" height="15" fill="rgb(207,40,23)" fg:x="106415" fg:w="257"/><text x="4.8372%" y="527.50"></text></g><g><title>os::PlatformEvent::park (250 samples, 0.01%)</title><rect x="4.5875%" y="501" width="0.0108%" height="15" fill="rgb(223,111,35)" fg:x="106422" fg:w="250"/><text x="4.8375%" y="511.50"></text></g><g><title>__GI___clone (339 samples, 0.01%)</title><rect x="4.5839%" y="629" width="0.0146%" height="15" fill="rgb(229,147,28)" fg:x="106340" fg:w="339"/><text x="4.8339%" y="639.50"></text></g><g><title>start_thread (339 samples, 0.01%)</title><rect x="4.5839%" y="613" width="0.0146%" height="15" fill="rgb(211,29,28)" fg:x="106340" fg:w="339"/><text x="4.8339%" y="623.50"></text></g><g><title>thread_native_entry (339 samples, 0.01%)</title><rect x="4.5839%" y="597" width="0.0146%" height="15" fill="rgb(228,72,33)" fg:x="106340" fg:w="339"/><text x="4.8339%" y="607.50"></text></g><g><title>Thread::call_run (339 samples, 0.01%)</title><rect x="4.5839%" y="581" width="0.0146%" height="15" fill="rgb(205,214,31)" fg:x="106340" fg:w="339"/><text x="4.8339%" y="591.50"></text></g><g><title>WatcherThread::run (339 samples, 0.01%)</title><rect x="4.5839%" y="565" width="0.0146%" height="15" fill="rgb(224,111,15)" fg:x="106340" fg:w="339"/><text x="4.8339%" y="575.50"></text></g><g><title>WatcherThread::sleep (266 samples, 0.01%)</title><rect x="4.5871%" y="549" width="0.0115%" height="15" fill="rgb(253,21,26)" fg:x="106413" fg:w="266"/><text x="4.8371%" y="559.50"></text></g><g><title>VM_Periodic_Tas (361 samples, 0.02%)</title><rect x="4.5833%" y="645" width="0.0156%" height="15" fill="rgb(245,139,43)" fg:x="106324" fg:w="361"/><text x="4.8333%" y="655.50"></text></g><g><title>SafepointSynchronize::begin (375 samples, 0.02%)</title><rect x="4.6117%" y="533" width="0.0162%" height="15" fill="rgb(252,170,7)" fg:x="106984" fg:w="375"/><text x="4.8617%" y="543.50"></text></g><g><title>Thread::call_run (662 samples, 0.03%)</title><rect x="4.6061%" y="581" width="0.0285%" height="15" fill="rgb(231,118,14)" fg:x="106854" fg:w="662"/><text x="4.8561%" y="591.50"></text></g><g><title>VMThread::run (662 samples, 0.03%)</title><rect x="4.6061%" y="565" width="0.0285%" height="15" fill="rgb(238,83,0)" fg:x="106854" fg:w="662"/><text x="4.8561%" y="575.50"></text></g><g><title>VMThread::loop (662 samples, 0.03%)</title><rect x="4.6061%" y="549" width="0.0285%" height="15" fill="rgb(221,39,39)" fg:x="106854" fg:w="662"/><text x="4.8561%" y="559.50"></text></g><g><title>__GI___clone (704 samples, 0.03%)</title><rect x="4.6045%" y="629" width="0.0303%" height="15" fill="rgb(222,119,46)" fg:x="106818" fg:w="704"/><text x="4.8545%" y="639.50"></text></g><g><title>start_thread (668 samples, 0.03%)</title><rect x="4.6061%" y="613" width="0.0288%" height="15" fill="rgb(222,165,49)" fg:x="106854" fg:w="668"/><text x="4.8561%" y="623.50"></text></g><g><title>thread_native_entry (668 samples, 0.03%)</title><rect x="4.6061%" y="597" width="0.0288%" height="15" fill="rgb(219,113,52)" fg:x="106854" fg:w="668"/><text x="4.8561%" y="607.50"></text></g><g><title>VM_Thread (847 samples, 0.04%)</title><rect x="4.5988%" y="645" width="0.0365%" height="15" fill="rgb(214,7,15)" fg:x="106685" fg:w="847"/><text x="4.8488%" y="655.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (331 samples, 0.01%)</title><rect x="4.6361%" y="629" width="0.0143%" height="15" fill="rgb(235,32,4)" fg:x="107549" fg:w="331"/><text x="4.8861%" y="639.50"></text></g><g><title>bazel (384 samples, 0.02%)</title><rect x="4.6360%" y="645" width="0.0166%" height="15" fill="rgb(238,90,54)" fg:x="107548" fg:w="384"/><text x="4.8860%" y="655.50"></text></g><g><title>_dl_start (232 samples, 0.01%)</title><rect x="4.6580%" y="613" width="0.0100%" height="15" fill="rgb(213,208,19)" fg:x="108057" fg:w="232"/><text x="4.9080%" y="623.50"></text></g><g><title>_dl_start_final (232 samples, 0.01%)</title><rect x="4.6580%" y="597" width="0.0100%" height="15" fill="rgb(233,156,4)" fg:x="108057" fg:w="232"/><text x="4.9080%" y="607.50"></text></g><g><title>_dl_sysdep_start (232 samples, 0.01%)</title><rect x="4.6580%" y="581" width="0.0100%" height="15" fill="rgb(207,194,5)" fg:x="108057" fg:w="232"/><text x="4.9080%" y="591.50"></text></g><g><title>_start (308 samples, 0.01%)</title><rect x="4.6547%" y="629" width="0.0133%" height="15" fill="rgb(206,111,30)" fg:x="107982" fg:w="308"/><text x="4.9047%" y="639.50"></text></g><g><title>build-runfiles (415 samples, 0.02%)</title><rect x="4.6526%" y="645" width="0.0179%" height="15" fill="rgb(243,70,54)" fg:x="107933" fg:w="415"/><text x="4.9026%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (265 samples, 0.01%)</title><rect x="4.7055%" y="53" width="0.0114%" height="15" fill="rgb(242,28,8)" fg:x="109159" fg:w="265"/><text x="4.9555%" y="63.50"></text></g><g><title>__btrfs_read_lock_root_node (268 samples, 0.01%)</title><rect x="4.7054%" y="69" width="0.0116%" height="15" fill="rgb(219,106,18)" fg:x="109157" fg:w="268"/><text x="4.9554%" y="79.50"></text></g><g><title>btrfs_search_slot (311 samples, 0.01%)</title><rect x="4.7051%" y="85" width="0.0134%" height="15" fill="rgb(244,222,10)" fg:x="109151" fg:w="311"/><text x="4.9551%" y="95.50"></text></g><g><title>btrfs_lookup_xattr (316 samples, 0.01%)</title><rect x="4.7051%" y="101" width="0.0136%" height="15" fill="rgb(236,179,52)" fg:x="109151" fg:w="316"/><text x="4.9551%" y="111.50"></text></g><g><title>btrfs_getxattr (326 samples, 0.01%)</title><rect x="4.7048%" y="117" width="0.0141%" height="15" fill="rgb(213,23,39)" fg:x="109144" fg:w="326"/><text x="4.9548%" y="127.50"></text></g><g><title>get_vfs_caps_from_disk (331 samples, 0.01%)</title><rect x="4.7048%" y="149" width="0.0143%" height="15" fill="rgb(238,48,10)" fg:x="109144" fg:w="331"/><text x="4.9548%" y="159.50"></text></g><g><title>__vfs_getxattr (331 samples, 0.01%)</title><rect x="4.7048%" y="133" width="0.0143%" height="15" fill="rgb(251,196,23)" fg:x="109144" fg:w="331"/><text x="4.9548%" y="143.50"></text></g><g><title>security_bprm_creds_from_file (339 samples, 0.01%)</title><rect x="4.7046%" y="181" width="0.0146%" height="15" fill="rgb(250,152,24)" fg:x="109138" fg:w="339"/><text x="4.9546%" y="191.50"></text></g><g><title>cap_bprm_creds_from_file (338 samples, 0.01%)</title><rect x="4.7046%" y="165" width="0.0146%" height="15" fill="rgb(209,150,17)" fg:x="109139" fg:w="338"/><text x="4.9546%" y="175.50"></text></g><g><title>begin_new_exec (353 samples, 0.02%)</title><rect x="4.7042%" y="197" width="0.0152%" height="15" fill="rgb(234,202,34)" fg:x="109129" fg:w="353"/><text x="4.9542%" y="207.50"></text></g><g><title>load_elf_binary (462 samples, 0.02%)</title><rect x="4.7033%" y="213" width="0.0199%" height="15" fill="rgb(253,148,53)" fg:x="109109" fg:w="462"/><text x="4.9533%" y="223.50"></text></g><g><title>__perf_event_task_sched_in (710 samples, 0.03%)</title><rect x="4.7272%" y="133" width="0.0306%" height="15" fill="rgb(218,129,16)" fg:x="109663" fg:w="710"/><text x="4.9772%" y="143.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (703 samples, 0.03%)</title><rect x="4.7275%" y="117" width="0.0303%" height="15" fill="rgb(216,85,19)" fg:x="109670" fg:w="703"/><text x="4.9775%" y="127.50"></text></g><g><title>native_write_msr (698 samples, 0.03%)</title><rect x="4.7277%" y="101" width="0.0301%" height="15" fill="rgb(235,228,7)" fg:x="109675" fg:w="698"/><text x="4.9777%" y="111.50"></text></g><g><title>finish_task_switch (734 samples, 0.03%)</title><rect x="4.7266%" y="149" width="0.0316%" height="15" fill="rgb(245,175,0)" fg:x="109649" fg:w="734"/><text x="4.9766%" y="159.50"></text></g><g><title>_cond_resched (738 samples, 0.03%)</title><rect x="4.7265%" y="181" width="0.0318%" height="15" fill="rgb(208,168,36)" fg:x="109648" fg:w="738"/><text x="4.9765%" y="191.50"></text></g><g><title>__schedule (737 samples, 0.03%)</title><rect x="4.7266%" y="165" width="0.0318%" height="15" fill="rgb(246,171,24)" fg:x="109649" fg:w="737"/><text x="4.9766%" y="175.50"></text></g><g><title>sched_exec (769 samples, 0.03%)</title><rect x="4.7254%" y="213" width="0.0331%" height="15" fill="rgb(215,142,24)" fg:x="109621" fg:w="769"/><text x="4.9754%" y="223.50"></text></g><g><title>stop_one_cpu (751 samples, 0.03%)</title><rect x="4.7262%" y="197" width="0.0324%" height="15" fill="rgb(250,187,7)" fg:x="109639" fg:w="751"/><text x="4.9762%" y="207.50"></text></g><g><title>bprm_execve (1,612 samples, 0.07%)</title><rect x="4.7002%" y="229" width="0.0695%" height="15" fill="rgb(228,66,33)" fg:x="109038" fg:w="1612"/><text x="4.9502%" y="239.50"></text></g><g><title>do_execveat_common (1,748 samples, 0.08%)</title><rect x="4.6987%" y="245" width="0.0754%" height="15" fill="rgb(234,215,21)" fg:x="109002" fg:w="1748"/><text x="4.9487%" y="255.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,755 samples, 0.08%)</title><rect x="4.6986%" y="293" width="0.0757%" height="15" fill="rgb(222,191,20)" fg:x="109000" fg:w="1755"/><text x="4.9486%" y="303.50"></text></g><g><title>do_syscall_64 (1,755 samples, 0.08%)</title><rect x="4.6986%" y="277" width="0.0757%" height="15" fill="rgb(245,79,54)" fg:x="109000" fg:w="1755"/><text x="4.9486%" y="287.50"></text></g><g><title>__x64_sys_execve (1,755 samples, 0.08%)</title><rect x="4.6986%" y="261" width="0.0757%" height="15" fill="rgb(240,10,37)" fg:x="109000" fg:w="1755"/><text x="4.9486%" y="271.50"></text></g><g><title>__GI_execve (1,757 samples, 0.08%)</title><rect x="4.6986%" y="309" width="0.0757%" height="15" fill="rgb(214,192,32)" fg:x="108999" fg:w="1757"/><text x="4.9486%" y="319.50"></text></g><g><title>[dash] (2,032 samples, 0.09%)</title><rect x="4.6910%" y="325" width="0.0876%" height="15" fill="rgb(209,36,54)" fg:x="108823" fg:w="2032"/><text x="4.9410%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (7,890 samples, 0.34%)</title><rect x="4.8069%" y="197" width="0.3401%" height="15" fill="rgb(220,10,11)" fg:x="111512" fg:w="7890"/><text x="5.0569%" y="207.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,783 samples, 0.34%)</title><rect x="4.8115%" y="181" width="0.3355%" height="15" fill="rgb(221,106,17)" fg:x="111619" fg:w="7783"/><text x="5.0615%" y="191.50"></text></g><g><title>native_write_msr (7,736 samples, 0.33%)</title><rect x="4.8135%" y="165" width="0.3335%" height="15" fill="rgb(251,142,44)" fg:x="111666" fg:w="7736"/><text x="5.0635%" y="175.50"></text></g><g><title>finish_task_switch (8,575 samples, 0.37%)</title><rect x="4.7937%" y="213" width="0.3696%" height="15" fill="rgb(238,13,15)" fg:x="111206" fg:w="8575"/><text x="5.0437%" y="223.50"></text></g><g><title>schedule (8,704 samples, 0.38%)</title><rect x="4.7907%" y="245" width="0.3752%" height="15" fill="rgb(208,107,27)" fg:x="111137" fg:w="8704"/><text x="5.0407%" y="255.50"></text></g><g><title>__schedule (8,696 samples, 0.37%)</title><rect x="4.7911%" y="229" width="0.3749%" height="15" fill="rgb(205,136,37)" fg:x="111145" fg:w="8696"/><text x="5.0411%" y="239.50"></text></g><g><title>release_task (406 samples, 0.02%)</title><rect x="5.1711%" y="229" width="0.0175%" height="15" fill="rgb(250,205,27)" fg:x="119960" fg:w="406"/><text x="5.4211%" y="239.50"></text></g><g><title>do_wait (9,360 samples, 0.40%)</title><rect x="4.7865%" y="261" width="0.4035%" height="15" fill="rgb(210,80,43)" fg:x="111039" fg:w="9360"/><text x="5.0365%" y="271.50"></text></g><g><title>wait_consider_task (558 samples, 0.02%)</title><rect x="5.1659%" y="245" width="0.0241%" height="15" fill="rgb(247,160,36)" fg:x="119841" fg:w="558"/><text x="5.4159%" y="255.50"></text></g><g><title>do_syscall_64 (9,416 samples, 0.41%)</title><rect x="4.7841%" y="293" width="0.4059%" height="15" fill="rgb(234,13,49)" fg:x="110984" fg:w="9416"/><text x="5.0341%" y="303.50"></text></g><g><title>kernel_wait4 (9,376 samples, 0.40%)</title><rect x="4.7859%" y="277" width="0.4042%" height="15" fill="rgb(234,122,0)" fg:x="111024" fg:w="9376"/><text x="5.0359%" y="287.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (9,643 samples, 0.42%)</title><rect x="4.7841%" y="309" width="0.4157%" height="15" fill="rgb(207,146,38)" fg:x="110983" fg:w="9643"/><text x="5.0341%" y="319.50"></text></g><g><title>__GI___wait4 (9,768 samples, 0.42%)</title><rect x="4.7821%" y="325" width="0.4211%" height="15" fill="rgb(207,177,25)" fg:x="110938" fg:w="9768"/><text x="5.0321%" y="335.50"></text></g><g><title>[dash] (12,221 samples, 0.53%)</title><rect x="4.6881%" y="341" width="0.5268%" height="15" fill="rgb(211,178,42)" fg:x="108757" fg:w="12221"/><text x="4.9381%" y="351.50"></text></g><g><title>[dash] (12,524 samples, 0.54%)</title><rect x="4.6852%" y="357" width="0.5399%" height="15" fill="rgb(230,69,54)" fg:x="108688" fg:w="12524"/><text x="4.9352%" y="367.50"></text></g><g><title>do_user_addr_fault (251 samples, 0.01%)</title><rect x="5.2423%" y="293" width="0.0108%" height="15" fill="rgb(214,135,41)" fg:x="121612" fg:w="251"/><text x="5.4923%" y="303.50"></text></g><g><title>exc_page_fault (257 samples, 0.01%)</title><rect x="5.2420%" y="309" width="0.0111%" height="15" fill="rgb(237,67,25)" fg:x="121607" fg:w="257"/><text x="5.4920%" y="319.50"></text></g><g><title>asm_exc_page_fault (272 samples, 0.01%)</title><rect x="5.2418%" y="325" width="0.0117%" height="15" fill="rgb(222,189,50)" fg:x="121602" fg:w="272"/><text x="5.4918%" y="335.50"></text></g><g><title>dup_mm (588 samples, 0.03%)</title><rect x="5.2628%" y="245" width="0.0253%" height="15" fill="rgb(245,148,34)" fg:x="122089" fg:w="588"/><text x="5.5128%" y="255.50"></text></g><g><title>copy_process (1,136 samples, 0.05%)</title><rect x="5.2538%" y="261" width="0.0490%" height="15" fill="rgb(222,29,6)" fg:x="121880" fg:w="1136"/><text x="5.5038%" y="271.50"></text></g><g><title>do_syscall_64 (1,206 samples, 0.05%)</title><rect x="5.2536%" y="309" width="0.0520%" height="15" fill="rgb(221,189,43)" fg:x="121876" fg:w="1206"/><text x="5.5036%" y="319.50"></text></g><g><title>__do_sys_clone (1,206 samples, 0.05%)</title><rect x="5.2536%" y="293" width="0.0520%" height="15" fill="rgb(207,36,27)" fg:x="121876" fg:w="1206"/><text x="5.5036%" y="303.50"></text></g><g><title>kernel_clone (1,203 samples, 0.05%)</title><rect x="5.2538%" y="277" width="0.0519%" height="15" fill="rgb(217,90,24)" fg:x="121879" fg:w="1203"/><text x="5.5038%" y="287.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,211 samples, 0.05%)</title><rect x="5.2536%" y="325" width="0.0522%" height="15" fill="rgb(224,66,35)" fg:x="121874" fg:w="1211"/><text x="5.5036%" y="335.50"></text></g><g><title>handle_mm_fault (279 samples, 0.01%)</title><rect x="5.3263%" y="229" width="0.0120%" height="15" fill="rgb(221,13,50)" fg:x="123561" fg:w="279"/><text x="5.5763%" y="239.50"></text></g><g><title>do_user_addr_fault (372 samples, 0.02%)</title><rect x="5.3226%" y="245" width="0.0160%" height="15" fill="rgb(236,68,49)" fg:x="123476" fg:w="372"/><text x="5.5726%" y="255.50"></text></g><g><title>exc_page_fault (384 samples, 0.02%)</title><rect x="5.3222%" y="261" width="0.0166%" height="15" fill="rgb(229,146,28)" fg:x="123467" fg:w="384"/><text x="5.5722%" y="271.50"></text></g><g><title>asm_exc_page_fault (623 samples, 0.03%)</title><rect x="5.3120%" y="277" width="0.0269%" height="15" fill="rgb(225,31,38)" fg:x="123230" fg:w="623"/><text x="5.5620%" y="287.50"></text></g><g><title>__put_user_nocheck_4 (668 samples, 0.03%)</title><rect x="5.3104%" y="293" width="0.0288%" height="15" fill="rgb(250,208,3)" fg:x="123193" fg:w="668"/><text x="5.5604%" y="303.50"></text></g><g><title>__perf_event_task_sched_in (8,647 samples, 0.37%)</title><rect x="5.3515%" y="277" width="0.3727%" height="15" fill="rgb(246,54,23)" fg:x="124147" fg:w="8647"/><text x="5.6015%" y="287.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (8,498 samples, 0.37%)</title><rect x="5.3580%" y="261" width="0.3663%" height="15" fill="rgb(243,76,11)" fg:x="124296" fg:w="8498"/><text x="5.6080%" y="271.50"></text></g><g><title>native_write_msr (8,436 samples, 0.36%)</title><rect x="5.3606%" y="245" width="0.3636%" height="15" fill="rgb(245,21,50)" fg:x="124358" fg:w="8436"/><text x="5.6106%" y="255.50"></text></g><g><title>schedule_tail (9,856 samples, 0.42%)</title><rect x="5.3092%" y="309" width="0.4249%" height="15" fill="rgb(228,9,43)" fg:x="123165" fg:w="9856"/><text x="5.5592%" y="319.50"></text></g><g><title>finish_task_switch (9,111 samples, 0.39%)</title><rect x="5.3413%" y="293" width="0.3927%" height="15" fill="rgb(208,100,47)" fg:x="123910" fg:w="9111"/><text x="5.5913%" y="303.50"></text></g><g><title>ret_from_fork (9,952 samples, 0.43%)</title><rect x="5.3080%" y="325" width="0.4290%" height="15" fill="rgb(232,26,8)" fg:x="123136" fg:w="9952"/><text x="5.5580%" y="335.50"></text></g><g><title>arch_fork (11,529 samples, 0.50%)</title><rect x="5.2400%" y="341" width="0.4970%" height="15" fill="rgb(216,166,38)" fg:x="121560" fg:w="11529"/><text x="5.4900%" y="351.50"></text></g><g><title>__libc_fork (11,963 samples, 0.52%)</title><rect x="5.2314%" y="357" width="0.5157%" height="15" fill="rgb(251,202,51)" fg:x="121360" fg:w="11963"/><text x="5.4814%" y="367.50"></text></g><g><title>[dash] (24,866 samples, 1.07%)</title><rect x="4.6835%" y="373" width="1.0719%" height="15" fill="rgb(254,216,34)" fg:x="108650" fg:w="24866"/><text x="4.9335%" y="383.50"></text></g><g><title>[dash] (25,021 samples, 1.08%)</title><rect x="4.6832%" y="389" width="1.0786%" height="15" fill="rgb(251,32,27)" fg:x="108642" fg:w="25021"/><text x="4.9332%" y="399.50"></text></g><g><title>[dash] (25,152 samples, 1.08%)</title><rect x="4.6821%" y="405" width="1.0842%" height="15" fill="rgb(208,127,28)" fg:x="108618" fg:w="25152"/><text x="4.9321%" y="415.50"></text></g><g><title>[dash] (25,370 samples, 1.09%)</title><rect x="4.6808%" y="421" width="1.0936%" height="15" fill="rgb(224,137,22)" fg:x="108586" fg:w="25370"/><text x="4.9308%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (301 samples, 0.01%)</title><rect x="5.7767%" y="293" width="0.0130%" height="15" fill="rgb(254,70,32)" fg:x="134010" fg:w="301"/><text x="6.0267%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.01%)</title><rect x="5.7770%" y="277" width="0.0127%" height="15" fill="rgb(229,75,37)" fg:x="134017" fg:w="294"/><text x="6.0270%" y="287.50"></text></g><g><title>native_write_msr (292 samples, 0.01%)</title><rect x="5.7771%" y="261" width="0.0126%" height="15" fill="rgb(252,64,23)" fg:x="134019" fg:w="292"/><text x="6.0271%" y="271.50"></text></g><g><title>finish_task_switch (328 samples, 0.01%)</title><rect x="5.7766%" y="309" width="0.0141%" height="15" fill="rgb(232,162,48)" fg:x="134007" fg:w="328"/><text x="6.0266%" y="319.50"></text></g><g><title>schedule (338 samples, 0.01%)</title><rect x="5.7763%" y="341" width="0.0146%" height="15" fill="rgb(246,160,12)" fg:x="134001" fg:w="338"/><text x="6.0263%" y="351.50"></text></g><g><title>__schedule (337 samples, 0.01%)</title><rect x="5.7764%" y="325" width="0.0145%" height="15" fill="rgb(247,166,0)" fg:x="134002" fg:w="337"/><text x="6.0264%" y="335.50"></text></g><g><title>do_syscall_64 (461 samples, 0.02%)</title><rect x="5.7756%" y="389" width="0.0199%" height="15" fill="rgb(249,219,21)" fg:x="133984" fg:w="461"/><text x="6.0256%" y="399.50"></text></g><g><title>kernel_wait4 (458 samples, 0.02%)</title><rect x="5.7757%" y="373" width="0.0197%" height="15" fill="rgb(205,209,3)" fg:x="133987" fg:w="458"/><text x="6.0257%" y="383.50"></text></g><g><title>do_wait (455 samples, 0.02%)</title><rect x="5.7758%" y="357" width="0.0196%" height="15" fill="rgb(243,44,1)" fg:x="133990" fg:w="455"/><text x="6.0258%" y="367.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (477 samples, 0.02%)</title><rect x="5.7756%" y="405" width="0.0206%" height="15" fill="rgb(206,159,16)" fg:x="133984" fg:w="477"/><text x="6.0256%" y="415.50"></text></g><g><title>__GI___wait4 (513 samples, 0.02%)</title><rect x="5.7744%" y="421" width="0.0221%" height="15" fill="rgb(244,77,30)" fg:x="133957" fg:w="513"/><text x="6.0244%" y="431.50"></text></g><g><title>[dash] (26,084 samples, 1.12%)</title><rect x="4.6793%" y="437" width="1.1244%" height="15" fill="rgb(218,69,12)" fg:x="108551" fg:w="26084"/><text x="4.9293%" y="447.50"></text></g><g><title>dup_mm (419 samples, 0.02%)</title><rect x="5.8202%" y="325" width="0.0181%" height="15" fill="rgb(212,87,7)" fg:x="135020" fg:w="419"/><text x="6.0702%" y="335.50"></text></g><g><title>copy_process (744 samples, 0.03%)</title><rect x="5.8145%" y="341" width="0.0321%" height="15" fill="rgb(245,114,25)" fg:x="134886" fg:w="744"/><text x="6.0645%" y="351.50"></text></g><g><title>__do_sys_clone (781 samples, 0.03%)</title><rect x="5.8144%" y="373" width="0.0337%" height="15" fill="rgb(210,61,42)" fg:x="134884" fg:w="781"/><text x="6.0644%" y="383.50"></text></g><g><title>kernel_clone (780 samples, 0.03%)</title><rect x="5.8144%" y="357" width="0.0336%" height="15" fill="rgb(211,52,33)" fg:x="134885" fg:w="780"/><text x="6.0644%" y="367.50"></text></g><g><title>do_syscall_64 (782 samples, 0.03%)</title><rect x="5.8144%" y="389" width="0.0337%" height="15" fill="rgb(234,58,33)" fg:x="134884" fg:w="782"/><text x="6.0644%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (784 samples, 0.03%)</title><rect x="5.8143%" y="405" width="0.0338%" height="15" fill="rgb(220,115,36)" fg:x="134883" fg:w="784"/><text x="6.0643%" y="415.50"></text></g><g><title>do_user_addr_fault (343 samples, 0.01%)</title><rect x="5.8550%" y="325" width="0.0148%" height="15" fill="rgb(243,153,54)" fg:x="135826" fg:w="343"/><text x="6.1050%" y="335.50"></text></g><g><title>handle_mm_fault (276 samples, 0.01%)</title><rect x="5.8579%" y="309" width="0.0119%" height="15" fill="rgb(251,47,18)" fg:x="135893" fg:w="276"/><text x="6.1079%" y="319.50"></text></g><g><title>asm_exc_page_fault (463 samples, 0.02%)</title><rect x="5.8499%" y="357" width="0.0200%" height="15" fill="rgb(242,102,42)" fg:x="135707" fg:w="463"/><text x="6.0999%" y="367.50"></text></g><g><title>exc_page_fault (348 samples, 0.02%)</title><rect x="5.8548%" y="341" width="0.0150%" height="15" fill="rgb(234,31,38)" fg:x="135822" fg:w="348"/><text x="6.1048%" y="351.50"></text></g><g><title>__put_user_nocheck_4 (477 samples, 0.02%)</title><rect x="5.8493%" y="373" width="0.0206%" height="15" fill="rgb(221,117,51)" fg:x="135695" fg:w="477"/><text x="6.0993%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (4,746 samples, 0.20%)</title><rect x="5.8779%" y="357" width="0.2046%" height="15" fill="rgb(212,20,18)" fg:x="136357" fg:w="4746"/><text x="6.1279%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,676 samples, 0.20%)</title><rect x="5.8809%" y="341" width="0.2016%" height="15" fill="rgb(245,133,36)" fg:x="136427" fg:w="4676"/><text x="6.1309%" y="351.50"></text></g><g><title>native_write_msr (4,642 samples, 0.20%)</title><rect x="5.8824%" y="325" width="0.2001%" height="15" fill="rgb(212,6,19)" fg:x="136461" fg:w="4642"/><text x="6.1324%" y="335.50"></text></g><g><title>schedule_tail (5,548 samples, 0.24%)</title><rect x="5.8489%" y="389" width="0.2392%" height="15" fill="rgb(218,1,36)" fg:x="135686" fg:w="5548"/><text x="6.0989%" y="399.50"></text></g><g><title>finish_task_switch (5,042 samples, 0.22%)</title><rect x="5.8708%" y="373" width="0.2173%" height="15" fill="rgb(246,84,54)" fg:x="136192" fg:w="5042"/><text x="6.1208%" y="383.50"></text></g><g><title>arch_fork (6,503 samples, 0.28%)</title><rect x="5.8083%" y="421" width="0.2803%" height="15" fill="rgb(242,110,6)" fg:x="134743" fg:w="6503"/><text x="6.0583%" y="431.50"></text></g><g><title>ret_from_fork (5,567 samples, 0.24%)</title><rect x="5.8486%" y="405" width="0.2400%" height="15" fill="rgb(214,47,5)" fg:x="135679" fg:w="5567"/><text x="6.0986%" y="415.50"></text></g><g><title>__libc_fork (6,735 samples, 0.29%)</title><rect x="5.8037%" y="437" width="0.2903%" height="15" fill="rgb(218,159,25)" fg:x="134637" fg:w="6735"/><text x="6.0537%" y="447.50"></text></g><g><title>[dash] (32,938 samples, 1.42%)</title><rect x="4.6781%" y="453" width="1.4198%" height="15" fill="rgb(215,211,28)" fg:x="108525" fg:w="32938"/><text x="4.9281%" y="463.50"></text></g><g><title>[dash] (33,082 samples, 1.43%)</title><rect x="4.6772%" y="469" width="1.4260%" height="15" fill="rgb(238,59,32)" fg:x="108503" fg:w="33082"/><text x="4.9272%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (4,695 samples, 0.20%)</title><rect x="6.1278%" y="309" width="0.2024%" height="15" fill="rgb(226,82,3)" fg:x="142155" fg:w="4695"/><text x="6.3778%" y="319.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,640 samples, 0.20%)</title><rect x="6.1302%" y="293" width="0.2000%" height="15" fill="rgb(240,164,32)" fg:x="142210" fg:w="4640"/><text x="6.3802%" y="303.50"></text></g><g><title>native_write_msr (4,624 samples, 0.20%)</title><rect x="6.1309%" y="277" width="0.1993%" height="15" fill="rgb(232,46,7)" fg:x="142226" fg:w="4624"/><text x="6.3809%" y="287.50"></text></g><g><title>finish_task_switch (5,066 samples, 0.22%)</title><rect x="6.1220%" y="325" width="0.2184%" height="15" fill="rgb(229,129,53)" fg:x="142021" fg:w="5066"/><text x="6.3720%" y="335.50"></text></g><g><title>schedule (5,161 samples, 0.22%)</title><rect x="6.1197%" y="357" width="0.2225%" height="15" fill="rgb(234,188,29)" fg:x="141966" fg:w="5161"/><text x="6.3697%" y="367.50"></text></g><g><title>__schedule (5,157 samples, 0.22%)</title><rect x="6.1198%" y="341" width="0.2223%" height="15" fill="rgb(246,141,4)" fg:x="141970" fg:w="5157"/><text x="6.3698%" y="351.50"></text></g><g><title>new_sync_read (5,338 samples, 0.23%)</title><rect x="6.1132%" y="389" width="0.2301%" height="15" fill="rgb(229,23,39)" fg:x="141816" fg:w="5338"/><text x="6.3632%" y="399.50"></text></g><g><title>pipe_read (5,326 samples, 0.23%)</title><rect x="6.1137%" y="373" width="0.2296%" height="15" fill="rgb(206,12,3)" fg:x="141828" fg:w="5326"/><text x="6.3637%" y="383.50"></text></g><g><title>do_syscall_64 (5,403 samples, 0.23%)</title><rect x="6.1109%" y="437" width="0.2329%" height="15" fill="rgb(252,226,20)" fg:x="141764" fg:w="5403"/><text x="6.3609%" y="447.50"></text></g><g><title>ksys_read (5,389 samples, 0.23%)</title><rect x="6.1116%" y="421" width="0.2323%" height="15" fill="rgb(216,123,35)" fg:x="141778" fg:w="5389"/><text x="6.3616%" y="431.50"></text></g><g><title>vfs_read (5,375 samples, 0.23%)</title><rect x="6.1122%" y="405" width="0.2317%" height="15" fill="rgb(212,68,40)" fg:x="141792" fg:w="5375"/><text x="6.3622%" y="415.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5,531 samples, 0.24%)</title><rect x="6.1109%" y="453" width="0.2384%" height="15" fill="rgb(254,125,32)" fg:x="141763" fg:w="5531"/><text x="6.3609%" y="463.50"></text></g><g><title>__GI___libc_read (5,615 samples, 0.24%)</title><rect x="6.1100%" y="469" width="0.2420%" height="15" fill="rgb(253,97,22)" fg:x="141743" fg:w="5615"/><text x="6.3600%" y="479.50"></text></g><g><title>[dash] (39,115 samples, 1.69%)</title><rect x="4.6756%" y="485" width="1.6861%" height="15" fill="rgb(241,101,14)" fg:x="108466" fg:w="39115"/><text x="4.9256%" y="495.50"></text></g><g><title>[dash] (39,158 samples, 1.69%)</title><rect x="4.6748%" y="501" width="1.6880%" height="15" fill="rgb(238,103,29)" fg:x="108448" fg:w="39158"/><text x="4.9248%" y="511.50"></text></g><g><title>[dash] (39,187 samples, 1.69%)</title><rect x="4.6743%" y="517" width="1.6892%" height="15" fill="rgb(233,195,47)" fg:x="108436" fg:w="39187"/><text x="4.9243%" y="527.50"></text></g><g><title>[dash] (39,202 samples, 1.69%)</title><rect x="4.6740%" y="533" width="1.6899%" height="15" fill="rgb(246,218,30)" fg:x="108430" fg:w="39202"/><text x="4.9240%" y="543.50"></text></g><g><title>[dash] (39,240 samples, 1.69%)</title><rect x="4.6739%" y="549" width="1.6915%" height="15" fill="rgb(219,145,47)" fg:x="108427" fg:w="39240"/><text x="4.9239%" y="559.50"></text></g><g><title>[dash] (39,250 samples, 1.69%)</title><rect x="4.6736%" y="565" width="1.6919%" height="15" fill="rgb(243,12,26)" fg:x="108419" fg:w="39250"/><text x="4.9236%" y="575.50"></text></g><g><title>[dash] (39,317 samples, 1.69%)</title><rect x="4.6735%" y="581" width="1.6948%" height="15" fill="rgb(214,87,16)" fg:x="108417" fg:w="39317"/><text x="4.9235%" y="591.50"></text></g><g><title>[dash] (39,344 samples, 1.70%)</title><rect x="4.6734%" y="597" width="1.6960%" height="15" fill="rgb(208,99,42)" fg:x="108415" fg:w="39344"/><text x="4.9234%" y="607.50"></text></g><g><title>__libc_start_main (39,347 samples, 1.70%)</title><rect x="4.6734%" y="613" width="1.6961%" height="15" fill="rgb(253,99,2)" fg:x="108415" fg:w="39347"/><text x="4.9234%" y="623.50"></text></g><g><title>[dash] (39,368 samples, 1.70%)</title><rect x="4.6725%" y="629" width="1.6970%" height="15" fill="rgb(220,168,23)" fg:x="108395" fg:w="39368"/><text x="4.9225%" y="639.50"></text></g><g><title>asm_exc_page_fault (480 samples, 0.02%)</title><rect x="6.3790%" y="629" width="0.0207%" height="15" fill="rgb(242,38,24)" fg:x="147983" fg:w="480"/><text x="6.6290%" y="639.50"></text></g><g><title>mmput (456 samples, 0.02%)</title><rect x="6.4011%" y="517" width="0.0197%" height="15" fill="rgb(225,182,9)" fg:x="148494" fg:w="456"/><text x="6.6511%" y="527.50"></text></g><g><title>exit_mmap (453 samples, 0.02%)</title><rect x="6.4012%" y="501" width="0.0195%" height="15" fill="rgb(243,178,37)" fg:x="148497" fg:w="453"/><text x="6.6512%" y="511.50"></text></g><g><title>begin_new_exec (493 samples, 0.02%)</title><rect x="6.4001%" y="533" width="0.0213%" height="15" fill="rgb(232,139,19)" fg:x="148472" fg:w="493"/><text x="6.6501%" y="543.50"></text></g><g><title>__x64_sys_execve (542 samples, 0.02%)</title><rect x="6.3998%" y="597" width="0.0234%" height="15" fill="rgb(225,201,24)" fg:x="148465" fg:w="542"/><text x="6.6498%" y="607.50"></text></g><g><title>do_execveat_common (542 samples, 0.02%)</title><rect x="6.3998%" y="581" width="0.0234%" height="15" fill="rgb(221,47,46)" fg:x="148465" fg:w="542"/><text x="6.6498%" y="591.50"></text></g><g><title>bprm_execve (542 samples, 0.02%)</title><rect x="6.3998%" y="565" width="0.0234%" height="15" fill="rgb(249,23,13)" fg:x="148465" fg:w="542"/><text x="6.6498%" y="575.50"></text></g><g><title>load_elf_binary (542 samples, 0.02%)</title><rect x="6.3998%" y="549" width="0.0234%" height="15" fill="rgb(219,9,5)" fg:x="148465" fg:w="542"/><text x="6.6498%" y="559.50"></text></g><g><title>free_pgtables (265 samples, 0.01%)</title><rect x="6.4254%" y="517" width="0.0114%" height="15" fill="rgb(254,171,16)" fg:x="149058" fg:w="265"/><text x="6.6754%" y="527.50"></text></g><g><title>unmap_page_range (386 samples, 0.02%)</title><rect x="6.4512%" y="501" width="0.0166%" height="15" fill="rgb(230,171,20)" fg:x="149658" fg:w="386"/><text x="6.7012%" y="511.50"></text></g><g><title>exit_mmap (1,011 samples, 0.04%)</title><rect x="6.4248%" y="533" width="0.0436%" height="15" fill="rgb(210,71,41)" fg:x="149045" fg:w="1011"/><text x="6.6748%" y="543.50"></text></g><g><title>unmap_vmas (405 samples, 0.02%)</title><rect x="6.4509%" y="517" width="0.0175%" height="15" fill="rgb(206,173,20)" fg:x="149651" fg:w="405"/><text x="6.7009%" y="527.50"></text></g><g><title>mmput (1,017 samples, 0.04%)</title><rect x="6.4247%" y="549" width="0.0438%" height="15" fill="rgb(233,88,34)" fg:x="149043" fg:w="1017"/><text x="6.6747%" y="559.50"></text></g><g><title>__x64_sys_exit_group (1,145 samples, 0.05%)</title><rect x="6.4232%" y="597" width="0.0494%" height="15" fill="rgb(223,209,46)" fg:x="149007" fg:w="1145"/><text x="6.6732%" y="607.50"></text></g><g><title>do_group_exit (1,145 samples, 0.05%)</title><rect x="6.4232%" y="581" width="0.0494%" height="15" fill="rgb(250,43,18)" fg:x="149007" fg:w="1145"/><text x="6.6732%" y="591.50"></text></g><g><title>do_exit (1,145 samples, 0.05%)</title><rect x="6.4232%" y="565" width="0.0494%" height="15" fill="rgb(208,13,10)" fg:x="149007" fg:w="1145"/><text x="6.6732%" y="575.50"></text></g><g><title>do_syscall_64 (1,690 samples, 0.07%)</title><rect x="6.3998%" y="613" width="0.0728%" height="15" fill="rgb(212,200,36)" fg:x="148465" fg:w="1690"/><text x="6.6498%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,693 samples, 0.07%)</title><rect x="6.3997%" y="629" width="0.0730%" height="15" fill="rgb(225,90,30)" fg:x="148463" fg:w="1693"/><text x="6.6497%" y="639.50"></text></g><g><title>c++ (41,835 samples, 1.80%)</title><rect x="4.6705%" y="645" width="1.8034%" height="15" fill="rgb(236,182,39)" fg:x="108348" fg:w="41835"/><text x="4.9205%" y="655.50">c..</text></g><g><title>[perf-23153.map] (451 samples, 0.02%)</title><rect x="6.4750%" y="629" width="0.0194%" height="15" fill="rgb(212,144,35)" fg:x="150209" fg:w="451"/><text x="6.7250%" y="639.50"></text></g><g><title>find-action-loo (487 samples, 0.02%)</title><rect x="6.4749%" y="645" width="0.0210%" height="15" fill="rgb(228,63,44)" fg:x="150207" fg:w="487"/><text x="6.7249%" y="655.50"></text></g><g><title>[perf-23153.map] (374 samples, 0.02%)</title><rect x="6.5054%" y="629" width="0.0161%" height="15" fill="rgb(228,109,6)" fg:x="150914" fg:w="374"/><text x="6.7554%" y="639.50"></text></g><g><title>globbing_pool-1 (483 samples, 0.02%)</title><rect x="6.5038%" y="645" width="0.0208%" height="15" fill="rgb(238,117,24)" fg:x="150878" fg:w="483"/><text x="6.7538%" y="655.50"></text></g><g><title>[perf-23153.map] (255 samples, 0.01%)</title><rect x="6.5253%" y="629" width="0.0110%" height="15" fill="rgb(242,26,26)" fg:x="151376" fg:w="255"/><text x="6.7753%" y="639.50"></text></g><g><title>globbing_pool-2 (377 samples, 0.02%)</title><rect x="6.5246%" y="645" width="0.0163%" height="15" fill="rgb(221,92,48)" fg:x="151361" fg:w="377"/><text x="6.7746%" y="655.50"></text></g><g><title>[perf-23153.map] (258 samples, 0.01%)</title><rect x="6.5428%" y="629" width="0.0111%" height="15" fill="rgb(209,209,32)" fg:x="151782" fg:w="258"/><text x="6.7928%" y="639.50"></text></g><g><title>globbing_pool-3 (372 samples, 0.02%)</title><rect x="6.5409%" y="645" width="0.0160%" height="15" fill="rgb(221,70,22)" fg:x="151738" fg:w="372"/><text x="6.7909%" y="655.50"></text></g><g><title>globbing_pool-4 (313 samples, 0.01%)</title><rect x="6.5569%" y="645" width="0.0135%" height="15" fill="rgb(248,145,5)" fg:x="152110" fg:w="313"/><text x="6.8069%" y="655.50"></text></g><g><title>[perf-23153.map] (293 samples, 0.01%)</title><rect x="6.5860%" y="629" width="0.0126%" height="15" fill="rgb(226,116,26)" fg:x="152785" fg:w="293"/><text x="6.8360%" y="639.50"></text></g><g><title>globbing_pool-8 (372 samples, 0.02%)</title><rect x="6.5843%" y="645" width="0.0160%" height="15" fill="rgb(244,5,17)" fg:x="152746" fg:w="372"/><text x="6.8343%" y="655.50"></text></g><g><title>InterpreterRuntime::_new (275 samples, 0.01%)</title><rect x="6.6959%" y="613" width="0.0119%" height="15" fill="rgb(252,159,33)" fg:x="155333" fg:w="275"/><text x="6.9459%" y="623.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (257 samples, 0.01%)</title><rect x="6.7183%" y="597" width="0.0111%" height="15" fill="rgb(206,71,0)" fg:x="155854" fg:w="257"/><text x="6.9683%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (413 samples, 0.02%)</title><rect x="6.7136%" y="613" width="0.0178%" height="15" fill="rgb(233,118,54)" fg:x="155744" fg:w="413"/><text x="6.9636%" y="623.50"></text></g><g><title>SymbolTable::lookup_only (452 samples, 0.02%)</title><rect x="6.7491%" y="469" width="0.0195%" height="15" fill="rgb(234,83,48)" fg:x="156569" fg:w="452"/><text x="6.9991%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (528 samples, 0.02%)</title><rect x="6.7459%" y="485" width="0.0228%" height="15" fill="rgb(228,3,54)" fg:x="156494" fg:w="528"/><text x="6.9959%" y="495.50"></text></g><g><title>ClassFileParser::parse_constant_pool (544 samples, 0.02%)</title><rect x="6.7456%" y="501" width="0.0234%" height="15" fill="rgb(226,155,13)" fg:x="156486" fg:w="544"/><text x="6.9956%" y="511.50"></text></g><g><title>ClassFileParser::ClassFileParser (735 samples, 0.03%)</title><rect x="6.7452%" y="533" width="0.0317%" height="15" fill="rgb(241,28,37)" fg:x="156478" fg:w="735"/><text x="6.9952%" y="543.50"></text></g><g><title>ClassFileParser::parse_stream (732 samples, 0.03%)</title><rect x="6.7453%" y="517" width="0.0316%" height="15" fill="rgb(233,93,10)" fg:x="156481" fg:w="732"/><text x="6.9953%" y="527.50"></text></g><g><title>KlassFactory::create_from_stream (952 samples, 0.04%)</title><rect x="6.7452%" y="549" width="0.0410%" height="15" fill="rgb(225,113,19)" fg:x="156477" fg:w="952"/><text x="6.9952%" y="559.50"></text></g><g><title>JVM_DefineClassWithSource (1,014 samples, 0.04%)</title><rect x="6.7448%" y="597" width="0.0437%" height="15" fill="rgb(241,2,18)" fg:x="156468" fg:w="1014"/><text x="6.9948%" y="607.50"></text></g><g><title>jvm_define_class_common (1,012 samples, 0.04%)</title><rect x="6.7449%" y="581" width="0.0436%" height="15" fill="rgb(228,207,21)" fg:x="156470" fg:w="1012"/><text x="6.9949%" y="591.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,006 samples, 0.04%)</title><rect x="6.7451%" y="565" width="0.0434%" height="15" fill="rgb(213,211,35)" fg:x="156476" fg:w="1006"/><text x="6.9951%" y="575.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,058 samples, 0.05%)</title><rect x="6.7447%" y="613" width="0.0456%" height="15" fill="rgb(209,83,10)" fg:x="156467" fg:w="1058"/><text x="6.9947%" y="623.50"></text></g><g><title>[perf-23153.map] (4,324 samples, 0.19%)</title><rect x="6.6156%" y="629" width="0.1864%" height="15" fill="rgb(209,164,1)" fg:x="153472" fg:w="4324"/><text x="6.8656%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (343 samples, 0.01%)</title><rect x="6.8094%" y="565" width="0.0148%" height="15" fill="rgb(213,184,43)" fg:x="157967" fg:w="343"/><text x="7.0594%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (342 samples, 0.01%)</title><rect x="6.8094%" y="549" width="0.0147%" height="15" fill="rgb(231,61,34)" fg:x="157968" fg:w="342"/><text x="7.0594%" y="559.50"></text></g><g><title>native_write_msr (341 samples, 0.01%)</title><rect x="6.8095%" y="533" width="0.0147%" height="15" fill="rgb(235,75,3)" fg:x="157969" fg:w="341"/><text x="7.0595%" y="543.50"></text></g><g><title>schedule_tail (359 samples, 0.02%)</title><rect x="6.8092%" y="597" width="0.0155%" height="15" fill="rgb(220,106,47)" fg:x="157963" fg:w="359"/><text x="7.0592%" y="607.50"></text></g><g><title>finish_task_switch (359 samples, 0.02%)</title><rect x="6.8092%" y="581" width="0.0155%" height="15" fill="rgb(210,196,33)" fg:x="157963" fg:w="359"/><text x="7.0592%" y="591.50"></text></g><g><title>ret_from_fork (368 samples, 0.02%)</title><rect x="6.8091%" y="613" width="0.0159%" height="15" fill="rgb(229,154,42)" fg:x="157960" fg:w="368"/><text x="7.0591%" y="623.50"></text></g><g><title>__GI___clone (577 samples, 0.02%)</title><rect x="6.8085%" y="629" width="0.0249%" height="15" fill="rgb(228,114,26)" fg:x="157947" fg:w="577"/><text x="7.0585%" y="639.50"></text></g><g><title>java (5,296 samples, 0.23%)</title><rect x="6.6060%" y="645" width="0.2283%" height="15" fill="rgb(208,144,1)" fg:x="153249" fg:w="5296"/><text x="6.8560%" y="655.50"></text></g><g><title>[unknown] (334 samples, 0.01%)</title><rect x="6.8371%" y="629" width="0.0144%" height="15" fill="rgb(239,112,37)" fg:x="158610" fg:w="334"/><text x="7.0871%" y="639.50"></text></g><g><title>execute_command (243 samples, 0.01%)</title><rect x="6.8654%" y="533" width="0.0105%" height="15" fill="rgb(210,96,50)" fg:x="159266" fg:w="243"/><text x="7.1154%" y="543.50"></text></g><g><title>execute_command_internal (243 samples, 0.01%)</title><rect x="6.8654%" y="517" width="0.0105%" height="15" fill="rgb(222,178,2)" fg:x="159266" fg:w="243"/><text x="7.1154%" y="527.50"></text></g><g><title>parse_and_execute (274 samples, 0.01%)</title><rect x="6.8798%" y="437" width="0.0118%" height="15" fill="rgb(226,74,18)" fg:x="159601" fg:w="274"/><text x="7.1298%" y="447.50"></text></g><g><title>execute_command_internal (273 samples, 0.01%)</title><rect x="6.8799%" y="421" width="0.0118%" height="15" fill="rgb(225,67,54)" fg:x="159602" fg:w="273"/><text x="7.1299%" y="431.50"></text></g><g><title>[bash] (273 samples, 0.01%)</title><rect x="6.8799%" y="405" width="0.0118%" height="15" fill="rgb(251,92,32)" fg:x="159602" fg:w="273"/><text x="7.1299%" y="415.50"></text></g><g><title>[bash] (273 samples, 0.01%)</title><rect x="6.8799%" y="389" width="0.0118%" height="15" fill="rgb(228,149,22)" fg:x="159602" fg:w="273"/><text x="7.1299%" y="399.50"></text></g><g><title>execute_command_internal (272 samples, 0.01%)</title><rect x="6.8799%" y="373" width="0.0117%" height="15" fill="rgb(243,54,13)" fg:x="159603" fg:w="272"/><text x="7.1299%" y="383.50"></text></g><g><title>command_substitute (387 samples, 0.02%)</title><rect x="6.8761%" y="453" width="0.0167%" height="15" fill="rgb(243,180,28)" fg:x="159514" fg:w="387"/><text x="7.1261%" y="463.50"></text></g><g><title>[bash] (393 samples, 0.02%)</title><rect x="6.8759%" y="469" width="0.0169%" height="15" fill="rgb(208,167,24)" fg:x="159510" fg:w="393"/><text x="7.1259%" y="479.50"></text></g><g><title>[bash] (396 samples, 0.02%)</title><rect x="6.8759%" y="485" width="0.0171%" height="15" fill="rgb(245,73,45)" fg:x="159510" fg:w="396"/><text x="7.1259%" y="495.50"></text></g><g><title>[bash] (400 samples, 0.02%)</title><rect x="6.8759%" y="501" width="0.0172%" height="15" fill="rgb(237,203,48)" fg:x="159509" fg:w="400"/><text x="7.1259%" y="511.50"></text></g><g><title>[bash] (404 samples, 0.02%)</title><rect x="6.8759%" y="517" width="0.0174%" height="15" fill="rgb(211,197,16)" fg:x="159509" fg:w="404"/><text x="7.1259%" y="527.50"></text></g><g><title>expand_words (406 samples, 0.02%)</title><rect x="6.8759%" y="533" width="0.0175%" height="15" fill="rgb(243,99,51)" fg:x="159509" fg:w="406"/><text x="7.1259%" y="543.50"></text></g><g><title>execute_command_internal (944 samples, 0.04%)</title><rect x="6.8529%" y="549" width="0.0407%" height="15" fill="rgb(215,123,29)" fg:x="158976" fg:w="944"/><text x="7.1029%" y="559.50"></text></g><g><title>execute_command (946 samples, 0.04%)</title><rect x="6.8529%" y="565" width="0.0408%" height="15" fill="rgb(239,186,37)" fg:x="158975" fg:w="946"/><text x="7.1029%" y="575.50"></text></g><g><title>[bash] (348 samples, 0.02%)</title><rect x="6.8956%" y="517" width="0.0150%" height="15" fill="rgb(252,136,39)" fg:x="159967" fg:w="348"/><text x="7.1456%" y="527.50"></text></g><g><title>reader_loop (1,402 samples, 0.06%)</title><rect x="6.8519%" y="581" width="0.0604%" height="15" fill="rgb(223,213,32)" fg:x="158952" fg:w="1402"/><text x="7.1019%" y="591.50"></text></g><g><title>read_command (433 samples, 0.02%)</title><rect x="6.8936%" y="565" width="0.0187%" height="15" fill="rgb(233,115,5)" fg:x="159921" fg:w="433"/><text x="7.1436%" y="575.50"></text></g><g><title>parse_command (433 samples, 0.02%)</title><rect x="6.8936%" y="549" width="0.0187%" height="15" fill="rgb(207,226,44)" fg:x="159921" fg:w="433"/><text x="7.1436%" y="559.50"></text></g><g><title>yyparse (433 samples, 0.02%)</title><rect x="6.8936%" y="533" width="0.0187%" height="15" fill="rgb(208,126,0)" fg:x="159921" fg:w="433"/><text x="7.1436%" y="543.50"></text></g><g><title>__libc_start_main (1,412 samples, 0.06%)</title><rect x="6.8516%" y="613" width="0.0609%" height="15" fill="rgb(244,66,21)" fg:x="158945" fg:w="1412"/><text x="7.1016%" y="623.50"></text></g><g><title>main (1,412 samples, 0.06%)</title><rect x="6.8516%" y="597" width="0.0609%" height="15" fill="rgb(222,97,12)" fg:x="158945" fg:w="1412"/><text x="7.1016%" y="607.50"></text></g><g><title>_start (1,427 samples, 0.06%)</title><rect x="6.8516%" y="629" width="0.0615%" height="15" fill="rgb(219,213,19)" fg:x="158945" fg:w="1427"/><text x="7.1016%" y="639.50"></text></g><g><title>libtool (1,893 samples, 0.08%)</title><rect x="6.8343%" y="645" width="0.0816%" height="15" fill="rgb(252,169,30)" fg:x="158545" fg:w="1893"/><text x="7.0843%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (257 samples, 0.01%)</title><rect x="6.9304%" y="469" width="0.0111%" height="15" fill="rgb(206,32,51)" fg:x="160775" fg:w="257"/><text x="7.1804%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (255 samples, 0.01%)</title><rect x="6.9305%" y="453" width="0.0110%" height="15" fill="rgb(250,172,42)" fg:x="160777" fg:w="255"/><text x="7.1805%" y="463.50"></text></g><g><title>native_write_msr (255 samples, 0.01%)</title><rect x="6.9305%" y="437" width="0.0110%" height="15" fill="rgb(209,34,43)" fg:x="160777" fg:w="255"/><text x="7.1805%" y="447.50"></text></g><g><title>finish_task_switch (267 samples, 0.01%)</title><rect x="6.9304%" y="485" width="0.0115%" height="15" fill="rgb(223,11,35)" fg:x="160774" fg:w="267"/><text x="7.1804%" y="495.50"></text></g><g><title>schedule (273 samples, 0.01%)</title><rect x="6.9303%" y="517" width="0.0118%" height="15" fill="rgb(251,219,26)" fg:x="160772" fg:w="273"/><text x="7.1803%" y="527.50"></text></g><g><title>__schedule (273 samples, 0.01%)</title><rect x="6.9303%" y="501" width="0.0118%" height="15" fill="rgb(231,119,3)" fg:x="160772" fg:w="273"/><text x="7.1803%" y="511.50"></text></g><g><title>do_syscall_64 (321 samples, 0.01%)</title><rect x="6.9299%" y="565" width="0.0138%" height="15" fill="rgb(216,97,11)" fg:x="160763" fg:w="321"/><text x="7.1799%" y="575.50"></text></g><g><title>kernel_wait4 (320 samples, 0.01%)</title><rect x="6.9300%" y="549" width="0.0138%" height="15" fill="rgb(223,59,9)" fg:x="160764" fg:w="320"/><text x="7.1800%" y="559.50"></text></g><g><title>do_wait (318 samples, 0.01%)</title><rect x="6.9301%" y="533" width="0.0137%" height="15" fill="rgb(233,93,31)" fg:x="160766" fg:w="318"/><text x="7.1801%" y="543.50"></text></g><g><title>__GI___wait4 (322 samples, 0.01%)</title><rect x="6.9299%" y="597" width="0.0139%" height="15" fill="rgb(239,81,33)" fg:x="160763" fg:w="322"/><text x="7.1799%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (322 samples, 0.01%)</title><rect x="6.9299%" y="581" width="0.0139%" height="15" fill="rgb(213,120,34)" fg:x="160763" fg:w="322"/><text x="7.1799%" y="591.50"></text></g><g><title>schedule_tail (258 samples, 0.01%)</title><rect x="6.9528%" y="549" width="0.0111%" height="15" fill="rgb(243,49,53)" fg:x="161293" fg:w="258"/><text x="7.2028%" y="559.50"></text></g><g><title>arch_fork (328 samples, 0.01%)</title><rect x="6.9498%" y="581" width="0.0141%" height="15" fill="rgb(247,216,33)" fg:x="161225" fg:w="328"/><text x="7.1998%" y="591.50"></text></g><g><title>ret_from_fork (261 samples, 0.01%)</title><rect x="6.9527%" y="565" width="0.0113%" height="15" fill="rgb(226,26,14)" fg:x="161292" fg:w="261"/><text x="7.2027%" y="575.50"></text></g><g><title>__libc_fork (346 samples, 0.01%)</title><rect x="6.9494%" y="597" width="0.0149%" height="15" fill="rgb(215,49,53)" fg:x="161214" fg:w="346"/><text x="7.1994%" y="607.50"></text></g><g><title>Pid1Main (1,099 samples, 0.05%)</title><rect x="6.9232%" y="613" width="0.0474%" height="15" fill="rgb(245,162,40)" fg:x="160608" fg:w="1099"/><text x="7.1732%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (259 samples, 0.01%)</title><rect x="6.9726%" y="565" width="0.0112%" height="15" fill="rgb(229,68,17)" fg:x="161754" fg:w="259"/><text x="7.2226%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (255 samples, 0.01%)</title><rect x="6.9728%" y="549" width="0.0110%" height="15" fill="rgb(213,182,10)" fg:x="161758" fg:w="255"/><text x="7.2228%" y="559.50"></text></g><g><title>native_write_msr (254 samples, 0.01%)</title><rect x="6.9729%" y="533" width="0.0109%" height="15" fill="rgb(245,125,30)" fg:x="161759" fg:w="254"/><text x="7.2229%" y="543.50"></text></g><g><title>schedule_tail (281 samples, 0.01%)</title><rect x="6.9720%" y="597" width="0.0121%" height="15" fill="rgb(232,202,2)" fg:x="161739" fg:w="281"/><text x="7.2220%" y="607.50"></text></g><g><title>finish_task_switch (281 samples, 0.01%)</title><rect x="6.9720%" y="581" width="0.0121%" height="15" fill="rgb(237,140,51)" fg:x="161739" fg:w="281"/><text x="7.2220%" y="591.50"></text></g><g><title>__GI___clone (1,416 samples, 0.06%)</title><rect x="6.9232%" y="629" width="0.0610%" height="15" fill="rgb(236,157,25)" fg:x="160606" fg:w="1416"/><text x="7.1732%" y="639.50"></text></g><g><title>ret_from_fork (284 samples, 0.01%)</title><rect x="6.9720%" y="613" width="0.0122%" height="15" fill="rgb(219,209,0)" fg:x="161738" fg:w="284"/><text x="7.2220%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (297 samples, 0.01%)</title><rect x="6.9995%" y="437" width="0.0128%" height="15" fill="rgb(240,116,54)" fg:x="162377" fg:w="297"/><text x="7.2495%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (293 samples, 0.01%)</title><rect x="6.9997%" y="421" width="0.0126%" height="15" fill="rgb(216,10,36)" fg:x="162381" fg:w="293"/><text x="7.2497%" y="431.50"></text></g><g><title>native_write_msr (293 samples, 0.01%)</title><rect x="6.9997%" y="405" width="0.0126%" height="15" fill="rgb(222,72,44)" fg:x="162381" fg:w="293"/><text x="7.2497%" y="415.50"></text></g><g><title>finish_task_switch (316 samples, 0.01%)</title><rect x="6.9992%" y="453" width="0.0136%" height="15" fill="rgb(232,159,9)" fg:x="162369" fg:w="316"/><text x="7.2492%" y="463.50"></text></g><g><title>schedule (317 samples, 0.01%)</title><rect x="6.9992%" y="485" width="0.0137%" height="15" fill="rgb(210,39,32)" fg:x="162369" fg:w="317"/><text x="7.2492%" y="495.50"></text></g><g><title>__schedule (317 samples, 0.01%)</title><rect x="6.9992%" y="469" width="0.0137%" height="15" fill="rgb(216,194,45)" fg:x="162369" fg:w="317"/><text x="7.2492%" y="479.50"></text></g><g><title>__GI___wait4 (367 samples, 0.02%)</title><rect x="6.9989%" y="581" width="0.0158%" height="15" fill="rgb(218,18,35)" fg:x="162364" fg:w="367"/><text x="7.2489%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (365 samples, 0.02%)</title><rect x="6.9990%" y="565" width="0.0157%" height="15" fill="rgb(207,83,51)" fg:x="162366" fg:w="365"/><text x="7.2490%" y="575.50"></text></g><g><title>do_syscall_64 (365 samples, 0.02%)</title><rect x="6.9990%" y="549" width="0.0157%" height="15" fill="rgb(225,63,43)" fg:x="162366" fg:w="365"/><text x="7.2490%" y="559.50"></text></g><g><title>__do_sys_wait4 (365 samples, 0.02%)</title><rect x="6.9990%" y="533" width="0.0157%" height="15" fill="rgb(207,57,36)" fg:x="162366" fg:w="365"/><text x="7.2490%" y="543.50"></text></g><g><title>kernel_wait4 (364 samples, 0.02%)</title><rect x="6.9991%" y="517" width="0.0157%" height="15" fill="rgb(216,99,33)" fg:x="162367" fg:w="364"/><text x="7.2491%" y="527.50"></text></g><g><title>do_wait (363 samples, 0.02%)</title><rect x="6.9991%" y="501" width="0.0156%" height="15" fill="rgb(225,42,16)" fg:x="162368" fg:w="363"/><text x="7.2491%" y="511.50"></text></g><g><title>__libc_start_main (808 samples, 0.03%)</title><rect x="6.9866%" y="613" width="0.0348%" height="15" fill="rgb(220,201,45)" fg:x="162077" fg:w="808"/><text x="7.2366%" y="623.50"></text></g><g><title>main (721 samples, 0.03%)</title><rect x="6.9903%" y="597" width="0.0311%" height="15" fill="rgb(225,33,4)" fg:x="162164" fg:w="721"/><text x="7.2403%" y="607.50"></text></g><g><title>_dl_lookup_symbol_x (298 samples, 0.01%)</title><rect x="7.0343%" y="501" width="0.0128%" height="15" fill="rgb(224,33,50)" fg:x="163185" fg:w="298"/><text x="7.2843%" y="511.50"></text></g><g><title>elf_machine_rela (360 samples, 0.02%)</title><rect x="7.0320%" y="517" width="0.0155%" height="15" fill="rgb(246,198,51)" fg:x="163130" fg:w="360"/><text x="7.2820%" y="527.50"></text></g><g><title>elf_dynamic_do_Rela (412 samples, 0.02%)</title><rect x="7.0306%" y="533" width="0.0178%" height="15" fill="rgb(205,22,4)" fg:x="163099" fg:w="412"/><text x="7.2806%" y="543.50"></text></g><g><title>_dl_relocate_object (435 samples, 0.02%)</title><rect x="7.0298%" y="549" width="0.0188%" height="15" fill="rgb(206,3,8)" fg:x="163080" fg:w="435"/><text x="7.2798%" y="559.50"></text></g><g><title>[ld-2.31.so] (644 samples, 0.03%)</title><rect x="7.0214%" y="565" width="0.0278%" height="15" fill="rgb(251,23,15)" fg:x="162886" fg:w="644"/><text x="7.2714%" y="575.50"></text></g><g><title>_dl_start_final (664 samples, 0.03%)</title><rect x="7.0214%" y="597" width="0.0286%" height="15" fill="rgb(252,88,28)" fg:x="162885" fg:w="664"/><text x="7.2714%" y="607.50"></text></g><g><title>_dl_sysdep_start (663 samples, 0.03%)</title><rect x="7.0214%" y="581" width="0.0286%" height="15" fill="rgb(212,127,14)" fg:x="162886" fg:w="663"/><text x="7.2714%" y="591.50"></text></g><g><title>_dl_start (669 samples, 0.03%)</title><rect x="7.0214%" y="613" width="0.0288%" height="15" fill="rgb(247,145,37)" fg:x="162885" fg:w="669"/><text x="7.2714%" y="623.50"></text></g><g><title>_start (1,487 samples, 0.06%)</title><rect x="6.9865%" y="629" width="0.0641%" height="15" fill="rgb(209,117,53)" fg:x="162076" fg:w="1487"/><text x="7.2365%" y="639.50"></text></g><g><title>__x64_sys_exit (286 samples, 0.01%)</title><rect x="7.0605%" y="597" width="0.0123%" height="15" fill="rgb(212,90,42)" fg:x="163792" fg:w="286"/><text x="7.3105%" y="607.50"></text></g><g><title>do_exit (286 samples, 0.01%)</title><rect x="7.0605%" y="581" width="0.0123%" height="15" fill="rgb(218,164,37)" fg:x="163792" fg:w="286"/><text x="7.3105%" y="591.50"></text></g><g><title>linux-sandbox (3,742 samples, 0.16%)</title><rect x="6.9159%" y="645" width="0.1613%" height="15" fill="rgb(246,65,34)" fg:x="160438" fg:w="3742"/><text x="7.1659%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (475 samples, 0.02%)</title><rect x="7.0567%" y="629" width="0.0205%" height="15" fill="rgb(231,100,33)" fg:x="163705" fg:w="475"/><text x="7.3067%" y="639.50"></text></g><g><title>do_syscall_64 (475 samples, 0.02%)</title><rect x="7.0567%" y="613" width="0.0205%" height="15" fill="rgb(228,126,14)" fg:x="163705" fg:w="475"/><text x="7.3067%" y="623.50"></text></g><g><title>[perf-23153.map] (445 samples, 0.02%)</title><rect x="7.0869%" y="629" width="0.0192%" height="15" fill="rgb(215,173,21)" fg:x="164405" fg:w="445"/><text x="7.3369%" y="639.50"></text></g><g><title>process_reaper (455 samples, 0.02%)</title><rect x="7.0867%" y="645" width="0.0196%" height="15" fill="rgb(210,6,40)" fg:x="164399" fg:w="455"/><text x="7.3367%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (264 samples, 0.01%)</title><rect x="7.1297%" y="389" width="0.0114%" height="15" fill="rgb(212,48,18)" fg:x="165397" fg:w="264"/><text x="7.3797%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (264 samples, 0.01%)</title><rect x="7.1297%" y="373" width="0.0114%" height="15" fill="rgb(230,214,11)" fg:x="165397" fg:w="264"/><text x="7.3797%" y="383.50"></text></g><g><title>native_write_msr (264 samples, 0.01%)</title><rect x="7.1297%" y="357" width="0.0114%" height="15" fill="rgb(254,105,39)" fg:x="165397" fg:w="264"/><text x="7.3797%" y="367.50"></text></g><g><title>finish_task_switch (272 samples, 0.01%)</title><rect x="7.1294%" y="405" width="0.0117%" height="15" fill="rgb(245,158,5)" fg:x="165391" fg:w="272"/><text x="7.3794%" y="415.50"></text></g><g><title>futex_wait_queue_me (301 samples, 0.01%)</title><rect x="7.1285%" y="453" width="0.0130%" height="15" fill="rgb(249,208,11)" fg:x="165369" fg:w="301"/><text x="7.3785%" y="463.50"></text></g><g><title>schedule (299 samples, 0.01%)</title><rect x="7.1286%" y="437" width="0.0129%" height="15" fill="rgb(210,39,28)" fg:x="165371" fg:w="299"/><text x="7.3786%" y="447.50"></text></g><g><title>__schedule (295 samples, 0.01%)</title><rect x="7.1287%" y="421" width="0.0127%" height="15" fill="rgb(211,56,53)" fg:x="165375" fg:w="295"/><text x="7.3787%" y="431.50"></text></g><g><title>__x64_sys_futex (310 samples, 0.01%)</title><rect x="7.1282%" y="501" width="0.0134%" height="15" fill="rgb(226,201,30)" fg:x="165363" fg:w="310"/><text x="7.3782%" y="511.50"></text></g><g><title>do_futex (310 samples, 0.01%)</title><rect x="7.1282%" y="485" width="0.0134%" height="15" fill="rgb(239,101,34)" fg:x="165363" fg:w="310"/><text x="7.3782%" y="495.50"></text></g><g><title>futex_wait (305 samples, 0.01%)</title><rect x="7.1284%" y="469" width="0.0131%" height="15" fill="rgb(226,209,5)" fg:x="165368" fg:w="305"/><text x="7.3784%" y="479.50"></text></g><g><title>do_syscall_64 (312 samples, 0.01%)</title><rect x="7.1282%" y="517" width="0.0134%" height="15" fill="rgb(250,105,47)" fg:x="165363" fg:w="312"/><text x="7.3782%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (321 samples, 0.01%)</title><rect x="7.1282%" y="533" width="0.0138%" height="15" fill="rgb(230,72,3)" fg:x="165363" fg:w="321"/><text x="7.3782%" y="543.50"></text></g><g><title>__pthread_cond_wait (334 samples, 0.01%)</title><rect x="7.1277%" y="581" width="0.0144%" height="15" fill="rgb(232,218,39)" fg:x="165351" fg:w="334"/><text x="7.3777%" y="591.50"></text></g><g><title>__pthread_cond_wait_common (334 samples, 0.01%)</title><rect x="7.1277%" y="565" width="0.0144%" height="15" fill="rgb(248,166,6)" fg:x="165351" fg:w="334"/><text x="7.3777%" y="575.50"></text></g><g><title>futex_wait_cancelable (329 samples, 0.01%)</title><rect x="7.1279%" y="549" width="0.0142%" height="15" fill="rgb(247,89,20)" fg:x="165356" fg:w="329"/><text x="7.3779%" y="559.50"></text></g><g><title>Parker::park (351 samples, 0.02%)</title><rect x="7.1272%" y="597" width="0.0151%" height="15" fill="rgb(248,130,54)" fg:x="165340" fg:w="351"/><text x="7.3772%" y="607.50"></text></g><g><title>Unsafe_Park (357 samples, 0.02%)</title><rect x="7.1271%" y="613" width="0.0154%" height="15" fill="rgb(234,196,4)" fg:x="165336" fg:w="357"/><text x="7.3771%" y="623.50"></text></g><g><title>[perf-23153.map] (832 samples, 0.04%)</title><rect x="7.1068%" y="629" width="0.0359%" height="15" fill="rgb(250,143,31)" fg:x="164866" fg:w="832"/><text x="7.3568%" y="639.50"></text></g><g><title>profile-writer- (860 samples, 0.04%)</title><rect x="7.1063%" y="645" width="0.0371%" height="15" fill="rgb(211,110,34)" fg:x="164854" fg:w="860"/><text x="7.3563%" y="655.50"></text></g><g><title>[unknown] (333 samples, 0.01%)</title><rect x="7.1451%" y="629" width="0.0144%" height="15" fill="rgb(215,124,48)" fg:x="165754" fg:w="333"/><text x="7.3951%" y="639.50"></text></g><g><title>python3 (539 samples, 0.02%)</title><rect x="7.1436%" y="645" width="0.0232%" height="15" fill="rgb(216,46,13)" fg:x="165721" fg:w="539"/><text x="7.3936%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (348 samples, 0.02%)</title><rect x="7.1890%" y="325" width="0.0150%" height="15" fill="rgb(205,184,25)" fg:x="166772" fg:w="348"/><text x="7.4390%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (344 samples, 0.01%)</title><rect x="7.1891%" y="309" width="0.0148%" height="15" fill="rgb(228,1,10)" fg:x="166776" fg:w="344"/><text x="7.4391%" y="319.50"></text></g><g><title>native_write_msr (343 samples, 0.01%)</title><rect x="7.1892%" y="293" width="0.0148%" height="15" fill="rgb(213,116,27)" fg:x="166777" fg:w="343"/><text x="7.4392%" y="303.50"></text></g><g><title>finish_task_switch (370 samples, 0.02%)</title><rect x="7.1885%" y="341" width="0.0159%" height="15" fill="rgb(241,95,50)" fg:x="166761" fg:w="370"/><text x="7.4385%" y="351.50"></text></g><g><title>schedule (373 samples, 0.02%)</title><rect x="7.1884%" y="373" width="0.0161%" height="15" fill="rgb(238,48,32)" fg:x="166759" fg:w="373"/><text x="7.4384%" y="383.50"></text></g><g><title>__schedule (372 samples, 0.02%)</title><rect x="7.1884%" y="357" width="0.0160%" height="15" fill="rgb(235,113,49)" fg:x="166760" fg:w="372"/><text x="7.4384%" y="367.50"></text></g><g><title>new_sync_read (397 samples, 0.02%)</title><rect x="7.1876%" y="405" width="0.0171%" height="15" fill="rgb(205,127,43)" fg:x="166741" fg:w="397"/><text x="7.4376%" y="415.50"></text></g><g><title>pipe_read (395 samples, 0.02%)</title><rect x="7.1877%" y="389" width="0.0170%" height="15" fill="rgb(250,162,2)" fg:x="166743" fg:w="395"/><text x="7.4377%" y="399.50"></text></g><g><title>do_syscall_64 (405 samples, 0.02%)</title><rect x="7.1873%" y="453" width="0.0175%" height="15" fill="rgb(220,13,41)" fg:x="166734" fg:w="405"/><text x="7.4373%" y="463.50"></text></g><g><title>ksys_read (404 samples, 0.02%)</title><rect x="7.1874%" y="437" width="0.0174%" height="15" fill="rgb(249,221,25)" fg:x="166735" fg:w="404"/><text x="7.4374%" y="447.50"></text></g><g><title>vfs_read (403 samples, 0.02%)</title><rect x="7.1874%" y="421" width="0.0174%" height="15" fill="rgb(215,208,19)" fg:x="166736" fg:w="403"/><text x="7.4374%" y="431.50"></text></g><g><title>_IO_new_file_underflow (429 samples, 0.02%)</title><rect x="7.1864%" y="501" width="0.0185%" height="15" fill="rgb(236,175,2)" fg:x="166712" fg:w="429"/><text x="7.4364%" y="511.50"></text></g><g><title>__GI___libc_read (409 samples, 0.02%)</title><rect x="7.1872%" y="485" width="0.0176%" height="15" fill="rgb(241,52,2)" fg:x="166732" fg:w="409"/><text x="7.4372%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (407 samples, 0.02%)</title><rect x="7.1873%" y="469" width="0.0175%" height="15" fill="rgb(248,140,14)" fg:x="166734" fg:w="407"/><text x="7.4373%" y="479.50"></text></g><g><title>_IO_getdelim (435 samples, 0.02%)</title><rect x="7.1862%" y="517" width="0.0188%" height="15" fill="rgb(253,22,42)" fg:x="166707" fg:w="435"/><text x="7.4362%" y="527.50"></text></g><g><title>[sed] (700 samples, 0.03%)</title><rect x="7.1788%" y="533" width="0.0302%" height="15" fill="rgb(234,61,47)" fg:x="166537" fg:w="700"/><text x="7.4288%" y="543.50"></text></g><g><title>[sed] (766 samples, 0.03%)</title><rect x="7.1771%" y="549" width="0.0330%" height="15" fill="rgb(208,226,15)" fg:x="166498" fg:w="766"/><text x="7.4271%" y="559.50"></text></g><g><title>[sed] (935 samples, 0.04%)</title><rect x="7.1763%" y="565" width="0.0403%" height="15" fill="rgb(217,221,4)" fg:x="166478" fg:w="935"/><text x="7.4263%" y="575.50"></text></g><g><title>[sed] (958 samples, 0.04%)</title><rect x="7.1760%" y="581" width="0.0413%" height="15" fill="rgb(212,174,34)" fg:x="166471" fg:w="958"/><text x="7.4260%" y="591.50"></text></g><g><title>[sed] (1,082 samples, 0.05%)</title><rect x="7.1759%" y="597" width="0.0466%" height="15" fill="rgb(253,83,4)" fg:x="166469" fg:w="1082"/><text x="7.4259%" y="607.50"></text></g><g><title>__libc_start_main (1,180 samples, 0.05%)</title><rect x="7.1758%" y="613" width="0.0509%" height="15" fill="rgb(250,195,49)" fg:x="166468" fg:w="1180"/><text x="7.4258%" y="623.50"></text></g><g><title>[sed] (1,208 samples, 0.05%)</title><rect x="7.1756%" y="629" width="0.0521%" height="15" fill="rgb(241,192,25)" fg:x="166462" fg:w="1208"/><text x="7.4256%" y="639.50"></text></g><g><title>__GI__dl_addr (313 samples, 0.01%)</title><rect x="7.2497%" y="469" width="0.0135%" height="15" fill="rgb(208,124,10)" fg:x="168181" fg:w="313"/><text x="7.4997%" y="479.50"></text></g><g><title>determine_info (282 samples, 0.01%)</title><rect x="7.2510%" y="453" width="0.0122%" height="15" fill="rgb(222,33,0)" fg:x="168212" fg:w="282"/><text x="7.5010%" y="463.50"></text></g><g><title>__fopen_internal (445 samples, 0.02%)</title><rect x="7.2444%" y="533" width="0.0192%" height="15" fill="rgb(234,209,28)" fg:x="168058" fg:w="445"/><text x="7.4944%" y="543.50"></text></g><g><title>malloc_hook_ini (323 samples, 0.01%)</title><rect x="7.2496%" y="517" width="0.0139%" height="15" fill="rgb(224,11,23)" fg:x="168180" fg:w="323"/><text x="7.4996%" y="527.50"></text></g><g><title>ptmalloc_init (322 samples, 0.01%)</title><rect x="7.2497%" y="501" width="0.0139%" height="15" fill="rgb(232,99,1)" fg:x="168181" fg:w="322"/><text x="7.4997%" y="511.50"></text></g><g><title>ptmalloc_init (322 samples, 0.01%)</title><rect x="7.2497%" y="485" width="0.0139%" height="15" fill="rgb(237,95,45)" fg:x="168181" fg:w="322"/><text x="7.4997%" y="495.50"></text></g><g><title>[libselinux.so.1] (745 samples, 0.03%)</title><rect x="7.2317%" y="565" width="0.0321%" height="15" fill="rgb(208,109,11)" fg:x="167763" fg:w="745"/><text x="7.4817%" y="575.50"></text></g><g><title>selinuxfs_exists (619 samples, 0.03%)</title><rect x="7.2371%" y="549" width="0.0267%" height="15" fill="rgb(216,190,48)" fg:x="167889" fg:w="619"/><text x="7.4871%" y="559.50"></text></g><g><title>_dl_start_user (843 samples, 0.04%)</title><rect x="7.2317%" y="629" width="0.0363%" height="15" fill="rgb(251,171,36)" fg:x="167763" fg:w="843"/><text x="7.4817%" y="639.50"></text></g><g><title>_dl_init (843 samples, 0.04%)</title><rect x="7.2317%" y="613" width="0.0363%" height="15" fill="rgb(230,62,22)" fg:x="167763" fg:w="843"/><text x="7.4817%" y="623.50"></text></g><g><title>call_init (843 samples, 0.04%)</title><rect x="7.2317%" y="597" width="0.0363%" height="15" fill="rgb(225,114,35)" fg:x="167763" fg:w="843"/><text x="7.4817%" y="607.50"></text></g><g><title>call_init (843 samples, 0.04%)</title><rect x="7.2317%" y="581" width="0.0363%" height="15" fill="rgb(215,118,42)" fg:x="167763" fg:w="843"/><text x="7.4817%" y="591.50"></text></g><g><title>__split_vma (264 samples, 0.01%)</title><rect x="7.3012%" y="309" width="0.0114%" height="15" fill="rgb(243,119,21)" fg:x="169376" fg:w="264"/><text x="7.5512%" y="319.50"></text></g><g><title>__do_munmap (451 samples, 0.02%)</title><rect x="7.3004%" y="325" width="0.0194%" height="15" fill="rgb(252,177,53)" fg:x="169357" fg:w="451"/><text x="7.5504%" y="335.50"></text></g><g><title>mmap_region (850 samples, 0.04%)</title><rect x="7.2987%" y="341" width="0.0366%" height="15" fill="rgb(237,209,29)" fg:x="169319" fg:w="850"/><text x="7.5487%" y="351.50"></text></g><g><title>do_mmap (879 samples, 0.04%)</title><rect x="7.2976%" y="357" width="0.0379%" height="15" fill="rgb(212,65,23)" fg:x="169293" fg:w="879"/><text x="7.5476%" y="367.50"></text></g><g><title>ksys_mmap_pgoff (922 samples, 0.04%)</title><rect x="7.2968%" y="389" width="0.0397%" height="15" fill="rgb(230,222,46)" fg:x="169273" fg:w="922"/><text x="7.5468%" y="399.50"></text></g><g><title>vm_mmap_pgoff (906 samples, 0.04%)</title><rect x="7.2975%" y="373" width="0.0391%" height="15" fill="rgb(215,135,32)" fg:x="169289" fg:w="906"/><text x="7.5475%" y="383.50"></text></g><g><title>do_syscall_64 (989 samples, 0.04%)</title><rect x="7.2967%" y="405" width="0.0426%" height="15" fill="rgb(246,101,22)" fg:x="169272" fg:w="989"/><text x="7.5467%" y="415.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (995 samples, 0.04%)</title><rect x="7.2966%" y="421" width="0.0429%" height="15" fill="rgb(206,107,13)" fg:x="169270" fg:w="995"/><text x="7.5466%" y="431.50"></text></g><g><title>__mmap64 (1,017 samples, 0.04%)</title><rect x="7.2959%" y="437" width="0.0438%" height="15" fill="rgb(250,100,44)" fg:x="169252" fg:w="1017"/><text x="7.5459%" y="447.50"></text></g><g><title>_dl_map_segments (1,166 samples, 0.05%)</title><rect x="7.2895%" y="469" width="0.0503%" height="15" fill="rgb(231,147,38)" fg:x="169104" fg:w="1166"/><text x="7.5395%" y="479.50"></text></g><g><title>__mmap64 (1,018 samples, 0.04%)</title><rect x="7.2959%" y="453" width="0.0439%" height="15" fill="rgb(229,8,40)" fg:x="169252" fg:w="1018"/><text x="7.5459%" y="463.50"></text></g><g><title>_dl_map_object_from_fd (1,527 samples, 0.07%)</title><rect x="7.2869%" y="485" width="0.0658%" height="15" fill="rgb(221,135,30)" fg:x="169044" fg:w="1527"/><text x="7.5369%" y="495.50"></text></g><g><title>open_verify (284 samples, 0.01%)</title><rect x="7.3534%" y="485" width="0.0122%" height="15" fill="rgb(249,193,18)" fg:x="170588" fg:w="284"/><text x="7.6034%" y="495.50"></text></g><g><title>_dl_catch_exception (2,064 samples, 0.09%)</title><rect x="7.2780%" y="533" width="0.0890%" height="15" fill="rgb(209,133,39)" fg:x="168837" fg:w="2064"/><text x="7.5280%" y="543.50"></text></g><g><title>openaux (2,062 samples, 0.09%)</title><rect x="7.2781%" y="517" width="0.0889%" height="15" fill="rgb(232,100,14)" fg:x="168839" fg:w="2062"/><text x="7.5281%" y="527.50"></text></g><g><title>_dl_map_object (2,060 samples, 0.09%)</title><rect x="7.2781%" y="501" width="0.0888%" height="15" fill="rgb(224,185,1)" fg:x="168841" fg:w="2060"/><text x="7.5281%" y="511.50"></text></g><g><title>_dl_map_object_deps (2,132 samples, 0.09%)</title><rect x="7.2773%" y="549" width="0.0919%" height="15" fill="rgb(223,139,8)" fg:x="168821" fg:w="2132"/><text x="7.5273%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (233 samples, 0.01%)</title><rect x="7.3728%" y="501" width="0.0100%" height="15" fill="rgb(232,213,38)" fg:x="171038" fg:w="233"/><text x="7.6228%" y="511.50"></text></g><g><title>_dl_protect_relro (237 samples, 0.01%)</title><rect x="7.3727%" y="533" width="0.0102%" height="15" fill="rgb(207,94,22)" fg:x="171035" fg:w="237"/><text x="7.6227%" y="543.50"></text></g><g><title>__mprotect (237 samples, 0.01%)</title><rect x="7.3727%" y="517" width="0.0102%" height="15" fill="rgb(219,183,54)" fg:x="171035" fg:w="237"/><text x="7.6227%" y="527.50"></text></g><g><title>_dl_lookup_symbol_x (661 samples, 0.03%)</title><rect x="7.3922%" y="501" width="0.0285%" height="15" fill="rgb(216,185,54)" fg:x="171488" fg:w="661"/><text x="7.6422%" y="511.50"></text></g><g><title>do_lookup_x (521 samples, 0.02%)</title><rect x="7.3983%" y="485" width="0.0225%" height="15" fill="rgb(254,217,39)" fg:x="171628" fg:w="521"/><text x="7.6483%" y="495.50"></text></g><g><title>elf_machine_rela (773 samples, 0.03%)</title><rect x="7.3878%" y="517" width="0.0333%" height="15" fill="rgb(240,178,23)" fg:x="171386" fg:w="773"/><text x="7.6378%" y="527.50"></text></g><g><title>elf_dynamic_do_Rela (961 samples, 0.04%)</title><rect x="7.3829%" y="533" width="0.0414%" height="15" fill="rgb(218,11,47)" fg:x="171272" fg:w="961"/><text x="7.6329%" y="543.50"></text></g><g><title>_dl_relocate_object (1,226 samples, 0.05%)</title><rect x="7.3723%" y="549" width="0.0528%" height="15" fill="rgb(218,51,51)" fg:x="171026" fg:w="1226"/><text x="7.6223%" y="559.50"></text></g><g><title>[ld-2.31.so] (3,695 samples, 0.16%)</title><rect x="7.2737%" y="565" width="0.1593%" height="15" fill="rgb(238,126,27)" fg:x="168739" fg:w="3695"/><text x="7.5237%" y="575.50"></text></g><g><title>_dl_start_final (3,763 samples, 0.16%)</title><rect x="7.2734%" y="597" width="0.1622%" height="15" fill="rgb(249,202,22)" fg:x="168732" fg:w="3763"/><text x="7.5234%" y="607.50"></text></g><g><title>_dl_sysdep_start (3,763 samples, 0.16%)</title><rect x="7.2734%" y="581" width="0.1622%" height="15" fill="rgb(254,195,49)" fg:x="168732" fg:w="3763"/><text x="7.5234%" y="591.50"></text></g><g><title>_dl_start (3,812 samples, 0.16%)</title><rect x="7.2733%" y="613" width="0.1643%" height="15" fill="rgb(208,123,14)" fg:x="168728" fg:w="3812"/><text x="7.5233%" y="623.50"></text></g><g><title>_start (3,857 samples, 0.17%)</title><rect x="7.2731%" y="629" width="0.1663%" height="15" fill="rgb(224,200,8)" fg:x="168724" fg:w="3857"/><text x="7.5231%" y="639.50"></text></g><g><title>asm_exc_page_fault (244 samples, 0.01%)</title><rect x="7.4394%" y="629" width="0.0105%" height="15" fill="rgb(217,61,36)" fg:x="172581" fg:w="244"/><text x="7.6894%" y="639.50"></text></g><g><title>__x64_sys_execve (387 samples, 0.02%)</title><rect x="7.4500%" y="597" width="0.0167%" height="15" fill="rgb(206,35,45)" fg:x="172827" fg:w="387"/><text x="7.7000%" y="607.50"></text></g><g><title>do_execveat_common (387 samples, 0.02%)</title><rect x="7.4500%" y="581" width="0.0167%" height="15" fill="rgb(217,65,33)" fg:x="172827" fg:w="387"/><text x="7.7000%" y="591.50"></text></g><g><title>bprm_execve (387 samples, 0.02%)</title><rect x="7.4500%" y="565" width="0.0167%" height="15" fill="rgb(222,158,48)" fg:x="172827" fg:w="387"/><text x="7.7000%" y="575.50"></text></g><g><title>load_elf_binary (387 samples, 0.02%)</title><rect x="7.4500%" y="549" width="0.0167%" height="15" fill="rgb(254,2,54)" fg:x="172827" fg:w="387"/><text x="7.7000%" y="559.50"></text></g><g><title>unmap_page_range (308 samples, 0.01%)</title><rect x="7.4799%" y="501" width="0.0133%" height="15" fill="rgb(250,143,38)" fg:x="173522" fg:w="308"/><text x="7.7299%" y="511.50"></text></g><g><title>exit_mmap (612 samples, 0.03%)</title><rect x="7.4670%" y="533" width="0.0264%" height="15" fill="rgb(248,25,0)" fg:x="173223" fg:w="612"/><text x="7.7170%" y="543.50"></text></g><g><title>unmap_vmas (320 samples, 0.01%)</title><rect x="7.4796%" y="517" width="0.0138%" height="15" fill="rgb(206,152,27)" fg:x="173515" fg:w="320"/><text x="7.7296%" y="527.50"></text></g><g><title>mmput (614 samples, 0.03%)</title><rect x="7.4670%" y="549" width="0.0265%" height="15" fill="rgb(240,77,30)" fg:x="173223" fg:w="614"/><text x="7.7170%" y="559.50"></text></g><g><title>do_syscall_64 (1,056 samples, 0.05%)</title><rect x="7.4500%" y="613" width="0.0455%" height="15" fill="rgb(231,5,3)" fg:x="172827" fg:w="1056"/><text x="7.7000%" y="623.50"></text></g><g><title>__x64_sys_exit_group (669 samples, 0.03%)</title><rect x="7.4666%" y="597" width="0.0288%" height="15" fill="rgb(207,226,32)" fg:x="173214" fg:w="669"/><text x="7.7166%" y="607.50"></text></g><g><title>do_group_exit (669 samples, 0.03%)</title><rect x="7.4666%" y="581" width="0.0288%" height="15" fill="rgb(222,207,47)" fg:x="173214" fg:w="669"/><text x="7.7166%" y="591.50"></text></g><g><title>do_exit (669 samples, 0.03%)</title><rect x="7.4666%" y="565" width="0.0288%" height="15" fill="rgb(229,115,45)" fg:x="173214" fg:w="669"/><text x="7.7166%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,059 samples, 0.05%)</title><rect x="7.4499%" y="629" width="0.0456%" height="15" fill="rgb(224,191,6)" fg:x="172825" fg:w="1059"/><text x="7.6999%" y="639.50"></text></g><g><title>sed (7,631 samples, 0.33%)</title><rect x="7.1669%" y="645" width="0.3289%" height="15" fill="rgb(230,227,24)" fg:x="166260" fg:w="7631"/><text x="7.4169%" y="655.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (276 samples, 0.01%)</title><rect x="7.4976%" y="613" width="0.0119%" height="15" fill="rgb(228,80,19)" fg:x="173933" fg:w="276"/><text x="7.7476%" y="623.50"></text></g><g><title>HandleMark::pop_and_restore (247 samples, 0.01%)</title><rect x="7.5378%" y="613" width="0.0106%" height="15" fill="rgb(247,229,0)" fg:x="174864" fg:w="247"/><text x="7.7878%" y="623.50"></text></g><g><title>JavaThread::is_Java_thread (280 samples, 0.01%)</title><rect x="7.5629%" y="613" width="0.0121%" height="15" fill="rgb(237,194,15)" fg:x="175448" fg:w="280"/><text x="7.8129%" y="623.50"></text></g><g><title>ThreadStateTransition::transition_from_native (283 samples, 0.01%)</title><rect x="7.5848%" y="613" width="0.0122%" height="15" fill="rgb(219,203,20)" fg:x="175954" fg:w="283"/><text x="7.8348%" y="623.50"></text></g><g><title>__GI_unlinkat (460 samples, 0.02%)</title><rect x="7.6114%" y="613" width="0.0198%" height="15" fill="rgb(234,128,8)" fg:x="176572" fg:w="460"/><text x="7.8614%" y="623.50"></text></g><g><title>__symlink (263 samples, 0.01%)</title><rect x="7.6349%" y="613" width="0.0113%" height="15" fill="rgb(248,202,8)" fg:x="177117" fg:w="263"/><text x="7.8849%" y="623.50"></text></g><g><title>check_bounds (317 samples, 0.01%)</title><rect x="7.6521%" y="613" width="0.0137%" height="15" fill="rgb(206,104,37)" fg:x="177517" fg:w="317"/><text x="7.9021%" y="623.50"></text></g><g><title>[anon] (4,379 samples, 0.19%)</title><rect x="7.4975%" y="629" width="0.1888%" height="15" fill="rgb(223,8,27)" fg:x="173930" fg:w="4379"/><text x="7.7475%" y="639.50"></text></g><g><title>[libc-2.31.so] (295 samples, 0.01%)</title><rect x="7.9945%" y="613" width="0.0127%" height="15" fill="rgb(216,217,28)" fg:x="185460" fg:w="295"/><text x="8.2445%" y="623.50"></text></g><g><title>__x64_sys_close (484 samples, 0.02%)</title><rect x="8.0125%" y="565" width="0.0209%" height="15" fill="rgb(249,199,1)" fg:x="185877" fg:w="484"/><text x="8.2625%" y="575.50"></text></g><g><title>filp_close (324 samples, 0.01%)</title><rect x="8.0194%" y="549" width="0.0140%" height="15" fill="rgb(240,85,17)" fg:x="186037" fg:w="324"/><text x="8.2694%" y="559.50"></text></g><g><title>do_syscall_64 (565 samples, 0.02%)</title><rect x="8.0104%" y="581" width="0.0244%" height="15" fill="rgb(206,108,45)" fg:x="185828" fg:w="565"/><text x="8.2604%" y="591.50"></text></g><g><title>btrfs_release_file (567 samples, 0.02%)</title><rect x="8.0469%" y="517" width="0.0244%" height="15" fill="rgb(245,210,41)" fg:x="186675" fg:w="567"/><text x="8.2969%" y="527.50"></text></g><g><title>kfree (436 samples, 0.02%)</title><rect x="8.0525%" y="501" width="0.0188%" height="15" fill="rgb(206,13,37)" fg:x="186806" fg:w="436"/><text x="8.3025%" y="511.50"></text></g><g><title>__fput (1,142 samples, 0.05%)</title><rect x="8.0422%" y="533" width="0.0492%" height="15" fill="rgb(250,61,18)" fg:x="186565" fg:w="1142"/><text x="8.2922%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,981 samples, 0.09%)</title><rect x="8.0097%" y="597" width="0.0854%" height="15" fill="rgb(235,172,48)" fg:x="185812" fg:w="1981"/><text x="8.2597%" y="607.50"></text></g><g><title>syscall_exit_to_user_mode (1,400 samples, 0.06%)</title><rect x="8.0347%" y="581" width="0.0603%" height="15" fill="rgb(249,201,17)" fg:x="186393" fg:w="1400"/><text x="8.2847%" y="591.50"></text></g><g><title>exit_to_user_mode_prepare (1,393 samples, 0.06%)</title><rect x="8.0350%" y="565" width="0.0600%" height="15" fill="rgb(219,208,6)" fg:x="186400" fg:w="1393"/><text x="8.2850%" y="575.50"></text></g><g><title>task_work_run (1,280 samples, 0.06%)</title><rect x="8.0399%" y="549" width="0.0552%" height="15" fill="rgb(248,31,23)" fg:x="186513" fg:w="1280"/><text x="8.2899%" y="559.50"></text></g><g><title>__GI___close_nocancel (2,067 samples, 0.09%)</title><rect x="8.0072%" y="613" width="0.0891%" height="15" fill="rgb(245,15,42)" fg:x="185755" fg:w="2067"/><text x="8.2572%" y="623.50"></text></g><g><title>__GI___libc_free (900 samples, 0.04%)</title><rect x="8.0963%" y="613" width="0.0388%" height="15" fill="rgb(222,217,39)" fg:x="187822" fg:w="900"/><text x="8.3463%" y="623.50"></text></g><g><title>__do_sys_newlstat (319 samples, 0.01%)</title><rect x="8.1354%" y="565" width="0.0138%" height="15" fill="rgb(210,219,27)" fg:x="188729" fg:w="319"/><text x="8.3854%" y="575.50"></text></g><g><title>vfs_statx (309 samples, 0.01%)</title><rect x="8.1359%" y="549" width="0.0133%" height="15" fill="rgb(252,166,36)" fg:x="188739" fg:w="309"/><text x="8.3859%" y="559.50"></text></g><g><title>do_syscall_64 (322 samples, 0.01%)</title><rect x="8.1354%" y="581" width="0.0139%" height="15" fill="rgb(245,132,34)" fg:x="188728" fg:w="322"/><text x="8.3854%" y="591.50"></text></g><g><title>__GI___lxstat (329 samples, 0.01%)</title><rect x="8.1353%" y="613" width="0.0142%" height="15" fill="rgb(236,54,3)" fg:x="188725" fg:w="329"/><text x="8.3853%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (326 samples, 0.01%)</title><rect x="8.1354%" y="597" width="0.0141%" height="15" fill="rgb(241,173,43)" fg:x="188728" fg:w="326"/><text x="8.3854%" y="607.50"></text></g><g><title>dput (364 samples, 0.02%)</title><rect x="8.1607%" y="549" width="0.0157%" height="15" fill="rgb(215,190,9)" fg:x="189316" fg:w="364"/><text x="8.4107%" y="559.50"></text></g><g><title>btrfs_free_path (237 samples, 0.01%)</title><rect x="8.1814%" y="485" width="0.0102%" height="15" fill="rgb(242,101,16)" fg:x="189795" fg:w="237"/><text x="8.4314%" y="495.50"></text></g><g><title>finish_wait (267 samples, 0.01%)</title><rect x="8.2057%" y="421" width="0.0115%" height="15" fill="rgb(223,190,21)" fg:x="190360" fg:w="267"/><text x="8.4557%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (251 samples, 0.01%)</title><rect x="8.2064%" y="405" width="0.0108%" height="15" fill="rgb(215,228,25)" fg:x="190376" fg:w="251"/><text x="8.4564%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (246 samples, 0.01%)</title><rect x="8.2067%" y="389" width="0.0106%" height="15" fill="rgb(225,36,22)" fg:x="190381" fg:w="246"/><text x="8.4567%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (796 samples, 0.03%)</title><rect x="8.2201%" y="405" width="0.0343%" height="15" fill="rgb(251,106,46)" fg:x="190692" fg:w="796"/><text x="8.4701%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (765 samples, 0.03%)</title><rect x="8.2214%" y="389" width="0.0330%" height="15" fill="rgb(208,90,1)" fg:x="190723" fg:w="765"/><text x="8.4714%" y="399.50"></text></g><g><title>prepare_to_wait_event (882 samples, 0.04%)</title><rect x="8.2173%" y="421" width="0.0380%" height="15" fill="rgb(243,10,4)" fg:x="190628" fg:w="882"/><text x="8.4673%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (692 samples, 0.03%)</title><rect x="8.2553%" y="421" width="0.0298%" height="15" fill="rgb(212,137,27)" fg:x="191510" fg:w="692"/><text x="8.5053%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (508 samples, 0.02%)</title><rect x="8.2633%" y="405" width="0.0219%" height="15" fill="rgb(231,220,49)" fg:x="191694" fg:w="508"/><text x="8.5133%" y="415.50"></text></g><g><title>finish_task_switch (265 samples, 0.01%)</title><rect x="8.2944%" y="389" width="0.0114%" height="15" fill="rgb(237,96,20)" fg:x="192416" fg:w="265"/><text x="8.5444%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,603 samples, 0.11%)</title><rect x="8.2012%" y="437" width="0.1122%" height="15" fill="rgb(239,229,30)" fg:x="190254" fg:w="2603"/><text x="8.4512%" y="447.50"></text></g><g><title>schedule (655 samples, 0.03%)</title><rect x="8.2852%" y="421" width="0.0282%" height="15" fill="rgb(219,65,33)" fg:x="192202" fg:w="655"/><text x="8.5352%" y="431.50"></text></g><g><title>__schedule (648 samples, 0.03%)</title><rect x="8.2855%" y="405" width="0.0279%" height="15" fill="rgb(243,134,7)" fg:x="192209" fg:w="648"/><text x="8.5355%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (2,737 samples, 0.12%)</title><rect x="8.2005%" y="453" width="0.1180%" height="15" fill="rgb(216,177,54)" fg:x="190238" fg:w="2737"/><text x="8.4505%" y="463.50"></text></g><g><title>finish_task_switch (243 samples, 0.01%)</title><rect x="8.3437%" y="405" width="0.0105%" height="15" fill="rgb(211,160,20)" fg:x="193561" fg:w="243"/><text x="8.5937%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (973 samples, 0.04%)</title><rect x="8.3185%" y="453" width="0.0419%" height="15" fill="rgb(239,85,39)" fg:x="192975" fg:w="973"/><text x="8.5685%" y="463.50"></text></g><g><title>schedule (563 samples, 0.02%)</title><rect x="8.3361%" y="437" width="0.0243%" height="15" fill="rgb(232,125,22)" fg:x="193385" fg:w="563"/><text x="8.5861%" y="447.50"></text></g><g><title>__schedule (558 samples, 0.02%)</title><rect x="8.3364%" y="421" width="0.0241%" height="15" fill="rgb(244,57,34)" fg:x="193390" fg:w="558"/><text x="8.5864%" y="431.50"></text></g><g><title>__wake_up_common (500 samples, 0.02%)</title><rect x="8.3605%" y="437" width="0.0216%" height="15" fill="rgb(214,203,32)" fg:x="193950" fg:w="500"/><text x="8.6105%" y="447.50"></text></g><g><title>autoremove_wake_function (495 samples, 0.02%)</title><rect x="8.3607%" y="421" width="0.0213%" height="15" fill="rgb(207,58,43)" fg:x="193955" fg:w="495"/><text x="8.6107%" y="431.50"></text></g><g><title>try_to_wake_up (478 samples, 0.02%)</title><rect x="8.3614%" y="405" width="0.0206%" height="15" fill="rgb(215,193,15)" fg:x="193972" fg:w="478"/><text x="8.6114%" y="415.50"></text></g><g><title>__wake_up_common_lock (508 samples, 0.02%)</title><rect x="8.3604%" y="453" width="0.0219%" height="15" fill="rgb(232,15,44)" fg:x="193948" fg:w="508"/><text x="8.6104%" y="463.50"></text></g><g><title>btrfs_tree_read_lock_atomic (717 samples, 0.03%)</title><rect x="8.3883%" y="453" width="0.0309%" height="15" fill="rgb(212,3,48)" fg:x="194595" fg:w="717"/><text x="8.6383%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (635 samples, 0.03%)</title><rect x="8.3918%" y="437" width="0.0274%" height="15" fill="rgb(218,128,7)" fg:x="194677" fg:w="635"/><text x="8.6418%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (325 samples, 0.01%)</title><rect x="8.4237%" y="453" width="0.0140%" height="15" fill="rgb(226,216,39)" fg:x="195417" fg:w="325"/><text x="8.6737%" y="463.50"></text></g><g><title>find_extent_buffer (456 samples, 0.02%)</title><rect x="8.4477%" y="437" width="0.0197%" height="15" fill="rgb(243,47,51)" fg:x="195972" fg:w="456"/><text x="8.6977%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (744 samples, 0.03%)</title><rect x="8.4377%" y="453" width="0.0321%" height="15" fill="rgb(241,183,40)" fg:x="195742" fg:w="744"/><text x="8.6877%" y="463.50"></text></g><g><title>btrfs_search_slot (6,487 samples, 0.28%)</title><rect x="8.1924%" y="469" width="0.2796%" height="15" fill="rgb(231,217,32)" fg:x="190051" fg:w="6487"/><text x="8.4424%" y="479.50"></text></g><g><title>btrfs_lookup_dir_item (6,565 samples, 0.28%)</title><rect x="8.1916%" y="485" width="0.2830%" height="15" fill="rgb(229,61,38)" fg:x="190032" fg:w="6565"/><text x="8.4416%" y="495.50"></text></g><g><title>btrfs_lookup (6,993 samples, 0.30%)</title><rect x="8.1784%" y="517" width="0.3014%" height="15" fill="rgb(225,210,5)" fg:x="189725" fg:w="6993"/><text x="8.4284%" y="527.50"></text></g><g><title>btrfs_lookup_dentry (6,984 samples, 0.30%)</title><rect x="8.1788%" y="501" width="0.3011%" height="15" fill="rgb(231,79,45)" fg:x="189734" fg:w="6984"/><text x="8.4288%" y="511.50"></text></g><g><title>kmem_cache_alloc (317 samples, 0.01%)</title><rect x="8.4826%" y="485" width="0.0137%" height="15" fill="rgb(224,100,7)" fg:x="196783" fg:w="317"/><text x="8.7326%" y="495.50"></text></g><g><title>__d_alloc (376 samples, 0.02%)</title><rect x="8.4806%" y="501" width="0.0162%" height="15" fill="rgb(241,198,18)" fg:x="196735" fg:w="376"/><text x="8.7306%" y="511.50"></text></g><g><title>d_alloc (423 samples, 0.02%)</title><rect x="8.4798%" y="517" width="0.0182%" height="15" fill="rgb(252,97,53)" fg:x="196718" fg:w="423"/><text x="8.7298%" y="527.50"></text></g><g><title>__lookup_hash (7,658 samples, 0.33%)</title><rect x="8.1777%" y="533" width="0.3301%" height="15" fill="rgb(220,88,7)" fg:x="189709" fg:w="7658"/><text x="8.4277%" y="543.50"></text></g><g><title>inode_permission.part.0 (523 samples, 0.02%)</title><rect x="8.5319%" y="485" width="0.0225%" height="15" fill="rgb(213,176,14)" fg:x="197927" fg:w="523"/><text x="8.7819%" y="495.50"></text></g><g><title>__d_lookup_rcu (742 samples, 0.03%)</title><rect x="8.5669%" y="453" width="0.0320%" height="15" fill="rgb(246,73,7)" fg:x="198739" fg:w="742"/><text x="8.8169%" y="463.50"></text></g><g><title>lookup_fast (857 samples, 0.04%)</title><rect x="8.5620%" y="469" width="0.0369%" height="15" fill="rgb(245,64,36)" fg:x="198625" fg:w="857"/><text x="8.8120%" y="479.50"></text></g><g><title>link_path_walk.part.0 (2,052 samples, 0.09%)</title><rect x="8.5174%" y="501" width="0.0885%" height="15" fill="rgb(245,80,10)" fg:x="197589" fg:w="2052"/><text x="8.7674%" y="511.50"></text></g><g><title>walk_component (1,166 samples, 0.05%)</title><rect x="8.5556%" y="485" width="0.0503%" height="15" fill="rgb(232,107,50)" fg:x="198475" fg:w="1166"/><text x="8.8056%" y="495.50"></text></g><g><title>filename_parentat (2,474 samples, 0.11%)</title><rect x="8.5087%" y="533" width="0.1066%" height="15" fill="rgb(253,3,0)" fg:x="197389" fg:w="2474"/><text x="8.7587%" y="543.50"></text></g><g><title>path_parentat (2,436 samples, 0.11%)</title><rect x="8.5104%" y="517" width="0.1050%" height="15" fill="rgb(212,99,53)" fg:x="197427" fg:w="2436"/><text x="8.7604%" y="527.50"></text></g><g><title>filename_create (10,335 samples, 0.45%)</title><rect x="8.1764%" y="549" width="0.4455%" height="15" fill="rgb(249,111,54)" fg:x="189680" fg:w="10335"/><text x="8.4264%" y="559.50"></text></g><g><title>getname_flags.part.0 (477 samples, 0.02%)</title><rect x="8.6222%" y="549" width="0.0206%" height="15" fill="rgb(249,55,30)" fg:x="200021" fg:w="477"/><text x="8.8722%" y="559.50"></text></g><g><title>strncpy_from_user (241 samples, 0.01%)</title><rect x="8.6324%" y="533" width="0.0104%" height="15" fill="rgb(237,47,42)" fg:x="200257" fg:w="241"/><text x="8.8824%" y="543.50"></text></g><g><title>__btrfs_end_transaction (424 samples, 0.02%)</title><rect x="8.6564%" y="517" width="0.0183%" height="15" fill="rgb(211,20,18)" fg:x="200815" fg:w="424"/><text x="8.9064%" y="527.50"></text></g><g><title>btrfs_insert_delayed_dir_index (725 samples, 0.03%)</title><rect x="8.6821%" y="485" width="0.0313%" height="15" fill="rgb(231,203,46)" fg:x="201411" fg:w="725"/><text x="8.9321%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (557 samples, 0.02%)</title><rect x="8.7537%" y="389" width="0.0240%" height="15" fill="rgb(237,142,3)" fg:x="203071" fg:w="557"/><text x="9.0037%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (536 samples, 0.02%)</title><rect x="8.7546%" y="373" width="0.0231%" height="15" fill="rgb(241,107,1)" fg:x="203092" fg:w="536"/><text x="9.0046%" y="383.50"></text></g><g><title>prepare_to_wait_event (623 samples, 0.03%)</title><rect x="8.7515%" y="405" width="0.0269%" height="15" fill="rgb(229,83,13)" fg:x="203020" fg:w="623"/><text x="9.0015%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (627 samples, 0.03%)</title><rect x="8.7783%" y="405" width="0.0270%" height="15" fill="rgb(241,91,40)" fg:x="203643" fg:w="627"/><text x="9.0283%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (464 samples, 0.02%)</title><rect x="8.7854%" y="389" width="0.0200%" height="15" fill="rgb(225,3,45)" fg:x="203806" fg:w="464"/><text x="9.0354%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,069 samples, 0.09%)</title><rect x="8.7384%" y="421" width="0.0892%" height="15" fill="rgb(244,223,14)" fg:x="202716" fg:w="2069"/><text x="8.9884%" y="431.50"></text></g><g><title>schedule (515 samples, 0.02%)</title><rect x="8.8054%" y="405" width="0.0222%" height="15" fill="rgb(224,124,37)" fg:x="204270" fg:w="515"/><text x="9.0554%" y="415.50"></text></g><g><title>__schedule (506 samples, 0.02%)</title><rect x="8.8057%" y="389" width="0.0218%" height="15" fill="rgb(251,171,30)" fg:x="204279" fg:w="506"/><text x="9.0557%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (2,155 samples, 0.09%)</title><rect x="8.7379%" y="437" width="0.0929%" height="15" fill="rgb(236,46,54)" fg:x="202704" fg:w="2155"/><text x="8.9879%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (329 samples, 0.01%)</title><rect x="8.8623%" y="373" width="0.0142%" height="15" fill="rgb(245,213,5)" fg:x="205592" fg:w="329"/><text x="9.1123%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (320 samples, 0.01%)</title><rect x="8.8627%" y="357" width="0.0138%" height="15" fill="rgb(230,144,27)" fg:x="205601" fg:w="320"/><text x="9.1127%" y="367.50"></text></g><g><title>native_write_msr (314 samples, 0.01%)</title><rect x="8.8630%" y="341" width="0.0135%" height="15" fill="rgb(220,86,6)" fg:x="205607" fg:w="314"/><text x="9.1130%" y="351.50"></text></g><g><title>finish_task_switch (370 samples, 0.02%)</title><rect x="8.8611%" y="389" width="0.0159%" height="15" fill="rgb(240,20,13)" fg:x="205563" fg:w="370"/><text x="9.1111%" y="399.50"></text></g><g><title>__btrfs_tree_lock (1,237 samples, 0.05%)</title><rect x="8.8307%" y="437" width="0.0533%" height="15" fill="rgb(217,89,34)" fg:x="204859" fg:w="1237"/><text x="9.0807%" y="447.50"></text></g><g><title>schedule (703 samples, 0.03%)</title><rect x="8.8538%" y="421" width="0.0303%" height="15" fill="rgb(229,13,5)" fg:x="205393" fg:w="703"/><text x="9.1038%" y="431.50"></text></g><g><title>__schedule (697 samples, 0.03%)</title><rect x="8.8540%" y="405" width="0.0300%" height="15" fill="rgb(244,67,35)" fg:x="205399" fg:w="697"/><text x="9.1040%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (1,292 samples, 0.06%)</title><rect x="8.8901%" y="437" width="0.0557%" height="15" fill="rgb(221,40,2)" fg:x="206236" fg:w="1292"/><text x="9.1401%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (1,246 samples, 0.05%)</title><rect x="8.8921%" y="421" width="0.0537%" height="15" fill="rgb(237,157,21)" fg:x="206282" fg:w="1246"/><text x="9.1421%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (391 samples, 0.02%)</title><rect x="8.9289%" y="405" width="0.0169%" height="15" fill="rgb(222,94,11)" fg:x="207137" fg:w="391"/><text x="9.1789%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (347 samples, 0.01%)</title><rect x="8.9458%" y="437" width="0.0150%" height="15" fill="rgb(249,113,6)" fg:x="207528" fg:w="347"/><text x="9.1958%" y="447.50"></text></g><g><title>find_extent_buffer (368 samples, 0.02%)</title><rect x="8.9684%" y="421" width="0.0159%" height="15" fill="rgb(238,137,36)" fg:x="208052" fg:w="368"/><text x="9.2184%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (594 samples, 0.03%)</title><rect x="8.9608%" y="437" width="0.0256%" height="15" fill="rgb(210,102,26)" fg:x="207875" fg:w="594"/><text x="9.2108%" y="447.50"></text></g><g><title>split_leaf (366 samples, 0.02%)</title><rect x="8.9864%" y="437" width="0.0158%" height="15" fill="rgb(218,30,30)" fg:x="208470" fg:w="366"/><text x="9.2364%" y="447.50"></text></g><g><title>push_leaf_right (237 samples, 0.01%)</title><rect x="8.9920%" y="421" width="0.0102%" height="15" fill="rgb(214,67,26)" fg:x="208599" fg:w="237"/><text x="9.2420%" y="431.50"></text></g><g><title>ttwu_do_activate (350 samples, 0.02%)</title><rect x="9.0196%" y="357" width="0.0151%" height="15" fill="rgb(251,9,53)" fg:x="209241" fg:w="350"/><text x="9.2696%" y="367.50"></text></g><g><title>__wake_up_common (739 samples, 0.03%)</title><rect x="9.0052%" y="405" width="0.0319%" height="15" fill="rgb(228,204,25)" fg:x="208906" fg:w="739"/><text x="9.2552%" y="415.50"></text></g><g><title>autoremove_wake_function (730 samples, 0.03%)</title><rect x="9.0056%" y="389" width="0.0315%" height="15" fill="rgb(207,153,8)" fg:x="208915" fg:w="730"/><text x="9.2556%" y="399.50"></text></g><g><title>try_to_wake_up (707 samples, 0.03%)</title><rect x="9.0066%" y="373" width="0.0305%" height="15" fill="rgb(242,9,16)" fg:x="208938" fg:w="707"/><text x="9.2566%" y="383.50"></text></g><g><title>__wake_up_common_lock (752 samples, 0.03%)</title><rect x="9.0051%" y="421" width="0.0324%" height="15" fill="rgb(217,211,10)" fg:x="208904" fg:w="752"/><text x="9.2551%" y="431.50"></text></g><g><title>btrfs_search_slot (7,201 samples, 0.31%)</title><rect x="8.7306%" y="453" width="0.3104%" height="15" fill="rgb(219,228,52)" fg:x="202535" fg:w="7201"/><text x="8.9806%" y="463.50"></text></g><g><title>unlock_up (893 samples, 0.04%)</title><rect x="9.0025%" y="437" width="0.0385%" height="15" fill="rgb(231,92,29)" fg:x="208843" fg:w="893"/><text x="9.2525%" y="447.50"></text></g><g><title>btrfs_get_token_32 (490 samples, 0.02%)</title><rect x="9.0496%" y="437" width="0.0211%" height="15" fill="rgb(232,8,23)" fg:x="209935" fg:w="490"/><text x="9.2996%" y="447.50"></text></g><g><title>btrfs_set_token_32 (380 samples, 0.02%)</title><rect x="9.0771%" y="437" width="0.0164%" height="15" fill="rgb(216,211,34)" fg:x="210574" fg:w="380"/><text x="9.3271%" y="447.50"></text></g><g><title>memcpy_extent_buffer (266 samples, 0.01%)</title><rect x="9.0953%" y="437" width="0.0115%" height="15" fill="rgb(236,151,0)" fg:x="210997" fg:w="266"/><text x="9.3453%" y="447.50"></text></g><g><title>insert_with_overflow (9,002 samples, 0.39%)</title><rect x="8.7275%" y="485" width="0.3880%" height="15" fill="rgb(209,168,3)" fg:x="202463" fg:w="9002"/><text x="8.9775%" y="495.50"></text></g><g><title>btrfs_insert_empty_items (8,944 samples, 0.39%)</title><rect x="8.7300%" y="469" width="0.3855%" height="15" fill="rgb(208,129,28)" fg:x="202521" fg:w="8944"/><text x="8.9800%" y="479.50"></text></g><g><title>setup_items_for_insert (1,729 samples, 0.07%)</title><rect x="9.0410%" y="453" width="0.0745%" height="15" fill="rgb(229,78,22)" fg:x="209736" fg:w="1729"/><text x="9.2910%" y="463.50"></text></g><g><title>btrfs_insert_dir_item (10,285 samples, 0.44%)</title><rect x="8.6795%" y="501" width="0.4434%" height="15" fill="rgb(228,187,13)" fg:x="201351" fg:w="10285"/><text x="8.9295%" y="511.50"></text></g><g><title>btrfs_update_inode (355 samples, 0.02%)</title><rect x="9.1229%" y="501" width="0.0153%" height="15" fill="rgb(240,119,24)" fg:x="211636" fg:w="355"/><text x="9.3729%" y="511.50"></text></g><g><title>btrfs_add_link (10,723 samples, 0.46%)</title><rect x="8.6770%" y="517" width="0.4622%" height="15" fill="rgb(209,194,42)" fg:x="201293" fg:w="10723"/><text x="8.9270%" y="527.50"></text></g><g><title>__queue_work (266 samples, 0.01%)</title><rect x="9.1442%" y="485" width="0.0115%" height="15" fill="rgb(247,200,46)" fg:x="212131" fg:w="266"/><text x="9.3942%" y="495.50"></text></g><g><title>btrfs_btree_balance_dirty (382 samples, 0.02%)</title><rect x="9.1393%" y="517" width="0.0165%" height="15" fill="rgb(218,76,16)" fg:x="212016" fg:w="382"/><text x="9.3893%" y="527.50"></text></g><g><title>queue_work_on (273 samples, 0.01%)</title><rect x="9.1440%" y="501" width="0.0118%" height="15" fill="rgb(225,21,48)" fg:x="212125" fg:w="273"/><text x="9.3940%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (554 samples, 0.02%)</title><rect x="9.2084%" y="421" width="0.0239%" height="15" fill="rgb(239,223,50)" fg:x="213619" fg:w="554"/><text x="9.4584%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (528 samples, 0.02%)</title><rect x="9.2095%" y="405" width="0.0228%" height="15" fill="rgb(244,45,21)" fg:x="213645" fg:w="528"/><text x="9.4595%" y="415.50"></text></g><g><title>prepare_to_wait_event (631 samples, 0.03%)</title><rect x="9.2059%" y="437" width="0.0272%" height="15" fill="rgb(232,33,43)" fg:x="213561" fg:w="631"/><text x="9.4559%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (734 samples, 0.03%)</title><rect x="9.2331%" y="437" width="0.0316%" height="15" fill="rgb(209,8,3)" fg:x="214192" fg:w="734"/><text x="9.4831%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (542 samples, 0.02%)</title><rect x="9.2413%" y="421" width="0.0234%" height="15" fill="rgb(214,25,53)" fg:x="214384" fg:w="542"/><text x="9.4913%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (2,191 samples, 0.09%)</title><rect x="9.1920%" y="453" width="0.0944%" height="15" fill="rgb(254,186,54)" fg:x="213239" fg:w="2191"/><text x="9.4420%" y="463.50"></text></g><g><title>schedule (504 samples, 0.02%)</title><rect x="9.2647%" y="437" width="0.0217%" height="15" fill="rgb(208,174,49)" fg:x="214926" fg:w="504"/><text x="9.5147%" y="447.50"></text></g><g><title>__schedule (497 samples, 0.02%)</title><rect x="9.2650%" y="421" width="0.0214%" height="15" fill="rgb(233,191,51)" fg:x="214933" fg:w="497"/><text x="9.5150%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (2,286 samples, 0.10%)</title><rect x="9.1918%" y="469" width="0.0985%" height="15" fill="rgb(222,134,10)" fg:x="213234" fg:w="2286"/><text x="9.4418%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (255 samples, 0.01%)</title><rect x="9.3234%" y="405" width="0.0110%" height="15" fill="rgb(230,226,20)" fg:x="216287" fg:w="255"/><text x="9.5734%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (248 samples, 0.01%)</title><rect x="9.3237%" y="389" width="0.0107%" height="15" fill="rgb(251,111,25)" fg:x="216294" fg:w="248"/><text x="9.5737%" y="399.50"></text></g><g><title>native_write_msr (246 samples, 0.01%)</title><rect x="9.3238%" y="373" width="0.0106%" height="15" fill="rgb(224,40,46)" fg:x="216296" fg:w="246"/><text x="9.5738%" y="383.50"></text></g><g><title>finish_task_switch (293 samples, 0.01%)</title><rect x="9.3221%" y="421" width="0.0126%" height="15" fill="rgb(236,108,47)" fg:x="216258" fg:w="293"/><text x="9.5721%" y="431.50"></text></g><g><title>__btrfs_tree_lock (1,182 samples, 0.05%)</title><rect x="9.2903%" y="469" width="0.0510%" height="15" fill="rgb(234,93,0)" fg:x="215520" fg:w="1182"/><text x="9.5403%" y="479.50"></text></g><g><title>schedule (657 samples, 0.03%)</title><rect x="9.3129%" y="453" width="0.0283%" height="15" fill="rgb(224,213,32)" fg:x="216045" fg:w="657"/><text x="9.5629%" y="463.50"></text></g><g><title>__schedule (651 samples, 0.03%)</title><rect x="9.3132%" y="437" width="0.0281%" height="15" fill="rgb(251,11,48)" fg:x="216051" fg:w="651"/><text x="9.5632%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (1,193 samples, 0.05%)</title><rect x="9.3473%" y="469" width="0.0514%" height="15" fill="rgb(236,173,5)" fg:x="216841" fg:w="1193"/><text x="9.5973%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (1,132 samples, 0.05%)</title><rect x="9.3499%" y="453" width="0.0488%" height="15" fill="rgb(230,95,12)" fg:x="216902" fg:w="1132"/><text x="9.5999%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (333 samples, 0.01%)</title><rect x="9.3843%" y="437" width="0.0144%" height="15" fill="rgb(232,209,1)" fg:x="217701" fg:w="333"/><text x="9.6343%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (258 samples, 0.01%)</title><rect x="9.3987%" y="469" width="0.0111%" height="15" fill="rgb(232,6,1)" fg:x="218034" fg:w="258"/><text x="9.6487%" y="479.50"></text></g><g><title>find_extent_buffer (385 samples, 0.02%)</title><rect x="9.4170%" y="453" width="0.0166%" height="15" fill="rgb(210,224,50)" fg:x="218460" fg:w="385"/><text x="9.6670%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (605 samples, 0.03%)</title><rect x="9.4098%" y="469" width="0.0261%" height="15" fill="rgb(228,127,35)" fg:x="218292" fg:w="605"/><text x="9.6598%" y="479.50"></text></g><g><title>split_leaf (430 samples, 0.02%)</title><rect x="9.4359%" y="469" width="0.0185%" height="15" fill="rgb(245,102,45)" fg:x="218897" fg:w="430"/><text x="9.6859%" y="479.50"></text></g><g><title>ttwu_do_activate (394 samples, 0.02%)</title><rect x="9.4739%" y="389" width="0.0170%" height="15" fill="rgb(214,1,49)" fg:x="219779" fg:w="394"/><text x="9.7239%" y="399.50"></text></g><g><title>__wake_up_common (841 samples, 0.04%)</title><rect x="9.4578%" y="437" width="0.0363%" height="15" fill="rgb(226,163,40)" fg:x="219406" fg:w="841"/><text x="9.7078%" y="447.50"></text></g><g><title>autoremove_wake_function (829 samples, 0.04%)</title><rect x="9.4583%" y="421" width="0.0357%" height="15" fill="rgb(239,212,28)" fg:x="219418" fg:w="829"/><text x="9.7083%" y="431.50"></text></g><g><title>try_to_wake_up (814 samples, 0.04%)</title><rect x="9.4590%" y="405" width="0.0351%" height="15" fill="rgb(220,20,13)" fg:x="219433" fg:w="814"/><text x="9.7090%" y="415.50"></text></g><g><title>__wake_up_common_lock (854 samples, 0.04%)</title><rect x="9.4576%" y="453" width="0.0368%" height="15" fill="rgb(210,164,35)" fg:x="219402" fg:w="854"/><text x="9.7076%" y="463.50"></text></g><g><title>btrfs_search_slot (7,256 samples, 0.31%)</title><rect x="9.1854%" y="485" width="0.3128%" height="15" fill="rgb(248,109,41)" fg:x="213087" fg:w="7256"/><text x="9.4354%" y="495.50"></text></g><g><title>unlock_up (1,011 samples, 0.04%)</title><rect x="9.4546%" y="469" width="0.0436%" height="15" fill="rgb(238,23,50)" fg:x="219332" fg:w="1011"/><text x="9.7046%" y="479.50"></text></g><g><title>btrfs_insert_empty_items (8,000 samples, 0.34%)</title><rect x="9.1847%" y="501" width="0.3449%" height="15" fill="rgb(211,48,49)" fg:x="213069" fg:w="8000"/><text x="9.4347%" y="511.50"></text></g><g><title>setup_items_for_insert (726 samples, 0.03%)</title><rect x="9.4982%" y="485" width="0.0313%" height="15" fill="rgb(223,36,21)" fg:x="220343" fg:w="726"/><text x="9.7482%" y="495.50"></text></g><g><title>fill_inode_item (414 samples, 0.02%)</title><rect x="9.5383%" y="501" width="0.0178%" height="15" fill="rgb(207,123,46)" fg:x="221272" fg:w="414"/><text x="9.7883%" y="511.50"></text></g><g><title>inode_tree_add (768 samples, 0.03%)</title><rect x="9.5591%" y="501" width="0.0331%" height="15" fill="rgb(240,218,32)" fg:x="221755" fg:w="768"/><text x="9.8091%" y="511.50"></text></g><g><title>btrfs_alloc_inode (499 samples, 0.02%)</title><rect x="9.6072%" y="469" width="0.0215%" height="15" fill="rgb(252,5,43)" fg:x="222872" fg:w="499"/><text x="9.8572%" y="479.50"></text></g><g><title>kmem_cache_alloc (326 samples, 0.01%)</title><rect x="9.6147%" y="453" width="0.0141%" height="15" fill="rgb(252,84,19)" fg:x="223045" fg:w="326"/><text x="9.8647%" y="463.50"></text></g><g><title>alloc_inode (653 samples, 0.03%)</title><rect x="9.6061%" y="485" width="0.0281%" height="15" fill="rgb(243,152,39)" fg:x="222845" fg:w="653"/><text x="9.8561%" y="495.50"></text></g><g><title>new_inode (717 samples, 0.03%)</title><rect x="9.6052%" y="501" width="0.0309%" height="15" fill="rgb(234,160,15)" fg:x="222825" fg:w="717"/><text x="9.8552%" y="511.50"></text></g><g><title>btrfs_new_inode (10,930 samples, 0.47%)</title><rect x="9.1661%" y="517" width="0.4712%" height="15" fill="rgb(237,34,20)" fg:x="212639" fg:w="10930"/><text x="9.4161%" y="527.50"></text></g><g><title>btrfs_get_or_create_delayed_node (555 samples, 0.02%)</title><rect x="9.6538%" y="485" width="0.0239%" height="15" fill="rgb(229,97,13)" fg:x="223952" fg:w="555"/><text x="9.9038%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (958 samples, 0.04%)</title><rect x="9.6394%" y="501" width="0.0413%" height="15" fill="rgb(234,71,50)" fg:x="223618" fg:w="958"/><text x="9.8894%" y="511.50"></text></g><g><title>btrfs_update_inode (1,043 samples, 0.04%)</title><rect x="9.6374%" y="517" width="0.0450%" height="15" fill="rgb(253,155,4)" fg:x="223572" fg:w="1043"/><text x="9.8874%" y="527.50"></text></g><g><title>btrfs_block_rsv_add (436 samples, 0.02%)</title><rect x="9.6977%" y="501" width="0.0188%" height="15" fill="rgb(222,185,37)" fg:x="224971" fg:w="436"/><text x="9.9477%" y="511.50"></text></g><g><title>btrfs_reserve_metadata_bytes (389 samples, 0.02%)</title><rect x="9.6997%" y="485" width="0.0168%" height="15" fill="rgb(251,177,13)" fg:x="225018" fg:w="389"/><text x="9.9497%" y="495.50"></text></g><g><title>__reserve_bytes (357 samples, 0.02%)</title><rect x="9.7011%" y="469" width="0.0154%" height="15" fill="rgb(250,179,40)" fg:x="225050" fg:w="357"/><text x="9.9511%" y="479.50"></text></g><g><title>btrfs_mkdir (24,863 samples, 1.07%)</title><rect x="8.6548%" y="533" width="1.0718%" height="15" fill="rgb(242,44,2)" fg:x="200777" fg:w="24863"/><text x="8.9048%" y="543.50"></text></g><g><title>start_transaction (824 samples, 0.04%)</title><rect x="9.6910%" y="517" width="0.0355%" height="15" fill="rgb(216,177,13)" fg:x="224816" fg:w="824"/><text x="9.9410%" y="527.50"></text></g><g><title>do_mkdirat (36,482 samples, 1.57%)</title><rect x="8.1579%" y="565" width="1.5726%" height="15" fill="rgb(216,106,43)" fg:x="189250" fg:w="36482"/><text x="8.4079%" y="575.50"></text></g><g><title>vfs_mkdir (25,013 samples, 1.08%)</title><rect x="8.6523%" y="549" width="1.0782%" height="15" fill="rgb(216,183,2)" fg:x="200719" fg:w="25013"/><text x="8.9023%" y="559.50"></text></g><g><title>do_syscall_64 (36,531 samples, 1.57%)</title><rect x="8.1566%" y="581" width="1.5747%" height="15" fill="rgb(249,75,3)" fg:x="189220" fg:w="36531"/><text x="8.4066%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36,656 samples, 1.58%)</title><rect x="8.1548%" y="597" width="1.5801%" height="15" fill="rgb(219,67,39)" fg:x="189179" fg:w="36656"/><text x="8.4048%" y="607.50"></text></g><g><title>__GI___mkdir (36,826 samples, 1.59%)</title><rect x="8.1495%" y="613" width="1.5874%" height="15" fill="rgb(253,228,2)" fg:x="189054" fg:w="36826"/><text x="8.3995%" y="623.50"></text></g><g><title>btrfs_filldir (1,094 samples, 0.05%)</title><rect x="9.8178%" y="501" width="0.0472%" height="15" fill="rgb(235,138,27)" fg:x="227756" fg:w="1094"/><text x="10.0678%" y="511.50"></text></g><g><title>filldir64 (1,002 samples, 0.04%)</title><rect x="9.8217%" y="485" width="0.0432%" height="15" fill="rgb(236,97,51)" fg:x="227848" fg:w="1002"/><text x="10.0717%" y="495.50"></text></g><g><title>verify_dirent_name (274 samples, 0.01%)</title><rect x="9.8531%" y="469" width="0.0118%" height="15" fill="rgb(240,80,30)" fg:x="228576" fg:w="274"/><text x="10.1031%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (322 samples, 0.01%)</title><rect x="9.8916%" y="453" width="0.0139%" height="15" fill="rgb(230,178,19)" fg:x="229469" fg:w="322"/><text x="10.1416%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (328 samples, 0.01%)</title><rect x="9.8916%" y="469" width="0.0141%" height="15" fill="rgb(210,190,27)" fg:x="229468" fg:w="328"/><text x="10.1416%" y="479.50"></text></g><g><title>btrfs_search_slot (578 samples, 0.02%)</title><rect x="9.8906%" y="485" width="0.0249%" height="15" fill="rgb(222,107,31)" fg:x="229445" fg:w="578"/><text x="10.1406%" y="495.50"></text></g><g><title>btrfs_next_old_leaf (748 samples, 0.03%)</title><rect x="9.8882%" y="501" width="0.0322%" height="15" fill="rgb(216,127,34)" fg:x="229389" fg:w="748"/><text x="10.1382%" y="511.50"></text></g><g><title>btrfs_readdir_get_delayed_items (374 samples, 0.02%)</title><rect x="9.9210%" y="501" width="0.0161%" height="15" fill="rgb(234,116,52)" fg:x="230151" fg:w="374"/><text x="10.1710%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (254 samples, 0.01%)</title><rect x="9.9460%" y="485" width="0.0109%" height="15" fill="rgb(222,124,15)" fg:x="230732" fg:w="254"/><text x="10.1960%" y="495.50"></text></g><g><title>btrfs_release_path (486 samples, 0.02%)</title><rect x="9.9388%" y="501" width="0.0209%" height="15" fill="rgb(231,179,28)" fg:x="230563" fg:w="486"/><text x="10.1888%" y="511.50"></text></g><g><title>finish_wait (680 samples, 0.03%)</title><rect x="9.9881%" y="453" width="0.0293%" height="15" fill="rgb(226,93,45)" fg:x="231707" fg:w="680"/><text x="10.2381%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (652 samples, 0.03%)</title><rect x="9.9893%" y="437" width="0.0281%" height="15" fill="rgb(215,8,51)" fg:x="231735" fg:w="652"/><text x="10.2393%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (620 samples, 0.03%)</title><rect x="9.9907%" y="421" width="0.0267%" height="15" fill="rgb(223,106,5)" fg:x="231767" fg:w="620"/><text x="10.2407%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (1,641 samples, 0.07%)</title><rect x="10.0238%" y="437" width="0.0707%" height="15" fill="rgb(250,191,5)" fg:x="232536" fg:w="1641"/><text x="10.2738%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,541 samples, 0.07%)</title><rect x="10.0281%" y="421" width="0.0664%" height="15" fill="rgb(242,132,44)" fg:x="232636" fg:w="1541"/><text x="10.2781%" y="431.50"></text></g><g><title>prepare_to_wait_event (1,819 samples, 0.08%)</title><rect x="10.0174%" y="453" width="0.0784%" height="15" fill="rgb(251,152,29)" fg:x="232388" fg:w="1819"/><text x="10.2674%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (1,827 samples, 0.08%)</title><rect x="10.0958%" y="453" width="0.0788%" height="15" fill="rgb(218,179,5)" fg:x="234207" fg:w="1827"/><text x="10.3458%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,331 samples, 0.06%)</title><rect x="10.1172%" y="437" width="0.0574%" height="15" fill="rgb(227,67,19)" fg:x="234703" fg:w="1331"/><text x="10.3672%" y="447.50"></text></g><g><title>dequeue_entity (272 samples, 0.01%)</title><rect x="10.1836%" y="405" width="0.0117%" height="15" fill="rgb(233,119,31)" fg:x="236242" fg:w="272"/><text x="10.4336%" y="415.50"></text></g><g><title>dequeue_task_fair (337 samples, 0.01%)</title><rect x="10.1819%" y="421" width="0.0145%" height="15" fill="rgb(241,120,22)" fg:x="236204" fg:w="337"/><text x="10.4319%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (836 samples, 0.04%)</title><rect x="10.1990%" y="405" width="0.0360%" height="15" fill="rgb(224,102,30)" fg:x="236601" fg:w="836"/><text x="10.4490%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (823 samples, 0.04%)</title><rect x="10.1996%" y="389" width="0.0355%" height="15" fill="rgb(210,164,37)" fg:x="236614" fg:w="823"/><text x="10.4496%" y="399.50"></text></g><g><title>native_write_msr (819 samples, 0.04%)</title><rect x="10.1998%" y="373" width="0.0353%" height="15" fill="rgb(226,191,16)" fg:x="236618" fg:w="819"/><text x="10.4498%" y="383.50"></text></g><g><title>finish_task_switch (943 samples, 0.04%)</title><rect x="10.1964%" y="421" width="0.0406%" height="15" fill="rgb(214,40,45)" fg:x="236541" fg:w="943"/><text x="10.4464%" y="431.50"></text></g><g><title>psi_task_change (256 samples, 0.01%)</title><rect x="10.2429%" y="421" width="0.0110%" height="15" fill="rgb(244,29,26)" fg:x="237618" fg:w="256"/><text x="10.4929%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (6,493 samples, 0.28%)</title><rect x="9.9770%" y="469" width="0.2799%" height="15" fill="rgb(216,16,5)" fg:x="231451" fg:w="6493"/><text x="10.2270%" y="479.50"></text></g><g><title>schedule (1,910 samples, 0.08%)</title><rect x="10.1746%" y="453" width="0.0823%" height="15" fill="rgb(249,76,35)" fg:x="236034" fg:w="1910"/><text x="10.4246%" y="463.50"></text></g><g><title>__schedule (1,893 samples, 0.08%)</title><rect x="10.1753%" y="437" width="0.0816%" height="15" fill="rgb(207,11,44)" fg:x="236051" fg:w="1893"/><text x="10.4253%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (6,719 samples, 0.29%)</title><rect x="9.9760%" y="485" width="0.2896%" height="15" fill="rgb(228,190,49)" fg:x="231428" fg:w="6719"/><text x="10.2260%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (530 samples, 0.02%)</title><rect x="10.2657%" y="485" width="0.0228%" height="15" fill="rgb(214,173,12)" fg:x="238147" fg:w="530"/><text x="10.5157%" y="495.50"></text></g><g><title>schedule (482 samples, 0.02%)</title><rect x="10.2677%" y="469" width="0.0208%" height="15" fill="rgb(218,26,35)" fg:x="238195" fg:w="482"/><text x="10.5177%" y="479.50"></text></g><g><title>__schedule (478 samples, 0.02%)</title><rect x="10.2679%" y="453" width="0.0206%" height="15" fill="rgb(220,200,19)" fg:x="238199" fg:w="478"/><text x="10.5179%" y="463.50"></text></g><g><title>ttwu_do_activate (366 samples, 0.02%)</title><rect x="10.3039%" y="421" width="0.0158%" height="15" fill="rgb(239,95,49)" fg:x="239034" fg:w="366"/><text x="10.5539%" y="431.50"></text></g><g><title>__wake_up_common (799 samples, 0.03%)</title><rect x="10.2887%" y="469" width="0.0344%" height="15" fill="rgb(235,85,53)" fg:x="238681" fg:w="799"/><text x="10.5387%" y="479.50"></text></g><g><title>autoremove_wake_function (786 samples, 0.03%)</title><rect x="10.2893%" y="453" width="0.0339%" height="15" fill="rgb(233,133,31)" fg:x="238694" fg:w="786"/><text x="10.5393%" y="463.50"></text></g><g><title>try_to_wake_up (757 samples, 0.03%)</title><rect x="10.2905%" y="437" width="0.0326%" height="15" fill="rgb(218,25,20)" fg:x="238723" fg:w="757"/><text x="10.5405%" y="447.50"></text></g><g><title>__wake_up_common_lock (815 samples, 0.04%)</title><rect x="10.2885%" y="485" width="0.0351%" height="15" fill="rgb(252,210,38)" fg:x="238677" fg:w="815"/><text x="10.5385%" y="495.50"></text></g><g><title>btrfs_tree_read_lock_atomic (452 samples, 0.02%)</title><rect x="10.3357%" y="485" width="0.0195%" height="15" fill="rgb(242,134,21)" fg:x="239771" fg:w="452"/><text x="10.5857%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (318 samples, 0.01%)</title><rect x="10.3415%" y="469" width="0.0137%" height="15" fill="rgb(213,28,48)" fg:x="239905" fg:w="318"/><text x="10.5915%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (854 samples, 0.04%)</title><rect x="10.3615%" y="485" width="0.0368%" height="15" fill="rgb(250,196,2)" fg:x="240371" fg:w="854"/><text x="10.6115%" y="495.50"></text></g><g><title>__radix_tree_lookup (463 samples, 0.02%)</title><rect x="10.4249%" y="453" width="0.0200%" height="15" fill="rgb(227,5,17)" fg:x="241841" fg:w="463"/><text x="10.6749%" y="463.50"></text></g><g><title>find_extent_buffer (858 samples, 0.04%)</title><rect x="10.4174%" y="469" width="0.0370%" height="15" fill="rgb(221,226,24)" fg:x="241666" fg:w="858"/><text x="10.6674%" y="479.50"></text></g><g><title>read_block_for_search.isra.0 (1,410 samples, 0.06%)</title><rect x="10.3984%" y="485" width="0.0608%" height="15" fill="rgb(211,5,48)" fg:x="241225" fg:w="1410"/><text x="10.6484%" y="495.50"></text></g><g><title>btrfs_search_slot (11,747 samples, 0.51%)</title><rect x="9.9597%" y="501" width="0.5064%" height="15" fill="rgb(219,150,6)" fg:x="231049" fg:w="11747"/><text x="10.2097%" y="511.50"></text></g><g><title>btrfs_real_readdir (17,458 samples, 0.75%)</title><rect x="9.7900%" y="517" width="0.7526%" height="15" fill="rgb(251,46,16)" fg:x="227111" fg:w="17458"/><text x="10.0400%" y="527.50"></text></g><g><title>read_extent_buffer (1,096 samples, 0.05%)</title><rect x="10.4953%" y="501" width="0.0472%" height="15" fill="rgb(220,204,40)" fg:x="243473" fg:w="1096"/><text x="10.7453%" y="511.50"></text></g><g><title>security_file_permission (258 samples, 0.01%)</title><rect x="10.5475%" y="517" width="0.0111%" height="15" fill="rgb(211,85,2)" fg:x="244684" fg:w="258"/><text x="10.7975%" y="527.50"></text></g><g><title>__reserve_bytes (391 samples, 0.02%)</title><rect x="10.6031%" y="421" width="0.0169%" height="15" fill="rgb(229,17,7)" fg:x="245974" fg:w="391"/><text x="10.8531%" y="431.50"></text></g><g><title>btrfs_block_rsv_add (521 samples, 0.02%)</title><rect x="10.5975%" y="453" width="0.0225%" height="15" fill="rgb(239,72,28)" fg:x="245845" fg:w="521"/><text x="10.8475%" y="463.50"></text></g><g><title>btrfs_reserve_metadata_bytes (436 samples, 0.02%)</title><rect x="10.6012%" y="437" width="0.0188%" height="15" fill="rgb(230,47,54)" fg:x="245930" fg:w="436"/><text x="10.8512%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (971 samples, 0.04%)</title><rect x="10.5851%" y="469" width="0.0419%" height="15" fill="rgb(214,50,8)" fg:x="245558" fg:w="971"/><text x="10.8351%" y="479.50"></text></g><g><title>btrfs_update_inode (1,109 samples, 0.05%)</title><rect x="10.5841%" y="485" width="0.0478%" height="15" fill="rgb(216,198,43)" fg:x="245535" fg:w="1109"/><text x="10.8341%" y="495.50"></text></g><g><title>btrfs_dirty_inode (1,763 samples, 0.08%)</title><rect x="10.5735%" y="501" width="0.0760%" height="15" fill="rgb(234,20,35)" fg:x="245288" fg:w="1763"/><text x="10.8235%" y="511.50"></text></g><g><title>start_transaction (307 samples, 0.01%)</title><rect x="10.6363%" y="485" width="0.0132%" height="15" fill="rgb(254,45,19)" fg:x="246744" fg:w="307"/><text x="10.8863%" y="495.50"></text></g><g><title>touch_atime (2,161 samples, 0.09%)</title><rect x="10.5586%" y="517" width="0.0932%" height="15" fill="rgb(219,14,44)" fg:x="244942" fg:w="2161"/><text x="10.8086%" y="527.50"></text></g><g><title>iterate_dir (20,199 samples, 0.87%)</title><rect x="9.7839%" y="533" width="0.8707%" height="15" fill="rgb(217,220,26)" fg:x="226971" fg:w="20199"/><text x="10.0339%" y="543.50"></text></g><g><title>__x64_sys_getdents64 (20,540 samples, 0.89%)</title><rect x="9.7705%" y="549" width="0.8854%" height="15" fill="rgb(213,158,28)" fg:x="226659" fg:w="20540"/><text x="10.0205%" y="559.50"></text></g><g><title>do_syscall_64 (20,596 samples, 0.89%)</title><rect x="9.7687%" y="565" width="0.8878%" height="15" fill="rgb(252,51,52)" fg:x="226619" fg:w="20596"/><text x="10.0187%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20,745 samples, 0.89%)</title><rect x="9.7674%" y="581" width="0.8942%" height="15" fill="rgb(246,89,16)" fg:x="226588" fg:w="20745"/><text x="10.0174%" y="591.50"></text></g><g><title>__GI___getdents64 (20,938 samples, 0.90%)</title><rect x="9.7614%" y="597" width="0.9026%" height="15" fill="rgb(216,158,49)" fg:x="226448" fg:w="20938"/><text x="10.0114%" y="607.50"></text></g><g><title>__GI___readdir64 (21,509 samples, 0.93%)</title><rect x="9.7369%" y="613" width="0.9272%" height="15" fill="rgb(236,107,19)" fg:x="225880" fg:w="21509"/><text x="9.9869%" y="623.50"></text></g><g><title>__do_sys_newstat (232 samples, 0.01%)</title><rect x="10.6645%" y="565" width="0.0100%" height="15" fill="rgb(228,185,30)" fg:x="247400" fg:w="232"/><text x="10.9145%" y="575.50"></text></g><g><title>do_syscall_64 (239 samples, 0.01%)</title><rect x="10.6645%" y="581" width="0.0103%" height="15" fill="rgb(246,134,8)" fg:x="247398" fg:w="239"/><text x="10.9145%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (241 samples, 0.01%)</title><rect x="10.6644%" y="597" width="0.0104%" height="15" fill="rgb(214,143,50)" fg:x="247397" fg:w="241"/><text x="10.9144%" y="607.50"></text></g><g><title>__GI___xstat (250 samples, 0.01%)</title><rect x="10.6641%" y="613" width="0.0108%" height="15" fill="rgb(228,75,8)" fg:x="247389" fg:w="250"/><text x="10.9141%" y="623.50"></text></g><g><title>__switch_to_asm (295 samples, 0.01%)</title><rect x="10.7159%" y="597" width="0.0127%" height="15" fill="rgb(207,175,4)" fg:x="248592" fg:w="295"/><text x="10.9659%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (397 samples, 0.02%)</title><rect x="10.7341%" y="597" width="0.0171%" height="15" fill="rgb(205,108,24)" fg:x="249013" fg:w="397"/><text x="10.9841%" y="607.50"></text></g><g><title>crc32c_pcl_intel_update (631 samples, 0.03%)</title><rect x="10.7624%" y="597" width="0.0272%" height="15" fill="rgb(244,120,49)" fg:x="249669" fg:w="631"/><text x="11.0124%" y="607.50"></text></g><g><title>entry_SYSCALL_64 (508 samples, 0.02%)</title><rect x="10.7896%" y="597" width="0.0219%" height="15" fill="rgb(223,47,38)" fg:x="250300" fg:w="508"/><text x="11.0396%" y="607.50"></text></g><g><title>getname_flags (468 samples, 0.02%)</title><rect x="10.8717%" y="549" width="0.0202%" height="15" fill="rgb(229,179,11)" fg:x="252206" fg:w="468"/><text x="11.1217%" y="559.50"></text></g><g><title>memset_erms (1,928 samples, 0.08%)</title><rect x="10.9344%" y="517" width="0.0831%" height="15" fill="rgb(231,122,1)" fg:x="253661" fg:w="1928"/><text x="11.1844%" y="527.50"></text></g><g><title>kmem_cache_alloc (2,835 samples, 0.12%)</title><rect x="10.9021%" y="533" width="0.1222%" height="15" fill="rgb(245,119,9)" fg:x="252910" fg:w="2835"/><text x="11.1521%" y="543.50"></text></g><g><title>__check_heap_object (298 samples, 0.01%)</title><rect x="11.0923%" y="501" width="0.0128%" height="15" fill="rgb(241,163,25)" fg:x="257324" fg:w="298"/><text x="11.3423%" y="511.50"></text></g><g><title>__virt_addr_valid (1,060 samples, 0.05%)</title><rect x="11.1052%" y="501" width="0.0457%" height="15" fill="rgb(217,214,3)" fg:x="257622" fg:w="1060"/><text x="11.3552%" y="511.50"></text></g><g><title>__check_object_size (2,015 samples, 0.09%)</title><rect x="11.0728%" y="517" width="0.0869%" height="15" fill="rgb(240,86,28)" fg:x="256872" fg:w="2015"/><text x="11.3228%" y="527.50"></text></g><g><title>getname_flags.part.0 (6,222 samples, 0.27%)</title><rect x="10.8919%" y="549" width="0.2682%" height="15" fill="rgb(215,47,9)" fg:x="252674" fg:w="6222"/><text x="11.1419%" y="559.50"></text></g><g><title>strncpy_from_user (3,151 samples, 0.14%)</title><rect x="11.0243%" y="533" width="0.1358%" height="15" fill="rgb(252,25,45)" fg:x="255745" fg:w="3151"/><text x="11.2743%" y="543.50"></text></g><g><title>__x64_sys_unlinkat (6,738 samples, 0.29%)</title><rect x="10.8697%" y="565" width="0.2905%" height="15" fill="rgb(251,164,9)" fg:x="252160" fg:w="6738"/><text x="11.1197%" y="575.50"></text></g><g><title>dput (450 samples, 0.02%)</title><rect x="11.1721%" y="549" width="0.0194%" height="15" fill="rgb(233,194,0)" fg:x="259175" fg:w="450"/><text x="11.4221%" y="559.50"></text></g><g><title>path_init (237 samples, 0.01%)</title><rect x="11.2087%" y="517" width="0.0102%" height="15" fill="rgb(249,111,24)" fg:x="260023" fg:w="237"/><text x="11.4587%" y="527.50"></text></g><g><title>filename_parentat (706 samples, 0.03%)</title><rect x="11.1915%" y="549" width="0.0304%" height="15" fill="rgb(250,223,3)" fg:x="259625" fg:w="706"/><text x="11.4415%" y="559.50"></text></g><g><title>path_parentat (665 samples, 0.03%)</title><rect x="11.1933%" y="533" width="0.0287%" height="15" fill="rgb(236,178,37)" fg:x="259666" fg:w="665"/><text x="11.4433%" y="543.50"></text></g><g><title>__btrfs_end_transaction (441 samples, 0.02%)</title><rect x="11.2582%" y="517" width="0.0190%" height="15" fill="rgb(241,158,50)" fg:x="261171" fg:w="441"/><text x="11.5082%" y="527.50"></text></g><g><title>btrfs_free_path (274 samples, 0.01%)</title><rect x="11.2873%" y="485" width="0.0118%" height="15" fill="rgb(213,121,41)" fg:x="261847" fg:w="274"/><text x="11.5373%" y="495.50"></text></g><g><title>btrfs_release_path (267 samples, 0.01%)</title><rect x="11.2876%" y="469" width="0.0115%" height="15" fill="rgb(240,92,3)" fg:x="261854" fg:w="267"/><text x="11.5376%" y="479.50"></text></g><g><title>btrfs_lookup_dir_index_item (646 samples, 0.03%)</title><rect x="11.2991%" y="485" width="0.0278%" height="15" fill="rgb(205,123,3)" fg:x="262121" fg:w="646"/><text x="11.5491%" y="495.50"></text></g><g><title>btrfs_search_slot (634 samples, 0.03%)</title><rect x="11.2996%" y="469" width="0.0273%" height="15" fill="rgb(205,97,47)" fg:x="262133" fg:w="634"/><text x="11.5496%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (254 samples, 0.01%)</title><rect x="11.3317%" y="437" width="0.0109%" height="15" fill="rgb(247,152,14)" fg:x="262878" fg:w="254"/><text x="11.5817%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (287 samples, 0.01%)</title><rect x="11.3316%" y="453" width="0.0124%" height="15" fill="rgb(248,195,53)" fg:x="262874" fg:w="287"/><text x="11.5816%" y="463.50"></text></g><g><title>btrfs_search_slot (834 samples, 0.04%)</title><rect x="11.3281%" y="469" width="0.0360%" height="15" fill="rgb(226,201,16)" fg:x="262794" fg:w="834"/><text x="11.5781%" y="479.50"></text></g><g><title>btrfs_lookup_dir_item (878 samples, 0.04%)</title><rect x="11.3270%" y="485" width="0.0378%" height="15" fill="rgb(205,98,0)" fg:x="262767" fg:w="878"/><text x="11.5770%" y="495.50"></text></g><g><title>btrfs_release_path (253 samples, 0.01%)</title><rect x="11.3648%" y="485" width="0.0109%" height="15" fill="rgb(214,191,48)" fg:x="263645" fg:w="253"/><text x="11.6148%" y="495.50"></text></g><g><title>btrfs_del_dir_entries_in_log (2,321 samples, 0.10%)</title><rect x="11.2828%" y="501" width="0.1001%" height="15" fill="rgb(237,112,39)" fg:x="261743" fg:w="2321"/><text x="11.5328%" y="511.50"></text></g><g><title>__wake_up_common (276 samples, 0.01%)</title><rect x="11.3894%" y="421" width="0.0119%" height="15" fill="rgb(247,203,27)" fg:x="264215" fg:w="276"/><text x="11.6394%" y="431.50"></text></g><g><title>autoremove_wake_function (270 samples, 0.01%)</title><rect x="11.3896%" y="405" width="0.0116%" height="15" fill="rgb(235,124,28)" fg:x="264221" fg:w="270"/><text x="11.6396%" y="415.50"></text></g><g><title>try_to_wake_up (266 samples, 0.01%)</title><rect x="11.3898%" y="389" width="0.0115%" height="15" fill="rgb(208,207,46)" fg:x="264225" fg:w="266"/><text x="11.6398%" y="399.50"></text></g><g><title>__wake_up_common_lock (392 samples, 0.02%)</title><rect x="11.3893%" y="437" width="0.0169%" height="15" fill="rgb(234,176,4)" fg:x="264214" fg:w="392"/><text x="11.6393%" y="447.50"></text></g><g><title>btrfs_free_path (574 samples, 0.02%)</title><rect x="11.3860%" y="469" width="0.0247%" height="15" fill="rgb(230,133,28)" fg:x="264137" fg:w="574"/><text x="11.6360%" y="479.50"></text></g><g><title>btrfs_release_path (554 samples, 0.02%)</title><rect x="11.3869%" y="453" width="0.0239%" height="15" fill="rgb(211,137,40)" fg:x="264157" fg:w="554"/><text x="11.6369%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (444 samples, 0.02%)</title><rect x="11.4183%" y="437" width="0.0191%" height="15" fill="rgb(254,35,13)" fg:x="264885" fg:w="444"/><text x="11.6683%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (592 samples, 0.03%)</title><rect x="11.4175%" y="453" width="0.0255%" height="15" fill="rgb(225,49,51)" fg:x="264868" fg:w="592"/><text x="11.6675%" y="463.50"></text></g><g><title>__btrfs_tree_lock (310 samples, 0.01%)</title><rect x="11.4451%" y="437" width="0.0134%" height="15" fill="rgb(251,10,15)" fg:x="265508" fg:w="310"/><text x="11.6951%" y="447.50"></text></g><g><title>btrfs_lock_root_node (350 samples, 0.02%)</title><rect x="11.4451%" y="453" width="0.0151%" height="15" fill="rgb(228,207,15)" fg:x="265507" fg:w="350"/><text x="11.6951%" y="463.50"></text></g><g><title>btrfs_search_slot (1,608 samples, 0.07%)</title><rect x="11.4108%" y="469" width="0.0693%" height="15" fill="rgb(241,99,19)" fg:x="264711" fg:w="1608"/><text x="11.6608%" y="479.50"></text></g><g><title>btrfs_del_inode_ref (2,525 samples, 0.11%)</title><rect x="11.3842%" y="485" width="0.1088%" height="15" fill="rgb(207,104,49)" fg:x="264096" fg:w="2525"/><text x="11.6342%" y="495.50"></text></g><g><title>btrfs_del_inode_ref_in_log (2,703 samples, 0.12%)</title><rect x="11.3829%" y="501" width="0.1165%" height="15" fill="rgb(234,99,18)" fg:x="264064" fg:w="2703"/><text x="11.6329%" y="511.50"></text></g><g><title>btrfs_get_token_32 (771 samples, 0.03%)</title><rect x="11.5162%" y="485" width="0.0332%" height="15" fill="rgb(213,191,49)" fg:x="267156" fg:w="771"/><text x="11.7662%" y="495.50"></text></g><g><title>btrfs_set_token_32 (573 samples, 0.02%)</title><rect x="11.5521%" y="485" width="0.0247%" height="15" fill="rgb(210,226,19)" fg:x="267990" fg:w="573"/><text x="11.8021%" y="495.50"></text></g><g><title>memmove_extent_buffer (523 samples, 0.02%)</title><rect x="11.5840%" y="485" width="0.0225%" height="15" fill="rgb(229,97,18)" fg:x="268730" fg:w="523"/><text x="11.8340%" y="495.50"></text></g><g><title>memmove (439 samples, 0.02%)</title><rect x="11.5876%" y="469" width="0.0189%" height="15" fill="rgb(211,167,15)" fg:x="268814" fg:w="439"/><text x="11.8376%" y="479.50"></text></g><g><title>btrfs_del_items (2,660 samples, 0.11%)</title><rect x="11.4994%" y="501" width="0.1147%" height="15" fill="rgb(210,169,34)" fg:x="266767" fg:w="2660"/><text x="11.7494%" y="511.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (580 samples, 0.03%)</title><rect x="11.6140%" y="501" width="0.0250%" height="15" fill="rgb(241,121,31)" fg:x="269427" fg:w="580"/><text x="11.8640%" y="511.50"></text></g><g><title>btrfs_delete_delayed_dir_index (681 samples, 0.03%)</title><rect x="11.6391%" y="501" width="0.0294%" height="15" fill="rgb(232,40,11)" fg:x="270007" fg:w="681"/><text x="11.8891%" y="511.50"></text></g><g><title>btrfs_match_dir_item_name (247 samples, 0.01%)</title><rect x="11.6749%" y="485" width="0.0106%" height="15" fill="rgb(205,86,26)" fg:x="270838" fg:w="247"/><text x="11.9249%" y="495.50"></text></g><g><title>finish_wait (294 samples, 0.01%)</title><rect x="11.7012%" y="437" width="0.0127%" height="15" fill="rgb(231,126,28)" fg:x="271449" fg:w="294"/><text x="11.9512%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (279 samples, 0.01%)</title><rect x="11.7019%" y="421" width="0.0120%" height="15" fill="rgb(219,221,18)" fg:x="271464" fg:w="279"/><text x="11.9519%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (261 samples, 0.01%)</title><rect x="11.7026%" y="405" width="0.0113%" height="15" fill="rgb(211,40,0)" fg:x="271482" fg:w="261"/><text x="11.9526%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (691 samples, 0.03%)</title><rect x="11.7171%" y="421" width="0.0298%" height="15" fill="rgb(239,85,43)" fg:x="271818" fg:w="691"/><text x="11.9671%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (653 samples, 0.03%)</title><rect x="11.7188%" y="405" width="0.0281%" height="15" fill="rgb(231,55,21)" fg:x="271856" fg:w="653"/><text x="11.9688%" y="415.50"></text></g><g><title>prepare_to_wait_event (777 samples, 0.03%)</title><rect x="11.7139%" y="437" width="0.0335%" height="15" fill="rgb(225,184,43)" fg:x="271743" fg:w="777"/><text x="11.9639%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (990 samples, 0.04%)</title><rect x="11.7474%" y="437" width="0.0427%" height="15" fill="rgb(251,158,41)" fg:x="272520" fg:w="990"/><text x="11.9974%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (706 samples, 0.03%)</title><rect x="11.7596%" y="421" width="0.0304%" height="15" fill="rgb(234,159,37)" fg:x="272804" fg:w="706"/><text x="12.0096%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (358 samples, 0.02%)</title><rect x="11.8003%" y="389" width="0.0154%" height="15" fill="rgb(216,204,22)" fg:x="273748" fg:w="358"/><text x="12.0503%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (342 samples, 0.01%)</title><rect x="11.8010%" y="373" width="0.0147%" height="15" fill="rgb(214,17,3)" fg:x="273764" fg:w="342"/><text x="12.0510%" y="383.50"></text></g><g><title>native_write_msr (337 samples, 0.01%)</title><rect x="11.8012%" y="357" width="0.0145%" height="15" fill="rgb(212,111,17)" fg:x="273769" fg:w="337"/><text x="12.0512%" y="367.50"></text></g><g><title>finish_task_switch (396 samples, 0.02%)</title><rect x="11.7992%" y="405" width="0.0171%" height="15" fill="rgb(221,157,24)" fg:x="273722" fg:w="396"/><text x="12.0492%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (2,978 samples, 0.13%)</title><rect x="11.6961%" y="453" width="0.1284%" height="15" fill="rgb(252,16,13)" fg:x="271331" fg:w="2978"/><text x="11.9461%" y="463.50"></text></g><g><title>schedule (799 samples, 0.03%)</title><rect x="11.7901%" y="437" width="0.0344%" height="15" fill="rgb(221,62,2)" fg:x="273510" fg:w="799"/><text x="12.0401%" y="447.50"></text></g><g><title>__schedule (790 samples, 0.03%)</title><rect x="11.7904%" y="421" width="0.0341%" height="15" fill="rgb(247,87,22)" fg:x="273519" fg:w="790"/><text x="12.0404%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (3,063 samples, 0.13%)</title><rect x="11.6956%" y="469" width="0.1320%" height="15" fill="rgb(215,73,9)" fg:x="271319" fg:w="3063"/><text x="11.9456%" y="479.50"></text></g><g><title>__btrfs_tree_lock (290 samples, 0.01%)</title><rect x="11.8276%" y="469" width="0.0125%" height="15" fill="rgb(207,175,33)" fg:x="274382" fg:w="290"/><text x="12.0776%" y="479.50"></text></g><g><title>schedule (256 samples, 0.01%)</title><rect x="11.8291%" y="453" width="0.0110%" height="15" fill="rgb(243,129,54)" fg:x="274416" fg:w="256"/><text x="12.0791%" y="463.50"></text></g><g><title>__schedule (253 samples, 0.01%)</title><rect x="11.8292%" y="437" width="0.0109%" height="15" fill="rgb(227,119,45)" fg:x="274419" fg:w="253"/><text x="12.0792%" y="447.50"></text></g><g><title>finish_wait (495 samples, 0.02%)</title><rect x="11.8507%" y="437" width="0.0213%" height="15" fill="rgb(205,109,36)" fg:x="274918" fg:w="495"/><text x="12.1007%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (467 samples, 0.02%)</title><rect x="11.8520%" y="421" width="0.0201%" height="15" fill="rgb(205,6,39)" fg:x="274946" fg:w="467"/><text x="12.1020%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (431 samples, 0.02%)</title><rect x="11.8535%" y="405" width="0.0186%" height="15" fill="rgb(221,32,16)" fg:x="274982" fg:w="431"/><text x="12.1035%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (1,225 samples, 0.05%)</title><rect x="11.8788%" y="421" width="0.0528%" height="15" fill="rgb(228,144,50)" fg:x="275569" fg:w="1225"/><text x="12.1288%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,142 samples, 0.05%)</title><rect x="11.8824%" y="405" width="0.0492%" height="15" fill="rgb(229,201,53)" fg:x="275652" fg:w="1142"/><text x="12.1324%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,404 samples, 0.06%)</title><rect x="11.8724%" y="437" width="0.0605%" height="15" fill="rgb(249,153,27)" fg:x="275420" fg:w="1404"/><text x="12.1224%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (1,704 samples, 0.07%)</title><rect x="11.9329%" y="437" width="0.0735%" height="15" fill="rgb(227,106,25)" fg:x="276824" fg:w="1704"/><text x="12.1829%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (791 samples, 0.03%)</title><rect x="11.9723%" y="421" width="0.0341%" height="15" fill="rgb(230,65,29)" fg:x="277737" fg:w="791"/><text x="12.2223%" y="431.50"></text></g><g><title>dequeue_entity (297 samples, 0.01%)</title><rect x="12.0151%" y="389" width="0.0128%" height="15" fill="rgb(221,57,46)" fg:x="278730" fg:w="297"/><text x="12.2651%" y="399.50"></text></g><g><title>dequeue_task_fair (355 samples, 0.02%)</title><rect x="12.0137%" y="405" width="0.0153%" height="15" fill="rgb(229,161,17)" fg:x="278699" fg:w="355"/><text x="12.2637%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (666 samples, 0.03%)</title><rect x="12.0317%" y="389" width="0.0287%" height="15" fill="rgb(222,213,11)" fg:x="279116" fg:w="666"/><text x="12.2817%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (641 samples, 0.03%)</title><rect x="12.0328%" y="373" width="0.0276%" height="15" fill="rgb(235,35,13)" fg:x="279141" fg:w="641"/><text x="12.2828%" y="383.50"></text></g><g><title>native_write_msr (632 samples, 0.03%)</title><rect x="12.0332%" y="357" width="0.0272%" height="15" fill="rgb(233,158,34)" fg:x="279150" fg:w="632"/><text x="12.2832%" y="367.50"></text></g><g><title>finish_task_switch (760 samples, 0.03%)</title><rect x="12.0290%" y="405" width="0.0328%" height="15" fill="rgb(215,151,48)" fg:x="279054" fg:w="760"/><text x="12.2790%" y="415.50"></text></g><g><title>psi_task_change (263 samples, 0.01%)</title><rect x="12.0667%" y="405" width="0.0113%" height="15" fill="rgb(229,84,14)" fg:x="279927" fg:w="263"/><text x="12.3167%" y="415.50"></text></g><g><title>__btrfs_tree_lock (5,541 samples, 0.24%)</title><rect x="11.8420%" y="453" width="0.2389%" height="15" fill="rgb(229,68,14)" fg:x="274716" fg:w="5541"/><text x="12.0920%" y="463.50"></text></g><g><title>schedule (1,729 samples, 0.07%)</title><rect x="12.0064%" y="437" width="0.0745%" height="15" fill="rgb(243,106,26)" fg:x="278528" fg:w="1729"/><text x="12.2564%" y="447.50"></text></g><g><title>__schedule (1,701 samples, 0.07%)</title><rect x="12.0076%" y="421" width="0.0733%" height="15" fill="rgb(206,45,38)" fg:x="278556" fg:w="1701"/><text x="12.2576%" y="431.50"></text></g><g><title>btrfs_lock_root_node (5,584 samples, 0.24%)</title><rect x="11.8419%" y="469" width="0.2407%" height="15" fill="rgb(226,6,15)" fg:x="274713" fg:w="5584"/><text x="12.0919%" y="479.50"></text></g><g><title>btrfs_try_tree_write_lock (270 samples, 0.01%)</title><rect x="12.0862%" y="469" width="0.0116%" height="15" fill="rgb(232,22,54)" fg:x="280380" fg:w="270"/><text x="12.3362%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (482 samples, 0.02%)</title><rect x="12.0998%" y="469" width="0.0208%" height="15" fill="rgb(229,222,32)" fg:x="280696" fg:w="482"/><text x="12.3498%" y="479.50"></text></g><g><title>__radix_tree_lookup (259 samples, 0.01%)</title><rect x="12.1336%" y="437" width="0.0112%" height="15" fill="rgb(228,62,29)" fg:x="281479" fg:w="259"/><text x="12.3836%" y="447.50"></text></g><g><title>find_extent_buffer (494 samples, 0.02%)</title><rect x="12.1283%" y="453" width="0.0213%" height="15" fill="rgb(251,103,34)" fg:x="281356" fg:w="494"/><text x="12.3783%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (732 samples, 0.03%)</title><rect x="12.1206%" y="469" width="0.0316%" height="15" fill="rgb(233,12,30)" fg:x="281178" fg:w="732"/><text x="12.3706%" y="479.50"></text></g><g><title>reada_for_balance (283 samples, 0.01%)</title><rect x="12.1521%" y="469" width="0.0122%" height="15" fill="rgb(238,52,0)" fg:x="281910" fg:w="283"/><text x="12.4021%" y="479.50"></text></g><g><title>select_task_rq_fair (253 samples, 0.01%)</title><rect x="12.1993%" y="389" width="0.0109%" height="15" fill="rgb(223,98,5)" fg:x="283003" fg:w="253"/><text x="12.4493%" y="399.50"></text></g><g><title>enqueue_entity (255 samples, 0.01%)</title><rect x="12.2150%" y="357" width="0.0110%" height="15" fill="rgb(228,75,37)" fg:x="283369" fg:w="255"/><text x="12.4650%" y="367.50"></text></g><g><title>enqueue_task_fair (341 samples, 0.01%)</title><rect x="12.2119%" y="373" width="0.0147%" height="15" fill="rgb(205,115,49)" fg:x="283297" fg:w="341"/><text x="12.4619%" y="383.50"></text></g><g><title>ttwu_do_activate (694 samples, 0.03%)</title><rect x="12.2109%" y="389" width="0.0299%" height="15" fill="rgb(250,154,43)" fg:x="283273" fg:w="694"/><text x="12.4609%" y="399.50"></text></g><g><title>psi_task_change (329 samples, 0.01%)</title><rect x="12.2266%" y="373" width="0.0142%" height="15" fill="rgb(226,43,29)" fg:x="283638" fg:w="329"/><text x="12.4766%" y="383.50"></text></g><g><title>psi_group_change (298 samples, 0.01%)</title><rect x="12.2280%" y="357" width="0.0128%" height="15" fill="rgb(249,228,39)" fg:x="283669" fg:w="298"/><text x="12.4780%" y="367.50"></text></g><g><title>__wake_up_common (1,856 samples, 0.08%)</title><rect x="12.1678%" y="437" width="0.0800%" height="15" fill="rgb(216,79,43)" fg:x="282272" fg:w="1856"/><text x="12.4178%" y="447.50"></text></g><g><title>autoremove_wake_function (1,823 samples, 0.08%)</title><rect x="12.1692%" y="421" width="0.0786%" height="15" fill="rgb(228,95,12)" fg:x="282305" fg:w="1823"/><text x="12.4192%" y="431.50"></text></g><g><title>try_to_wake_up (1,788 samples, 0.08%)</title><rect x="12.1707%" y="405" width="0.0771%" height="15" fill="rgb(249,221,15)" fg:x="282340" fg:w="1788"/><text x="12.4207%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (311 samples, 0.01%)</title><rect x="12.2478%" y="437" width="0.0134%" height="15" fill="rgb(233,34,13)" fg:x="284128" fg:w="311"/><text x="12.4978%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (288 samples, 0.01%)</title><rect x="12.2487%" y="421" width="0.0124%" height="15" fill="rgb(214,103,39)" fg:x="284151" fg:w="288"/><text x="12.4987%" y="431.50"></text></g><g><title>__wake_up_common_lock (2,189 samples, 0.09%)</title><rect x="12.1675%" y="453" width="0.0944%" height="15" fill="rgb(251,126,39)" fg:x="282267" fg:w="2189"/><text x="12.4175%" y="463.50"></text></g><g><title>btrfs_search_slot (13,428 samples, 0.58%)</title><rect x="11.6855%" y="485" width="0.5788%" height="15" fill="rgb(214,216,36)" fg:x="271085" fg:w="13428"/><text x="11.9355%" y="495.50"></text></g><g><title>unlock_up (2,315 samples, 0.10%)</title><rect x="12.1646%" y="469" width="0.0998%" height="15" fill="rgb(220,221,8)" fg:x="282198" fg:w="2315"/><text x="12.4146%" y="479.50"></text></g><g><title>btrfs_lookup_dir_item (13,847 samples, 0.60%)</title><rect x="11.6723%" y="501" width="0.5969%" height="15" fill="rgb(240,216,3)" fg:x="270778" fg:w="13847"/><text x="11.9223%" y="511.50"></text></g><g><title>__wake_up_common (456 samples, 0.02%)</title><rect x="12.2703%" y="469" width="0.0197%" height="15" fill="rgb(232,218,17)" fg:x="284651" fg:w="456"/><text x="12.5203%" y="479.50"></text></g><g><title>autoremove_wake_function (449 samples, 0.02%)</title><rect x="12.2706%" y="453" width="0.0194%" height="15" fill="rgb(229,163,45)" fg:x="284658" fg:w="449"/><text x="12.5206%" y="463.50"></text></g><g><title>try_to_wake_up (436 samples, 0.02%)</title><rect x="12.2712%" y="437" width="0.0188%" height="15" fill="rgb(231,110,42)" fg:x="284671" fg:w="436"/><text x="12.5212%" y="447.50"></text></g><g><title>__wake_up_common_lock (477 samples, 0.02%)</title><rect x="12.2701%" y="485" width="0.0206%" height="15" fill="rgb(208,170,48)" fg:x="284646" fg:w="477"/><text x="12.5201%" y="495.50"></text></g><g><title>btrfs_release_path (650 samples, 0.03%)</title><rect x="12.2692%" y="501" width="0.0280%" height="15" fill="rgb(239,116,25)" fg:x="284625" fg:w="650"/><text x="12.5192%" y="511.50"></text></g><g><title>btrfs_delayed_update_inode (398 samples, 0.02%)</title><rect x="12.2989%" y="485" width="0.0172%" height="15" fill="rgb(219,200,50)" fg:x="285314" fg:w="398"/><text x="12.5489%" y="495.50"></text></g><g><title>btrfs_update_inode (543 samples, 0.02%)</title><rect x="12.2972%" y="501" width="0.0234%" height="15" fill="rgb(245,200,0)" fg:x="285275" fg:w="543"/><text x="12.5472%" y="511.50"></text></g><g><title>__btrfs_unlink_inode (24,354 samples, 1.05%)</title><rect x="11.2772%" y="517" width="1.0498%" height="15" fill="rgb(245,119,33)" fg:x="261612" fg:w="24354"/><text x="11.5272%" y="527.50"></text></g><g><title>__wake_up_common (331 samples, 0.01%)</title><rect x="12.3437%" y="437" width="0.0143%" height="15" fill="rgb(231,125,12)" fg:x="286353" fg:w="331"/><text x="12.5937%" y="447.50"></text></g><g><title>autoremove_wake_function (326 samples, 0.01%)</title><rect x="12.3439%" y="421" width="0.0141%" height="15" fill="rgb(216,96,41)" fg:x="286358" fg:w="326"/><text x="12.5939%" y="431.50"></text></g><g><title>try_to_wake_up (325 samples, 0.01%)</title><rect x="12.3439%" y="405" width="0.0140%" height="15" fill="rgb(248,43,45)" fg:x="286359" fg:w="325"/><text x="12.5939%" y="415.50"></text></g><g><title>__wake_up_common_lock (336 samples, 0.01%)</title><rect x="12.3436%" y="453" width="0.0145%" height="15" fill="rgb(217,222,7)" fg:x="286351" fg:w="336"/><text x="12.5936%" y="463.50"></text></g><g><title>btrfs_free_path (590 samples, 0.03%)</title><rect x="12.3418%" y="485" width="0.0254%" height="15" fill="rgb(233,28,6)" fg:x="286310" fg:w="590"/><text x="12.5918%" y="495.50"></text></g><g><title>btrfs_release_path (574 samples, 0.02%)</title><rect x="12.3425%" y="469" width="0.0247%" height="15" fill="rgb(231,218,15)" fg:x="286326" fg:w="574"/><text x="12.5925%" y="479.50"></text></g><g><title>finish_wait (330 samples, 0.01%)</title><rect x="12.3838%" y="421" width="0.0142%" height="15" fill="rgb(226,171,48)" fg:x="287284" fg:w="330"/><text x="12.6338%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (317 samples, 0.01%)</title><rect x="12.3844%" y="405" width="0.0137%" height="15" fill="rgb(235,201,9)" fg:x="287297" fg:w="317"/><text x="12.6344%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (303 samples, 0.01%)</title><rect x="12.3850%" y="389" width="0.0131%" height="15" fill="rgb(217,80,15)" fg:x="287311" fg:w="303"/><text x="12.6350%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (890 samples, 0.04%)</title><rect x="12.4019%" y="405" width="0.0384%" height="15" fill="rgb(219,152,8)" fg:x="287705" fg:w="890"/><text x="12.6519%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (843 samples, 0.04%)</title><rect x="12.4040%" y="389" width="0.0363%" height="15" fill="rgb(243,107,38)" fg:x="287752" fg:w="843"/><text x="12.6540%" y="399.50"></text></g><g><title>prepare_to_wait_event (996 samples, 0.04%)</title><rect x="12.3980%" y="421" width="0.0429%" height="15" fill="rgb(231,17,5)" fg:x="287614" fg:w="996"/><text x="12.6480%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (870 samples, 0.04%)</title><rect x="12.4410%" y="421" width="0.0375%" height="15" fill="rgb(209,25,54)" fg:x="288610" fg:w="870"/><text x="12.6910%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (636 samples, 0.03%)</title><rect x="12.4510%" y="405" width="0.0274%" height="15" fill="rgb(219,0,2)" fg:x="288844" fg:w="636"/><text x="12.7010%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (394 samples, 0.02%)</title><rect x="12.4925%" y="373" width="0.0170%" height="15" fill="rgb(246,9,5)" fg:x="289806" fg:w="394"/><text x="12.7425%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (378 samples, 0.02%)</title><rect x="12.4932%" y="357" width="0.0163%" height="15" fill="rgb(226,159,4)" fg:x="289822" fg:w="378"/><text x="12.7432%" y="367.50"></text></g><g><title>native_write_msr (368 samples, 0.02%)</title><rect x="12.4936%" y="341" width="0.0159%" height="15" fill="rgb(219,175,34)" fg:x="289832" fg:w="368"/><text x="12.7436%" y="351.50"></text></g><g><title>finish_task_switch (442 samples, 0.02%)</title><rect x="12.4910%" y="389" width="0.0191%" height="15" fill="rgb(236,10,46)" fg:x="289771" fg:w="442"/><text x="12.7410%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (3,321 samples, 0.14%)</title><rect x="12.3785%" y="437" width="0.1432%" height="15" fill="rgb(240,211,16)" fg:x="287161" fg:w="3321"/><text x="12.6285%" y="447.50"></text></g><g><title>schedule (1,002 samples, 0.04%)</title><rect x="12.4785%" y="421" width="0.0432%" height="15" fill="rgb(205,3,43)" fg:x="289480" fg:w="1002"/><text x="12.7285%" y="431.50"></text></g><g><title>__schedule (991 samples, 0.04%)</title><rect x="12.4789%" y="405" width="0.0427%" height="15" fill="rgb(245,7,22)" fg:x="289491" fg:w="991"/><text x="12.7289%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (3,431 samples, 0.15%)</title><rect x="12.3779%" y="453" width="0.1479%" height="15" fill="rgb(239,132,32)" fg:x="287146" fg:w="3431"/><text x="12.6279%" y="463.50"></text></g><g><title>finish_task_switch (245 samples, 0.01%)</title><rect x="12.5443%" y="405" width="0.0106%" height="15" fill="rgb(228,202,34)" fg:x="291008" fg:w="245"/><text x="12.7943%" y="415.50"></text></g><g><title>__btrfs_tree_lock (858 samples, 0.04%)</title><rect x="12.5258%" y="453" width="0.0370%" height="15" fill="rgb(254,200,22)" fg:x="290577" fg:w="858"/><text x="12.7758%" y="463.50"></text></g><g><title>schedule (604 samples, 0.03%)</title><rect x="12.5367%" y="437" width="0.0260%" height="15" fill="rgb(219,10,39)" fg:x="290831" fg:w="604"/><text x="12.7867%" y="447.50"></text></g><g><title>__schedule (600 samples, 0.03%)</title><rect x="12.5369%" y="421" width="0.0259%" height="15" fill="rgb(226,210,39)" fg:x="290835" fg:w="600"/><text x="12.7869%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (745 samples, 0.03%)</title><rect x="12.5721%" y="453" width="0.0321%" height="15" fill="rgb(208,219,16)" fg:x="291652" fg:w="745"/><text x="12.8221%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (680 samples, 0.03%)</title><rect x="12.5749%" y="437" width="0.0293%" height="15" fill="rgb(216,158,51)" fg:x="291717" fg:w="680"/><text x="12.8249%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (325 samples, 0.01%)</title><rect x="12.6042%" y="453" width="0.0140%" height="15" fill="rgb(233,14,44)" fg:x="292397" fg:w="325"/><text x="12.8542%" y="463.50"></text></g><g><title>find_extent_buffer (446 samples, 0.02%)</title><rect x="12.6277%" y="437" width="0.0192%" height="15" fill="rgb(237,97,39)" fg:x="292941" fg:w="446"/><text x="12.8777%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (738 samples, 0.03%)</title><rect x="12.6182%" y="453" width="0.0318%" height="15" fill="rgb(218,198,43)" fg:x="292722" fg:w="738"/><text x="12.8682%" y="463.50"></text></g><g><title>ttwu_do_activate (350 samples, 0.02%)</title><rect x="12.6693%" y="373" width="0.0151%" height="15" fill="rgb(231,104,20)" fg:x="293907" fg:w="350"/><text x="12.9193%" y="383.50"></text></g><g><title>__wake_up_common (753 samples, 0.03%)</title><rect x="12.6551%" y="421" width="0.0325%" height="15" fill="rgb(254,36,13)" fg:x="293578" fg:w="753"/><text x="12.9051%" y="431.50"></text></g><g><title>autoremove_wake_function (740 samples, 0.03%)</title><rect x="12.6557%" y="405" width="0.0319%" height="15" fill="rgb(248,14,50)" fg:x="293591" fg:w="740"/><text x="12.9057%" y="415.50"></text></g><g><title>try_to_wake_up (716 samples, 0.03%)</title><rect x="12.6567%" y="389" width="0.0309%" height="15" fill="rgb(217,107,29)" fg:x="293615" fg:w="716"/><text x="12.9067%" y="399.50"></text></g><g><title>__wake_up_common_lock (776 samples, 0.03%)</title><rect x="12.6549%" y="437" width="0.0335%" height="15" fill="rgb(251,169,33)" fg:x="293573" fg:w="776"/><text x="12.9049%" y="447.50"></text></g><g><title>btrfs_search_slot (7,526 samples, 0.32%)</title><rect x="12.3682%" y="469" width="0.3244%" height="15" fill="rgb(217,108,32)" fg:x="286923" fg:w="7526"/><text x="12.6182%" y="479.50"></text></g><g><title>unlock_up (962 samples, 0.04%)</title><rect x="12.6512%" y="453" width="0.0415%" height="15" fill="rgb(219,66,42)" fg:x="293487" fg:w="962"/><text x="12.9012%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (8,168 samples, 0.35%)</title><rect x="12.3672%" y="485" width="0.3521%" height="15" fill="rgb(206,180,7)" fg:x="286900" fg:w="8168"/><text x="12.6172%" y="495.50"></text></g><g><title>setup_items_for_insert (619 samples, 0.03%)</title><rect x="12.6927%" y="469" width="0.0267%" height="15" fill="rgb(208,226,31)" fg:x="294449" fg:w="619"/><text x="12.9427%" y="479.50"></text></g><g><title>btrfs_orphan_add (8,952 samples, 0.39%)</title><rect x="12.3396%" y="517" width="0.3859%" height="15" fill="rgb(218,26,49)" fg:x="286258" fg:w="8952"/><text x="12.5896%" y="527.50"></text></g><g><title>btrfs_insert_orphan_item (8,933 samples, 0.39%)</title><rect x="12.3404%" y="501" width="0.3851%" height="15" fill="rgb(233,197,48)" fg:x="286277" fg:w="8933"/><text x="12.5904%" y="511.50"></text></g><g><title>btrfs_update_inode (289 samples, 0.01%)</title><rect x="12.7262%" y="517" width="0.0125%" height="15" fill="rgb(252,181,51)" fg:x="295226" fg:w="289"/><text x="12.9762%" y="527.50"></text></g><g><title>btrfs_block_rsv_add (477 samples, 0.02%)</title><rect x="12.7479%" y="501" width="0.0206%" height="15" fill="rgb(253,90,19)" fg:x="295730" fg:w="477"/><text x="12.9979%" y="511.50"></text></g><g><title>btrfs_reserve_metadata_bytes (410 samples, 0.02%)</title><rect x="12.7508%" y="485" width="0.0177%" height="15" fill="rgb(215,171,30)" fg:x="295797" fg:w="410"/><text x="13.0008%" y="495.50"></text></g><g><title>__reserve_bytes (347 samples, 0.01%)</title><rect x="12.7535%" y="469" width="0.0150%" height="15" fill="rgb(214,222,9)" fg:x="295860" fg:w="347"/><text x="13.0035%" y="479.50"></text></g><g><title>btrfs_rmdir (35,400 samples, 1.53%)</title><rect x="11.2524%" y="533" width="1.5260%" height="15" fill="rgb(223,3,22)" fg:x="261038" fg:w="35400"/><text x="11.5024%" y="543.50"></text></g><g><title>start_transaction (866 samples, 0.04%)</title><rect x="12.7411%" y="517" width="0.0373%" height="15" fill="rgb(225,196,46)" fg:x="295572" fg:w="866"/><text x="12.9911%" y="527.50"></text></g><g><title>dentry_unlink_inode (242 samples, 0.01%)</title><rect x="12.7842%" y="533" width="0.0104%" height="15" fill="rgb(209,110,37)" fg:x="296573" fg:w="242"/><text x="13.0342%" y="543.50"></text></g><g><title>__destroy_inode (260 samples, 0.01%)</title><rect x="12.7950%" y="517" width="0.0112%" height="15" fill="rgb(249,89,12)" fg:x="296824" fg:w="260"/><text x="13.0450%" y="527.50"></text></g><g><title>btrfs_drop_extent_cache (391 samples, 0.02%)</title><rect x="12.8088%" y="501" width="0.0169%" height="15" fill="rgb(226,27,33)" fg:x="297143" fg:w="391"/><text x="13.0588%" y="511.50"></text></g><g><title>clear_record_extent_bits (278 samples, 0.01%)</title><rect x="12.8381%" y="485" width="0.0120%" height="15" fill="rgb(213,82,22)" fg:x="297823" fg:w="278"/><text x="13.0881%" y="495.50"></text></g><g><title>__clear_extent_bit (260 samples, 0.01%)</title><rect x="12.8389%" y="469" width="0.0112%" height="15" fill="rgb(248,140,0)" fg:x="297841" fg:w="260"/><text x="13.0889%" y="479.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (347 samples, 0.01%)</title><rect x="12.8367%" y="501" width="0.0150%" height="15" fill="rgb(228,106,3)" fg:x="297791" fg:w="347"/><text x="13.0867%" y="511.50"></text></g><g><title>btrfs_destroy_inode (1,289 samples, 0.06%)</title><rect x="12.8062%" y="517" width="0.0556%" height="15" fill="rgb(209,23,37)" fg:x="297084" fg:w="1289"/><text x="13.0562%" y="527.50"></text></g><g><title>rb_erase (235 samples, 0.01%)</title><rect x="12.8517%" y="501" width="0.0101%" height="15" fill="rgb(241,93,50)" fg:x="298138" fg:w="235"/><text x="13.1017%" y="511.50"></text></g><g><title>destroy_inode (1,591 samples, 0.07%)</title><rect x="12.7946%" y="533" width="0.0686%" height="15" fill="rgb(253,46,43)" fg:x="296815" fg:w="1591"/><text x="13.0446%" y="543.50"></text></g><g><title>_raw_spin_lock (239 samples, 0.01%)</title><rect x="12.9015%" y="453" width="0.0103%" height="15" fill="rgb(226,206,43)" fg:x="299293" fg:w="239"/><text x="13.1515%" y="463.50"></text></g><g><title>btrfs_trans_release_metadata (408 samples, 0.02%)</title><rect x="12.8948%" y="485" width="0.0176%" height="15" fill="rgb(217,54,7)" fg:x="299139" fg:w="408"/><text x="13.1448%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (387 samples, 0.02%)</title><rect x="12.8957%" y="469" width="0.0167%" height="15" fill="rgb(223,5,52)" fg:x="299160" fg:w="387"/><text x="13.1457%" y="479.50"></text></g><g><title>__btrfs_end_transaction (846 samples, 0.04%)</title><rect x="12.8812%" y="501" width="0.0365%" height="15" fill="rgb(206,52,46)" fg:x="298823" fg:w="846"/><text x="13.1312%" y="511.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (499 samples, 0.02%)</title><rect x="12.9177%" y="501" width="0.0215%" height="15" fill="rgb(253,136,11)" fg:x="299669" fg:w="499"/><text x="13.1677%" y="511.50"></text></g><g><title>radix_tree_delete_item (263 samples, 0.01%)</title><rect x="12.9278%" y="485" width="0.0113%" height="15" fill="rgb(208,106,33)" fg:x="299905" fg:w="263"/><text x="13.1778%" y="495.50"></text></g><g><title>__btrfs_end_transaction (242 samples, 0.01%)</title><rect x="12.9568%" y="485" width="0.0104%" height="15" fill="rgb(206,54,4)" fg:x="300576" fg:w="242"/><text x="13.2068%" y="495.50"></text></g><g><title>btrfs_get_token_32 (988 samples, 0.04%)</title><rect x="12.9944%" y="453" width="0.0426%" height="15" fill="rgb(213,3,15)" fg:x="301450" fg:w="988"/><text x="13.2444%" y="463.50"></text></g><g><title>btrfs_set_token_32 (697 samples, 0.03%)</title><rect x="13.0390%" y="453" width="0.0300%" height="15" fill="rgb(252,211,39)" fg:x="302483" fg:w="697"/><text x="13.2890%" y="463.50"></text></g><g><title>memmove_extent_buffer (522 samples, 0.02%)</title><rect x="13.0762%" y="453" width="0.0225%" height="15" fill="rgb(223,6,36)" fg:x="303347" fg:w="522"/><text x="13.3262%" y="463.50"></text></g><g><title>memmove (414 samples, 0.02%)</title><rect x="13.0809%" y="437" width="0.0178%" height="15" fill="rgb(252,169,45)" fg:x="303455" fg:w="414"/><text x="13.3309%" y="447.50"></text></g><g><title>btrfs_del_items (2,807 samples, 0.12%)</title><rect x="12.9807%" y="469" width="0.1210%" height="15" fill="rgb(212,48,26)" fg:x="301131" fg:w="2807"/><text x="13.2307%" y="479.50"></text></g><g><title>finish_wait (356 samples, 0.02%)</title><rect x="13.1285%" y="405" width="0.0153%" height="15" fill="rgb(251,102,48)" fg:x="304559" fg:w="356"/><text x="13.3785%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (338 samples, 0.01%)</title><rect x="13.1292%" y="389" width="0.0146%" height="15" fill="rgb(243,208,16)" fg:x="304577" fg:w="338"/><text x="13.3792%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (320 samples, 0.01%)</title><rect x="13.1300%" y="373" width="0.0138%" height="15" fill="rgb(219,96,24)" fg:x="304595" fg:w="320"/><text x="13.3800%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (874 samples, 0.04%)</title><rect x="13.1467%" y="389" width="0.0377%" height="15" fill="rgb(219,33,29)" fg:x="304982" fg:w="874"/><text x="13.3967%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (834 samples, 0.04%)</title><rect x="13.1484%" y="373" width="0.0360%" height="15" fill="rgb(223,176,5)" fg:x="305022" fg:w="834"/><text x="13.3984%" y="383.50"></text></g><g><title>prepare_to_wait_event (959 samples, 0.04%)</title><rect x="13.1439%" y="405" width="0.0413%" height="15" fill="rgb(228,140,14)" fg:x="304917" fg:w="959"/><text x="13.3939%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (777 samples, 0.03%)</title><rect x="13.1852%" y="405" width="0.0335%" height="15" fill="rgb(217,179,31)" fg:x="305876" fg:w="777"/><text x="13.4352%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (574 samples, 0.02%)</title><rect x="13.1940%" y="389" width="0.0247%" height="15" fill="rgb(230,9,30)" fg:x="306079" fg:w="574"/><text x="13.4440%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (450 samples, 0.02%)</title><rect x="13.2313%" y="357" width="0.0194%" height="15" fill="rgb(230,136,20)" fg:x="306944" fg:w="450"/><text x="13.4813%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (429 samples, 0.02%)</title><rect x="13.2322%" y="341" width="0.0185%" height="15" fill="rgb(215,210,22)" fg:x="306965" fg:w="429"/><text x="13.4822%" y="351.50"></text></g><g><title>native_write_msr (422 samples, 0.02%)</title><rect x="13.2325%" y="325" width="0.0182%" height="15" fill="rgb(218,43,5)" fg:x="306972" fg:w="422"/><text x="13.4825%" y="335.50"></text></g><g><title>finish_task_switch (502 samples, 0.02%)</title><rect x="13.2295%" y="373" width="0.0216%" height="15" fill="rgb(216,11,5)" fg:x="306902" fg:w="502"/><text x="13.4795%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (3,178 samples, 0.14%)</title><rect x="13.1236%" y="421" width="0.1370%" height="15" fill="rgb(209,82,29)" fg:x="304447" fg:w="3178"/><text x="13.3736%" y="431.50"></text></g><g><title>schedule (972 samples, 0.04%)</title><rect x="13.2187%" y="405" width="0.0419%" height="15" fill="rgb(244,115,12)" fg:x="306653" fg:w="972"/><text x="13.4687%" y="415.50"></text></g><g><title>__schedule (965 samples, 0.04%)</title><rect x="13.2190%" y="389" width="0.0416%" height="15" fill="rgb(222,82,18)" fg:x="306660" fg:w="965"/><text x="13.4690%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,280 samples, 0.14%)</title><rect x="13.1231%" y="437" width="0.1414%" height="15" fill="rgb(249,227,8)" fg:x="304434" fg:w="3280"/><text x="13.3731%" y="447.50"></text></g><g><title>__btrfs_tree_lock (402 samples, 0.02%)</title><rect x="13.2645%" y="437" width="0.0173%" height="15" fill="rgb(253,141,45)" fg:x="307714" fg:w="402"/><text x="13.5145%" y="447.50"></text></g><g><title>schedule (370 samples, 0.02%)</title><rect x="13.2658%" y="421" width="0.0159%" height="15" fill="rgb(234,184,4)" fg:x="307746" fg:w="370"/><text x="13.5158%" y="431.50"></text></g><g><title>__schedule (367 samples, 0.02%)</title><rect x="13.2660%" y="405" width="0.0158%" height="15" fill="rgb(218,194,23)" fg:x="307749" fg:w="367"/><text x="13.5160%" y="415.50"></text></g><g><title>finish_wait (342 samples, 0.01%)</title><rect x="13.2899%" y="405" width="0.0147%" height="15" fill="rgb(235,66,41)" fg:x="308305" fg:w="342"/><text x="13.5399%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (325 samples, 0.01%)</title><rect x="13.2907%" y="389" width="0.0140%" height="15" fill="rgb(245,217,1)" fg:x="308322" fg:w="325"/><text x="13.5407%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (302 samples, 0.01%)</title><rect x="13.2917%" y="373" width="0.0130%" height="15" fill="rgb(229,91,1)" fg:x="308345" fg:w="302"/><text x="13.5417%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (853 samples, 0.04%)</title><rect x="13.3106%" y="389" width="0.0368%" height="15" fill="rgb(207,101,30)" fg:x="308785" fg:w="853"/><text x="13.5606%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (785 samples, 0.03%)</title><rect x="13.3136%" y="373" width="0.0338%" height="15" fill="rgb(223,82,49)" fg:x="308853" fg:w="785"/><text x="13.5636%" y="383.50"></text></g><g><title>prepare_to_wait_event (1,003 samples, 0.04%)</title><rect x="13.3049%" y="405" width="0.0432%" height="15" fill="rgb(218,167,17)" fg:x="308651" fg:w="1003"/><text x="13.5549%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (1,484 samples, 0.06%)</title><rect x="13.3481%" y="405" width="0.0640%" height="15" fill="rgb(208,103,14)" fg:x="309654" fg:w="1484"/><text x="13.5981%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (751 samples, 0.03%)</title><rect x="13.3797%" y="389" width="0.0324%" height="15" fill="rgb(238,20,8)" fg:x="310387" fg:w="751"/><text x="13.6297%" y="399.50"></text></g><g><title>dequeue_task_fair (255 samples, 0.01%)</title><rect x="13.4182%" y="373" width="0.0110%" height="15" fill="rgb(218,80,54)" fg:x="311280" fg:w="255"/><text x="13.6682%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (567 samples, 0.02%)</title><rect x="13.4315%" y="357" width="0.0244%" height="15" fill="rgb(240,144,17)" fg:x="311588" fg:w="567"/><text x="13.6815%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (548 samples, 0.02%)</title><rect x="13.4323%" y="341" width="0.0236%" height="15" fill="rgb(245,27,50)" fg:x="311607" fg:w="548"/><text x="13.6823%" y="351.50"></text></g><g><title>native_write_msr (535 samples, 0.02%)</title><rect x="13.4328%" y="325" width="0.0231%" height="15" fill="rgb(251,51,7)" fg:x="311620" fg:w="535"/><text x="13.6828%" y="335.50"></text></g><g><title>finish_task_switch (636 samples, 0.03%)</title><rect x="13.4292%" y="373" width="0.0274%" height="15" fill="rgb(245,217,29)" fg:x="311535" fg:w="636"/><text x="13.6792%" y="383.50"></text></g><g><title>__btrfs_tree_lock (4,408 samples, 0.19%)</title><rect x="13.2832%" y="421" width="0.1900%" height="15" fill="rgb(221,176,29)" fg:x="308148" fg:w="4408"/><text x="13.5332%" y="431.50"></text></g><g><title>schedule (1,418 samples, 0.06%)</title><rect x="13.4121%" y="405" width="0.0611%" height="15" fill="rgb(212,180,24)" fg:x="311138" fg:w="1418"/><text x="13.6621%" y="415.50"></text></g><g><title>__schedule (1,395 samples, 0.06%)</title><rect x="13.4131%" y="389" width="0.0601%" height="15" fill="rgb(254,24,2)" fg:x="311161" fg:w="1395"/><text x="13.6631%" y="399.50"></text></g><g><title>btrfs_lock_root_node (4,450 samples, 0.19%)</title><rect x="13.2831%" y="437" width="0.1918%" height="15" fill="rgb(230,100,2)" fg:x="308147" fg:w="4450"/><text x="13.5331%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (267 samples, 0.01%)</title><rect x="13.4788%" y="437" width="0.0115%" height="15" fill="rgb(219,142,25)" fg:x="312687" fg:w="267"/><text x="13.7288%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (237 samples, 0.01%)</title><rect x="13.4801%" y="421" width="0.0102%" height="15" fill="rgb(240,73,43)" fg:x="312717" fg:w="237"/><text x="13.7301%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (377 samples, 0.02%)</title><rect x="13.4929%" y="437" width="0.0163%" height="15" fill="rgb(214,114,15)" fg:x="313013" fg:w="377"/><text x="13.7429%" y="447.50"></text></g><g><title>__radix_tree_lookup (236 samples, 0.01%)</title><rect x="13.5228%" y="405" width="0.0102%" height="15" fill="rgb(207,130,4)" fg:x="313708" fg:w="236"/><text x="13.7728%" y="415.50"></text></g><g><title>find_extent_buffer (446 samples, 0.02%)</title><rect x="13.5178%" y="421" width="0.0192%" height="15" fill="rgb(221,25,40)" fg:x="313592" fg:w="446"/><text x="13.7678%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (720 samples, 0.03%)</title><rect x="13.5091%" y="437" width="0.0310%" height="15" fill="rgb(241,184,7)" fg:x="313390" fg:w="720"/><text x="13.7591%" y="447.50"></text></g><g><title>reada_for_balance (289 samples, 0.01%)</title><rect x="13.5402%" y="437" width="0.0125%" height="15" fill="rgb(235,159,4)" fg:x="314110" fg:w="289"/><text x="13.7902%" y="447.50"></text></g><g><title>select_task_rq_fair (285 samples, 0.01%)</title><rect x="13.5893%" y="357" width="0.0123%" height="15" fill="rgb(214,87,48)" fg:x="315249" fg:w="285"/><text x="13.8393%" y="367.50"></text></g><g><title>enqueue_entity (266 samples, 0.01%)</title><rect x="13.6057%" y="325" width="0.0115%" height="15" fill="rgb(246,198,24)" fg:x="315630" fg:w="266"/><text x="13.8557%" y="335.50"></text></g><g><title>enqueue_task_fair (334 samples, 0.01%)</title><rect x="13.6035%" y="341" width="0.0144%" height="15" fill="rgb(209,66,40)" fg:x="315580" fg:w="334"/><text x="13.8535%" y="351.50"></text></g><g><title>ttwu_do_activate (702 samples, 0.03%)</title><rect x="13.6024%" y="357" width="0.0303%" height="15" fill="rgb(233,147,39)" fg:x="315553" fg:w="702"/><text x="13.8524%" y="367.50"></text></g><g><title>psi_task_change (341 samples, 0.01%)</title><rect x="13.6179%" y="341" width="0.0147%" height="15" fill="rgb(231,145,52)" fg:x="315914" fg:w="341"/><text x="13.8679%" y="351.50"></text></g><g><title>psi_group_change (302 samples, 0.01%)</title><rect x="13.6196%" y="325" width="0.0130%" height="15" fill="rgb(206,20,26)" fg:x="315953" fg:w="302"/><text x="13.8696%" y="335.50"></text></g><g><title>__wake_up_common (1,939 samples, 0.08%)</title><rect x="13.5560%" y="405" width="0.0836%" height="15" fill="rgb(238,220,4)" fg:x="314478" fg:w="1939"/><text x="13.8060%" y="415.50"></text></g><g><title>autoremove_wake_function (1,894 samples, 0.08%)</title><rect x="13.5580%" y="389" width="0.0816%" height="15" fill="rgb(252,195,42)" fg:x="314523" fg:w="1894"/><text x="13.8080%" y="399.50"></text></g><g><title>try_to_wake_up (1,839 samples, 0.08%)</title><rect x="13.5603%" y="373" width="0.0793%" height="15" fill="rgb(209,10,6)" fg:x="314578" fg:w="1839"/><text x="13.8103%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (428 samples, 0.02%)</title><rect x="13.6396%" y="405" width="0.0184%" height="15" fill="rgb(229,3,52)" fg:x="316417" fg:w="428"/><text x="13.8896%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (410 samples, 0.02%)</title><rect x="13.6404%" y="389" width="0.0177%" height="15" fill="rgb(253,49,37)" fg:x="316435" fg:w="410"/><text x="13.8904%" y="399.50"></text></g><g><title>__wake_up_common_lock (2,397 samples, 0.10%)</title><rect x="13.5558%" y="421" width="0.1033%" height="15" fill="rgb(240,103,49)" fg:x="314472" fg:w="2397"/><text x="13.8058%" y="431.50"></text></g><g><title>btrfs_lookup_inode (12,763 samples, 0.55%)</title><rect x="13.1110%" y="469" width="0.5502%" height="15" fill="rgb(250,182,30)" fg:x="304153" fg:w="12763"/><text x="13.3610%" y="479.50"></text></g><g><title>btrfs_search_slot (12,724 samples, 0.55%)</title><rect x="13.1126%" y="453" width="0.5485%" height="15" fill="rgb(248,8,30)" fg:x="304192" fg:w="12724"/><text x="13.3626%" y="463.50"></text></g><g><title>unlock_up (2,509 samples, 0.11%)</title><rect x="13.5530%" y="437" width="0.1082%" height="15" fill="rgb(237,120,30)" fg:x="314407" fg:w="2509"/><text x="13.8030%" y="447.50"></text></g><g><title>__wake_up_common (360 samples, 0.02%)</title><rect x="13.6660%" y="437" width="0.0155%" height="15" fill="rgb(221,146,34)" fg:x="317030" fg:w="360"/><text x="13.9160%" y="447.50"></text></g><g><title>autoremove_wake_function (350 samples, 0.02%)</title><rect x="13.6665%" y="421" width="0.0151%" height="15" fill="rgb(242,55,13)" fg:x="317040" fg:w="350"/><text x="13.9165%" y="431.50"></text></g><g><title>try_to_wake_up (340 samples, 0.01%)</title><rect x="13.6669%" y="405" width="0.0147%" height="15" fill="rgb(242,112,31)" fg:x="317050" fg:w="340"/><text x="13.9169%" y="415.50"></text></g><g><title>__wake_up_common_lock (376 samples, 0.02%)</title><rect x="13.6660%" y="453" width="0.0162%" height="15" fill="rgb(249,192,27)" fg:x="317028" fg:w="376"/><text x="13.9160%" y="463.50"></text></g><g><title>btrfs_release_path (569 samples, 0.02%)</title><rect x="13.6654%" y="469" width="0.0245%" height="15" fill="rgb(208,204,44)" fg:x="317016" fg:w="569"/><text x="13.9154%" y="479.50"></text></g><g><title>__btrfs_update_delayed_inode (16,823 samples, 0.73%)</title><rect x="12.9764%" y="485" width="0.7252%" height="15" fill="rgb(208,93,54)" fg:x="301032" fg:w="16823"/><text x="13.2264%" y="495.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (18,049 samples, 0.78%)</title><rect x="12.9559%" y="501" width="0.7780%" height="15" fill="rgb(242,1,31)" fg:x="300555" fg:w="18049"/><text x="13.2059%" y="511.50"></text></g><g><title>start_transaction (256 samples, 0.01%)</title><rect x="13.7229%" y="485" width="0.0110%" height="15" fill="rgb(241,83,25)" fg:x="318348" fg:w="256"/><text x="13.9729%" y="495.50"></text></g><g><title>btrfs_del_items (389 samples, 0.02%)</title><rect x="13.7353%" y="485" width="0.0168%" height="15" fill="rgb(205,169,50)" fg:x="318637" fg:w="389"/><text x="13.9853%" y="495.50"></text></g><g><title>__wake_up_common (757 samples, 0.03%)</title><rect x="13.7530%" y="437" width="0.0326%" height="15" fill="rgb(239,186,37)" fg:x="319047" fg:w="757"/><text x="14.0030%" y="447.50"></text></g><g><title>autoremove_wake_function (744 samples, 0.03%)</title><rect x="13.7536%" y="421" width="0.0321%" height="15" fill="rgb(205,221,10)" fg:x="319060" fg:w="744"/><text x="14.0036%" y="431.50"></text></g><g><title>try_to_wake_up (739 samples, 0.03%)</title><rect x="13.7538%" y="405" width="0.0319%" height="15" fill="rgb(218,196,15)" fg:x="319065" fg:w="739"/><text x="14.0038%" y="415.50"></text></g><g><title>__wake_up_common_lock (780 samples, 0.03%)</title><rect x="13.7529%" y="453" width="0.0336%" height="15" fill="rgb(218,196,35)" fg:x="319046" fg:w="780"/><text x="14.0029%" y="463.50"></text></g><g><title>btrfs_free_path (1,014 samples, 0.04%)</title><rect x="13.7521%" y="485" width="0.0437%" height="15" fill="rgb(233,63,24)" fg:x="319026" fg:w="1014"/><text x="14.0021%" y="495.50"></text></g><g><title>btrfs_release_path (1,013 samples, 0.04%)</title><rect x="13.7521%" y="469" width="0.0437%" height="15" fill="rgb(225,8,4)" fg:x="319027" fg:w="1013"/><text x="14.0021%" y="479.50"></text></g><g><title>finish_wait (510 samples, 0.02%)</title><rect x="13.8124%" y="437" width="0.0220%" height="15" fill="rgb(234,105,35)" fg:x="320425" fg:w="510"/><text x="14.0624%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (486 samples, 0.02%)</title><rect x="13.8134%" y="421" width="0.0209%" height="15" fill="rgb(236,21,32)" fg:x="320449" fg:w="486"/><text x="14.0634%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (467 samples, 0.02%)</title><rect x="13.8142%" y="405" width="0.0201%" height="15" fill="rgb(228,109,6)" fg:x="320468" fg:w="467"/><text x="14.0642%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (1,298 samples, 0.06%)</title><rect x="13.8385%" y="421" width="0.0560%" height="15" fill="rgb(229,215,31)" fg:x="321031" fg:w="1298"/><text x="14.0885%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,255 samples, 0.05%)</title><rect x="13.8404%" y="405" width="0.0541%" height="15" fill="rgb(221,52,54)" fg:x="321074" fg:w="1255"/><text x="14.0904%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,424 samples, 0.06%)</title><rect x="13.8344%" y="437" width="0.0614%" height="15" fill="rgb(252,129,43)" fg:x="320935" fg:w="1424"/><text x="14.0844%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (876 samples, 0.04%)</title><rect x="13.8958%" y="437" width="0.0378%" height="15" fill="rgb(248,183,27)" fg:x="322359" fg:w="876"/><text x="14.1458%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (625 samples, 0.03%)</title><rect x="13.9066%" y="421" width="0.0269%" height="15" fill="rgb(250,0,22)" fg:x="322610" fg:w="625"/><text x="14.1566%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (560 samples, 0.02%)</title><rect x="13.9477%" y="389" width="0.0241%" height="15" fill="rgb(213,166,10)" fg:x="323565" fg:w="560"/><text x="14.1977%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (542 samples, 0.02%)</title><rect x="13.9485%" y="373" width="0.0234%" height="15" fill="rgb(207,163,36)" fg:x="323583" fg:w="542"/><text x="14.1985%" y="383.50"></text></g><g><title>native_write_msr (538 samples, 0.02%)</title><rect x="13.9487%" y="357" width="0.0232%" height="15" fill="rgb(208,122,22)" fg:x="323587" fg:w="538"/><text x="14.1987%" y="367.50"></text></g><g><title>finish_task_switch (617 samples, 0.03%)</title><rect x="13.9462%" y="405" width="0.0266%" height="15" fill="rgb(207,104,49)" fg:x="323530" fg:w="617"/><text x="14.1962%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (4,174 samples, 0.18%)</title><rect x="13.8055%" y="453" width="0.1799%" height="15" fill="rgb(248,211,50)" fg:x="320265" fg:w="4174"/><text x="14.0555%" y="463.50"></text></g><g><title>schedule (1,204 samples, 0.05%)</title><rect x="13.9335%" y="437" width="0.0519%" height="15" fill="rgb(217,13,45)" fg:x="323235" fg:w="1204"/><text x="14.1835%" y="447.50"></text></g><g><title>__schedule (1,193 samples, 0.05%)</title><rect x="13.9340%" y="421" width="0.0514%" height="15" fill="rgb(211,216,49)" fg:x="323246" fg:w="1193"/><text x="14.1840%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (4,273 samples, 0.18%)</title><rect x="13.8050%" y="469" width="0.1842%" height="15" fill="rgb(221,58,53)" fg:x="320253" fg:w="4273"/><text x="14.0550%" y="479.50"></text></g><g><title>__btrfs_tree_lock (444 samples, 0.02%)</title><rect x="13.9892%" y="469" width="0.0191%" height="15" fill="rgb(220,112,41)" fg:x="324526" fg:w="444"/><text x="14.2392%" y="479.50"></text></g><g><title>schedule (379 samples, 0.02%)</title><rect x="13.9920%" y="453" width="0.0163%" height="15" fill="rgb(236,38,28)" fg:x="324591" fg:w="379"/><text x="14.2420%" y="463.50"></text></g><g><title>__schedule (377 samples, 0.02%)</title><rect x="13.9921%" y="437" width="0.0163%" height="15" fill="rgb(227,195,22)" fg:x="324593" fg:w="377"/><text x="14.2421%" y="447.50"></text></g><g><title>finish_wait (418 samples, 0.02%)</title><rect x="14.0173%" y="437" width="0.0180%" height="15" fill="rgb(214,55,33)" fg:x="325179" fg:w="418"/><text x="14.2673%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (391 samples, 0.02%)</title><rect x="14.0185%" y="421" width="0.0169%" height="15" fill="rgb(248,80,13)" fg:x="325206" fg:w="391"/><text x="14.2685%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (364 samples, 0.02%)</title><rect x="14.0196%" y="405" width="0.0157%" height="15" fill="rgb(238,52,6)" fg:x="325233" fg:w="364"/><text x="14.2696%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (961 samples, 0.04%)</title><rect x="14.0396%" y="421" width="0.0414%" height="15" fill="rgb(224,198,47)" fg:x="325696" fg:w="961"/><text x="14.2896%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (884 samples, 0.04%)</title><rect x="14.0429%" y="405" width="0.0381%" height="15" fill="rgb(233,171,20)" fg:x="325773" fg:w="884"/><text x="14.2929%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,096 samples, 0.05%)</title><rect x="14.0355%" y="437" width="0.0472%" height="15" fill="rgb(241,30,25)" fg:x="325600" fg:w="1096"/><text x="14.2855%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (1,587 samples, 0.07%)</title><rect x="14.0827%" y="437" width="0.0684%" height="15" fill="rgb(207,171,38)" fg:x="326696" fg:w="1587"/><text x="14.3327%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (802 samples, 0.03%)</title><rect x="14.1166%" y="421" width="0.0346%" height="15" fill="rgb(234,70,1)" fg:x="327481" fg:w="802"/><text x="14.3666%" y="431.50"></text></g><g><title>dequeue_task_fair (263 samples, 0.01%)</title><rect x="14.1570%" y="405" width="0.0113%" height="15" fill="rgb(232,178,18)" fg:x="328419" fg:w="263"/><text x="14.4070%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (650 samples, 0.03%)</title><rect x="14.1713%" y="389" width="0.0280%" height="15" fill="rgb(241,78,40)" fg:x="328750" fg:w="650"/><text x="14.4213%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (636 samples, 0.03%)</title><rect x="14.1719%" y="373" width="0.0274%" height="15" fill="rgb(222,35,25)" fg:x="328764" fg:w="636"/><text x="14.4219%" y="383.50"></text></g><g><title>native_write_msr (629 samples, 0.03%)</title><rect x="14.1722%" y="357" width="0.0271%" height="15" fill="rgb(207,92,16)" fg:x="328771" fg:w="629"/><text x="14.4222%" y="367.50"></text></g><g><title>finish_task_switch (737 samples, 0.03%)</title><rect x="14.1683%" y="405" width="0.0318%" height="15" fill="rgb(216,59,51)" fg:x="328682" fg:w="737"/><text x="14.4183%" y="415.50"></text></g><g><title>__btrfs_tree_lock (4,791 samples, 0.21%)</title><rect x="14.0096%" y="453" width="0.2065%" height="15" fill="rgb(213,80,28)" fg:x="325001" fg:w="4791"/><text x="14.2596%" y="463.50"></text></g><g><title>schedule (1,509 samples, 0.07%)</title><rect x="14.1511%" y="437" width="0.0650%" height="15" fill="rgb(220,93,7)" fg:x="328283" fg:w="1509"/><text x="14.4011%" y="447.50"></text></g><g><title>__schedule (1,491 samples, 0.06%)</title><rect x="14.1519%" y="421" width="0.0643%" height="15" fill="rgb(225,24,44)" fg:x="328301" fg:w="1491"/><text x="14.4019%" y="431.50"></text></g><g><title>btrfs_lock_root_node (4,830 samples, 0.21%)</title><rect x="14.0094%" y="469" width="0.2082%" height="15" fill="rgb(243,74,40)" fg:x="324995" fg:w="4830"/><text x="14.2594%" y="479.50"></text></g><g><title>btrfs_try_tree_write_lock (288 samples, 0.01%)</title><rect x="14.2219%" y="469" width="0.0124%" height="15" fill="rgb(228,39,7)" fg:x="329925" fg:w="288"/><text x="14.4719%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (331 samples, 0.01%)</title><rect x="14.2368%" y="469" width="0.0143%" height="15" fill="rgb(227,79,8)" fg:x="330271" fg:w="331"/><text x="14.4868%" y="479.50"></text></g><g><title>find_extent_buffer (480 samples, 0.02%)</title><rect x="14.2605%" y="453" width="0.0207%" height="15" fill="rgb(236,58,11)" fg:x="330821" fg:w="480"/><text x="14.5105%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (766 samples, 0.03%)</title><rect x="14.2511%" y="469" width="0.0330%" height="15" fill="rgb(249,63,35)" fg:x="330602" fg:w="766"/><text x="14.5011%" y="479.50"></text></g><g><title>ttwu_do_activate (409 samples, 0.02%)</title><rect x="14.3061%" y="389" width="0.0176%" height="15" fill="rgb(252,114,16)" fg:x="331878" fg:w="409"/><text x="14.5561%" y="399.50"></text></g><g><title>__wake_up_common (933 samples, 0.04%)</title><rect x="14.2873%" y="437" width="0.0402%" height="15" fill="rgb(254,151,24)" fg:x="331443" fg:w="933"/><text x="14.5373%" y="447.50"></text></g><g><title>autoremove_wake_function (918 samples, 0.04%)</title><rect x="14.2880%" y="421" width="0.0396%" height="15" fill="rgb(253,54,39)" fg:x="331458" fg:w="918"/><text x="14.5380%" y="431.50"></text></g><g><title>try_to_wake_up (890 samples, 0.04%)</title><rect x="14.2892%" y="405" width="0.0384%" height="15" fill="rgb(243,25,45)" fg:x="331486" fg:w="890"/><text x="14.5392%" y="415.50"></text></g><g><title>__wake_up_common_lock (958 samples, 0.04%)</title><rect x="14.2873%" y="453" width="0.0413%" height="15" fill="rgb(234,134,9)" fg:x="331441" fg:w="958"/><text x="14.5373%" y="463.50"></text></g><g><title>btrfs_search_slot (12,387 samples, 0.53%)</title><rect x="13.7958%" y="485" width="0.5340%" height="15" fill="rgb(227,166,31)" fg:x="320040" fg:w="12387"/><text x="14.0458%" y="495.50"></text></g><g><title>unlock_up (1,059 samples, 0.05%)</title><rect x="14.2841%" y="469" width="0.0456%" height="15" fill="rgb(245,143,41)" fg:x="331368" fg:w="1059"/><text x="14.5341%" y="479.50"></text></g><g><title>btrfs_del_orphan_item (13,939 samples, 0.60%)</title><rect x="13.7339%" y="501" width="0.6009%" height="15" fill="rgb(238,181,32)" fg:x="318604" fg:w="13939"/><text x="13.9839%" y="511.50"></text></g><g><title>clear_state_bit (278 samples, 0.01%)</title><rect x="14.3697%" y="469" width="0.0120%" height="15" fill="rgb(224,113,18)" fg:x="333354" fg:w="278"/><text x="14.6197%" y="479.50"></text></g><g><title>__clear_extent_bit (580 samples, 0.03%)</title><rect x="14.3596%" y="485" width="0.0250%" height="15" fill="rgb(240,229,28)" fg:x="333120" fg:w="580"/><text x="14.6096%" y="495.50"></text></g><g><title>btrfs_del_leaf (251 samples, 0.01%)</title><rect x="14.3991%" y="469" width="0.0108%" height="15" fill="rgb(250,185,3)" fg:x="334036" fg:w="251"/><text x="14.6491%" y="479.50"></text></g><g><title>btrfs_get_token_32 (1,054 samples, 0.05%)</title><rect x="14.4144%" y="469" width="0.0454%" height="15" fill="rgb(212,59,25)" fg:x="334391" fg:w="1054"/><text x="14.6644%" y="479.50"></text></g><g><title>btrfs_set_token_32 (770 samples, 0.03%)</title><rect x="14.4630%" y="469" width="0.0332%" height="15" fill="rgb(221,87,20)" fg:x="335518" fg:w="770"/><text x="14.7130%" y="479.50"></text></g><g><title>memmove_extent_buffer (548 samples, 0.02%)</title><rect x="14.5064%" y="469" width="0.0236%" height="15" fill="rgb(213,74,28)" fg:x="336525" fg:w="548"/><text x="14.7564%" y="479.50"></text></g><g><title>memmove (430 samples, 0.02%)</title><rect x="14.5115%" y="453" width="0.0185%" height="15" fill="rgb(224,132,34)" fg:x="336643" fg:w="430"/><text x="14.7615%" y="463.50"></text></g><g><title>btrfs_del_items (3,770 samples, 0.16%)</title><rect x="14.3847%" y="485" width="0.1625%" height="15" fill="rgb(222,101,24)" fg:x="333701" fg:w="3770"/><text x="14.6347%" y="495.50"></text></g><g><title>alloc_extent_map (244 samples, 0.01%)</title><rect x="14.5502%" y="469" width="0.0105%" height="15" fill="rgb(254,142,4)" fg:x="337541" fg:w="244"/><text x="14.8002%" y="479.50"></text></g><g><title>btrfs_drop_extent_cache (457 samples, 0.02%)</title><rect x="14.5472%" y="485" width="0.0197%" height="15" fill="rgb(230,229,49)" fg:x="337471" fg:w="457"/><text x="14.7972%" y="495.50"></text></g><g><title>ttwu_do_activate (285 samples, 0.01%)</title><rect x="14.5819%" y="389" width="0.0123%" height="15" fill="rgb(238,70,47)" fg:x="338276" fg:w="285"/><text x="14.8319%" y="399.50"></text></g><g><title>__wake_up_common (697 samples, 0.03%)</title><rect x="14.5683%" y="437" width="0.0300%" height="15" fill="rgb(231,160,17)" fg:x="337961" fg:w="697"/><text x="14.8183%" y="447.50"></text></g><g><title>autoremove_wake_function (682 samples, 0.03%)</title><rect x="14.5690%" y="421" width="0.0294%" height="15" fill="rgb(218,68,53)" fg:x="337976" fg:w="682"/><text x="14.8190%" y="431.50"></text></g><g><title>try_to_wake_up (667 samples, 0.03%)</title><rect x="14.5696%" y="405" width="0.0288%" height="15" fill="rgb(236,111,10)" fg:x="337991" fg:w="667"/><text x="14.8196%" y="415.50"></text></g><g><title>__wake_up_common_lock (723 samples, 0.03%)</title><rect x="14.5682%" y="453" width="0.0312%" height="15" fill="rgb(224,34,41)" fg:x="337959" fg:w="723"/><text x="14.8182%" y="463.50"></text></g><g><title>btrfs_free_path (974 samples, 0.04%)</title><rect x="14.5669%" y="485" width="0.0420%" height="15" fill="rgb(241,118,19)" fg:x="337928" fg:w="974"/><text x="14.8169%" y="495.50"></text></g><g><title>btrfs_release_path (970 samples, 0.04%)</title><rect x="14.5671%" y="469" width="0.0418%" height="15" fill="rgb(238,129,25)" fg:x="337932" fg:w="970"/><text x="14.8171%" y="479.50"></text></g><g><title>btrfs_block_rsv_release (307 samples, 0.01%)</title><rect x="14.6164%" y="453" width="0.0132%" height="15" fill="rgb(238,22,31)" fg:x="339077" fg:w="307"/><text x="14.8664%" y="463.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (388 samples, 0.02%)</title><rect x="14.6296%" y="453" width="0.0167%" height="15" fill="rgb(222,174,48)" fg:x="339384" fg:w="388"/><text x="14.8796%" y="463.50"></text></g><g><title>__btrfs_kill_delayed_node (1,035 samples, 0.04%)</title><rect x="14.6139%" y="469" width="0.0446%" height="15" fill="rgb(206,152,40)" fg:x="339018" fg:w="1035"/><text x="14.8639%" y="479.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,107 samples, 0.05%)</title><rect x="14.6131%" y="485" width="0.0477%" height="15" fill="rgb(218,99,54)" fg:x="339000" fg:w="1107"/><text x="14.8631%" y="495.50"></text></g><g><title>finish_wait (469 samples, 0.02%)</title><rect x="14.6789%" y="437" width="0.0202%" height="15" fill="rgb(220,174,26)" fg:x="340526" fg:w="469"/><text x="14.9289%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (455 samples, 0.02%)</title><rect x="14.6795%" y="421" width="0.0196%" height="15" fill="rgb(245,116,9)" fg:x="340540" fg:w="455"/><text x="14.9295%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (437 samples, 0.02%)</title><rect x="14.6803%" y="405" width="0.0188%" height="15" fill="rgb(209,72,35)" fg:x="340558" fg:w="437"/><text x="14.9303%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (1,135 samples, 0.05%)</title><rect x="14.7031%" y="421" width="0.0489%" height="15" fill="rgb(226,126,21)" fg:x="341087" fg:w="1135"/><text x="14.9531%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,088 samples, 0.05%)</title><rect x="14.7051%" y="405" width="0.0469%" height="15" fill="rgb(227,192,1)" fg:x="341134" fg:w="1088"/><text x="14.9551%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,251 samples, 0.05%)</title><rect x="14.6991%" y="437" width="0.0539%" height="15" fill="rgb(237,180,29)" fg:x="340995" fg:w="1251"/><text x="14.9491%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,006 samples, 0.04%)</title><rect x="14.7530%" y="437" width="0.0434%" height="15" fill="rgb(230,197,35)" fg:x="342246" fg:w="1006"/><text x="15.0030%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (730 samples, 0.03%)</title><rect x="14.7649%" y="421" width="0.0315%" height="15" fill="rgb(246,193,31)" fg:x="342522" fg:w="730"/><text x="15.0149%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (514 samples, 0.02%)</title><rect x="14.8121%" y="389" width="0.0222%" height="15" fill="rgb(241,36,4)" fg:x="343617" fg:w="514"/><text x="15.0621%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (505 samples, 0.02%)</title><rect x="14.8125%" y="373" width="0.0218%" height="15" fill="rgb(241,130,17)" fg:x="343626" fg:w="505"/><text x="15.0625%" y="383.50"></text></g><g><title>native_write_msr (501 samples, 0.02%)</title><rect x="14.8127%" y="357" width="0.0216%" height="15" fill="rgb(206,137,32)" fg:x="343630" fg:w="501"/><text x="15.0627%" y="367.50"></text></g><g><title>finish_task_switch (606 samples, 0.03%)</title><rect x="14.8105%" y="405" width="0.0261%" height="15" fill="rgb(237,228,51)" fg:x="343580" fg:w="606"/><text x="15.0605%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (4,089 samples, 0.18%)</title><rect x="14.6729%" y="453" width="0.1763%" height="15" fill="rgb(243,6,42)" fg:x="340387" fg:w="4089"/><text x="14.9229%" y="463.50"></text></g><g><title>schedule (1,224 samples, 0.05%)</title><rect x="14.7964%" y="437" width="0.0528%" height="15" fill="rgb(251,74,28)" fg:x="343252" fg:w="1224"/><text x="15.0464%" y="447.50"></text></g><g><title>__schedule (1,212 samples, 0.05%)</title><rect x="14.7969%" y="421" width="0.0522%" height="15" fill="rgb(218,20,49)" fg:x="343264" fg:w="1212"/><text x="15.0469%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (4,185 samples, 0.18%)</title><rect x="14.6725%" y="469" width="0.1804%" height="15" fill="rgb(238,28,14)" fg:x="340377" fg:w="4185"/><text x="14.9225%" y="479.50"></text></g><g><title>__btrfs_tree_lock (413 samples, 0.02%)</title><rect x="14.8529%" y="469" width="0.0178%" height="15" fill="rgb(229,40,46)" fg:x="344562" fg:w="413"/><text x="15.1029%" y="479.50"></text></g><g><title>schedule (377 samples, 0.02%)</title><rect x="14.8544%" y="453" width="0.0163%" height="15" fill="rgb(244,195,20)" fg:x="344598" fg:w="377"/><text x="15.1044%" y="463.50"></text></g><g><title>__schedule (374 samples, 0.02%)</title><rect x="14.8545%" y="437" width="0.0161%" height="15" fill="rgb(253,56,35)" fg:x="344601" fg:w="374"/><text x="15.1045%" y="447.50"></text></g><g><title>finish_wait (330 samples, 0.01%)</title><rect x="14.8805%" y="437" width="0.0142%" height="15" fill="rgb(210,149,44)" fg:x="345203" fg:w="330"/><text x="15.1305%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (307 samples, 0.01%)</title><rect x="14.8815%" y="421" width="0.0132%" height="15" fill="rgb(240,135,12)" fg:x="345226" fg:w="307"/><text x="15.1315%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (290 samples, 0.01%)</title><rect x="14.8822%" y="405" width="0.0125%" height="15" fill="rgb(251,24,50)" fg:x="345243" fg:w="290"/><text x="15.1322%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (892 samples, 0.04%)</title><rect x="14.9001%" y="421" width="0.0385%" height="15" fill="rgb(243,200,47)" fg:x="345659" fg:w="892"/><text x="15.1501%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (810 samples, 0.03%)</title><rect x="14.9037%" y="405" width="0.0349%" height="15" fill="rgb(224,166,26)" fg:x="345741" fg:w="810"/><text x="15.1537%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,035 samples, 0.04%)</title><rect x="14.8948%" y="437" width="0.0446%" height="15" fill="rgb(233,0,47)" fg:x="345535" fg:w="1035"/><text x="15.1448%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (1,615 samples, 0.07%)</title><rect x="14.9394%" y="437" width="0.0696%" height="15" fill="rgb(253,80,5)" fg:x="346570" fg:w="1615"/><text x="15.1894%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (801 samples, 0.03%)</title><rect x="14.9745%" y="421" width="0.0345%" height="15" fill="rgb(214,133,25)" fg:x="347384" fg:w="801"/><text x="15.2245%" y="431.50"></text></g><g><title>dequeue_task_fair (257 samples, 0.01%)</title><rect x="15.0145%" y="405" width="0.0111%" height="15" fill="rgb(209,27,14)" fg:x="348312" fg:w="257"/><text x="15.2645%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (580 samples, 0.03%)</title><rect x="15.0277%" y="389" width="0.0250%" height="15" fill="rgb(219,102,51)" fg:x="348618" fg:w="580"/><text x="15.2777%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (568 samples, 0.02%)</title><rect x="15.0282%" y="373" width="0.0245%" height="15" fill="rgb(237,18,16)" fg:x="348630" fg:w="568"/><text x="15.2782%" y="383.50"></text></g><g><title>native_write_msr (559 samples, 0.02%)</title><rect x="15.0286%" y="357" width="0.0241%" height="15" fill="rgb(241,85,17)" fg:x="348639" fg:w="559"/><text x="15.2786%" y="367.50"></text></g><g><title>finish_task_switch (660 samples, 0.03%)</title><rect x="15.0256%" y="405" width="0.0285%" height="15" fill="rgb(236,90,42)" fg:x="348569" fg:w="660"/><text x="15.2756%" y="415.50"></text></g><g><title>__btrfs_tree_lock (4,569 samples, 0.20%)</title><rect x="14.8731%" y="453" width="0.1970%" height="15" fill="rgb(249,57,21)" fg:x="345031" fg:w="4569"/><text x="15.1231%" y="463.50"></text></g><g><title>schedule (1,415 samples, 0.06%)</title><rect x="15.0090%" y="437" width="0.0610%" height="15" fill="rgb(243,12,36)" fg:x="348185" fg:w="1415"/><text x="15.2590%" y="447.50"></text></g><g><title>__schedule (1,391 samples, 0.06%)</title><rect x="15.0101%" y="421" width="0.0600%" height="15" fill="rgb(253,128,47)" fg:x="348209" fg:w="1391"/><text x="15.2601%" y="431.50"></text></g><g><title>btrfs_lock_root_node (4,629 samples, 0.20%)</title><rect x="14.8730%" y="469" width="0.1995%" height="15" fill="rgb(207,33,20)" fg:x="345029" fg:w="4629"/><text x="15.1230%" y="479.50"></text></g><g><title>btrfs_try_tree_write_lock (354 samples, 0.02%)</title><rect x="15.0787%" y="469" width="0.0153%" height="15" fill="rgb(233,215,35)" fg:x="349801" fg:w="354"/><text x="15.3287%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (311 samples, 0.01%)</title><rect x="15.0805%" y="453" width="0.0134%" height="15" fill="rgb(249,188,52)" fg:x="349844" fg:w="311"/><text x="15.3305%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (424 samples, 0.02%)</title><rect x="15.0964%" y="469" width="0.0183%" height="15" fill="rgb(225,12,32)" fg:x="350211" fg:w="424"/><text x="15.3464%" y="479.50"></text></g><g><title>find_extent_buffer (409 samples, 0.02%)</title><rect x="15.1227%" y="453" width="0.0176%" height="15" fill="rgb(247,98,14)" fg:x="350823" fg:w="409"/><text x="15.3727%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (668 samples, 0.03%)</title><rect x="15.1146%" y="469" width="0.0288%" height="15" fill="rgb(247,219,48)" fg:x="350635" fg:w="668"/><text x="15.3646%" y="479.50"></text></g><g><title>reada_for_balance (303 samples, 0.01%)</title><rect x="15.1434%" y="469" width="0.0131%" height="15" fill="rgb(253,60,48)" fg:x="351303" fg:w="303"/><text x="15.3934%" y="479.50"></text></g><g><title>select_task_rq_fair (276 samples, 0.01%)</title><rect x="15.1929%" y="389" width="0.0119%" height="15" fill="rgb(245,15,52)" fg:x="352450" fg:w="276"/><text x="15.4429%" y="399.50"></text></g><g><title>enqueue_entity (238 samples, 0.01%)</title><rect x="15.2093%" y="357" width="0.0103%" height="15" fill="rgb(220,133,28)" fg:x="352830" fg:w="238"/><text x="15.4593%" y="367.50"></text></g><g><title>enqueue_task_fair (308 samples, 0.01%)</title><rect x="15.2070%" y="373" width="0.0133%" height="15" fill="rgb(217,180,4)" fg:x="352777" fg:w="308"/><text x="15.4570%" y="383.50"></text></g><g><title>ttwu_do_activate (676 samples, 0.03%)</title><rect x="15.2057%" y="389" width="0.0291%" height="15" fill="rgb(251,24,1)" fg:x="352748" fg:w="676"/><text x="15.4557%" y="399.50"></text></g><g><title>psi_task_change (338 samples, 0.01%)</title><rect x="15.2203%" y="373" width="0.0146%" height="15" fill="rgb(212,185,49)" fg:x="353086" fg:w="338"/><text x="15.4703%" y="383.50"></text></g><g><title>psi_group_change (300 samples, 0.01%)</title><rect x="15.2219%" y="357" width="0.0129%" height="15" fill="rgb(215,175,22)" fg:x="353124" fg:w="300"/><text x="15.4719%" y="367.50"></text></g><g><title>__wake_up_common (1,921 samples, 0.08%)</title><rect x="15.1604%" y="437" width="0.0828%" height="15" fill="rgb(250,205,14)" fg:x="351696" fg:w="1921"/><text x="15.4104%" y="447.50"></text></g><g><title>autoremove_wake_function (1,873 samples, 0.08%)</title><rect x="15.1624%" y="421" width="0.0807%" height="15" fill="rgb(225,211,22)" fg:x="351744" fg:w="1873"/><text x="15.4124%" y="431.50"></text></g><g><title>try_to_wake_up (1,815 samples, 0.08%)</title><rect x="15.1649%" y="405" width="0.0782%" height="15" fill="rgb(251,179,42)" fg:x="351802" fg:w="1815"/><text x="15.4149%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (400 samples, 0.02%)</title><rect x="15.2432%" y="437" width="0.0172%" height="15" fill="rgb(208,216,51)" fg:x="353617" fg:w="400"/><text x="15.4932%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (381 samples, 0.02%)</title><rect x="15.2440%" y="421" width="0.0164%" height="15" fill="rgb(235,36,11)" fg:x="353636" fg:w="381"/><text x="15.4940%" y="431.50"></text></g><g><title>__wake_up_common_lock (2,345 samples, 0.10%)</title><rect x="15.1599%" y="453" width="0.1011%" height="15" fill="rgb(213,189,28)" fg:x="351686" fg:w="2345"/><text x="15.4099%" y="463.50"></text></g><g><title>btrfs_search_slot (13,945 samples, 0.60%)</title><rect x="14.6627%" y="485" width="0.6011%" height="15" fill="rgb(227,203,42)" fg:x="340151" fg:w="13945"/><text x="14.9127%" y="495.50"></text></g><g><title>unlock_up (2,480 samples, 0.11%)</title><rect x="15.1569%" y="469" width="0.1069%" height="15" fill="rgb(244,72,36)" fg:x="351616" fg:w="2480"/><text x="15.4069%" y="479.50"></text></g><g><title>lock_extent_bits (433 samples, 0.02%)</title><rect x="15.2697%" y="485" width="0.0187%" height="15" fill="rgb(213,53,17)" fg:x="354232" fg:w="433"/><text x="15.5197%" y="495.50"></text></g><g><title>__set_extent_bit (413 samples, 0.02%)</title><rect x="15.2706%" y="469" width="0.0178%" height="15" fill="rgb(207,167,3)" fg:x="354252" fg:w="413"/><text x="15.5206%" y="479.50"></text></g><g><title>btrfs_truncate_inode_items (22,109 samples, 0.95%)</title><rect x="14.3414%" y="501" width="0.9530%" height="15" fill="rgb(216,98,30)" fg:x="332696" fg:w="22109"/><text x="14.5914%" y="511.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (318 samples, 0.01%)</title><rect x="15.3153%" y="437" width="0.0137%" height="15" fill="rgb(236,123,15)" fg:x="355289" fg:w="318"/><text x="15.5653%" y="447.50"></text></g><g><title>btrfs_block_rsv_refill (857 samples, 0.04%)</title><rect x="15.3008%" y="485" width="0.0369%" height="15" fill="rgb(248,81,50)" fg:x="354954" fg:w="857"/><text x="15.5508%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (741 samples, 0.03%)</title><rect x="15.3058%" y="469" width="0.0319%" height="15" fill="rgb(214,120,4)" fg:x="355070" fg:w="741"/><text x="15.5558%" y="479.50"></text></g><g><title>__reserve_bytes (720 samples, 0.03%)</title><rect x="15.3067%" y="453" width="0.0310%" height="15" fill="rgb(208,179,34)" fg:x="355091" fg:w="720"/><text x="15.5567%" y="463.50"></text></g><g><title>evict_refill_and_join (1,493 samples, 0.06%)</title><rect x="15.2944%" y="501" width="0.0644%" height="15" fill="rgb(227,140,7)" fg:x="354805" fg:w="1493"/><text x="15.5444%" y="511.50"></text></g><g><title>start_transaction (463 samples, 0.02%)</title><rect x="15.3388%" y="485" width="0.0200%" height="15" fill="rgb(214,22,6)" fg:x="355835" fg:w="463"/><text x="15.5888%" y="495.50"></text></g><g><title>btrfs_evict_inode (57,906 samples, 2.50%)</title><rect x="12.8767%" y="517" width="2.4961%" height="15" fill="rgb(207,137,27)" fg:x="298719" fg:w="57906"/><text x="13.1267%" y="527.50">bt..</text></g><g><title>evict (58,233 samples, 2.51%)</title><rect x="12.8665%" y="533" width="2.5102%" height="15" fill="rgb(210,8,46)" fg:x="298481" fg:w="58233"/><text x="13.1165%" y="543.50">ev..</text></g><g><title>_raw_spin_lock (302 samples, 0.01%)</title><rect x="15.4129%" y="501" width="0.0130%" height="15" fill="rgb(240,16,54)" fg:x="357553" fg:w="302"/><text x="15.6629%" y="511.50"></text></g><g><title>__list_del_entry_valid (514 samples, 0.02%)</title><rect x="15.4486%" y="453" width="0.0222%" height="15" fill="rgb(211,209,29)" fg:x="358383" fg:w="514"/><text x="15.6986%" y="463.50"></text></g><g><title>_raw_spin_lock (264 samples, 0.01%)</title><rect x="15.4708%" y="453" width="0.0114%" height="15" fill="rgb(226,228,24)" fg:x="358897" fg:w="264"/><text x="15.7208%" y="463.50"></text></g><g><title>d_lru_del (1,718 samples, 0.07%)</title><rect x="15.4304%" y="485" width="0.0741%" height="15" fill="rgb(222,84,9)" fg:x="357961" fg:w="1718"/><text x="15.6804%" y="495.50"></text></g><g><title>list_lru_del (1,669 samples, 0.07%)</title><rect x="15.4325%" y="469" width="0.0719%" height="15" fill="rgb(234,203,30)" fg:x="358010" fg:w="1669"/><text x="15.6825%" y="479.50"></text></g><g><title>mem_cgroup_from_obj (517 samples, 0.02%)</title><rect x="15.4822%" y="453" width="0.0223%" height="15" fill="rgb(238,109,14)" fg:x="359162" fg:w="517"/><text x="15.7322%" y="463.50"></text></g><g><title>d_walk (2,768 samples, 0.12%)</title><rect x="15.3894%" y="517" width="0.1193%" height="15" fill="rgb(233,206,34)" fg:x="357008" fg:w="2768"/><text x="15.6394%" y="527.50"></text></g><g><title>select_collect (1,917 samples, 0.08%)</title><rect x="15.4260%" y="501" width="0.0826%" height="15" fill="rgb(220,167,47)" fg:x="357859" fg:w="1917"/><text x="15.6760%" y="511.50"></text></g><g><title>___d_drop (1,236 samples, 0.05%)</title><rect x="15.5179%" y="485" width="0.0533%" height="15" fill="rgb(238,105,10)" fg:x="359990" fg:w="1236"/><text x="15.7679%" y="495.50"></text></g><g><title>call_rcu (802 samples, 0.03%)</title><rect x="15.5795%" y="485" width="0.0346%" height="15" fill="rgb(213,227,17)" fg:x="361420" fg:w="802"/><text x="15.8295%" y="495.50"></text></g><g><title>rcu_segcblist_enqueue (428 samples, 0.02%)</title><rect x="15.5957%" y="469" width="0.0184%" height="15" fill="rgb(217,132,38)" fg:x="361794" fg:w="428"/><text x="15.8457%" y="479.50"></text></g><g><title>__dentry_kill (2,398 samples, 0.10%)</title><rect x="15.5122%" y="501" width="0.1034%" height="15" fill="rgb(242,146,4)" fg:x="359857" fg:w="2398"/><text x="15.7622%" y="511.50"></text></g><g><title>__dput_to_list (237 samples, 0.01%)</title><rect x="15.6155%" y="501" width="0.0102%" height="15" fill="rgb(212,61,9)" fg:x="362255" fg:w="237"/><text x="15.8655%" y="511.50"></text></g><g><title>shrink_dcache_parent (6,170 samples, 0.27%)</title><rect x="15.3878%" y="533" width="0.2660%" height="15" fill="rgb(247,126,22)" fg:x="356973" fg:w="6170"/><text x="15.6378%" y="543.50"></text></g><g><title>shrink_dentry_list (3,367 samples, 0.15%)</title><rect x="15.5087%" y="517" width="0.1451%" height="15" fill="rgb(220,196,2)" fg:x="359776" fg:w="3367"/><text x="15.7587%" y="527.50"></text></g><g><title>do_rmdir (104,269 samples, 4.49%)</title><rect x="11.1602%" y="565" width="4.4947%" height="15" fill="rgb(208,46,4)" fg:x="258899" fg:w="104269"/><text x="11.4102%" y="575.50">do_rm..</text></g><g><title>vfs_rmdir.part.0 (102,218 samples, 4.41%)</title><rect x="11.2486%" y="549" width="4.4063%" height="15" fill="rgb(252,104,46)" fg:x="260950" fg:w="102218"/><text x="11.4986%" y="559.50">vfs_r..</text></g><g><title>_raw_spin_lock (316 samples, 0.01%)</title><rect x="15.8391%" y="485" width="0.0136%" height="15" fill="rgb(237,152,48)" fg:x="367441" fg:w="316"/><text x="16.0891%" y="495.50"></text></g><g><title>__lookup_hash (3,543 samples, 0.15%)</title><rect x="15.7009%" y="549" width="0.1527%" height="15" fill="rgb(221,59,37)" fg:x="364235" fg:w="3543"/><text x="15.9509%" y="559.50"></text></g><g><title>lookup_dcache (3,461 samples, 0.15%)</title><rect x="15.7044%" y="533" width="0.1492%" height="15" fill="rgb(209,202,51)" fg:x="364317" fg:w="3461"/><text x="15.9544%" y="543.50"></text></g><g><title>d_lookup (3,335 samples, 0.14%)</title><rect x="15.7099%" y="517" width="0.1438%" height="15" fill="rgb(228,81,30)" fg:x="364443" fg:w="3335"/><text x="15.9599%" y="527.50"></text></g><g><title>__d_lookup (3,076 samples, 0.13%)</title><rect x="15.7210%" y="501" width="0.1326%" height="15" fill="rgb(227,42,39)" fg:x="364702" fg:w="3076"/><text x="15.9710%" y="511.50"></text></g><g><title>call_rcu (1,299 samples, 0.06%)</title><rect x="15.8537%" y="549" width="0.0560%" height="15" fill="rgb(221,26,2)" fg:x="367780" fg:w="1299"/><text x="16.1037%" y="559.50"></text></g><g><title>rcu_segcblist_enqueue (492 samples, 0.02%)</title><rect x="15.8885%" y="533" width="0.0212%" height="15" fill="rgb(254,61,31)" fg:x="368587" fg:w="492"/><text x="16.1385%" y="543.50"></text></g><g><title>__srcu_read_lock (787 samples, 0.03%)</title><rect x="15.9764%" y="485" width="0.0339%" height="15" fill="rgb(222,173,38)" fg:x="370626" fg:w="787"/><text x="16.2264%" y="495.50"></text></g><g><title>fsnotify_destroy_marks (1,479 samples, 0.06%)</title><rect x="15.9550%" y="517" width="0.0638%" height="15" fill="rgb(218,50,12)" fg:x="370131" fg:w="1479"/><text x="16.2050%" y="527.50"></text></g><g><title>fsnotify_grab_connector (1,162 samples, 0.05%)</title><rect x="15.9687%" y="501" width="0.0501%" height="15" fill="rgb(223,88,40)" fg:x="370448" fg:w="1162"/><text x="16.2187%" y="511.50"></text></g><g><title>__destroy_inode (3,218 samples, 0.14%)</title><rect x="15.9146%" y="533" width="0.1387%" height="15" fill="rgb(237,54,19)" fg:x="369192" fg:w="3218"/><text x="16.1646%" y="543.50"></text></g><g><title>security_inode_free (638 samples, 0.03%)</title><rect x="16.0258%" y="517" width="0.0275%" height="15" fill="rgb(251,129,25)" fg:x="371772" fg:w="638"/><text x="16.2758%" y="527.50"></text></g><g><title>integrity_inode_free (264 samples, 0.01%)</title><rect x="16.0419%" y="501" width="0.0114%" height="15" fill="rgb(238,97,19)" fg:x="372146" fg:w="264"/><text x="16.2919%" y="511.50"></text></g><g><title>_raw_spin_lock (360 samples, 0.02%)</title><rect x="16.0680%" y="517" width="0.0155%" height="15" fill="rgb(240,169,18)" fg:x="372752" fg:w="360"/><text x="16.3180%" y="527.50"></text></g><g><title>memset_erms (444 samples, 0.02%)</title><rect x="16.1789%" y="469" width="0.0191%" height="15" fill="rgb(230,187,49)" fg:x="375325" fg:w="444"/><text x="16.4289%" y="479.50"></text></g><g><title>alloc_extent_map (2,411 samples, 0.10%)</title><rect x="16.1141%" y="501" width="0.1039%" height="15" fill="rgb(209,44,26)" fg:x="373821" fg:w="2411"/><text x="16.3641%" y="511.50"></text></g><g><title>kmem_cache_alloc (2,110 samples, 0.09%)</title><rect x="16.1271%" y="485" width="0.0910%" height="15" fill="rgb(244,0,6)" fg:x="374122" fg:w="2110"/><text x="16.3771%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (463 samples, 0.02%)</title><rect x="16.1981%" y="469" width="0.0200%" height="15" fill="rgb(248,18,21)" fg:x="375769" fg:w="463"/><text x="16.4481%" y="479.50"></text></g><g><title>free_extent_map (360 samples, 0.02%)</title><rect x="16.2181%" y="501" width="0.0155%" height="15" fill="rgb(245,180,19)" fg:x="376234" fg:w="360"/><text x="16.4681%" y="511.50"></text></g><g><title>kmem_cache_free (1,161 samples, 0.05%)</title><rect x="16.2336%" y="501" width="0.0500%" height="15" fill="rgb(252,118,36)" fg:x="376594" fg:w="1161"/><text x="16.4836%" y="511.50"></text></g><g><title>btrfs_drop_extent_cache (4,720 samples, 0.20%)</title><rect x="16.0836%" y="517" width="0.2035%" height="15" fill="rgb(210,224,19)" fg:x="373113" fg:w="4720"/><text x="16.3336%" y="527.50"></text></g><g><title>alloc_extent_state (846 samples, 0.04%)</title><rect x="16.3266%" y="469" width="0.0365%" height="15" fill="rgb(218,30,24)" fg:x="378750" fg:w="846"/><text x="16.5766%" y="479.50"></text></g><g><title>kmem_cache_alloc (754 samples, 0.03%)</title><rect x="16.3305%" y="453" width="0.0325%" height="15" fill="rgb(219,75,50)" fg:x="378842" fg:w="754"/><text x="16.5805%" y="463.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (2,398 samples, 0.10%)</title><rect x="16.2870%" y="517" width="0.1034%" height="15" fill="rgb(234,72,50)" fg:x="377833" fg:w="2398"/><text x="16.5370%" y="527.50"></text></g><g><title>clear_extent_bit (1,835 samples, 0.08%)</title><rect x="16.3113%" y="501" width="0.0791%" height="15" fill="rgb(219,100,48)" fg:x="378396" fg:w="1835"/><text x="16.5613%" y="511.50"></text></g><g><title>__clear_extent_bit (1,802 samples, 0.08%)</title><rect x="16.3127%" y="485" width="0.0777%" height="15" fill="rgb(253,5,41)" fg:x="378429" fg:w="1802"/><text x="16.5627%" y="495.50"></text></g><g><title>kmem_cache_free (463 samples, 0.02%)</title><rect x="16.3705%" y="469" width="0.0200%" height="15" fill="rgb(247,181,11)" fg:x="379768" fg:w="463"/><text x="16.6205%" y="479.50"></text></g><g><title>_raw_spin_lock_irq (246 samples, 0.01%)</title><rect x="16.4012%" y="501" width="0.0106%" height="15" fill="rgb(222,223,25)" fg:x="380481" fg:w="246"/><text x="16.6512%" y="511.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (498 samples, 0.02%)</title><rect x="16.3904%" y="517" width="0.0215%" height="15" fill="rgb(214,198,28)" fg:x="380231" fg:w="498"/><text x="16.6404%" y="527.50"></text></g><g><title>_raw_spin_lock (268 samples, 0.01%)</title><rect x="16.4551%" y="469" width="0.0116%" height="15" fill="rgb(230,46,43)" fg:x="381731" fg:w="268"/><text x="16.7051%" y="479.50"></text></g><g><title>alloc_extent_state (1,382 samples, 0.06%)</title><rect x="16.4666%" y="469" width="0.0596%" height="15" fill="rgb(233,65,53)" fg:x="381999" fg:w="1382"/><text x="16.7166%" y="479.50"></text></g><g><title>kmem_cache_alloc (1,081 samples, 0.05%)</title><rect x="16.4796%" y="453" width="0.0466%" height="15" fill="rgb(221,121,27)" fg:x="382300" fg:w="1081"/><text x="16.7296%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (365 samples, 0.02%)</title><rect x="16.5105%" y="437" width="0.0157%" height="15" fill="rgb(247,70,47)" fg:x="383016" fg:w="365"/><text x="16.7605%" y="447.50"></text></g><g><title>__clear_extent_bit (2,851 samples, 0.12%)</title><rect x="16.4346%" y="485" width="0.1229%" height="15" fill="rgb(228,85,35)" fg:x="381257" fg:w="2851"/><text x="16.6846%" y="495.50"></text></g><g><title>kmem_cache_free (523 samples, 0.02%)</title><rect x="16.5350%" y="469" width="0.0225%" height="15" fill="rgb(209,50,18)" fg:x="383585" fg:w="523"/><text x="16.7850%" y="479.50"></text></g><g><title>clear_record_extent_bits (3,064 samples, 0.13%)</title><rect x="16.4256%" y="501" width="0.1321%" height="15" fill="rgb(250,19,35)" fg:x="381046" fg:w="3064"/><text x="16.6756%" y="511.50"></text></g><g><title>ulist_init (315 samples, 0.01%)</title><rect x="16.5576%" y="501" width="0.0136%" height="15" fill="rgb(253,107,29)" fg:x="384110" fg:w="315"/><text x="16.8076%" y="511.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (3,906 samples, 0.17%)</title><rect x="16.4119%" y="517" width="0.1684%" height="15" fill="rgb(252,179,29)" fg:x="380729" fg:w="3906"/><text x="16.6619%" y="527.50"></text></g><g><title>btrfs_destroy_inode (15,453 samples, 0.67%)</title><rect x="16.0533%" y="533" width="0.6661%" height="15" fill="rgb(238,194,6)" fg:x="372411" fg:w="15453"/><text x="16.3033%" y="543.50"></text></g><g><title>rb_erase (3,229 samples, 0.14%)</title><rect x="16.5803%" y="517" width="0.1392%" height="15" fill="rgb(238,164,29)" fg:x="384635" fg:w="3229"/><text x="16.8303%" y="527.50"></text></g><g><title>destroy_inode (19,238 samples, 0.83%)</title><rect x="15.9097%" y="549" width="0.8293%" height="15" fill="rgb(224,25,9)" fg:x="369079" fg:w="19238"/><text x="16.1597%" y="559.50"></text></g><g><title>btrfs_put_root (453 samples, 0.02%)</title><rect x="16.7195%" y="533" width="0.0195%" height="15" fill="rgb(244,153,23)" fg:x="387864" fg:w="453"/><text x="16.9695%" y="543.50"></text></g><g><title>down_write (464 samples, 0.02%)</title><rect x="16.7390%" y="549" width="0.0200%" height="15" fill="rgb(212,203,14)" fg:x="388317" fg:w="464"/><text x="16.9890%" y="559.50"></text></g><g><title>__schedule (246 samples, 0.01%)</title><rect x="16.7935%" y="517" width="0.0106%" height="15" fill="rgb(220,164,20)" fg:x="389582" fg:w="246"/><text x="17.0435%" y="527.50"></text></g><g><title>_cond_resched (391 samples, 0.02%)</title><rect x="16.7893%" y="533" width="0.0169%" height="15" fill="rgb(222,203,48)" fg:x="389484" fg:w="391"/><text x="17.0393%" y="543.50"></text></g><g><title>btrfs_dentry_delete (825 samples, 0.04%)</title><rect x="16.8063%" y="533" width="0.0356%" height="15" fill="rgb(215,159,22)" fg:x="389879" fg:w="825"/><text x="17.0563%" y="543.50"></text></g><g><title>lockref_put_or_lock (754 samples, 0.03%)</title><rect x="16.8419%" y="533" width="0.0325%" height="15" fill="rgb(216,183,47)" fg:x="390704" fg:w="754"/><text x="17.0919%" y="543.50"></text></g><g><title>dput (2,714 samples, 0.12%)</title><rect x="16.7590%" y="549" width="0.1170%" height="15" fill="rgb(229,195,25)" fg:x="388781" fg:w="2714"/><text x="17.0090%" y="559.50"></text></g><g><title>__list_del_entry_valid (659 samples, 0.03%)</title><rect x="16.9008%" y="533" width="0.0284%" height="15" fill="rgb(224,132,51)" fg:x="392072" fg:w="659"/><text x="17.1508%" y="543.50"></text></g><g><title>_raw_spin_lock (802 samples, 0.03%)</title><rect x="16.9378%" y="517" width="0.0346%" height="15" fill="rgb(240,63,7)" fg:x="392929" fg:w="802"/><text x="17.1878%" y="527.50"></text></g><g><title>__remove_inode_hash (1,001 samples, 0.04%)</title><rect x="16.9292%" y="533" width="0.0431%" height="15" fill="rgb(249,182,41)" fg:x="392731" fg:w="1001"/><text x="17.1792%" y="543.50"></text></g><g><title>_raw_spin_lock (919 samples, 0.04%)</title><rect x="16.9724%" y="533" width="0.0396%" height="15" fill="rgb(243,47,26)" fg:x="393732" fg:w="919"/><text x="17.2224%" y="543.50"></text></g><g><title>btrfs_put_transaction (482 samples, 0.02%)</title><rect x="17.1931%" y="501" width="0.0208%" height="15" fill="rgb(233,48,2)" fg:x="398852" fg:w="482"/><text x="17.4431%" y="511.50"></text></g><g><title>_raw_spin_lock (2,984 samples, 0.13%)</title><rect x="17.2931%" y="469" width="0.1286%" height="15" fill="rgb(244,165,34)" fg:x="401171" fg:w="2984"/><text x="17.5431%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,044 samples, 0.05%)</title><rect x="17.3767%" y="453" width="0.0450%" height="15" fill="rgb(207,89,7)" fg:x="403111" fg:w="1044"/><text x="17.6267%" y="463.50"></text></g><g><title>btrfs_trans_release_metadata (4,846 samples, 0.21%)</title><rect x="17.2223%" y="501" width="0.2089%" height="15" fill="rgb(244,117,36)" fg:x="399529" fg:w="4846"/><text x="17.4723%" y="511.50"></text></g><g><title>btrfs_block_rsv_release (4,575 samples, 0.20%)</title><rect x="17.2340%" y="485" width="0.1972%" height="15" fill="rgb(226,144,34)" fg:x="399800" fg:w="4575"/><text x="17.4840%" y="495.50"></text></g><g><title>__btrfs_end_transaction (9,950 samples, 0.43%)</title><rect x="17.0643%" y="517" width="0.4289%" height="15" fill="rgb(213,23,19)" fg:x="395863" fg:w="9950"/><text x="17.3143%" y="527.50"></text></g><g><title>kmem_cache_free (1,438 samples, 0.06%)</title><rect x="17.4312%" y="501" width="0.0620%" height="15" fill="rgb(217,75,12)" fg:x="404375" fg:w="1438"/><text x="17.6812%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (244 samples, 0.01%)</title><rect x="17.4827%" y="485" width="0.0105%" height="15" fill="rgb(224,159,17)" fg:x="405569" fg:w="244"/><text x="17.7327%" y="495.50"></text></g><g><title>_raw_spin_lock (1,000 samples, 0.04%)</title><rect x="17.5210%" y="501" width="0.0431%" height="15" fill="rgb(217,118,1)" fg:x="406458" fg:w="1000"/><text x="17.7710%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (541 samples, 0.02%)</title><rect x="17.5408%" y="485" width="0.0233%" height="15" fill="rgb(232,180,48)" fg:x="406917" fg:w="541"/><text x="17.7908%" y="495.50"></text></g><g><title>_cond_resched (253 samples, 0.01%)</title><rect x="17.5919%" y="485" width="0.0109%" height="15" fill="rgb(230,27,33)" fg:x="408103" fg:w="253"/><text x="17.8419%" y="495.50"></text></g><g><title>mutex_lock (897 samples, 0.04%)</title><rect x="17.5642%" y="501" width="0.0387%" height="15" fill="rgb(205,31,21)" fg:x="407461" fg:w="897"/><text x="17.8142%" y="511.50"></text></g><g><title>__radix_tree_delete (350 samples, 0.02%)</title><rect x="17.6132%" y="485" width="0.0151%" height="15" fill="rgb(253,59,4)" fg:x="408597" fg:w="350"/><text x="17.8632%" y="495.50"></text></g><g><title>__radix_tree_lookup (2,044 samples, 0.09%)</title><rect x="17.6283%" y="485" width="0.0881%" height="15" fill="rgb(224,201,9)" fg:x="408947" fg:w="2044"/><text x="17.8783%" y="495.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (5,285 samples, 0.23%)</title><rect x="17.4932%" y="517" width="0.2278%" height="15" fill="rgb(229,206,30)" fg:x="405813" fg:w="5285"/><text x="17.7432%" y="527.50"></text></g><g><title>radix_tree_delete_item (2,581 samples, 0.11%)</title><rect x="17.6097%" y="501" width="0.1113%" height="15" fill="rgb(212,67,47)" fg:x="408517" fg:w="2581"/><text x="17.8597%" y="511.50"></text></g><g><title>_raw_write_lock (266 samples, 0.01%)</title><rect x="17.7296%" y="517" width="0.0115%" height="15" fill="rgb(211,96,50)" fg:x="411297" fg:w="266"/><text x="17.9796%" y="527.50"></text></g><g><title>__radix_tree_lookup (298 samples, 0.01%)</title><rect x="17.7618%" y="501" width="0.0128%" height="15" fill="rgb(252,114,18)" fg:x="412045" fg:w="298"/><text x="18.0118%" y="511.50"></text></g><g><title>balance_dirty_pages_ratelimited (792 samples, 0.03%)</title><rect x="17.7412%" y="517" width="0.0341%" height="15" fill="rgb(223,58,37)" fg:x="411568" fg:w="792"/><text x="17.9912%" y="527.50"></text></g><g><title>btrfs_find_space_info (550 samples, 0.02%)</title><rect x="17.7869%" y="501" width="0.0237%" height="15" fill="rgb(237,70,4)" fg:x="412627" fg:w="550"/><text x="18.0369%" y="511.50"></text></g><g><title>btrfs_alloc_block_rsv (1,915 samples, 0.08%)</title><rect x="17.7754%" y="517" width="0.0825%" height="15" fill="rgb(244,85,46)" fg:x="412360" fg:w="1915"/><text x="18.0254%" y="527.50"></text></g><g><title>kmem_cache_alloc_trace (1,098 samples, 0.05%)</title><rect x="17.8106%" y="501" width="0.0473%" height="15" fill="rgb(223,39,52)" fg:x="413177" fg:w="1098"/><text x="18.0606%" y="511.50"></text></g><g><title>btrfs_balance_delayed_items (563 samples, 0.02%)</title><rect x="17.8684%" y="501" width="0.0243%" height="15" fill="rgb(218,200,14)" fg:x="414518" fg:w="563"/><text x="18.1184%" y="511.50"></text></g><g><title>_raw_spin_lock (258 samples, 0.01%)</title><rect x="17.8993%" y="469" width="0.0111%" height="15" fill="rgb(208,171,16)" fg:x="415234" fg:w="258"/><text x="18.1493%" y="479.50"></text></g><g><title>__queue_work (1,207 samples, 0.05%)</title><rect x="17.8958%" y="485" width="0.0520%" height="15" fill="rgb(234,200,18)" fg:x="415153" fg:w="1207"/><text x="18.1458%" y="495.50"></text></g><g><title>try_to_wake_up (796 samples, 0.03%)</title><rect x="17.9135%" y="469" width="0.0343%" height="15" fill="rgb(228,45,11)" fg:x="415564" fg:w="796"/><text x="18.1635%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (2,093 samples, 0.09%)</title><rect x="17.8579%" y="517" width="0.0902%" height="15" fill="rgb(237,182,11)" fg:x="414275" fg:w="2093"/><text x="18.1079%" y="527.50"></text></g><g><title>queue_work_on (1,240 samples, 0.05%)</title><rect x="17.8947%" y="501" width="0.0535%" height="15" fill="rgb(241,175,49)" fg:x="415128" fg:w="1240"/><text x="18.1447%" y="511.50"></text></g><g><title>btrfs_create_pending_block_groups (283 samples, 0.01%)</title><rect x="18.0341%" y="485" width="0.0122%" height="15" fill="rgb(247,38,35)" fg:x="418361" fg:w="283"/><text x="18.2841%" y="495.50"></text></g><g><title>kmem_cache_free (705 samples, 0.03%)</title><rect x="18.0665%" y="485" width="0.0304%" height="15" fill="rgb(228,39,49)" fg:x="419114" fg:w="705"/><text x="18.3165%" y="495.50"></text></g><g><title>__btrfs_end_transaction (3,027 samples, 0.13%)</title><rect x="17.9665%" y="501" width="0.1305%" height="15" fill="rgb(226,101,26)" fg:x="416793" fg:w="3027"/><text x="18.2165%" y="511.50"></text></g><g><title>__list_del_entry_valid (381 samples, 0.02%)</title><rect x="18.1508%" y="485" width="0.0164%" height="15" fill="rgb(206,141,19)" fg:x="421068" fg:w="381"/><text x="18.4008%" y="495.50"></text></g><g><title>_raw_spin_lock (370 samples, 0.02%)</title><rect x="18.1677%" y="485" width="0.0159%" height="15" fill="rgb(211,200,13)" fg:x="421460" fg:w="370"/><text x="18.4177%" y="495.50"></text></g><g><title>__schedule (314 samples, 0.01%)</title><rect x="18.1964%" y="453" width="0.0135%" height="15" fill="rgb(241,121,6)" fg:x="422126" fg:w="314"/><text x="18.4464%" y="463.50"></text></g><g><title>mutex_lock (635 samples, 0.03%)</title><rect x="18.1837%" y="485" width="0.0274%" height="15" fill="rgb(234,221,29)" fg:x="421833" fg:w="635"/><text x="18.4337%" y="495.50"></text></g><g><title>_cond_resched (390 samples, 0.02%)</title><rect x="18.1943%" y="469" width="0.0168%" height="15" fill="rgb(229,136,5)" fg:x="422078" fg:w="390"/><text x="18.4443%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,824 samples, 0.12%)</title><rect x="18.0970%" y="501" width="0.1217%" height="15" fill="rgb(238,36,11)" fg:x="419820" fg:w="2824"/><text x="18.3470%" y="511.50"></text></g><g><title>btrfs_free_tree_block (407 samples, 0.02%)</title><rect x="18.3680%" y="453" width="0.0175%" height="15" fill="rgb(251,55,41)" fg:x="426108" fg:w="407"/><text x="18.6180%" y="463.50"></text></g><g><title>btrfs_del_leaf (554 samples, 0.02%)</title><rect x="18.3674%" y="469" width="0.0239%" height="15" fill="rgb(242,34,40)" fg:x="426094" fg:w="554"/><text x="18.6174%" y="479.50"></text></g><g><title>btrfs_get_32 (534 samples, 0.02%)</title><rect x="18.3913%" y="469" width="0.0230%" height="15" fill="rgb(215,42,17)" fg:x="426648" fg:w="534"/><text x="18.6413%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,267 samples, 0.05%)</title><rect x="18.7136%" y="453" width="0.0546%" height="15" fill="rgb(207,44,46)" fg:x="434124" fg:w="1267"/><text x="18.9636%" y="463.50"></text></g><g><title>btrfs_get_token_32 (8,210 samples, 0.35%)</title><rect x="18.4143%" y="469" width="0.3539%" height="15" fill="rgb(211,206,28)" fg:x="427182" fg:w="8210"/><text x="18.6643%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (630 samples, 0.03%)</title><rect x="18.7682%" y="469" width="0.0272%" height="15" fill="rgb(237,167,16)" fg:x="435392" fg:w="630"/><text x="19.0182%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (340 samples, 0.01%)</title><rect x="18.7807%" y="453" width="0.0147%" height="15" fill="rgb(233,66,6)" fg:x="435682" fg:w="340"/><text x="19.0307%" y="463.50"></text></g><g><title>btrfs_set_token_32 (5,788 samples, 0.25%)</title><rect x="18.7964%" y="469" width="0.2495%" height="15" fill="rgb(246,123,29)" fg:x="436046" fg:w="5788"/><text x="19.0464%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (912 samples, 0.04%)</title><rect x="19.0066%" y="453" width="0.0393%" height="15" fill="rgb(209,62,40)" fg:x="440922" fg:w="912"/><text x="19.2566%" y="463.50"></text></g><g><title>leaf_space_used (546 samples, 0.02%)</title><rect x="19.0468%" y="469" width="0.0235%" height="15" fill="rgb(218,4,25)" fg:x="441854" fg:w="546"/><text x="19.2968%" y="479.50"></text></g><g><title>btrfs_get_32 (416 samples, 0.02%)</title><rect x="19.0524%" y="453" width="0.0179%" height="15" fill="rgb(253,91,49)" fg:x="441984" fg:w="416"/><text x="19.3024%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,203 samples, 0.05%)</title><rect x="19.0703%" y="469" width="0.0519%" height="15" fill="rgb(228,155,29)" fg:x="442400" fg:w="1203"/><text x="19.3203%" y="479.50"></text></g><g><title>memmove (904 samples, 0.04%)</title><rect x="19.0832%" y="453" width="0.0390%" height="15" fill="rgb(243,57,37)" fg:x="442699" fg:w="904"/><text x="19.3332%" y="463.50"></text></g><g><title>copy_pages (1,143 samples, 0.05%)</title><rect x="19.1533%" y="453" width="0.0493%" height="15" fill="rgb(244,167,17)" fg:x="444325" fg:w="1143"/><text x="19.4033%" y="463.50"></text></g><g><title>memmove_extent_buffer (9,894 samples, 0.43%)</title><rect x="19.1222%" y="469" width="0.4265%" height="15" fill="rgb(207,181,38)" fg:x="443603" fg:w="9894"/><text x="19.3722%" y="479.50"></text></g><g><title>memmove (8,029 samples, 0.35%)</title><rect x="19.2026%" y="453" width="0.3461%" height="15" fill="rgb(211,8,23)" fg:x="445468" fg:w="8029"/><text x="19.4526%" y="463.50"></text></g><g><title>__push_leaf_left (268 samples, 0.01%)</title><rect x="19.5498%" y="453" width="0.0116%" height="15" fill="rgb(235,11,44)" fg:x="453524" fg:w="268"/><text x="19.7998%" y="463.50"></text></g><g><title>push_leaf_left (402 samples, 0.02%)</title><rect x="19.5487%" y="469" width="0.0173%" height="15" fill="rgb(248,18,52)" fg:x="453497" fg:w="402"/><text x="19.7987%" y="479.50"></text></g><g><title>push_leaf_right (371 samples, 0.02%)</title><rect x="19.5660%" y="469" width="0.0160%" height="15" fill="rgb(208,4,7)" fg:x="453899" fg:w="371"/><text x="19.8160%" y="479.50"></text></g><g><title>btrfs_del_items (30,492 samples, 1.31%)</title><rect x="18.2701%" y="485" width="1.3144%" height="15" fill="rgb(240,17,39)" fg:x="423836" fg:w="30492"/><text x="18.5201%" y="495.50"></text></g><g><title>_raw_spin_lock (1,507 samples, 0.06%)</title><rect x="19.6018%" y="453" width="0.0650%" height="15" fill="rgb(207,170,3)" fg:x="454729" fg:w="1507"/><text x="19.8518%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (518 samples, 0.02%)</title><rect x="19.6444%" y="437" width="0.0223%" height="15" fill="rgb(236,100,52)" fg:x="455718" fg:w="518"/><text x="19.8944%" y="447.50"></text></g><g><title>btrfs_block_rsv_release (1,910 samples, 0.08%)</title><rect x="19.5901%" y="469" width="0.0823%" height="15" fill="rgb(246,78,51)" fg:x="454458" fg:w="1910"/><text x="19.8401%" y="479.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (2,255 samples, 0.10%)</title><rect x="19.5845%" y="485" width="0.0972%" height="15" fill="rgb(211,17,15)" fg:x="454328" fg:w="2255"/><text x="19.8345%" y="495.50"></text></g><g><title>btrfs_get_32 (292 samples, 0.01%)</title><rect x="19.6817%" y="485" width="0.0126%" height="15" fill="rgb(209,59,46)" fg:x="456583" fg:w="292"/><text x="19.9317%" y="495.50"></text></g><g><title>_raw_read_lock (664 samples, 0.03%)</title><rect x="19.8719%" y="421" width="0.0286%" height="15" fill="rgb(210,92,25)" fg:x="460996" fg:w="664"/><text x="20.1219%" y="431.50"></text></g><g><title>finish_wait (3,636 samples, 0.16%)</title><rect x="19.9030%" y="421" width="0.1567%" height="15" fill="rgb(238,174,52)" fg:x="461718" fg:w="3636"/><text x="20.1530%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (3,463 samples, 0.15%)</title><rect x="19.9105%" y="405" width="0.1493%" height="15" fill="rgb(230,73,7)" fg:x="461891" fg:w="3463"/><text x="20.1605%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,301 samples, 0.14%)</title><rect x="19.9175%" y="389" width="0.1423%" height="15" fill="rgb(243,124,40)" fg:x="462053" fg:w="3301"/><text x="20.1675%" y="399.50"></text></g><g><title>__list_add_valid (235 samples, 0.01%)</title><rect x="20.0869%" y="405" width="0.0101%" height="15" fill="rgb(244,170,11)" fg:x="465983" fg:w="235"/><text x="20.3369%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (8,421 samples, 0.36%)</title><rect x="20.0970%" y="405" width="0.3630%" height="15" fill="rgb(207,114,54)" fg:x="466218" fg:w="8421"/><text x="20.3470%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,980 samples, 0.34%)</title><rect x="20.1160%" y="389" width="0.3440%" height="15" fill="rgb(205,42,20)" fg:x="466659" fg:w="7980"/><text x="20.3660%" y="399.50"></text></g><g><title>prepare_to_wait_event (9,437 samples, 0.41%)</title><rect x="20.0601%" y="421" width="0.4068%" height="15" fill="rgb(230,30,28)" fg:x="465362" fg:w="9437"/><text x="20.3101%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (11,044 samples, 0.48%)</title><rect x="20.4669%" y="421" width="0.4761%" height="15" fill="rgb(205,73,54)" fg:x="474799" fg:w="11044"/><text x="20.7169%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,853 samples, 0.34%)</title><rect x="20.6045%" y="405" width="0.3385%" height="15" fill="rgb(254,227,23)" fg:x="477990" fg:w="7853"/><text x="20.8545%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (278 samples, 0.01%)</title><rect x="20.9655%" y="389" width="0.0120%" height="15" fill="rgb(228,202,34)" fg:x="486366" fg:w="278"/><text x="21.2155%" y="399.50"></text></g><g><title>update_curr (500 samples, 0.02%)</title><rect x="21.0081%" y="357" width="0.0216%" height="15" fill="rgb(222,225,37)" fg:x="487354" fg:w="500"/><text x="21.2581%" y="367.50"></text></g><g><title>dequeue_entity (1,401 samples, 0.06%)</title><rect x="20.9881%" y="373" width="0.0604%" height="15" fill="rgb(221,14,54)" fg:x="486890" fg:w="1401"/><text x="21.2381%" y="383.50"></text></g><g><title>update_load_avg (437 samples, 0.02%)</title><rect x="21.0297%" y="357" width="0.0188%" height="15" fill="rgb(254,102,2)" fg:x="487854" fg:w="437"/><text x="21.2797%" y="367.50"></text></g><g><title>dequeue_task_fair (1,680 samples, 0.07%)</title><rect x="20.9805%" y="389" width="0.0724%" height="15" fill="rgb(232,104,17)" fg:x="486713" fg:w="1680"/><text x="21.2305%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (3,535 samples, 0.15%)</title><rect x="21.0675%" y="373" width="0.1524%" height="15" fill="rgb(250,220,14)" fg:x="488732" fg:w="3535"/><text x="21.3175%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,408 samples, 0.15%)</title><rect x="21.0730%" y="357" width="0.1469%" height="15" fill="rgb(241,158,9)" fg:x="488859" fg:w="3408"/><text x="21.3230%" y="367.50"></text></g><g><title>native_write_msr (3,365 samples, 0.15%)</title><rect x="21.0748%" y="341" width="0.1451%" height="15" fill="rgb(246,9,43)" fg:x="488902" fg:w="3365"/><text x="21.3248%" y="351.50"></text></g><g><title>finish_task_switch (4,059 samples, 0.17%)</title><rect x="21.0529%" y="389" width="0.1750%" height="15" fill="rgb(206,73,33)" fg:x="488393" fg:w="4059"/><text x="21.3029%" y="399.50"></text></g><g><title>pick_next_task_fair (297 samples, 0.01%)</title><rect x="21.2279%" y="389" width="0.0128%" height="15" fill="rgb(222,79,8)" fg:x="492453" fg:w="297"/><text x="21.4779%" y="399.50"></text></g><g><title>pick_next_task_idle (297 samples, 0.01%)</title><rect x="21.2407%" y="389" width="0.0128%" height="15" fill="rgb(234,8,54)" fg:x="492750" fg:w="297"/><text x="21.4907%" y="399.50"></text></g><g><title>psi_task_change (1,391 samples, 0.06%)</title><rect x="21.2535%" y="389" width="0.0600%" height="15" fill="rgb(209,134,38)" fg:x="493047" fg:w="1391"/><text x="21.5035%" y="399.50"></text></g><g><title>psi_group_change (1,194 samples, 0.05%)</title><rect x="21.2620%" y="373" width="0.0515%" height="15" fill="rgb(230,127,29)" fg:x="493244" fg:w="1194"/><text x="21.5120%" y="383.50"></text></g><g><title>record_times (263 samples, 0.01%)</title><rect x="21.3021%" y="357" width="0.0113%" height="15" fill="rgb(242,44,41)" fg:x="494175" fg:w="263"/><text x="21.5521%" y="367.50"></text></g><g><title>__schedule (8,883 samples, 0.38%)</title><rect x="20.9472%" y="405" width="0.3829%" height="15" fill="rgb(222,56,43)" fg:x="485941" fg:w="8883"/><text x="21.1972%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (34,584 samples, 1.49%)</title><rect x="19.8394%" y="437" width="1.4908%" height="15" fill="rgb(238,39,47)" fg:x="460241" fg:w="34584"/><text x="20.0894%" y="447.50"></text></g><g><title>schedule (8,982 samples, 0.39%)</title><rect x="20.9430%" y="421" width="0.3872%" height="15" fill="rgb(226,79,43)" fg:x="485843" fg:w="8982"/><text x="21.1930%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (35,873 samples, 1.55%)</title><rect x="19.8339%" y="453" width="1.5464%" height="15" fill="rgb(242,105,53)" fg:x="460114" fg:w="35873"/><text x="20.0839%" y="463.50"></text></g><g><title>btrfs_root_node (1,162 samples, 0.05%)</title><rect x="21.3302%" y="437" width="0.0501%" height="15" fill="rgb(251,132,46)" fg:x="494825" fg:w="1162"/><text x="21.5802%" y="447.50"></text></g><g><title>prepare_to_wait_event (245 samples, 0.01%)</title><rect x="21.3883%" y="437" width="0.0106%" height="15" fill="rgb(231,77,14)" fg:x="496173" fg:w="245"/><text x="21.6383%" y="447.50"></text></g><g><title>dequeue_entity (633 samples, 0.03%)</title><rect x="21.4166%" y="389" width="0.0273%" height="15" fill="rgb(240,135,9)" fg:x="496831" fg:w="633"/><text x="21.6666%" y="399.50"></text></g><g><title>dequeue_task_fair (750 samples, 0.03%)</title><rect x="21.4136%" y="405" width="0.0323%" height="15" fill="rgb(248,109,14)" fg:x="496760" fg:w="750"/><text x="21.6636%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,591 samples, 0.07%)</title><rect x="21.4520%" y="389" width="0.0686%" height="15" fill="rgb(227,146,52)" fg:x="497652" fg:w="1591"/><text x="21.7020%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,558 samples, 0.07%)</title><rect x="21.4534%" y="373" width="0.0672%" height="15" fill="rgb(232,54,3)" fg:x="497685" fg:w="1558"/><text x="21.7034%" y="383.50"></text></g><g><title>native_write_msr (1,543 samples, 0.07%)</title><rect x="21.4541%" y="357" width="0.0665%" height="15" fill="rgb(229,201,43)" fg:x="497700" fg:w="1543"/><text x="21.7041%" y="367.50"></text></g><g><title>finish_task_switch (1,794 samples, 0.08%)</title><rect x="21.4459%" y="405" width="0.0773%" height="15" fill="rgb(252,161,33)" fg:x="497510" fg:w="1794"/><text x="21.6959%" y="415.50"></text></g><g><title>psi_task_change (525 samples, 0.02%)</title><rect x="21.5337%" y="405" width="0.0226%" height="15" fill="rgb(226,146,40)" fg:x="499546" fg:w="525"/><text x="21.7837%" y="415.50"></text></g><g><title>psi_group_change (441 samples, 0.02%)</title><rect x="21.5373%" y="389" width="0.0190%" height="15" fill="rgb(219,47,25)" fg:x="499630" fg:w="441"/><text x="21.7873%" y="399.50"></text></g><g><title>__btrfs_tree_lock (4,258 samples, 0.18%)</title><rect x="21.3803%" y="453" width="0.1835%" height="15" fill="rgb(250,135,13)" fg:x="495987" fg:w="4258"/><text x="21.6303%" y="463.50"></text></g><g><title>schedule (3,827 samples, 0.16%)</title><rect x="21.3988%" y="437" width="0.1650%" height="15" fill="rgb(219,229,18)" fg:x="496418" fg:w="3827"/><text x="21.6488%" y="447.50"></text></g><g><title>__schedule (3,800 samples, 0.16%)</title><rect x="21.4000%" y="421" width="0.1638%" height="15" fill="rgb(217,152,27)" fg:x="496445" fg:w="3800"/><text x="21.6500%" y="431.50"></text></g><g><title>pagecache_get_page (416 samples, 0.02%)</title><rect x="21.5853%" y="373" width="0.0179%" height="15" fill="rgb(225,71,47)" fg:x="500744" fg:w="416"/><text x="21.8353%" y="383.50"></text></g><g><title>alloc_extent_buffer (562 samples, 0.02%)</title><rect x="21.5800%" y="389" width="0.0242%" height="15" fill="rgb(220,139,14)" fg:x="500620" fg:w="562"/><text x="21.8300%" y="399.50"></text></g><g><title>btrfs_reserve_extent (244 samples, 0.01%)</title><rect x="21.6114%" y="389" width="0.0105%" height="15" fill="rgb(247,54,32)" fg:x="501350" fg:w="244"/><text x="21.8614%" y="399.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,257 samples, 0.05%)</title><rect x="21.5787%" y="421" width="0.0542%" height="15" fill="rgb(252,131,39)" fg:x="500591" fg:w="1257"/><text x="21.8287%" y="431.50"></text></g><g><title>btrfs_alloc_tree_block (1,255 samples, 0.05%)</title><rect x="21.5788%" y="405" width="0.0541%" height="15" fill="rgb(210,108,39)" fg:x="500593" fg:w="1255"/><text x="21.8288%" y="415.50"></text></g><g><title>btrfs_free_tree_block (482 samples, 0.02%)</title><rect x="21.6329%" y="421" width="0.0208%" height="15" fill="rgb(205,23,29)" fg:x="501848" fg:w="482"/><text x="21.8829%" y="431.50"></text></g><g><title>__btrfs_cow_block (2,306 samples, 0.10%)</title><rect x="21.5775%" y="437" width="0.0994%" height="15" fill="rgb(246,139,46)" fg:x="500562" fg:w="2306"/><text x="21.8275%" y="447.50"></text></g><g><title>btrfs_cow_block (2,324 samples, 0.10%)</title><rect x="21.5772%" y="453" width="0.1002%" height="15" fill="rgb(250,81,26)" fg:x="500555" fg:w="2324"/><text x="21.8272%" y="463.50"></text></g><g><title>_cond_resched (257 samples, 0.01%)</title><rect x="21.7244%" y="421" width="0.0111%" height="15" fill="rgb(214,104,7)" fg:x="503970" fg:w="257"/><text x="21.9744%" y="431.50"></text></g><g><title>_raw_write_lock (704 samples, 0.03%)</title><rect x="21.7393%" y="421" width="0.0303%" height="15" fill="rgb(233,189,8)" fg:x="504317" fg:w="704"/><text x="21.9893%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (4,397 samples, 0.19%)</title><rect x="21.7827%" y="405" width="0.1895%" height="15" fill="rgb(228,141,17)" fg:x="505322" fg:w="4397"/><text x="22.0327%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,130 samples, 0.18%)</title><rect x="21.7942%" y="389" width="0.1780%" height="15" fill="rgb(247,157,1)" fg:x="505589" fg:w="4130"/><text x="22.0442%" y="399.50"></text></g><g><title>finish_wait (4,694 samples, 0.20%)</title><rect x="21.7699%" y="421" width="0.2023%" height="15" fill="rgb(249,225,5)" fg:x="505026" fg:w="4694"/><text x="22.0199%" y="431.50"></text></g><g><title>__list_add_valid (374 samples, 0.02%)</title><rect x="22.0284%" y="405" width="0.0161%" height="15" fill="rgb(242,55,13)" fg:x="511022" fg:w="374"/><text x="22.2784%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (12,254 samples, 0.53%)</title><rect x="22.0445%" y="405" width="0.5282%" height="15" fill="rgb(230,49,50)" fg:x="511396" fg:w="12254"/><text x="22.2945%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,340 samples, 0.49%)</title><rect x="22.0839%" y="389" width="0.4888%" height="15" fill="rgb(241,111,38)" fg:x="512310" fg:w="11340"/><text x="22.3339%" y="399.50"></text></g><g><title>prepare_to_wait_event (14,166 samples, 0.61%)</title><rect x="21.9755%" y="421" width="0.6106%" height="15" fill="rgb(252,155,4)" fg:x="509796" fg:w="14166"/><text x="22.2255%" y="431.50"></text></g><g><title>_raw_spin_unlock_irqrestore (312 samples, 0.01%)</title><rect x="22.5727%" y="405" width="0.0134%" height="15" fill="rgb(212,69,32)" fg:x="523650" fg:w="312"/><text x="22.8227%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,027 samples, 0.39%)</title><rect x="23.0275%" y="405" width="0.3891%" height="15" fill="rgb(243,107,47)" fg:x="534201" fg:w="9027"/><text x="23.2775%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (19,268 samples, 0.83%)</title><rect x="22.5862%" y="421" width="0.8306%" height="15" fill="rgb(247,130,12)" fg:x="523962" fg:w="19268"/><text x="22.8362%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (524 samples, 0.02%)</title><rect x="23.4584%" y="389" width="0.0226%" height="15" fill="rgb(233,74,16)" fg:x="544196" fg:w="524"/><text x="23.7084%" y="399.50"></text></g><g><title>update_cfs_group (319 samples, 0.01%)</title><rect x="23.5314%" y="357" width="0.0138%" height="15" fill="rgb(208,58,18)" fg:x="545890" fg:w="319"/><text x="23.7814%" y="367.50"></text></g><g><title>update_curr (1,053 samples, 0.05%)</title><rect x="23.5451%" y="357" width="0.0454%" height="15" fill="rgb(242,225,1)" fg:x="546209" fg:w="1053"/><text x="23.7951%" y="367.50"></text></g><g><title>__update_load_avg_cfs_rq (276 samples, 0.01%)</title><rect x="23.6060%" y="341" width="0.0119%" height="15" fill="rgb(249,39,40)" fg:x="547620" fg:w="276"/><text x="23.8560%" y="351.50"></text></g><g><title>__update_load_avg_se (330 samples, 0.01%)</title><rect x="23.6179%" y="341" width="0.0142%" height="15" fill="rgb(207,72,44)" fg:x="547896" fg:w="330"/><text x="23.8679%" y="351.50"></text></g><g><title>dequeue_entity (2,984 samples, 0.13%)</title><rect x="23.5046%" y="373" width="0.1286%" height="15" fill="rgb(215,193,12)" fg:x="545268" fg:w="2984"/><text x="23.7546%" y="383.50"></text></g><g><title>update_load_avg (990 samples, 0.04%)</title><rect x="23.5905%" y="357" width="0.0427%" height="15" fill="rgb(248,41,39)" fg:x="547262" fg:w="990"/><text x="23.8405%" y="367.50"></text></g><g><title>dequeue_task_fair (3,554 samples, 0.15%)</title><rect x="23.4891%" y="389" width="0.1532%" height="15" fill="rgb(253,85,4)" fg:x="544909" fg:w="3554"/><text x="23.7391%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (6,732 samples, 0.29%)</title><rect x="23.6736%" y="373" width="0.2902%" height="15" fill="rgb(243,70,31)" fg:x="549189" fg:w="6732"/><text x="23.9236%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,484 samples, 0.28%)</title><rect x="23.6843%" y="357" width="0.2795%" height="15" fill="rgb(253,195,26)" fg:x="549437" fg:w="6484"/><text x="23.9343%" y="367.50"></text></g><g><title>native_write_msr (6,378 samples, 0.27%)</title><rect x="23.6889%" y="341" width="0.2749%" height="15" fill="rgb(243,42,11)" fg:x="549543" fg:w="6378"/><text x="23.9389%" y="351.50"></text></g><g><title>finish_task_switch (7,693 samples, 0.33%)</title><rect x="23.6423%" y="389" width="0.3316%" height="15" fill="rgb(239,66,17)" fg:x="548463" fg:w="7693"/><text x="23.8923%" y="399.50"></text></g><g><title>newidle_balance (289 samples, 0.01%)</title><rect x="23.9811%" y="373" width="0.0125%" height="15" fill="rgb(217,132,21)" fg:x="556322" fg:w="289"/><text x="24.2311%" y="383.50"></text></g><g><title>pick_next_task_fair (577 samples, 0.02%)</title><rect x="23.9741%" y="389" width="0.0249%" height="15" fill="rgb(252,202,21)" fg:x="556160" fg:w="577"/><text x="24.2241%" y="399.50"></text></g><g><title>__update_idle_core (505 samples, 0.02%)</title><rect x="24.0037%" y="373" width="0.0218%" height="15" fill="rgb(233,98,36)" fg:x="556846" fg:w="505"/><text x="24.2537%" y="383.50"></text></g><g><title>pick_next_task_idle (615 samples, 0.03%)</title><rect x="23.9990%" y="389" width="0.0265%" height="15" fill="rgb(216,153,54)" fg:x="556737" fg:w="615"/><text x="24.2490%" y="399.50"></text></g><g><title>psi_task_change (2,661 samples, 0.11%)</title><rect x="24.0255%" y="389" width="0.1147%" height="15" fill="rgb(250,99,7)" fg:x="557352" fg:w="2661"/><text x="24.2755%" y="399.50"></text></g><g><title>psi_group_change (2,301 samples, 0.10%)</title><rect x="24.0410%" y="373" width="0.0992%" height="15" fill="rgb(207,56,50)" fg:x="557712" fg:w="2301"/><text x="24.2910%" y="383.50"></text></g><g><title>record_times (614 samples, 0.03%)</title><rect x="24.1137%" y="357" width="0.0265%" height="15" fill="rgb(244,61,34)" fg:x="559399" fg:w="614"/><text x="24.3637%" y="367.50"></text></g><g><title>sched_clock_cpu (422 samples, 0.02%)</title><rect x="24.1220%" y="341" width="0.0182%" height="15" fill="rgb(241,50,38)" fg:x="559591" fg:w="422"/><text x="24.3720%" y="351.50"></text></g><g><title>sched_clock (365 samples, 0.02%)</title><rect x="24.1245%" y="325" width="0.0157%" height="15" fill="rgb(212,166,30)" fg:x="559648" fg:w="365"/><text x="24.3745%" y="335.50"></text></g><g><title>native_sched_clock (346 samples, 0.01%)</title><rect x="24.1253%" y="309" width="0.0149%" height="15" fill="rgb(249,127,32)" fg:x="559667" fg:w="346"/><text x="24.3753%" y="319.50"></text></g><g><title>psi_task_switch (292 samples, 0.01%)</title><rect x="24.1402%" y="389" width="0.0126%" height="15" fill="rgb(209,103,0)" fg:x="560013" fg:w="292"/><text x="24.3902%" y="399.50"></text></g><g><title>__schedule (17,418 samples, 0.75%)</title><rect x="23.4251%" y="405" width="0.7508%" height="15" fill="rgb(238,209,51)" fg:x="543424" fg:w="17418"/><text x="23.6751%" y="415.50"></text></g><g><title>update_rq_clock (277 samples, 0.01%)</title><rect x="24.1640%" y="389" width="0.0119%" height="15" fill="rgb(237,56,23)" fg:x="560565" fg:w="277"/><text x="24.4140%" y="399.50"></text></g><g><title>__btrfs_tree_lock (57,917 samples, 2.50%)</title><rect x="21.6794%" y="437" width="2.4966%" height="15" fill="rgb(215,153,46)" fg:x="502926" fg:w="57917"/><text x="21.9294%" y="447.50">__..</text></g><g><title>schedule (17,613 samples, 0.76%)</title><rect x="23.4167%" y="421" width="0.7592%" height="15" fill="rgb(224,49,31)" fg:x="543230" fg:w="17613"/><text x="23.6667%" y="431.50"></text></g><g><title>btrfs_lock_root_node (58,486 samples, 2.52%)</title><rect x="21.6773%" y="453" width="2.5211%" height="15" fill="rgb(250,18,42)" fg:x="502879" fg:w="58486"/><text x="21.9273%" y="463.50">bt..</text></g><g><title>btrfs_root_node (522 samples, 0.02%)</title><rect x="24.1760%" y="437" width="0.0225%" height="15" fill="rgb(215,176,39)" fg:x="560843" fg:w="522"/><text x="24.4260%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (374 samples, 0.02%)</title><rect x="24.1985%" y="453" width="0.0161%" height="15" fill="rgb(223,77,29)" fg:x="561365" fg:w="374"/><text x="24.4485%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (477 samples, 0.02%)</title><rect x="24.2148%" y="453" width="0.0206%" height="15" fill="rgb(234,94,52)" fg:x="561743" fg:w="477"/><text x="24.4648%" y="463.50"></text></g><g><title>_raw_write_lock (362 samples, 0.02%)</title><rect x="24.2410%" y="437" width="0.0156%" height="15" fill="rgb(220,154,50)" fg:x="562351" fg:w="362"/><text x="24.4910%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (2,909 samples, 0.13%)</title><rect x="24.2353%" y="453" width="0.1254%" height="15" fill="rgb(212,11,10)" fg:x="562220" fg:w="2909"/><text x="24.4853%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (2,415 samples, 0.10%)</title><rect x="24.2566%" y="437" width="0.1041%" height="15" fill="rgb(205,166,19)" fg:x="562714" fg:w="2415"/><text x="24.5066%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (557 samples, 0.02%)</title><rect x="24.3608%" y="453" width="0.0240%" height="15" fill="rgb(244,198,16)" fg:x="565132" fg:w="557"/><text x="24.6108%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (4,716 samples, 0.20%)</title><rect x="24.3849%" y="453" width="0.2033%" height="15" fill="rgb(219,69,12)" fg:x="565689" fg:w="4716"/><text x="24.6349%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (711 samples, 0.03%)</title><rect x="24.6144%" y="437" width="0.0306%" height="15" fill="rgb(245,30,7)" fg:x="571015" fg:w="711"/><text x="24.8644%" y="447.50"></text></g><g><title>verify_parent_transid (583 samples, 0.03%)</title><rect x="24.6200%" y="421" width="0.0251%" height="15" fill="rgb(218,221,48)" fg:x="571143" fg:w="583"/><text x="24.8700%" y="431.50"></text></g><g><title>btrfs_get_64 (810 samples, 0.03%)</title><rect x="24.6451%" y="437" width="0.0349%" height="15" fill="rgb(216,66,15)" fg:x="571726" fg:w="810"/><text x="24.8951%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (236 samples, 0.01%)</title><rect x="24.6698%" y="421" width="0.0102%" height="15" fill="rgb(226,122,50)" fg:x="572300" fg:w="236"/><text x="24.9198%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,807 samples, 0.12%)</title><rect x="24.7579%" y="421" width="0.1210%" height="15" fill="rgb(239,156,16)" fg:x="574342" fg:w="2807"/><text x="25.0079%" y="431.50"></text></g><g><title>mark_page_accessed (1,040 samples, 0.04%)</title><rect x="24.8936%" y="405" width="0.0448%" height="15" fill="rgb(224,27,38)" fg:x="577490" fg:w="1040"/><text x="25.1436%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,355 samples, 0.06%)</title><rect x="24.8806%" y="421" width="0.0584%" height="15" fill="rgb(224,39,27)" fg:x="577189" fg:w="1355"/><text x="25.1306%" y="431.50"></text></g><g><title>find_extent_buffer (5,747 samples, 0.25%)</title><rect x="24.6931%" y="437" width="0.2477%" height="15" fill="rgb(215,92,29)" fg:x="572839" fg:w="5747"/><text x="24.9431%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (8,905 samples, 0.38%)</title><rect x="24.5881%" y="453" width="0.3839%" height="15" fill="rgb(207,159,16)" fg:x="570405" fg:w="8905"/><text x="24.8381%" y="463.50"></text></g><g><title>read_extent_buffer (724 samples, 0.03%)</title><rect x="24.9408%" y="437" width="0.0312%" height="15" fill="rgb(238,163,47)" fg:x="578586" fg:w="724"/><text x="25.1908%" y="447.50"></text></g><g><title>btrfs_get_64 (238 samples, 0.01%)</title><rect x="24.9873%" y="437" width="0.0103%" height="15" fill="rgb(219,91,49)" fg:x="579664" fg:w="238"/><text x="25.2373%" y="447.50"></text></g><g><title>__radix_tree_lookup (724 samples, 0.03%)</title><rect x="25.0245%" y="421" width="0.0312%" height="15" fill="rgb(227,167,31)" fg:x="580527" fg:w="724"/><text x="25.2745%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (399 samples, 0.02%)</title><rect x="25.0559%" y="421" width="0.0172%" height="15" fill="rgb(234,80,54)" fg:x="581255" fg:w="399"/><text x="25.3059%" y="431.50"></text></g><g><title>mark_page_accessed (300 samples, 0.01%)</title><rect x="25.0601%" y="405" width="0.0129%" height="15" fill="rgb(212,114,2)" fg:x="581354" fg:w="300"/><text x="25.3101%" y="415.50"></text></g><g><title>find_extent_buffer (1,760 samples, 0.08%)</title><rect x="24.9975%" y="437" width="0.0759%" height="15" fill="rgb(234,50,24)" fg:x="579902" fg:w="1760"/><text x="25.2475%" y="447.50"></text></g><g><title>reada_for_balance (2,502 samples, 0.11%)</title><rect x="24.9720%" y="453" width="0.1079%" height="15" fill="rgb(221,68,8)" fg:x="579310" fg:w="2502"/><text x="25.2220%" y="463.50"></text></g><g><title>__list_del_entry_valid (409 samples, 0.02%)</title><rect x="25.1465%" y="389" width="0.0176%" height="15" fill="rgb(254,180,31)" fg:x="583357" fg:w="409"/><text x="25.3965%" y="399.50"></text></g><g><title>_raw_spin_lock (564 samples, 0.02%)</title><rect x="25.3604%" y="373" width="0.0243%" height="15" fill="rgb(247,130,50)" fg:x="588320" fg:w="564"/><text x="25.6104%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (335 samples, 0.01%)</title><rect x="25.3703%" y="357" width="0.0144%" height="15" fill="rgb(211,109,4)" fg:x="588549" fg:w="335"/><text x="25.6203%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (650 samples, 0.03%)</title><rect x="25.3847%" y="373" width="0.0280%" height="15" fill="rgb(238,50,21)" fg:x="588884" fg:w="650"/><text x="25.6347%" y="383.50"></text></g><g><title>available_idle_cpu (608 samples, 0.03%)</title><rect x="25.4680%" y="357" width="0.0262%" height="15" fill="rgb(225,57,45)" fg:x="590817" fg:w="608"/><text x="25.7180%" y="367.50"></text></g><g><title>select_task_rq_fair (2,721 samples, 0.12%)</title><rect x="25.4160%" y="373" width="0.1173%" height="15" fill="rgb(209,196,50)" fg:x="589609" fg:w="2721"/><text x="25.6660%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (555 samples, 0.02%)</title><rect x="25.5093%" y="357" width="0.0239%" height="15" fill="rgb(242,140,13)" fg:x="591775" fg:w="555"/><text x="25.7593%" y="367.50"></text></g><g><title>update_curr (301 samples, 0.01%)</title><rect x="25.6340%" y="325" width="0.0130%" height="15" fill="rgb(217,111,7)" fg:x="594667" fg:w="301"/><text x="25.8840%" y="335.50"></text></g><g><title>__update_load_avg_cfs_rq (248 samples, 0.01%)</title><rect x="25.6677%" y="309" width="0.0107%" height="15" fill="rgb(253,193,51)" fg:x="595449" fg:w="248"/><text x="25.9177%" y="319.50"></text></g><g><title>enqueue_entity (2,601 samples, 0.11%)</title><rect x="25.5758%" y="341" width="0.1121%" height="15" fill="rgb(252,70,29)" fg:x="593317" fg:w="2601"/><text x="25.8258%" y="351.50"></text></g><g><title>update_load_avg (950 samples, 0.04%)</title><rect x="25.6470%" y="325" width="0.0410%" height="15" fill="rgb(232,127,12)" fg:x="594968" fg:w="950"/><text x="25.8970%" y="335.50"></text></g><g><title>enqueue_task_fair (3,305 samples, 0.14%)</title><rect x="25.5530%" y="357" width="0.1425%" height="15" fill="rgb(211,180,21)" fg:x="592787" fg:w="3305"/><text x="25.8030%" y="367.50"></text></g><g><title>ttwu_do_activate (6,779 samples, 0.29%)</title><rect x="25.5423%" y="373" width="0.2922%" height="15" fill="rgb(229,72,13)" fg:x="592540" fg:w="6779"/><text x="25.7923%" y="383.50"></text></g><g><title>psi_task_change (3,223 samples, 0.14%)</title><rect x="25.6956%" y="357" width="0.1389%" height="15" fill="rgb(240,211,49)" fg:x="596096" fg:w="3223"/><text x="25.9456%" y="367.50"></text></g><g><title>psi_group_change (2,916 samples, 0.13%)</title><rect x="25.7088%" y="341" width="0.1257%" height="15" fill="rgb(219,149,40)" fg:x="596403" fg:w="2916"/><text x="25.9588%" y="351.50"></text></g><g><title>record_times (492 samples, 0.02%)</title><rect x="25.8133%" y="325" width="0.0212%" height="15" fill="rgb(210,127,46)" fg:x="598827" fg:w="492"/><text x="26.0633%" y="335.50"></text></g><g><title>sched_clock_cpu (347 samples, 0.01%)</title><rect x="25.8196%" y="309" width="0.0150%" height="15" fill="rgb(220,106,7)" fg:x="598972" fg:w="347"/><text x="26.0696%" y="319.50"></text></g><g><title>sched_clock (297 samples, 0.01%)</title><rect x="25.8217%" y="293" width="0.0128%" height="15" fill="rgb(249,31,22)" fg:x="599022" fg:w="297"/><text x="26.0717%" y="303.50"></text></g><g><title>native_sched_clock (267 samples, 0.01%)</title><rect x="25.8230%" y="277" width="0.0115%" height="15" fill="rgb(253,1,49)" fg:x="599052" fg:w="267"/><text x="26.0730%" y="287.50"></text></g><g><title>resched_curr (296 samples, 0.01%)</title><rect x="25.8509%" y="341" width="0.0128%" height="15" fill="rgb(227,144,33)" fg:x="599698" fg:w="296"/><text x="26.1009%" y="351.50"></text></g><g><title>ttwu_do_wakeup (677 samples, 0.03%)</title><rect x="25.8345%" y="373" width="0.0292%" height="15" fill="rgb(249,163,44)" fg:x="599319" fg:w="677"/><text x="26.0845%" y="383.50"></text></g><g><title>check_preempt_curr (614 samples, 0.03%)</title><rect x="25.8372%" y="357" width="0.0265%" height="15" fill="rgb(234,15,39)" fg:x="599382" fg:w="614"/><text x="26.0872%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (540 samples, 0.02%)</title><rect x="25.8637%" y="373" width="0.0233%" height="15" fill="rgb(207,66,16)" fg:x="599996" fg:w="540"/><text x="26.1137%" y="383.50"></text></g><g><title>__wake_up_common (18,204 samples, 0.78%)</title><rect x="25.1251%" y="421" width="0.7847%" height="15" fill="rgb(233,112,24)" fg:x="582862" fg:w="18204"/><text x="25.3751%" y="431.50"></text></g><g><title>autoremove_wake_function (17,755 samples, 0.77%)</title><rect x="25.1445%" y="405" width="0.7654%" height="15" fill="rgb(230,90,22)" fg:x="583311" fg:w="17755"/><text x="25.3945%" y="415.50"></text></g><g><title>try_to_wake_up (17,282 samples, 0.74%)</title><rect x="25.1649%" y="389" width="0.7450%" height="15" fill="rgb(229,61,13)" fg:x="583784" fg:w="17282"/><text x="25.4149%" y="399.50"></text></g><g><title>update_rq_clock (530 samples, 0.02%)</title><rect x="25.8870%" y="373" width="0.0228%" height="15" fill="rgb(225,57,24)" fg:x="600536" fg:w="530"/><text x="26.1370%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (2,628 samples, 0.11%)</title><rect x="25.9098%" y="421" width="0.1133%" height="15" fill="rgb(208,169,48)" fg:x="601066" fg:w="2628"/><text x="26.1598%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,455 samples, 0.11%)</title><rect x="25.9173%" y="405" width="0.1058%" height="15" fill="rgb(244,218,51)" fg:x="601239" fg:w="2455"/><text x="26.1673%" y="415.50"></text></g><g><title>__wake_up_common_lock (21,076 samples, 0.91%)</title><rect x="25.1228%" y="437" width="0.9085%" height="15" fill="rgb(214,148,10)" fg:x="582809" fg:w="21076"/><text x="25.3728%" y="447.50"></text></g><g><title>btrfs_lookup_inode (147,505 samples, 6.36%)</title><rect x="19.6943%" y="485" width="6.3584%" height="15" fill="rgb(225,174,27)" fg:x="456875" fg:w="147505"/><text x="19.9443%" y="495.50">btrfs_lo..</text></g><g><title>btrfs_search_slot (147,052 samples, 6.34%)</title><rect x="19.7138%" y="469" width="6.3389%" height="15" fill="rgb(230,96,26)" fg:x="457328" fg:w="147052"/><text x="19.9638%" y="479.50">btrfs_se..</text></g><g><title>unlock_up (22,486 samples, 0.97%)</title><rect x="25.0834%" y="453" width="0.9693%" height="15" fill="rgb(232,10,30)" fg:x="581894" fg:w="22486"/><text x="25.3334%" y="463.50"></text></g><g><title>btrfs_tree_unlock (492 samples, 0.02%)</title><rect x="26.0315%" y="437" width="0.0212%" height="15" fill="rgb(222,8,50)" fg:x="603888" fg:w="492"/><text x="26.2815%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (628 samples, 0.03%)</title><rect x="26.0527%" y="485" width="0.0271%" height="15" fill="rgb(213,81,27)" fg:x="604380" fg:w="628"/><text x="26.3027%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (335 samples, 0.01%)</title><rect x="26.0653%" y="469" width="0.0144%" height="15" fill="rgb(245,50,10)" fg:x="604673" fg:w="335"/><text x="26.3153%" y="479.50"></text></g><g><title>btrfs_release_delayed_inode (422 samples, 0.02%)</title><rect x="26.0798%" y="485" width="0.0182%" height="15" fill="rgb(216,100,18)" fg:x="605008" fg:w="422"/><text x="26.3298%" y="495.50"></text></g><g><title>select_task_rq_fair (804 samples, 0.03%)</title><rect x="26.1750%" y="405" width="0.0347%" height="15" fill="rgb(236,147,54)" fg:x="607218" fg:w="804"/><text x="26.4250%" y="415.50"></text></g><g><title>enqueue_entity (873 samples, 0.04%)</title><rect x="26.2240%" y="373" width="0.0376%" height="15" fill="rgb(205,143,26)" fg:x="608354" fg:w="873"/><text x="26.4740%" y="383.50"></text></g><g><title>update_load_avg (310 samples, 0.01%)</title><rect x="26.2483%" y="357" width="0.0134%" height="15" fill="rgb(236,26,9)" fg:x="608917" fg:w="310"/><text x="26.4983%" y="367.50"></text></g><g><title>enqueue_task_fair (1,093 samples, 0.05%)</title><rect x="26.2166%" y="389" width="0.0471%" height="15" fill="rgb(221,165,53)" fg:x="608182" fg:w="1093"/><text x="26.4666%" y="399.50"></text></g><g><title>ttwu_do_activate (2,256 samples, 0.10%)</title><rect x="26.2130%" y="405" width="0.0972%" height="15" fill="rgb(214,110,17)" fg:x="608098" fg:w="2256"/><text x="26.4630%" y="415.50"></text></g><g><title>psi_task_change (1,076 samples, 0.05%)</title><rect x="26.2638%" y="389" width="0.0464%" height="15" fill="rgb(237,197,12)" fg:x="609278" fg:w="1076"/><text x="26.5138%" y="399.50"></text></g><g><title>psi_group_change (980 samples, 0.04%)</title><rect x="26.2680%" y="373" width="0.0422%" height="15" fill="rgb(205,84,17)" fg:x="609374" fg:w="980"/><text x="26.5180%" y="383.50"></text></g><g><title>__wake_up_common (5,267 samples, 0.23%)</title><rect x="26.1067%" y="453" width="0.2270%" height="15" fill="rgb(237,18,45)" fg:x="605632" fg:w="5267"/><text x="26.3567%" y="463.50"></text></g><g><title>autoremove_wake_function (5,170 samples, 0.22%)</title><rect x="26.1108%" y="437" width="0.2229%" height="15" fill="rgb(221,87,14)" fg:x="605729" fg:w="5170"/><text x="26.3608%" y="447.50"></text></g><g><title>try_to_wake_up (5,020 samples, 0.22%)</title><rect x="26.1173%" y="421" width="0.2164%" height="15" fill="rgb(238,186,15)" fg:x="605879" fg:w="5020"/><text x="26.3673%" y="431.50"></text></g><g><title>__wake_up_common_lock (5,539 samples, 0.24%)</title><rect x="26.1061%" y="469" width="0.2388%" height="15" fill="rgb(208,115,11)" fg:x="605619" fg:w="5539"/><text x="26.3561%" y="479.50"></text></g><g><title>btrfs_tree_unlock (286 samples, 0.01%)</title><rect x="26.3449%" y="469" width="0.0123%" height="15" fill="rgb(254,175,0)" fg:x="611159" fg:w="286"/><text x="26.5949%" y="479.50"></text></g><g><title>_raw_spin_lock (396 samples, 0.02%)</title><rect x="26.4009%" y="453" width="0.0171%" height="15" fill="rgb(227,24,42)" fg:x="612459" fg:w="396"/><text x="26.6509%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,400 samples, 0.06%)</title><rect x="26.3578%" y="469" width="0.0603%" height="15" fill="rgb(223,211,37)" fg:x="611458" fg:w="1400"/><text x="26.6078%" y="479.50"></text></g><g><title>btrfs_release_path (7,873 samples, 0.34%)</title><rect x="26.0980%" y="485" width="0.3394%" height="15" fill="rgb(235,49,27)" fg:x="605430" fg:w="7873"/><text x="26.3480%" y="495.50"></text></g><g><title>release_extent_buffer (445 samples, 0.02%)</title><rect x="26.4181%" y="469" width="0.0192%" height="15" fill="rgb(254,97,51)" fg:x="612858" fg:w="445"/><text x="26.6681%" y="479.50"></text></g><g><title>btrfs_lock_root_node (234 samples, 0.01%)</title><rect x="26.4503%" y="469" width="0.0101%" height="15" fill="rgb(249,51,40)" fg:x="613603" fg:w="234"/><text x="26.7003%" y="479.50"></text></g><g><title>btrfs_search_slot (768 samples, 0.03%)</title><rect x="26.4373%" y="485" width="0.0331%" height="15" fill="rgb(210,128,45)" fg:x="613303" fg:w="768"/><text x="26.6873%" y="495.50"></text></g><g><title>finish_one_item (1,084 samples, 0.05%)</title><rect x="26.4704%" y="485" width="0.0467%" height="15" fill="rgb(224,137,50)" fg:x="614071" fg:w="1084"/><text x="26.7204%" y="495.50"></text></g><g><title>__btrfs_update_delayed_inode (193,687 samples, 8.35%)</title><rect x="18.2187%" y="501" width="8.3492%" height="15" fill="rgb(242,15,9)" fg:x="422644" fg:w="193687"/><text x="18.4687%" y="511.50">__btrfs_upda..</text></g><g><title>write_extent_buffer (945 samples, 0.04%)</title><rect x="26.5271%" y="485" width="0.0407%" height="15" fill="rgb(233,187,41)" fg:x="615386" fg:w="945"/><text x="26.7771%" y="495.50"></text></g><g><title>__radix_tree_lookup (241 samples, 0.01%)</title><rect x="26.5992%" y="485" width="0.0104%" height="15" fill="rgb(227,2,29)" fg:x="617057" fg:w="241"/><text x="26.8492%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (776 samples, 0.03%)</title><rect x="26.5765%" y="501" width="0.0335%" height="15" fill="rgb(222,70,3)" fg:x="616532" fg:w="776"/><text x="26.8265%" y="511.50"></text></g><g><title>btrfs_balance_delayed_items (433 samples, 0.02%)</title><rect x="26.6265%" y="485" width="0.0187%" height="15" fill="rgb(213,11,42)" fg:x="617691" fg:w="433"/><text x="26.8765%" y="495.50"></text></g><g><title>_raw_spin_lock (283 samples, 0.01%)</title><rect x="26.6516%" y="453" width="0.0122%" height="15" fill="rgb(225,150,9)" fg:x="618273" fg:w="283"/><text x="26.9016%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (237 samples, 0.01%)</title><rect x="26.6536%" y="437" width="0.0102%" height="15" fill="rgb(230,162,45)" fg:x="618319" fg:w="237"/><text x="26.9036%" y="447.50"></text></g><g><title>__queue_work (1,240 samples, 0.05%)</title><rect x="26.6488%" y="469" width="0.0535%" height="15" fill="rgb(222,14,52)" fg:x="618209" fg:w="1240"/><text x="26.8988%" y="479.50"></text></g><g><title>try_to_wake_up (815 samples, 0.04%)</title><rect x="26.6671%" y="453" width="0.0351%" height="15" fill="rgb(254,198,14)" fg:x="618634" fg:w="815"/><text x="26.9171%" y="463.50"></text></g><g><title>btrfs_btree_balance_dirty (2,146 samples, 0.09%)</title><rect x="26.6107%" y="501" width="0.0925%" height="15" fill="rgb(220,217,30)" fg:x="617326" fg:w="2146"/><text x="26.8607%" y="511.50"></text></g><g><title>queue_work_on (1,290 samples, 0.06%)</title><rect x="26.6476%" y="485" width="0.0556%" height="15" fill="rgb(215,146,41)" fg:x="618182" fg:w="1290"/><text x="26.8976%" y="495.50"></text></g><g><title>btrfs_get_delayed_node (521 samples, 0.02%)</title><rect x="26.7115%" y="501" width="0.0225%" height="15" fill="rgb(217,27,36)" fg:x="619663" fg:w="521"/><text x="26.9615%" y="511.50"></text></g><g><title>kmem_cache_alloc (652 samples, 0.03%)</title><rect x="26.7353%" y="501" width="0.0281%" height="15" fill="rgb(219,218,39)" fg:x="620215" fg:w="652"/><text x="26.9853%" y="511.50"></text></g><g><title>kmem_cache_free (938 samples, 0.04%)</title><rect x="26.7634%" y="501" width="0.0404%" height="15" fill="rgb(219,4,42)" fg:x="620867" fg:w="938"/><text x="27.0134%" y="511.50"></text></g><g><title>mutex_lock (478 samples, 0.02%)</title><rect x="26.8038%" y="501" width="0.0206%" height="15" fill="rgb(249,119,36)" fg:x="621805" fg:w="478"/><text x="27.0538%" y="511.50"></text></g><g><title>mutex_unlock (458 samples, 0.02%)</title><rect x="26.8244%" y="501" width="0.0197%" height="15" fill="rgb(209,23,33)" fg:x="622283" fg:w="458"/><text x="27.0744%" y="511.50"></text></g><g><title>_raw_spin_lock (619 samples, 0.03%)</title><rect x="26.9098%" y="469" width="0.0267%" height="15" fill="rgb(211,10,0)" fg:x="624264" fg:w="619"/><text x="27.1598%" y="479.50"></text></g><g><title>join_transaction (1,292 samples, 0.06%)</title><rect x="26.8810%" y="485" width="0.0557%" height="15" fill="rgb(208,99,37)" fg:x="623595" fg:w="1292"/><text x="27.1310%" y="495.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (209,395 samples, 9.03%)</title><rect x="17.9482%" y="517" width="9.0263%" height="15" fill="rgb(213,132,31)" fg:x="416368" fg:w="209395"/><text x="18.1982%" y="527.50">btrfs_commit_..</text></g><g><title>start_transaction (3,020 samples, 0.13%)</title><rect x="26.8443%" y="501" width="0.1302%" height="15" fill="rgb(243,129,40)" fg:x="622743" fg:w="3020"/><text x="27.0943%" y="511.50"></text></g><g><title>kmem_cache_alloc (876 samples, 0.04%)</title><rect x="26.9367%" y="485" width="0.0378%" height="15" fill="rgb(210,66,33)" fg:x="624887" fg:w="876"/><text x="27.1867%" y="495.50"></text></g><g><title>btrfs_get_32 (571 samples, 0.02%)</title><rect x="27.0275%" y="485" width="0.0246%" height="15" fill="rgb(209,189,4)" fg:x="626995" fg:w="571"/><text x="27.2775%" y="495.50"></text></g><g><title>btrfs_get_token_32 (350 samples, 0.02%)</title><rect x="27.0522%" y="485" width="0.0151%" height="15" fill="rgb(214,107,37)" fg:x="627566" fg:w="350"/><text x="27.3022%" y="495.50"></text></g><g><title>btrfs_mark_buffer_dirty (711 samples, 0.03%)</title><rect x="27.0672%" y="485" width="0.0306%" height="15" fill="rgb(245,88,54)" fg:x="627916" fg:w="711"/><text x="27.3172%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (329 samples, 0.01%)</title><rect x="27.0837%" y="469" width="0.0142%" height="15" fill="rgb(205,146,20)" fg:x="628298" fg:w="329"/><text x="27.3337%" y="479.50"></text></g><g><title>btrfs_set_token_32 (233 samples, 0.01%)</title><rect x="27.0979%" y="485" width="0.0100%" height="15" fill="rgb(220,161,25)" fg:x="628627" fg:w="233"/><text x="27.3479%" y="495.50"></text></g><g><title>leaf_space_used (687 samples, 0.03%)</title><rect x="27.1079%" y="485" width="0.0296%" height="15" fill="rgb(215,152,15)" fg:x="628860" fg:w="687"/><text x="27.3579%" y="495.50"></text></g><g><title>btrfs_get_32 (492 samples, 0.02%)</title><rect x="27.1163%" y="469" width="0.0212%" height="15" fill="rgb(233,192,44)" fg:x="629055" fg:w="492"/><text x="27.3663%" y="479.50"></text></g><g><title>memcpy_extent_buffer (450 samples, 0.02%)</title><rect x="27.1376%" y="485" width="0.0194%" height="15" fill="rgb(240,170,46)" fg:x="629547" fg:w="450"/><text x="27.3876%" y="495.50"></text></g><g><title>btrfs_del_items (4,156 samples, 0.18%)</title><rect x="26.9864%" y="501" width="0.1792%" height="15" fill="rgb(207,104,33)" fg:x="626040" fg:w="4156"/><text x="27.2364%" y="511.50"></text></g><g><title>__task_rq_lock (360 samples, 0.02%)</title><rect x="27.3611%" y="405" width="0.0155%" height="15" fill="rgb(219,21,39)" fg:x="634732" fg:w="360"/><text x="27.6111%" y="415.50"></text></g><g><title>_raw_spin_lock (347 samples, 0.01%)</title><rect x="27.3616%" y="389" width="0.0150%" height="15" fill="rgb(214,133,29)" fg:x="634745" fg:w="347"/><text x="27.6116%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (342 samples, 0.01%)</title><rect x="27.3618%" y="373" width="0.0147%" height="15" fill="rgb(226,93,6)" fg:x="634750" fg:w="342"/><text x="27.6118%" y="383.50"></text></g><g><title>select_task_rq_fair (747 samples, 0.03%)</title><rect x="27.3924%" y="405" width="0.0322%" height="15" fill="rgb(252,222,34)" fg:x="635458" fg:w="747"/><text x="27.6424%" y="415.50"></text></g><g><title>enqueue_entity (756 samples, 0.03%)</title><rect x="27.4394%" y="373" width="0.0326%" height="15" fill="rgb(252,92,48)" fg:x="636549" fg:w="756"/><text x="27.6894%" y="383.50"></text></g><g><title>update_load_avg (261 samples, 0.01%)</title><rect x="27.4607%" y="357" width="0.0113%" height="15" fill="rgb(245,223,24)" fg:x="637044" fg:w="261"/><text x="27.7107%" y="367.50"></text></g><g><title>enqueue_task_fair (989 samples, 0.04%)</title><rect x="27.4301%" y="389" width="0.0426%" height="15" fill="rgb(205,176,3)" fg:x="636334" fg:w="989"/><text x="27.6801%" y="399.50"></text></g><g><title>ttwu_do_activate (2,066 samples, 0.09%)</title><rect x="27.4267%" y="405" width="0.0891%" height="15" fill="rgb(235,151,15)" fg:x="636255" fg:w="2066"/><text x="27.6767%" y="415.50"></text></g><g><title>psi_task_change (997 samples, 0.04%)</title><rect x="27.4728%" y="389" width="0.0430%" height="15" fill="rgb(237,209,11)" fg:x="637324" fg:w="997"/><text x="27.7228%" y="399.50"></text></g><g><title>psi_group_change (879 samples, 0.04%)</title><rect x="27.4779%" y="373" width="0.0379%" height="15" fill="rgb(243,227,24)" fg:x="637442" fg:w="879"/><text x="27.7279%" y="383.50"></text></g><g><title>ttwu_do_wakeup (259 samples, 0.01%)</title><rect x="27.5158%" y="405" width="0.0112%" height="15" fill="rgb(239,193,16)" fg:x="638321" fg:w="259"/><text x="27.7658%" y="415.50"></text></g><g><title>check_preempt_curr (239 samples, 0.01%)</title><rect x="27.5166%" y="389" width="0.0103%" height="15" fill="rgb(231,27,9)" fg:x="638341" fg:w="239"/><text x="27.7666%" y="399.50"></text></g><g><title>__wake_up_common (8,495 samples, 0.37%)</title><rect x="27.1762%" y="453" width="0.3662%" height="15" fill="rgb(219,169,10)" fg:x="630443" fg:w="8495"/><text x="27.4262%" y="463.50"></text></g><g><title>autoremove_wake_function (8,352 samples, 0.36%)</title><rect x="27.1823%" y="437" width="0.3600%" height="15" fill="rgb(244,229,43)" fg:x="630586" fg:w="8352"/><text x="27.4323%" y="447.50"></text></g><g><title>try_to_wake_up (8,257 samples, 0.36%)</title><rect x="27.1864%" y="421" width="0.3559%" height="15" fill="rgb(254,38,20)" fg:x="630681" fg:w="8257"/><text x="27.4364%" y="431.50"></text></g><g><title>__wake_up_common_lock (8,754 samples, 0.38%)</title><rect x="27.1745%" y="469" width="0.3774%" height="15" fill="rgb(250,47,30)" fg:x="630405" fg:w="8754"/><text x="27.4245%" y="479.50"></text></g><g><title>btrfs_tree_unlock (793 samples, 0.03%)</title><rect x="27.5519%" y="469" width="0.0342%" height="15" fill="rgb(224,124,36)" fg:x="639160" fg:w="793"/><text x="27.8019%" y="479.50"></text></g><g><title>_raw_spin_lock (419 samples, 0.02%)</title><rect x="27.6336%" y="453" width="0.0181%" height="15" fill="rgb(246,68,51)" fg:x="641054" fg:w="419"/><text x="27.8836%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,500 samples, 0.06%)</title><rect x="27.5873%" y="469" width="0.0647%" height="15" fill="rgb(253,43,49)" fg:x="639980" fg:w="1500"/><text x="27.8373%" y="479.50"></text></g><g><title>btrfs_free_path (11,676 samples, 0.50%)</title><rect x="27.1655%" y="501" width="0.5033%" height="15" fill="rgb(219,54,36)" fg:x="630196" fg:w="11676"/><text x="27.4155%" y="511.50"></text></g><g><title>btrfs_release_path (11,652 samples, 0.50%)</title><rect x="27.1666%" y="485" width="0.5023%" height="15" fill="rgb(227,133,34)" fg:x="630220" fg:w="11652"/><text x="27.4166%" y="495.50"></text></g><g><title>release_extent_buffer (392 samples, 0.02%)</title><rect x="27.6519%" y="469" width="0.0169%" height="15" fill="rgb(247,227,15)" fg:x="641480" fg:w="392"/><text x="27.9019%" y="479.50"></text></g><g><title>_raw_read_lock (829 samples, 0.04%)</title><rect x="27.8380%" y="453" width="0.0357%" height="15" fill="rgb(229,96,14)" fg:x="645796" fg:w="829"/><text x="28.0880%" y="463.50"></text></g><g><title>__list_del_entry_valid (255 samples, 0.01%)</title><rect x="27.8805%" y="437" width="0.0110%" height="15" fill="rgb(220,79,17)" fg:x="646782" fg:w="255"/><text x="28.1305%" y="447.50"></text></g><g><title>finish_wait (6,205 samples, 0.27%)</title><rect x="27.8778%" y="453" width="0.2675%" height="15" fill="rgb(205,131,53)" fg:x="646720" fg:w="6205"/><text x="28.1278%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (5,888 samples, 0.25%)</title><rect x="27.8915%" y="437" width="0.2538%" height="15" fill="rgb(209,50,29)" fg:x="647037" fg:w="5888"/><text x="28.1415%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,658 samples, 0.24%)</title><rect x="27.9014%" y="421" width="0.2439%" height="15" fill="rgb(245,86,46)" fg:x="647267" fg:w="5658"/><text x="28.1514%" y="431.50"></text></g><g><title>__list_add_valid (411 samples, 0.02%)</title><rect x="28.1906%" y="437" width="0.0177%" height="15" fill="rgb(235,66,46)" fg:x="653976" fg:w="411"/><text x="28.4406%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (17,155 samples, 0.74%)</title><rect x="28.2083%" y="437" width="0.7395%" height="15" fill="rgb(232,148,31)" fg:x="654387" fg:w="17155"/><text x="28.4583%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (16,427 samples, 0.71%)</title><rect x="28.2397%" y="421" width="0.7081%" height="15" fill="rgb(217,149,8)" fg:x="655115" fg:w="16427"/><text x="28.4897%" y="431.50"></text></g><g><title>prepare_to_wait_event (18,867 samples, 0.81%)</title><rect x="28.1461%" y="453" width="0.8133%" height="15" fill="rgb(209,183,11)" fg:x="652944" fg:w="18867"/><text x="28.3961%" y="463.50"></text></g><g><title>_raw_spin_unlock_irqrestore (269 samples, 0.01%)</title><rect x="28.9478%" y="437" width="0.0116%" height="15" fill="rgb(208,55,20)" fg:x="671542" fg:w="269"/><text x="29.1978%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (11,563 samples, 0.50%)</title><rect x="28.9594%" y="453" width="0.4984%" height="15" fill="rgb(218,39,14)" fg:x="671811" fg:w="11563"/><text x="29.2094%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,202 samples, 0.35%)</title><rect x="29.1043%" y="437" width="0.3536%" height="15" fill="rgb(216,169,33)" fg:x="675172" fg:w="8202"/><text x="29.3543%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (475 samples, 0.02%)</title><rect x="29.4890%" y="421" width="0.0205%" height="15" fill="rgb(233,80,24)" fg:x="684096" fg:w="475"/><text x="29.7390%" y="431.50"></text></g><g><title>update_curr (848 samples, 0.04%)</title><rect x="29.5569%" y="389" width="0.0366%" height="15" fill="rgb(213,179,31)" fg:x="685673" fg:w="848"/><text x="29.8069%" y="399.50"></text></g><g><title>dequeue_entity (2,249 samples, 0.10%)</title><rect x="29.5274%" y="405" width="0.0969%" height="15" fill="rgb(209,19,5)" fg:x="684988" fg:w="2249"/><text x="29.7774%" y="415.50"></text></g><g><title>update_load_avg (716 samples, 0.03%)</title><rect x="29.5935%" y="389" width="0.0309%" height="15" fill="rgb(219,18,35)" fg:x="686521" fg:w="716"/><text x="29.8435%" y="399.50"></text></g><g><title>dequeue_task_fair (2,717 samples, 0.12%)</title><rect x="29.5144%" y="421" width="0.1171%" height="15" fill="rgb(209,169,16)" fg:x="684687" fg:w="2717"/><text x="29.7644%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (7,046 samples, 0.30%)</title><rect x="29.6533%" y="405" width="0.3037%" height="15" fill="rgb(245,90,51)" fg:x="687908" fg:w="7046"/><text x="29.9033%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,893 samples, 0.30%)</title><rect x="29.6599%" y="389" width="0.2971%" height="15" fill="rgb(220,99,45)" fg:x="688061" fg:w="6893"/><text x="29.9099%" y="399.50"></text></g><g><title>native_write_msr (6,841 samples, 0.29%)</title><rect x="29.6621%" y="373" width="0.2949%" height="15" fill="rgb(249,89,25)" fg:x="688113" fg:w="6841"/><text x="29.9121%" y="383.50"></text></g><g><title>finish_task_switch (7,826 samples, 0.34%)</title><rect x="29.6316%" y="421" width="0.3374%" height="15" fill="rgb(239,193,0)" fg:x="687404" fg:w="7826"/><text x="29.8816%" y="431.50"></text></g><g><title>pick_next_task_fair (468 samples, 0.02%)</title><rect x="29.9693%" y="421" width="0.0202%" height="15" fill="rgb(231,126,1)" fg:x="695240" fg:w="468"/><text x="30.2193%" y="431.50"></text></g><g><title>__update_idle_core (335 samples, 0.01%)</title><rect x="29.9928%" y="405" width="0.0144%" height="15" fill="rgb(243,166,3)" fg:x="695783" fg:w="335"/><text x="30.2428%" y="415.50"></text></g><g><title>pick_next_task_idle (412 samples, 0.02%)</title><rect x="29.9895%" y="421" width="0.0178%" height="15" fill="rgb(223,22,34)" fg:x="695708" fg:w="412"/><text x="30.2395%" y="431.50"></text></g><g><title>psi_task_change (2,092 samples, 0.09%)</title><rect x="30.0073%" y="421" width="0.0902%" height="15" fill="rgb(251,52,51)" fg:x="696120" fg:w="2092"/><text x="30.2573%" y="431.50"></text></g><g><title>psi_group_change (1,787 samples, 0.08%)</title><rect x="30.0204%" y="405" width="0.0770%" height="15" fill="rgb(221,165,28)" fg:x="696425" fg:w="1787"/><text x="30.2704%" y="415.50"></text></g><g><title>record_times (390 samples, 0.02%)</title><rect x="30.0806%" y="389" width="0.0168%" height="15" fill="rgb(218,121,47)" fg:x="697822" fg:w="390"/><text x="30.3306%" y="399.50"></text></g><g><title>sched_clock_cpu (255 samples, 0.01%)</title><rect x="30.0865%" y="373" width="0.0110%" height="15" fill="rgb(209,120,9)" fg:x="697957" fg:w="255"/><text x="30.3365%" y="383.50"></text></g><g><title>psi_task_switch (271 samples, 0.01%)</title><rect x="30.0975%" y="421" width="0.0117%" height="15" fill="rgb(236,68,12)" fg:x="698212" fg:w="271"/><text x="30.3475%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (54,085 samples, 2.33%)</title><rect x="27.7966%" y="469" width="2.3314%" height="15" fill="rgb(225,194,26)" fg:x="644835" fg:w="54085"/><text x="28.0466%" y="479.50">_..</text></g><g><title>schedule (15,546 samples, 0.67%)</title><rect x="29.4578%" y="453" width="0.6701%" height="15" fill="rgb(231,84,39)" fg:x="683374" fg:w="15546"/><text x="29.7078%" y="463.50"></text></g><g><title>__schedule (15,447 samples, 0.67%)</title><rect x="29.4621%" y="437" width="0.6659%" height="15" fill="rgb(210,11,45)" fg:x="683473" fg:w="15447"/><text x="29.7121%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (55,305 samples, 2.38%)</title><rect x="27.7879%" y="485" width="2.3840%" height="15" fill="rgb(224,54,52)" fg:x="644635" fg:w="55305"/><text x="28.0379%" y="495.50">__..</text></g><g><title>btrfs_root_node (1,019 samples, 0.04%)</title><rect x="30.1280%" y="469" width="0.0439%" height="15" fill="rgb(238,102,14)" fg:x="698921" fg:w="1019"/><text x="30.3780%" y="479.50"></text></g><g><title>prepare_to_wait_event (418 samples, 0.02%)</title><rect x="30.1875%" y="469" width="0.0180%" height="15" fill="rgb(243,160,52)" fg:x="700301" fg:w="418"/><text x="30.4375%" y="479.50"></text></g><g><title>update_curr (266 samples, 0.01%)</title><rect x="30.2431%" y="405" width="0.0115%" height="15" fill="rgb(216,114,19)" fg:x="701590" fg:w="266"/><text x="30.4931%" y="415.50"></text></g><g><title>dequeue_entity (790 samples, 0.03%)</title><rect x="30.2319%" y="421" width="0.0341%" height="15" fill="rgb(244,166,37)" fg:x="701331" fg:w="790"/><text x="30.4819%" y="431.50"></text></g><g><title>update_load_avg (265 samples, 0.01%)</title><rect x="30.2545%" y="405" width="0.0114%" height="15" fill="rgb(246,29,44)" fg:x="701856" fg:w="265"/><text x="30.5045%" y="415.50"></text></g><g><title>dequeue_task_fair (979 samples, 0.04%)</title><rect x="30.2273%" y="437" width="0.0422%" height="15" fill="rgb(215,56,53)" fg:x="701225" fg:w="979"/><text x="30.4773%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (2,301 samples, 0.10%)</title><rect x="30.2770%" y="421" width="0.0992%" height="15" fill="rgb(217,60,2)" fg:x="702378" fg:w="2301"/><text x="30.5270%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,264 samples, 0.10%)</title><rect x="30.2786%" y="405" width="0.0976%" height="15" fill="rgb(207,26,24)" fg:x="702415" fg:w="2264"/><text x="30.5286%" y="415.50"></text></g><g><title>native_write_msr (2,244 samples, 0.10%)</title><rect x="30.2795%" y="389" width="0.0967%" height="15" fill="rgb(252,210,15)" fg:x="702435" fg:w="2244"/><text x="30.5295%" y="399.50"></text></g><g><title>finish_task_switch (2,554 samples, 0.11%)</title><rect x="30.2695%" y="437" width="0.1101%" height="15" fill="rgb(253,209,26)" fg:x="702204" fg:w="2554"/><text x="30.5195%" y="447.50"></text></g><g><title>psi_task_change (723 samples, 0.03%)</title><rect x="30.3933%" y="437" width="0.0312%" height="15" fill="rgb(238,170,14)" fg:x="705075" fg:w="723"/><text x="30.6433%" y="447.50"></text></g><g><title>psi_group_change (622 samples, 0.03%)</title><rect x="30.3977%" y="421" width="0.0268%" height="15" fill="rgb(216,178,15)" fg:x="705176" fg:w="622"/><text x="30.6477%" y="431.50"></text></g><g><title>__btrfs_tree_lock (6,066 samples, 0.26%)</title><rect x="30.1719%" y="485" width="0.2615%" height="15" fill="rgb(250,197,2)" fg:x="699940" fg:w="6066"/><text x="30.4219%" y="495.50"></text></g><g><title>schedule (5,287 samples, 0.23%)</title><rect x="30.2055%" y="469" width="0.2279%" height="15" fill="rgb(212,70,42)" fg:x="700719" fg:w="5287"/><text x="30.4555%" y="479.50"></text></g><g><title>__schedule (5,242 samples, 0.23%)</title><rect x="30.2075%" y="453" width="0.2260%" height="15" fill="rgb(227,213,9)" fg:x="700764" fg:w="5242"/><text x="30.4575%" y="463.50"></text></g><g><title>btrfs_bin_search (250 samples, 0.01%)</title><rect x="30.4342%" y="485" width="0.0108%" height="15" fill="rgb(245,99,25)" fg:x="706024" fg:w="250"/><text x="30.6842%" y="495.50"></text></g><g><title>_cond_resched (313 samples, 0.01%)</title><rect x="30.4976%" y="453" width="0.0135%" height="15" fill="rgb(250,82,29)" fg:x="707495" fg:w="313"/><text x="30.7476%" y="463.50"></text></g><g><title>_raw_write_lock (798 samples, 0.03%)</title><rect x="30.5138%" y="453" width="0.0344%" height="15" fill="rgb(241,226,54)" fg:x="707871" fg:w="798"/><text x="30.7638%" y="463.50"></text></g><g><title>finish_wait (4,461 samples, 0.19%)</title><rect x="30.5485%" y="453" width="0.1923%" height="15" fill="rgb(221,99,41)" fg:x="708675" fg:w="4461"/><text x="30.7985%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (4,207 samples, 0.18%)</title><rect x="30.5594%" y="437" width="0.1813%" height="15" fill="rgb(213,90,21)" fg:x="708929" fg:w="4207"/><text x="30.8094%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,933 samples, 0.17%)</title><rect x="30.5712%" y="421" width="0.1695%" height="15" fill="rgb(205,208,24)" fg:x="709203" fg:w="3933"/><text x="30.8212%" y="431.50"></text></g><g><title>__list_add_valid (343 samples, 0.01%)</title><rect x="30.7917%" y="437" width="0.0148%" height="15" fill="rgb(246,31,12)" fg:x="714317" fg:w="343"/><text x="31.0417%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (11,139 samples, 0.48%)</title><rect x="30.8065%" y="437" width="0.4802%" height="15" fill="rgb(213,154,6)" fg:x="714660" fg:w="11139"/><text x="31.0565%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,235 samples, 0.44%)</title><rect x="30.8454%" y="421" width="0.4412%" height="15" fill="rgb(222,163,29)" fg:x="715564" fg:w="10235"/><text x="31.0954%" y="431.50"></text></g><g><title>prepare_to_wait_event (12,860 samples, 0.55%)</title><rect x="30.7426%" y="453" width="0.5543%" height="15" fill="rgb(227,201,8)" fg:x="713179" fg:w="12860"/><text x="30.9926%" y="463.50"></text></g><g><title>_raw_spin_unlock_irqrestore (240 samples, 0.01%)</title><rect x="31.2866%" y="437" width="0.0103%" height="15" fill="rgb(233,9,32)" fg:x="725799" fg:w="240"/><text x="31.5366%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (19,634 samples, 0.85%)</title><rect x="31.2970%" y="453" width="0.8464%" height="15" fill="rgb(217,54,24)" fg:x="726039" fg:w="19634"/><text x="31.5470%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,663 samples, 0.42%)</title><rect x="31.7268%" y="437" width="0.4165%" height="15" fill="rgb(235,192,0)" fg:x="736010" fg:w="9663"/><text x="31.9768%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (433 samples, 0.02%)</title><rect x="32.1839%" y="421" width="0.0187%" height="15" fill="rgb(235,45,9)" fg:x="746614" fg:w="433"/><text x="32.4339%" y="431.50"></text></g><g><title>update_cfs_group (266 samples, 0.01%)</title><rect x="32.2449%" y="389" width="0.0115%" height="15" fill="rgb(246,42,40)" fg:x="748030" fg:w="266"/><text x="32.4949%" y="399.50"></text></g><g><title>update_curr (956 samples, 0.04%)</title><rect x="32.2564%" y="389" width="0.0412%" height="15" fill="rgb(248,111,24)" fg:x="748296" fg:w="956"/><text x="32.5064%" y="399.50"></text></g><g><title>__update_load_avg_cfs_rq (239 samples, 0.01%)</title><rect x="32.3128%" y="373" width="0.0103%" height="15" fill="rgb(249,65,22)" fg:x="749605" fg:w="239"/><text x="32.5628%" y="383.50"></text></g><g><title>__update_load_avg_se (261 samples, 0.01%)</title><rect x="32.3231%" y="373" width="0.0113%" height="15" fill="rgb(238,111,51)" fg:x="749844" fg:w="261"/><text x="32.5731%" y="383.50"></text></g><g><title>dequeue_entity (2,622 samples, 0.11%)</title><rect x="32.2224%" y="405" width="0.1130%" height="15" fill="rgb(250,118,22)" fg:x="747506" fg:w="2622"/><text x="32.4724%" y="415.50"></text></g><g><title>update_load_avg (876 samples, 0.04%)</title><rect x="32.2976%" y="389" width="0.0378%" height="15" fill="rgb(234,84,26)" fg:x="749252" fg:w="876"/><text x="32.5476%" y="399.50"></text></g><g><title>dequeue_task_fair (3,111 samples, 0.13%)</title><rect x="32.2088%" y="421" width="0.1341%" height="15" fill="rgb(243,172,12)" fg:x="747192" fg:w="3111"/><text x="32.4588%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (5,390 samples, 0.23%)</title><rect x="32.3667%" y="405" width="0.2323%" height="15" fill="rgb(236,150,49)" fg:x="750854" fg:w="5390"/><text x="32.6167%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,243 samples, 0.23%)</title><rect x="32.3730%" y="389" width="0.2260%" height="15" fill="rgb(225,197,26)" fg:x="751001" fg:w="5243"/><text x="32.6230%" y="399.50"></text></g><g><title>native_write_msr (5,199 samples, 0.22%)</title><rect x="32.3749%" y="373" width="0.2241%" height="15" fill="rgb(214,17,42)" fg:x="751045" fg:w="5199"/><text x="32.6249%" y="383.50"></text></g><g><title>finish_task_switch (6,173 samples, 0.27%)</title><rect x="32.3429%" y="421" width="0.2661%" height="15" fill="rgb(224,165,40)" fg:x="750303" fg:w="6173"/><text x="32.5929%" y="431.50"></text></g><g><title>newidle_balance (269 samples, 0.01%)</title><rect x="32.6150%" y="405" width="0.0116%" height="15" fill="rgb(246,100,4)" fg:x="756614" fg:w="269"/><text x="32.8650%" y="415.50"></text></g><g><title>pick_next_task_fair (510 samples, 0.02%)</title><rect x="32.6091%" y="421" width="0.0220%" height="15" fill="rgb(222,103,0)" fg:x="756478" fg:w="510"/><text x="32.8591%" y="431.50"></text></g><g><title>__update_idle_core (500 samples, 0.02%)</title><rect x="32.6335%" y="405" width="0.0216%" height="15" fill="rgb(227,189,26)" fg:x="757044" fg:w="500"/><text x="32.8835%" y="415.50"></text></g><g><title>pick_next_task_idle (559 samples, 0.02%)</title><rect x="32.6311%" y="421" width="0.0241%" height="15" fill="rgb(214,202,17)" fg:x="756988" fg:w="559"/><text x="32.8811%" y="431.50"></text></g><g><title>psi_task_change (2,423 samples, 0.10%)</title><rect x="32.6552%" y="421" width="0.1044%" height="15" fill="rgb(229,111,3)" fg:x="757547" fg:w="2423"/><text x="32.9052%" y="431.50"></text></g><g><title>psi_group_change (2,081 samples, 0.09%)</title><rect x="32.6699%" y="405" width="0.0897%" height="15" fill="rgb(229,172,15)" fg:x="757889" fg:w="2081"/><text x="32.9199%" y="415.50"></text></g><g><title>record_times (560 samples, 0.02%)</title><rect x="32.7355%" y="389" width="0.0241%" height="15" fill="rgb(230,224,35)" fg:x="759410" fg:w="560"/><text x="32.9855%" y="399.50"></text></g><g><title>sched_clock_cpu (357 samples, 0.02%)</title><rect x="32.7442%" y="373" width="0.0154%" height="15" fill="rgb(251,141,6)" fg:x="759613" fg:w="357"/><text x="32.9942%" y="383.50"></text></g><g><title>sched_clock (314 samples, 0.01%)</title><rect x="32.7461%" y="357" width="0.0135%" height="15" fill="rgb(225,208,6)" fg:x="759656" fg:w="314"/><text x="32.9961%" y="367.50"></text></g><g><title>native_sched_clock (297 samples, 0.01%)</title><rect x="32.7468%" y="341" width="0.0128%" height="15" fill="rgb(246,181,16)" fg:x="759673" fg:w="297"/><text x="32.9968%" y="351.50"></text></g><g><title>psi_task_switch (257 samples, 0.01%)</title><rect x="32.7596%" y="421" width="0.0111%" height="15" fill="rgb(227,129,36)" fg:x="759970" fg:w="257"/><text x="33.0096%" y="431.50"></text></g><g><title>__schedule (14,735 samples, 0.64%)</title><rect x="32.1536%" y="437" width="0.6352%" height="15" fill="rgb(248,117,24)" fg:x="745912" fg:w="14735"/><text x="32.4036%" y="447.50"></text></g><g><title>__btrfs_tree_lock (54,319 samples, 2.34%)</title><rect x="30.4474%" y="469" width="2.3415%" height="15" fill="rgb(214,185,35)" fg:x="706329" fg:w="54319"/><text x="30.6974%" y="479.50">_..</text></g><g><title>schedule (14,975 samples, 0.65%)</title><rect x="32.1433%" y="453" width="0.6455%" height="15" fill="rgb(236,150,34)" fg:x="745673" fg:w="14975"/><text x="32.3933%" y="463.50"></text></g><g><title>btrfs_root_node (634 samples, 0.03%)</title><rect x="32.7889%" y="469" width="0.0273%" height="15" fill="rgb(243,228,27)" fg:x="760648" fg:w="634"/><text x="33.0389%" y="479.50"></text></g><g><title>btrfs_lock_root_node (55,002 samples, 2.37%)</title><rect x="30.4453%" y="485" width="2.3709%" height="15" fill="rgb(245,77,44)" fg:x="706281" fg:w="55002"/><text x="30.6953%" y="495.50">bt..</text></g><g><title>btrfs_set_path_blocking (887 samples, 0.04%)</title><rect x="32.8162%" y="485" width="0.0382%" height="15" fill="rgb(235,214,42)" fg:x="761283" fg:w="887"/><text x="33.0662%" y="495.50"></text></g><g><title>btrfs_set_lock_blocking_write (372 samples, 0.02%)</title><rect x="32.8384%" y="469" width="0.0160%" height="15" fill="rgb(221,74,3)" fg:x="761798" fg:w="372"/><text x="33.0884%" y="479.50"></text></g><g><title>btrfs_tree_read_unlock (605 samples, 0.03%)</title><rect x="32.8545%" y="485" width="0.0261%" height="15" fill="rgb(206,121,29)" fg:x="762172" fg:w="605"/><text x="33.1045%" y="495.50"></text></g><g><title>_raw_write_lock (493 samples, 0.02%)</title><rect x="32.8892%" y="469" width="0.0213%" height="15" fill="rgb(249,131,53)" fg:x="762975" fg:w="493"/><text x="33.1392%" y="479.50"></text></g><g><title>btrfs_try_tree_write_lock (3,153 samples, 0.14%)</title><rect x="32.8806%" y="485" width="0.1359%" height="15" fill="rgb(236,170,29)" fg:x="762777" fg:w="3153"/><text x="33.1306%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (2,461 samples, 0.11%)</title><rect x="32.9105%" y="469" width="0.1061%" height="15" fill="rgb(247,96,15)" fg:x="763469" fg:w="2461"/><text x="33.1605%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (666 samples, 0.03%)</title><rect x="33.0167%" y="485" width="0.0287%" height="15" fill="rgb(211,210,7)" fg:x="765934" fg:w="666"/><text x="33.2667%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (4,314 samples, 0.19%)</title><rect x="33.0454%" y="485" width="0.1860%" height="15" fill="rgb(240,88,50)" fg:x="766600" fg:w="4314"/><text x="33.2954%" y="495.50"></text></g><g><title>btrfs_buffer_uptodate (870 samples, 0.04%)</title><rect x="33.2599%" y="469" width="0.0375%" height="15" fill="rgb(209,229,26)" fg:x="771575" fg:w="870"/><text x="33.5099%" y="479.50"></text></g><g><title>verify_parent_transid (659 samples, 0.03%)</title><rect x="33.2690%" y="453" width="0.0284%" height="15" fill="rgb(210,68,23)" fg:x="771786" fg:w="659"/><text x="33.5190%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (269 samples, 0.01%)</title><rect x="33.3208%" y="453" width="0.0116%" height="15" fill="rgb(229,180,13)" fg:x="772989" fg:w="269"/><text x="33.5708%" y="463.50"></text></g><g><title>btrfs_get_64 (814 samples, 0.04%)</title><rect x="33.2974%" y="469" width="0.0351%" height="15" fill="rgb(236,53,44)" fg:x="772445" fg:w="814"/><text x="33.5474%" y="479.50"></text></g><g><title>btrfs_verify_level_key (250 samples, 0.01%)</title><rect x="33.3373%" y="469" width="0.0108%" height="15" fill="rgb(244,214,29)" fg:x="773372" fg:w="250"/><text x="33.5873%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,434 samples, 0.10%)</title><rect x="33.4392%" y="453" width="0.1049%" height="15" fill="rgb(220,75,29)" fg:x="775734" fg:w="2434"/><text x="33.6892%" y="463.50"></text></g><g><title>mark_page_accessed (837 samples, 0.04%)</title><rect x="33.5578%" y="437" width="0.0361%" height="15" fill="rgb(214,183,37)" fg:x="778486" fg:w="837"/><text x="33.8078%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (1,200 samples, 0.05%)</title><rect x="33.5449%" y="453" width="0.0517%" height="15" fill="rgb(239,117,29)" fg:x="778187" fg:w="1200"/><text x="33.7949%" y="463.50"></text></g><g><title>find_extent_buffer (5,790 samples, 0.25%)</title><rect x="33.3481%" y="469" width="0.2496%" height="15" fill="rgb(237,171,35)" fg:x="773622" fg:w="5790"/><text x="33.5981%" y="479.50"></text></g><g><title>read_block_for_search.isra.0 (9,312 samples, 0.40%)</title><rect x="33.2314%" y="485" width="0.4014%" height="15" fill="rgb(229,178,53)" fg:x="770914" fg:w="9312"/><text x="33.4814%" y="495.50"></text></g><g><title>read_extent_buffer (814 samples, 0.04%)</title><rect x="33.5977%" y="469" width="0.0351%" height="15" fill="rgb(210,102,19)" fg:x="779412" fg:w="814"/><text x="33.8477%" y="479.50"></text></g><g><title>__list_del_entry_valid (350 samples, 0.02%)</title><rect x="33.6829%" y="421" width="0.0151%" height="15" fill="rgb(235,127,22)" fg:x="781389" fg:w="350"/><text x="33.9329%" y="431.50"></text></g><g><title>_raw_spin_lock (489 samples, 0.02%)</title><rect x="33.7591%" y="405" width="0.0211%" height="15" fill="rgb(244,31,31)" fg:x="783156" fg:w="489"/><text x="34.0091%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (288 samples, 0.01%)</title><rect x="33.7678%" y="389" width="0.0124%" height="15" fill="rgb(231,43,21)" fg:x="783357" fg:w="288"/><text x="34.0178%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (516 samples, 0.02%)</title><rect x="33.7802%" y="405" width="0.0222%" height="15" fill="rgb(217,131,35)" fg:x="783645" fg:w="516"/><text x="34.0302%" y="415.50"></text></g><g><title>available_idle_cpu (448 samples, 0.02%)</title><rect x="33.8443%" y="389" width="0.0193%" height="15" fill="rgb(221,149,4)" fg:x="785132" fg:w="448"/><text x="34.0943%" y="399.50"></text></g><g><title>select_task_rq_fair (2,104 samples, 0.09%)</title><rect x="33.8050%" y="405" width="0.0907%" height="15" fill="rgb(232,170,28)" fg:x="784221" fg:w="2104"/><text x="34.0550%" y="415.50"></text></g><g><title>update_cfs_rq_h_load (475 samples, 0.02%)</title><rect x="33.8752%" y="389" width="0.0205%" height="15" fill="rgb(238,56,10)" fg:x="785850" fg:w="475"/><text x="34.1252%" y="399.50"></text></g><g><title>update_curr (235 samples, 0.01%)</title><rect x="33.9759%" y="357" width="0.0101%" height="15" fill="rgb(235,196,14)" fg:x="788186" fg:w="235"/><text x="34.2259%" y="367.50"></text></g><g><title>enqueue_entity (1,995 samples, 0.09%)</title><rect x="33.9305%" y="373" width="0.0860%" height="15" fill="rgb(216,45,48)" fg:x="787133" fg:w="1995"/><text x="34.1805%" y="383.50"></text></g><g><title>update_load_avg (707 samples, 0.03%)</title><rect x="33.9861%" y="357" width="0.0305%" height="15" fill="rgb(238,213,17)" fg:x="788421" fg:w="707"/><text x="34.2361%" y="367.50"></text></g><g><title>enqueue_task_fair (2,554 samples, 0.11%)</title><rect x="33.9133%" y="389" width="0.1101%" height="15" fill="rgb(212,13,2)" fg:x="786733" fg:w="2554"/><text x="34.1633%" y="399.50"></text></g><g><title>ttwu_do_activate (5,283 samples, 0.23%)</title><rect x="33.9038%" y="405" width="0.2277%" height="15" fill="rgb(240,114,20)" fg:x="786514" fg:w="5283"/><text x="34.1538%" y="415.50"></text></g><g><title>psi_task_change (2,506 samples, 0.11%)</title><rect x="34.0236%" y="389" width="0.1080%" height="15" fill="rgb(228,41,40)" fg:x="789291" fg:w="2506"/><text x="34.2736%" y="399.50"></text></g><g><title>psi_group_change (2,246 samples, 0.10%)</title><rect x="34.0348%" y="373" width="0.0968%" height="15" fill="rgb(244,132,35)" fg:x="789551" fg:w="2246"/><text x="34.2848%" y="383.50"></text></g><g><title>record_times (382 samples, 0.02%)</title><rect x="34.1151%" y="357" width="0.0165%" height="15" fill="rgb(253,189,4)" fg:x="791415" fg:w="382"/><text x="34.3651%" y="367.50"></text></g><g><title>sched_clock_cpu (267 samples, 0.01%)</title><rect x="34.1201%" y="341" width="0.0115%" height="15" fill="rgb(224,37,19)" fg:x="791530" fg:w="267"/><text x="34.3701%" y="351.50"></text></g><g><title>sched_clock (236 samples, 0.01%)</title><rect x="34.1214%" y="325" width="0.0102%" height="15" fill="rgb(235,223,18)" fg:x="791561" fg:w="236"/><text x="34.3714%" y="335.50"></text></g><g><title>ttwu_do_wakeup (460 samples, 0.02%)</title><rect x="34.1316%" y="405" width="0.0198%" height="15" fill="rgb(235,163,25)" fg:x="791797" fg:w="460"/><text x="34.3816%" y="415.50"></text></g><g><title>check_preempt_curr (413 samples, 0.02%)</title><rect x="34.1336%" y="389" width="0.0178%" height="15" fill="rgb(217,145,28)" fg:x="791844" fg:w="413"/><text x="34.3836%" y="399.50"></text></g><g><title>ttwu_queue_wakelist (293 samples, 0.01%)</title><rect x="34.1514%" y="405" width="0.0126%" height="15" fill="rgb(223,223,32)" fg:x="792257" fg:w="293"/><text x="34.4014%" y="415.50"></text></g><g><title>__wake_up_common (11,774 samples, 0.51%)</title><rect x="33.6744%" y="453" width="0.5075%" height="15" fill="rgb(227,189,39)" fg:x="781191" fg:w="11774"/><text x="33.9244%" y="463.50"></text></g><g><title>autoremove_wake_function (11,601 samples, 0.50%)</title><rect x="33.6818%" y="437" width="0.5001%" height="15" fill="rgb(248,10,22)" fg:x="781364" fg:w="11601"/><text x="33.9318%" y="447.50"></text></g><g><title>try_to_wake_up (11,218 samples, 0.48%)</title><rect x="33.6984%" y="421" width="0.4836%" height="15" fill="rgb(248,46,39)" fg:x="781747" fg:w="11218"/><text x="33.9484%" y="431.50"></text></g><g><title>update_rq_clock (415 samples, 0.02%)</title><rect x="34.1640%" y="405" width="0.0179%" height="15" fill="rgb(248,113,48)" fg:x="792550" fg:w="415"/><text x="34.4140%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (298 samples, 0.01%)</title><rect x="34.1819%" y="453" width="0.0128%" height="15" fill="rgb(245,16,25)" fg:x="792965" fg:w="298"/><text x="34.4319%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (248 samples, 0.01%)</title><rect x="34.1841%" y="437" width="0.0107%" height="15" fill="rgb(249,152,16)" fg:x="793015" fg:w="248"/><text x="34.4341%" y="447.50"></text></g><g><title>__wake_up_common_lock (12,188 samples, 0.53%)</title><rect x="33.6730%" y="469" width="0.5254%" height="15" fill="rgb(250,16,1)" fg:x="781159" fg:w="12188"/><text x="33.9230%" y="479.50"></text></g><g><title>btrfs_search_slot (151,911 samples, 6.55%)</title><rect x="27.6688%" y="501" width="6.5483%" height="15" fill="rgb(249,138,3)" fg:x="641872" fg:w="151911"/><text x="27.9188%" y="511.50">btrfs_sea..</text></g><g><title>unlock_up (13,531 samples, 0.58%)</title><rect x="33.6339%" y="485" width="0.5833%" height="15" fill="rgb(227,71,41)" fg:x="780252" fg:w="13531"/><text x="33.8839%" y="495.50"></text></g><g><title>btrfs_tree_unlock (429 samples, 0.02%)</title><rect x="34.1987%" y="469" width="0.0185%" height="15" fill="rgb(209,184,23)" fg:x="793354" fg:w="429"/><text x="34.4487%" y="479.50"></text></g><g><title>kmem_cache_alloc (764 samples, 0.03%)</title><rect x="34.2172%" y="501" width="0.0329%" height="15" fill="rgb(223,215,31)" fg:x="793783" fg:w="764"/><text x="34.4672%" y="511.50"></text></g><g><title>btrfs_del_orphan_item (169,518 samples, 7.31%)</title><rect x="26.9744%" y="517" width="7.3073%" height="15" fill="rgb(210,146,28)" fg:x="625763" fg:w="169518"/><text x="27.2244%" y="527.50">btrfs_del_..</text></g><g><title>kmem_cache_free (734 samples, 0.03%)</title><rect x="34.2501%" y="501" width="0.0316%" height="15" fill="rgb(209,183,41)" fg:x="794547" fg:w="734"/><text x="34.5001%" y="511.50"></text></g><g><title>_raw_spin_lock (734 samples, 0.03%)</title><rect x="34.3055%" y="485" width="0.0316%" height="15" fill="rgb(209,224,45)" fg:x="795832" fg:w="734"/><text x="34.5555%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (277 samples, 0.01%)</title><rect x="34.3252%" y="469" width="0.0119%" height="15" fill="rgb(224,209,51)" fg:x="796289" fg:w="277"/><text x="34.5752%" y="479.50"></text></g><g><title>btrfs_free_block_rsv (1,250 samples, 0.05%)</title><rect x="34.2887%" y="517" width="0.0539%" height="15" fill="rgb(223,17,39)" fg:x="795442" fg:w="1250"/><text x="34.5387%" y="527.50"></text></g><g><title>btrfs_block_rsv_release (1,203 samples, 0.05%)</title><rect x="34.2907%" y="501" width="0.0519%" height="15" fill="rgb(234,204,37)" fg:x="795489" fg:w="1203"/><text x="34.5407%" y="511.50"></text></g><g><title>btrfs_free_io_failure_record (256 samples, 0.01%)</title><rect x="34.3426%" y="517" width="0.0110%" height="15" fill="rgb(236,120,5)" fg:x="796692" fg:w="256"/><text x="34.5926%" y="527.50"></text></g><g><title>_raw_spin_lock (356 samples, 0.02%)</title><rect x="34.4823%" y="485" width="0.0153%" height="15" fill="rgb(248,97,27)" fg:x="799933" fg:w="356"/><text x="34.7323%" y="495.50"></text></g><g><title>mutex_lock (307 samples, 0.01%)</title><rect x="34.4976%" y="485" width="0.0132%" height="15" fill="rgb(240,66,17)" fg:x="800289" fg:w="307"/><text x="34.7476%" y="495.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,099 samples, 0.05%)</title><rect x="34.4716%" y="501" width="0.0474%" height="15" fill="rgb(210,79,3)" fg:x="799684" fg:w="1099"/><text x="34.7216%" y="511.50"></text></g><g><title>alloc_extent_state (977 samples, 0.04%)</title><rect x="34.5642%" y="485" width="0.0421%" height="15" fill="rgb(214,176,27)" fg:x="801834" fg:w="977"/><text x="34.8142%" y="495.50"></text></g><g><title>kmem_cache_alloc (867 samples, 0.04%)</title><rect x="34.5690%" y="469" width="0.0374%" height="15" fill="rgb(235,185,3)" fg:x="801944" fg:w="867"/><text x="34.8190%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (259 samples, 0.01%)</title><rect x="34.5952%" y="453" width="0.0112%" height="15" fill="rgb(227,24,12)" fg:x="802552" fg:w="259"/><text x="34.8452%" y="463.50"></text></g><g><title>__wake_up_common (333 samples, 0.01%)</title><rect x="34.6470%" y="453" width="0.0144%" height="15" fill="rgb(252,169,48)" fg:x="803755" fg:w="333"/><text x="34.8970%" y="463.50"></text></g><g><title>__wake_up_common_lock (1,021 samples, 0.04%)</title><rect x="34.6336%" y="469" width="0.0440%" height="15" fill="rgb(212,65,1)" fg:x="803443" fg:w="1021"/><text x="34.8836%" y="479.50"></text></g><g><title>btrfs_clear_delalloc_extent (422 samples, 0.02%)</title><rect x="34.6778%" y="469" width="0.0182%" height="15" fill="rgb(242,39,24)" fg:x="804468" fg:w="422"/><text x="34.9278%" y="479.50"></text></g><g><title>kmem_cache_free (751 samples, 0.03%)</title><rect x="34.7026%" y="469" width="0.0324%" height="15" fill="rgb(249,32,23)" fg:x="805043" fg:w="751"/><text x="34.9526%" y="479.50"></text></g><g><title>clear_state_bit (3,228 samples, 0.14%)</title><rect x="34.6069%" y="485" width="0.1391%" height="15" fill="rgb(251,195,23)" fg:x="802824" fg:w="3228"/><text x="34.8569%" y="495.50"></text></g><g><title>__clear_extent_bit (5,881 samples, 0.25%)</title><rect x="34.5189%" y="501" width="0.2535%" height="15" fill="rgb(236,174,8)" fg:x="800783" fg:w="5881"/><text x="34.7689%" y="511.50"></text></g><g><title>kmem_cache_free (453 samples, 0.02%)</title><rect x="34.7529%" y="485" width="0.0195%" height="15" fill="rgb(220,197,8)" fg:x="806211" fg:w="453"/><text x="35.0029%" y="495.50"></text></g><g><title>steal_from_bitmap.part.0 (256 samples, 0.01%)</title><rect x="34.8915%" y="437" width="0.0110%" height="15" fill="rgb(240,108,37)" fg:x="809425" fg:w="256"/><text x="35.1415%" y="447.50"></text></g><g><title>__btrfs_add_free_space (572 samples, 0.02%)</title><rect x="34.8844%" y="453" width="0.0247%" height="15" fill="rgb(232,176,24)" fg:x="809262" fg:w="572"/><text x="35.1344%" y="463.50"></text></g><g><title>btrfs_add_delayed_tree_ref (497 samples, 0.02%)</title><rect x="34.9135%" y="453" width="0.0214%" height="15" fill="rgb(243,35,29)" fg:x="809937" fg:w="497"/><text x="35.1635%" y="463.50"></text></g><g><title>btrfs_free_tree_block (1,577 samples, 0.07%)</title><rect x="34.8836%" y="469" width="0.0680%" height="15" fill="rgb(210,37,18)" fg:x="809242" fg:w="1577"/><text x="35.1336%" y="479.50"></text></g><g><title>check_ref_cleanup (342 samples, 0.01%)</title><rect x="34.9368%" y="453" width="0.0147%" height="15" fill="rgb(224,184,40)" fg:x="810477" fg:w="342"/><text x="35.1868%" y="463.50"></text></g><g><title>__wake_up_common (412 samples, 0.02%)</title><rect x="34.9532%" y="437" width="0.0178%" height="15" fill="rgb(236,39,29)" fg:x="810857" fg:w="412"/><text x="35.2032%" y="447.50"></text></g><g><title>autoremove_wake_function (409 samples, 0.02%)</title><rect x="34.9533%" y="421" width="0.0176%" height="15" fill="rgb(232,48,39)" fg:x="810860" fg:w="409"/><text x="35.2033%" y="431.50"></text></g><g><title>try_to_wake_up (396 samples, 0.02%)</title><rect x="34.9539%" y="405" width="0.0171%" height="15" fill="rgb(236,34,42)" fg:x="810873" fg:w="396"/><text x="35.2039%" y="415.50"></text></g><g><title>__wake_up_common_lock (443 samples, 0.02%)</title><rect x="34.9530%" y="453" width="0.0191%" height="15" fill="rgb(243,106,37)" fg:x="810853" fg:w="443"/><text x="35.2030%" y="463.50"></text></g><g><title>btrfs_unlock_up_safe (467 samples, 0.02%)</title><rect x="34.9523%" y="469" width="0.0201%" height="15" fill="rgb(218,96,6)" fg:x="810836" fg:w="467"/><text x="35.2023%" y="479.50"></text></g><g><title>btrfs_del_leaf (2,288 samples, 0.10%)</title><rect x="34.8820%" y="485" width="0.0986%" height="15" fill="rgb(235,130,12)" fg:x="809206" fg:w="2288"/><text x="35.1320%" y="495.50"></text></g><g><title>btrfs_get_32 (740 samples, 0.03%)</title><rect x="34.9806%" y="485" width="0.0319%" height="15" fill="rgb(231,95,0)" fg:x="811494" fg:w="740"/><text x="35.2306%" y="495.50"></text></g><g><title>btrfs_get_token_32 (7,997 samples, 0.34%)</title><rect x="35.0125%" y="485" width="0.3447%" height="15" fill="rgb(228,12,23)" fg:x="812234" fg:w="7997"/><text x="35.2625%" y="495.50"></text></g><g><title>check_setget_bounds.isra.0 (1,258 samples, 0.05%)</title><rect x="35.3030%" y="469" width="0.0542%" height="15" fill="rgb(216,12,1)" fg:x="818973" fg:w="1258"/><text x="35.5530%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (691 samples, 0.03%)</title><rect x="35.3573%" y="485" width="0.0298%" height="15" fill="rgb(219,59,3)" fg:x="820231" fg:w="691"/><text x="35.6073%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (267 samples, 0.01%)</title><rect x="35.3755%" y="469" width="0.0115%" height="15" fill="rgb(215,208,46)" fg:x="820655" fg:w="267"/><text x="35.6255%" y="479.50"></text></g><g><title>btrfs_set_token_32 (5,943 samples, 0.26%)</title><rect x="35.3888%" y="485" width="0.2562%" height="15" fill="rgb(254,224,29)" fg:x="820963" fg:w="5943"/><text x="35.6388%" y="495.50"></text></g><g><title>check_setget_bounds.isra.0 (1,007 samples, 0.04%)</title><rect x="35.6016%" y="469" width="0.0434%" height="15" fill="rgb(232,14,29)" fg:x="825899" fg:w="1007"/><text x="35.8516%" y="479.50"></text></g><g><title>fixup_low_keys (588 samples, 0.03%)</title><rect x="35.6460%" y="485" width="0.0253%" height="15" fill="rgb(208,45,52)" fg:x="826930" fg:w="588"/><text x="35.8960%" y="495.50"></text></g><g><title>leaf_space_used (536 samples, 0.02%)</title><rect x="35.6719%" y="485" width="0.0231%" height="15" fill="rgb(234,191,28)" fg:x="827531" fg:w="536"/><text x="35.9219%" y="495.50"></text></g><g><title>btrfs_get_32 (386 samples, 0.02%)</title><rect x="35.6784%" y="469" width="0.0166%" height="15" fill="rgb(244,67,43)" fg:x="827681" fg:w="386"/><text x="35.9284%" y="479.50"></text></g><g><title>memcpy_extent_buffer (1,137 samples, 0.05%)</title><rect x="35.6951%" y="485" width="0.0490%" height="15" fill="rgb(236,189,24)" fg:x="828067" fg:w="1137"/><text x="35.9451%" y="495.50"></text></g><g><title>memmove (839 samples, 0.04%)</title><rect x="35.7079%" y="469" width="0.0362%" height="15" fill="rgb(239,214,33)" fg:x="828365" fg:w="839"/><text x="35.9579%" y="479.50"></text></g><g><title>copy_pages (1,072 samples, 0.05%)</title><rect x="35.7741%" y="469" width="0.0462%" height="15" fill="rgb(226,176,41)" fg:x="829901" fg:w="1072"/><text x="36.0241%" y="479.50"></text></g><g><title>memmove_extent_buffer (8,145 samples, 0.35%)</title><rect x="35.7441%" y="485" width="0.3511%" height="15" fill="rgb(248,47,8)" fg:x="829204" fg:w="8145"/><text x="35.9941%" y="495.50"></text></g><g><title>memmove (6,376 samples, 0.27%)</title><rect x="35.8203%" y="469" width="0.2748%" height="15" fill="rgb(218,81,44)" fg:x="830973" fg:w="6376"/><text x="36.0703%" y="479.50"></text></g><g><title>clear_extent_buffer_dirty (316 samples, 0.01%)</title><rect x="36.1181%" y="453" width="0.0136%" height="15" fill="rgb(213,98,6)" fg:x="837881" fg:w="316"/><text x="36.3681%" y="463.50"></text></g><g><title>__push_leaf_left (999 samples, 0.04%)</title><rect x="36.0974%" y="469" width="0.0431%" height="15" fill="rgb(222,85,22)" fg:x="837400" fg:w="999"/><text x="36.3474%" y="479.50"></text></g><g><title>push_leaf_left (1,328 samples, 0.06%)</title><rect x="36.0952%" y="485" width="0.0572%" height="15" fill="rgb(239,46,39)" fg:x="837349" fg:w="1328"/><text x="36.3452%" y="495.50"></text></g><g><title>__push_leaf_right (600 samples, 0.03%)</title><rect x="36.1533%" y="469" width="0.0259%" height="15" fill="rgb(237,12,29)" fg:x="838698" fg:w="600"/><text x="36.4033%" y="479.50"></text></g><g><title>push_leaf_right (879 samples, 0.04%)</title><rect x="36.1524%" y="485" width="0.0379%" height="15" fill="rgb(214,77,8)" fg:x="838677" fg:w="879"/><text x="36.4024%" y="495.50"></text></g><g><title>btrfs_del_items (33,117 samples, 1.43%)</title><rect x="34.7734%" y="501" width="1.4276%" height="15" fill="rgb(217,168,37)" fg:x="806686" fg:w="33117"/><text x="35.0234%" y="511.50"></text></g><g><title>__slab_alloc (250 samples, 0.01%)</title><rect x="36.3097%" y="453" width="0.0108%" height="15" fill="rgb(221,217,23)" fg:x="842326" fg:w="250"/><text x="36.5597%" y="463.50"></text></g><g><title>memset_erms (403 samples, 0.02%)</title><rect x="36.3264%" y="453" width="0.0174%" height="15" fill="rgb(243,229,36)" fg:x="842714" fg:w="403"/><text x="36.5764%" y="463.50"></text></g><g><title>alloc_extent_map (2,858 samples, 0.12%)</title><rect x="36.2393%" y="485" width="0.1232%" height="15" fill="rgb(251,163,40)" fg:x="840693" fg:w="2858"/><text x="36.4893%" y="495.50"></text></g><g><title>kmem_cache_alloc (2,235 samples, 0.10%)</title><rect x="36.2662%" y="469" width="0.0963%" height="15" fill="rgb(237,222,12)" fg:x="841316" fg:w="2235"/><text x="36.5162%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (434 samples, 0.02%)</title><rect x="36.3438%" y="453" width="0.0187%" height="15" fill="rgb(248,132,6)" fg:x="843117" fg:w="434"/><text x="36.5938%" y="463.50"></text></g><g><title>free_extent_map (395 samples, 0.02%)</title><rect x="36.3626%" y="485" width="0.0170%" height="15" fill="rgb(227,167,50)" fg:x="843554" fg:w="395"/><text x="36.6126%" y="495.50"></text></g><g><title>kmem_cache_free (1,367 samples, 0.06%)</title><rect x="36.3797%" y="485" width="0.0589%" height="15" fill="rgb(242,84,37)" fg:x="843949" fg:w="1367"/><text x="36.6297%" y="495.50"></text></g><g><title>btrfs_drop_extent_cache (5,605 samples, 0.24%)</title><rect x="36.2009%" y="501" width="0.2416%" height="15" fill="rgb(212,4,50)" fg:x="839803" fg:w="5605"/><text x="36.4509%" y="511.50"></text></g><g><title>__list_del_entry_valid (236 samples, 0.01%)</title><rect x="36.4740%" y="421" width="0.0102%" height="15" fill="rgb(230,228,32)" fg:x="846137" fg:w="236"/><text x="36.7240%" y="431.50"></text></g><g><title>_raw_spin_lock (415 samples, 0.02%)</title><rect x="36.5767%" y="405" width="0.0179%" height="15" fill="rgb(248,217,23)" fg:x="848520" fg:w="415"/><text x="36.8267%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (256 samples, 0.01%)</title><rect x="36.5836%" y="389" width="0.0110%" height="15" fill="rgb(238,197,32)" fg:x="848679" fg:w="256"/><text x="36.8336%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (360 samples, 0.02%)</title><rect x="36.5946%" y="405" width="0.0155%" height="15" fill="rgb(236,106,1)" fg:x="848935" fg:w="360"/><text x="36.8446%" y="415.50"></text></g><g><title>available_idle_cpu (366 samples, 0.02%)</title><rect x="36.6423%" y="389" width="0.0158%" height="15" fill="rgb(219,228,13)" fg:x="850041" fg:w="366"/><text x="36.8923%" y="399.50"></text></g><g><title>select_task_rq_fair (1,662 samples, 0.07%)</title><rect x="36.6124%" y="405" width="0.0716%" height="15" fill="rgb(238,30,35)" fg:x="849349" fg:w="1662"/><text x="36.8624%" y="415.50"></text></g><g><title>update_cfs_rq_h_load (422 samples, 0.02%)</title><rect x="36.6659%" y="389" width="0.0182%" height="15" fill="rgb(236,70,23)" fg:x="850589" fg:w="422"/><text x="36.9159%" y="399.50"></text></g><g><title>enqueue_entity (1,669 samples, 0.07%)</title><rect x="36.7149%" y="373" width="0.0719%" height="15" fill="rgb(249,104,48)" fg:x="851726" fg:w="1669"/><text x="36.9649%" y="383.50"></text></g><g><title>update_load_avg (575 samples, 0.02%)</title><rect x="36.7621%" y="357" width="0.0248%" height="15" fill="rgb(254,117,50)" fg:x="852820" fg:w="575"/><text x="37.0121%" y="367.50"></text></g><g><title>enqueue_task_fair (2,119 samples, 0.09%)</title><rect x="36.6991%" y="389" width="0.0913%" height="15" fill="rgb(223,152,4)" fg:x="851360" fg:w="2119"/><text x="36.9491%" y="399.50"></text></g><g><title>ttwu_do_activate (4,415 samples, 0.19%)</title><rect x="36.6903%" y="405" width="0.1903%" height="15" fill="rgb(245,6,2)" fg:x="851155" fg:w="4415"/><text x="36.9403%" y="415.50"></text></g><g><title>psi_task_change (2,087 samples, 0.09%)</title><rect x="36.7906%" y="389" width="0.0900%" height="15" fill="rgb(249,150,24)" fg:x="853483" fg:w="2087"/><text x="37.0406%" y="399.50"></text></g><g><title>psi_group_change (1,855 samples, 0.08%)</title><rect x="36.8006%" y="373" width="0.0800%" height="15" fill="rgb(228,185,42)" fg:x="853715" fg:w="1855"/><text x="37.0506%" y="383.50"></text></g><g><title>record_times (325 samples, 0.01%)</title><rect x="36.8666%" y="357" width="0.0140%" height="15" fill="rgb(226,39,33)" fg:x="855245" fg:w="325"/><text x="37.1166%" y="367.50"></text></g><g><title>ttwu_do_wakeup (409 samples, 0.02%)</title><rect x="36.8806%" y="405" width="0.0176%" height="15" fill="rgb(221,166,19)" fg:x="855570" fg:w="409"/><text x="37.1306%" y="415.50"></text></g><g><title>check_preempt_curr (368 samples, 0.02%)</title><rect x="36.8824%" y="389" width="0.0159%" height="15" fill="rgb(209,109,2)" fg:x="855611" fg:w="368"/><text x="37.1324%" y="399.50"></text></g><g><title>ttwu_queue_wakelist (477 samples, 0.02%)</title><rect x="36.8982%" y="405" width="0.0206%" height="15" fill="rgb(252,216,26)" fg:x="855979" fg:w="477"/><text x="37.1482%" y="415.50"></text></g><g><title>__wake_up_common (10,903 samples, 0.47%)</title><rect x="36.4627%" y="453" width="0.4700%" height="15" fill="rgb(227,173,36)" fg:x="845875" fg:w="10903"/><text x="36.7127%" y="463.50"></text></g><g><title>autoremove_wake_function (10,677 samples, 0.46%)</title><rect x="36.4724%" y="437" width="0.4602%" height="15" fill="rgb(209,90,7)" fg:x="846101" fg:w="10677"/><text x="36.7224%" y="447.50"></text></g><g><title>try_to_wake_up (10,396 samples, 0.45%)</title><rect x="36.4845%" y="421" width="0.4481%" height="15" fill="rgb(250,194,11)" fg:x="846382" fg:w="10396"/><text x="36.7345%" y="431.50"></text></g><g><title>update_rq_clock (322 samples, 0.01%)</title><rect x="36.9188%" y="405" width="0.0139%" height="15" fill="rgb(220,72,50)" fg:x="856456" fg:w="322"/><text x="37.1688%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (324 samples, 0.01%)</title><rect x="36.9327%" y="453" width="0.0140%" height="15" fill="rgb(222,106,48)" fg:x="856778" fg:w="324"/><text x="37.1827%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (253 samples, 0.01%)</title><rect x="36.9357%" y="437" width="0.0109%" height="15" fill="rgb(216,220,45)" fg:x="856849" fg:w="253"/><text x="37.1857%" y="447.50"></text></g><g><title>__wake_up_common_lock (11,358 samples, 0.49%)</title><rect x="36.4607%" y="469" width="0.4896%" height="15" fill="rgb(234,112,18)" fg:x="845828" fg:w="11358"/><text x="36.7107%" y="479.50"></text></g><g><title>btrfs_tree_unlock (699 samples, 0.03%)</title><rect x="36.9503%" y="469" width="0.0301%" height="15" fill="rgb(206,179,9)" fg:x="857186" fg:w="699"/><text x="37.2003%" y="479.50"></text></g><g><title>_raw_spin_lock (346 samples, 0.01%)</title><rect x="37.0251%" y="453" width="0.0149%" height="15" fill="rgb(215,115,40)" fg:x="858923" fg:w="346"/><text x="37.2751%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,364 samples, 0.06%)</title><rect x="36.9815%" y="469" width="0.0588%" height="15" fill="rgb(222,69,34)" fg:x="857911" fg:w="1364"/><text x="37.2315%" y="479.50"></text></g><g><title>btrfs_free_path (14,277 samples, 0.62%)</title><rect x="36.4426%" y="501" width="0.6154%" height="15" fill="rgb(209,161,10)" fg:x="845408" fg:w="14277"/><text x="36.6926%" y="511.50"></text></g><g><title>btrfs_release_path (14,238 samples, 0.61%)</title><rect x="36.4442%" y="485" width="0.6138%" height="15" fill="rgb(217,6,38)" fg:x="845447" fg:w="14238"/><text x="36.6942%" y="495.50"></text></g><g><title>release_extent_buffer (410 samples, 0.02%)</title><rect x="37.0403%" y="469" width="0.0177%" height="15" fill="rgb(229,229,48)" fg:x="859275" fg:w="410"/><text x="37.2903%" y="479.50"></text></g><g><title>btrfs_get_32 (236 samples, 0.01%)</title><rect x="37.0580%" y="501" width="0.0102%" height="15" fill="rgb(225,21,28)" fg:x="859685" fg:w="236"/><text x="37.3080%" y="511.50"></text></g><g><title>btrfs_get_8 (296 samples, 0.01%)</title><rect x="37.0768%" y="501" width="0.0128%" height="15" fill="rgb(206,33,13)" fg:x="860122" fg:w="296"/><text x="37.3268%" y="511.50"></text></g><g><title>_raw_spin_lock (377 samples, 0.02%)</title><rect x="37.1311%" y="453" width="0.0163%" height="15" fill="rgb(242,178,17)" fg:x="861380" fg:w="377"/><text x="37.3811%" y="463.50"></text></g><g><title>_cond_resched (277 samples, 0.01%)</title><rect x="37.2021%" y="405" width="0.0119%" height="15" fill="rgb(220,162,5)" fg:x="863028" fg:w="277"/><text x="37.4521%" y="415.50"></text></g><g><title>alloc_extent_state (1,558 samples, 0.07%)</title><rect x="37.1473%" y="453" width="0.0672%" height="15" fill="rgb(210,33,43)" fg:x="861757" fg:w="1558"/><text x="37.3973%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,309 samples, 0.06%)</title><rect x="37.1580%" y="437" width="0.0564%" height="15" fill="rgb(216,116,54)" fg:x="862006" fg:w="1309"/><text x="37.4080%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (517 samples, 0.02%)</title><rect x="37.1922%" y="421" width="0.0223%" height="15" fill="rgb(249,92,24)" fg:x="862798" fg:w="517"/><text x="37.4422%" y="431.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (3,878 samples, 0.17%)</title><rect x="37.0896%" y="501" width="0.1672%" height="15" fill="rgb(231,189,14)" fg:x="860418" fg:w="3878"/><text x="37.3396%" y="511.50"></text></g><g><title>clear_extent_bit (3,353 samples, 0.14%)</title><rect x="37.1122%" y="485" width="0.1445%" height="15" fill="rgb(230,8,41)" fg:x="860943" fg:w="3353"/><text x="37.3622%" y="495.50"></text></g><g><title>__clear_extent_bit (3,311 samples, 0.14%)</title><rect x="37.1140%" y="469" width="0.1427%" height="15" fill="rgb(249,7,27)" fg:x="860985" fg:w="3311"/><text x="37.3640%" y="479.50"></text></g><g><title>kmem_cache_free (751 samples, 0.03%)</title><rect x="37.2244%" y="453" width="0.0324%" height="15" fill="rgb(232,86,5)" fg:x="863545" fg:w="751"/><text x="37.4744%" y="463.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (921 samples, 0.04%)</title><rect x="37.2568%" y="501" width="0.0397%" height="15" fill="rgb(224,175,18)" fg:x="864296" fg:w="921"/><text x="37.5068%" y="511.50"></text></g><g><title>find_contiguous_extent_bit (290 samples, 0.01%)</title><rect x="37.2840%" y="485" width="0.0125%" height="15" fill="rgb(220,129,12)" fg:x="864927" fg:w="290"/><text x="37.5340%" y="495.50"></text></g><g><title>__btrfs_kill_delayed_node (354 samples, 0.02%)</title><rect x="37.3059%" y="485" width="0.0153%" height="15" fill="rgb(210,19,36)" fg:x="865435" fg:w="354"/><text x="37.5559%" y="495.50"></text></g><g><title>mutex_lock (233 samples, 0.01%)</title><rect x="37.3111%" y="469" width="0.0100%" height="15" fill="rgb(219,96,14)" fg:x="865556" fg:w="233"/><text x="37.5611%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (519 samples, 0.02%)</title><rect x="37.3214%" y="485" width="0.0224%" height="15" fill="rgb(249,106,1)" fg:x="865796" fg:w="519"/><text x="37.5714%" y="495.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,268 samples, 0.05%)</title><rect x="37.2965%" y="501" width="0.0547%" height="15" fill="rgb(249,155,20)" fg:x="865217" fg:w="1268"/><text x="37.5465%" y="511.50"></text></g><g><title>_raw_read_lock (753 samples, 0.03%)</title><rect x="37.5313%" y="453" width="0.0325%" height="15" fill="rgb(244,168,9)" fg:x="870664" fg:w="753"/><text x="37.7813%" y="463.50"></text></g><g><title>finish_wait (5,416 samples, 0.23%)</title><rect x="37.5669%" y="453" width="0.2335%" height="15" fill="rgb(216,23,50)" fg:x="871492" fg:w="5416"/><text x="37.8169%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (5,150 samples, 0.22%)</title><rect x="37.5784%" y="437" width="0.2220%" height="15" fill="rgb(224,219,20)" fg:x="871758" fg:w="5150"/><text x="37.8284%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,937 samples, 0.21%)</title><rect x="37.5876%" y="421" width="0.2128%" height="15" fill="rgb(222,156,15)" fg:x="871971" fg:w="4937"/><text x="37.8376%" y="431.50"></text></g><g><title>__list_add_valid (308 samples, 0.01%)</title><rect x="37.8404%" y="437" width="0.0133%" height="15" fill="rgb(231,97,17)" fg:x="877835" fg:w="308"/><text x="38.0904%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (13,419 samples, 0.58%)</title><rect x="37.8537%" y="437" width="0.5784%" height="15" fill="rgb(218,70,48)" fg:x="878143" fg:w="13419"/><text x="38.1037%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (12,759 samples, 0.55%)</title><rect x="37.8821%" y="421" width="0.5500%" height="15" fill="rgb(212,196,52)" fg:x="878803" fg:w="12759"/><text x="38.1321%" y="431.50"></text></g><g><title>prepare_to_wait_event (14,859 samples, 0.64%)</title><rect x="37.8007%" y="453" width="0.6405%" height="15" fill="rgb(243,203,18)" fg:x="876915" fg:w="14859"/><text x="38.0507%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (13,330 samples, 0.57%)</title><rect x="38.4412%" y="453" width="0.5746%" height="15" fill="rgb(252,125,41)" fg:x="891774" fg:w="13330"/><text x="38.6912%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,844 samples, 0.42%)</title><rect x="38.5915%" y="437" width="0.4243%" height="15" fill="rgb(223,180,33)" fg:x="895260" fg:w="9844"/><text x="38.8415%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (408 samples, 0.02%)</title><rect x="39.0488%" y="421" width="0.0176%" height="15" fill="rgb(254,159,46)" fg:x="905868" fg:w="408"/><text x="39.2988%" y="431.50"></text></g><g><title>update_curr (800 samples, 0.03%)</title><rect x="39.1101%" y="389" width="0.0345%" height="15" fill="rgb(254,38,10)" fg:x="907290" fg:w="800"/><text x="39.3601%" y="399.50"></text></g><g><title>dequeue_entity (2,083 samples, 0.09%)</title><rect x="39.0834%" y="405" width="0.0898%" height="15" fill="rgb(208,217,32)" fg:x="906672" fg:w="2083"/><text x="39.3334%" y="415.50"></text></g><g><title>update_load_avg (665 samples, 0.03%)</title><rect x="39.1446%" y="389" width="0.0287%" height="15" fill="rgb(221,120,13)" fg:x="908090" fg:w="665"/><text x="39.3946%" y="399.50"></text></g><g><title>dequeue_task_fair (2,535 samples, 0.11%)</title><rect x="39.0707%" y="421" width="0.1093%" height="15" fill="rgb(246,54,52)" fg:x="906376" fg:w="2535"/><text x="39.3207%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (5,610 samples, 0.24%)</title><rect x="39.2003%" y="405" width="0.2418%" height="15" fill="rgb(242,34,25)" fg:x="909383" fg:w="5610"/><text x="39.4503%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,500 samples, 0.24%)</title><rect x="39.2050%" y="389" width="0.2371%" height="15" fill="rgb(247,209,9)" fg:x="909493" fg:w="5500"/><text x="39.4550%" y="399.50"></text></g><g><title>native_write_msr (5,462 samples, 0.24%)</title><rect x="39.2067%" y="373" width="0.2354%" height="15" fill="rgb(228,71,26)" fg:x="909531" fg:w="5462"/><text x="39.4567%" y="383.50"></text></g><g><title>finish_task_switch (6,324 samples, 0.27%)</title><rect x="39.1800%" y="421" width="0.2726%" height="15" fill="rgb(222,145,49)" fg:x="908911" fg:w="6324"/><text x="39.4300%" y="431.50"></text></g><g><title>pick_next_task_fair (431 samples, 0.02%)</title><rect x="39.4527%" y="421" width="0.0186%" height="15" fill="rgb(218,121,17)" fg:x="915239" fg:w="431"/><text x="39.7027%" y="431.50"></text></g><g><title>__update_idle_core (322 samples, 0.01%)</title><rect x="39.4745%" y="405" width="0.0139%" height="15" fill="rgb(244,50,7)" fg:x="915743" fg:w="322"/><text x="39.7245%" y="415.50"></text></g><g><title>pick_next_task_idle (396 samples, 0.02%)</title><rect x="39.4713%" y="421" width="0.0171%" height="15" fill="rgb(246,229,37)" fg:x="915670" fg:w="396"/><text x="39.7213%" y="431.50"></text></g><g><title>psi_task_change (1,788 samples, 0.08%)</title><rect x="39.4884%" y="421" width="0.0771%" height="15" fill="rgb(225,18,5)" fg:x="916066" fg:w="1788"/><text x="39.7384%" y="431.50"></text></g><g><title>psi_group_change (1,528 samples, 0.07%)</title><rect x="39.4996%" y="405" width="0.0659%" height="15" fill="rgb(213,204,8)" fg:x="916326" fg:w="1528"/><text x="39.7496%" y="415.50"></text></g><g><title>record_times (333 samples, 0.01%)</title><rect x="39.5511%" y="389" width="0.0144%" height="15" fill="rgb(238,103,6)" fg:x="917521" fg:w="333"/><text x="39.8011%" y="399.50"></text></g><g><title>__schedule (13,258 samples, 0.57%)</title><rect x="39.0205%" y="437" width="0.5715%" height="15" fill="rgb(222,25,35)" fg:x="905212" fg:w="13258"/><text x="39.2705%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (48,748 samples, 2.10%)</title><rect x="37.4907%" y="469" width="2.1014%" height="15" fill="rgb(213,203,35)" fg:x="869723" fg:w="48748"/><text x="37.7407%" y="479.50">_..</text></g><g><title>schedule (13,367 samples, 0.58%)</title><rect x="39.0158%" y="453" width="0.5762%" height="15" fill="rgb(221,79,53)" fg:x="905104" fg:w="13367"/><text x="39.2658%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (50,106 samples, 2.16%)</title><rect x="37.4843%" y="485" width="2.1599%" height="15" fill="rgb(243,200,35)" fg:x="869575" fg:w="50106"/><text x="37.7343%" y="495.50">_..</text></g><g><title>btrfs_root_node (1,210 samples, 0.05%)</title><rect x="39.5920%" y="469" width="0.0522%" height="15" fill="rgb(248,60,25)" fg:x="918471" fg:w="1210"/><text x="39.8420%" y="479.50"></text></g><g><title>prepare_to_wait_event (319 samples, 0.01%)</title><rect x="39.6524%" y="469" width="0.0138%" height="15" fill="rgb(227,53,46)" fg:x="919870" fg:w="319"/><text x="39.9024%" y="479.50"></text></g><g><title>update_curr (265 samples, 0.01%)</title><rect x="39.6959%" y="405" width="0.0114%" height="15" fill="rgb(216,120,32)" fg:x="920881" fg:w="265"/><text x="39.9459%" y="415.50"></text></g><g><title>dequeue_entity (677 samples, 0.03%)</title><rect x="39.6874%" y="421" width="0.0292%" height="15" fill="rgb(220,134,1)" fg:x="920683" fg:w="677"/><text x="39.9374%" y="431.50"></text></g><g><title>dequeue_task_fair (817 samples, 0.04%)</title><rect x="39.6835%" y="437" width="0.0352%" height="15" fill="rgb(237,168,5)" fg:x="920593" fg:w="817"/><text x="39.9335%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (1,771 samples, 0.08%)</title><rect x="39.7253%" y="421" width="0.0763%" height="15" fill="rgb(231,100,33)" fg:x="921562" fg:w="1771"/><text x="39.9753%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,755 samples, 0.08%)</title><rect x="39.7260%" y="405" width="0.0757%" height="15" fill="rgb(236,177,47)" fg:x="921578" fg:w="1755"/><text x="39.9760%" y="415.50"></text></g><g><title>native_write_msr (1,740 samples, 0.08%)</title><rect x="39.7266%" y="389" width="0.0750%" height="15" fill="rgb(235,7,49)" fg:x="921593" fg:w="1740"/><text x="39.9766%" y="399.50"></text></g><g><title>finish_task_switch (1,975 samples, 0.09%)</title><rect x="39.7187%" y="437" width="0.0851%" height="15" fill="rgb(232,119,22)" fg:x="921410" fg:w="1975"/><text x="39.9687%" y="447.50"></text></g><g><title>psi_task_change (549 samples, 0.02%)</title><rect x="39.8155%" y="437" width="0.0237%" height="15" fill="rgb(254,73,53)" fg:x="923654" fg:w="549"/><text x="40.0655%" y="447.50"></text></g><g><title>psi_group_change (469 samples, 0.02%)</title><rect x="39.8189%" y="421" width="0.0202%" height="15" fill="rgb(251,35,20)" fg:x="923734" fg:w="469"/><text x="40.0689%" y="431.50"></text></g><g><title>__btrfs_tree_lock (4,713 samples, 0.20%)</title><rect x="39.6442%" y="485" width="0.2032%" height="15" fill="rgb(241,119,20)" fg:x="919681" fg:w="4713"/><text x="39.8942%" y="495.50"></text></g><g><title>schedule (4,205 samples, 0.18%)</title><rect x="39.6661%" y="469" width="0.1813%" height="15" fill="rgb(207,102,14)" fg:x="920189" fg:w="4205"/><text x="39.9161%" y="479.50"></text></g><g><title>__schedule (4,159 samples, 0.18%)</title><rect x="39.6681%" y="453" width="0.1793%" height="15" fill="rgb(248,201,50)" fg:x="920235" fg:w="4159"/><text x="39.9181%" y="463.50"></text></g><g><title>__btrfs_cow_block (289 samples, 0.01%)</title><rect x="39.8639%" y="469" width="0.0125%" height="15" fill="rgb(222,185,44)" fg:x="924777" fg:w="289"/><text x="40.1139%" y="479.50"></text></g><g><title>btrfs_cow_block (292 samples, 0.01%)</title><rect x="39.8638%" y="485" width="0.0126%" height="15" fill="rgb(218,107,18)" fg:x="924775" fg:w="292"/><text x="40.1138%" y="495.50"></text></g><g><title>_cond_resched (274 samples, 0.01%)</title><rect x="39.9310%" y="453" width="0.0118%" height="15" fill="rgb(237,177,39)" fg:x="926335" fg:w="274"/><text x="40.1810%" y="463.50"></text></g><g><title>_raw_write_lock (694 samples, 0.03%)</title><rect x="39.9454%" y="453" width="0.0299%" height="15" fill="rgb(246,69,6)" fg:x="926669" fg:w="694"/><text x="40.1954%" y="463.50"></text></g><g><title>finish_wait (4,404 samples, 0.19%)</title><rect x="39.9757%" y="453" width="0.1898%" height="15" fill="rgb(234,208,37)" fg:x="927370" fg:w="4404"/><text x="40.2257%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (4,150 samples, 0.18%)</title><rect x="39.9866%" y="437" width="0.1789%" height="15" fill="rgb(225,4,6)" fg:x="927624" fg:w="4150"/><text x="40.2366%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,884 samples, 0.17%)</title><rect x="39.9981%" y="421" width="0.1674%" height="15" fill="rgb(233,45,0)" fg:x="927890" fg:w="3884"/><text x="40.2481%" y="431.50"></text></g><g><title>__list_add_valid (351 samples, 0.02%)</title><rect x="40.2164%" y="437" width="0.0151%" height="15" fill="rgb(226,136,5)" fg:x="932954" fg:w="351"/><text x="40.4664%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (11,123 samples, 0.48%)</title><rect x="40.2315%" y="437" width="0.4795%" height="15" fill="rgb(211,91,47)" fg:x="933305" fg:w="11123"/><text x="40.4815%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,217 samples, 0.44%)</title><rect x="40.2705%" y="421" width="0.4404%" height="15" fill="rgb(242,88,51)" fg:x="934211" fg:w="10217"/><text x="40.5205%" y="431.50"></text></g><g><title>prepare_to_wait_event (12,880 samples, 0.56%)</title><rect x="40.1676%" y="453" width="0.5552%" height="15" fill="rgb(230,91,28)" fg:x="931822" fg:w="12880"/><text x="40.4176%" y="463.50"></text></g><g><title>_raw_spin_unlock_irqrestore (274 samples, 0.01%)</title><rect x="40.7110%" y="437" width="0.0118%" height="15" fill="rgb(254,186,29)" fg:x="944428" fg:w="274"/><text x="40.9610%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (19,383 samples, 0.84%)</title><rect x="40.7228%" y="453" width="0.8355%" height="15" fill="rgb(238,6,4)" fg:x="944702" fg:w="19383"/><text x="40.9728%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,775 samples, 0.42%)</title><rect x="41.1369%" y="437" width="0.4214%" height="15" fill="rgb(221,151,16)" fg:x="954310" fg:w="9775"/><text x="41.3869%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (495 samples, 0.02%)</title><rect x="41.5971%" y="421" width="0.0213%" height="15" fill="rgb(251,143,52)" fg:x="964986" fg:w="495"/><text x="41.8471%" y="431.50"></text></g><g><title>update_cfs_group (318 samples, 0.01%)</title><rect x="41.6661%" y="389" width="0.0137%" height="15" fill="rgb(206,90,15)" fg:x="966585" fg:w="318"/><text x="41.9161%" y="399.50"></text></g><g><title>update_curr (986 samples, 0.04%)</title><rect x="41.6798%" y="389" width="0.0425%" height="15" fill="rgb(218,35,8)" fg:x="966903" fg:w="986"/><text x="41.9298%" y="399.50"></text></g><g><title>__update_load_avg_cfs_rq (234 samples, 0.01%)</title><rect x="41.7366%" y="373" width="0.0101%" height="15" fill="rgb(239,215,6)" fg:x="968222" fg:w="234"/><text x="41.9866%" y="383.50"></text></g><g><title>__update_load_avg_se (253 samples, 0.01%)</title><rect x="41.7467%" y="373" width="0.0109%" height="15" fill="rgb(245,116,39)" fg:x="968456" fg:w="253"/><text x="41.9967%" y="383.50"></text></g><g><title>dequeue_entity (2,727 samples, 0.12%)</title><rect x="41.6409%" y="405" width="0.1176%" height="15" fill="rgb(242,65,28)" fg:x="966001" fg:w="2727"/><text x="41.8909%" y="415.50"></text></g><g><title>update_load_avg (839 samples, 0.04%)</title><rect x="41.7223%" y="389" width="0.0362%" height="15" fill="rgb(252,132,53)" fg:x="967889" fg:w="839"/><text x="41.9723%" y="399.50"></text></g><g><title>dequeue_task_fair (3,281 samples, 0.14%)</title><rect x="41.6261%" y="421" width="0.1414%" height="15" fill="rgb(224,159,50)" fg:x="965658" fg:w="3281"/><text x="41.8761%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (5,779 samples, 0.25%)</title><rect x="41.7935%" y="405" width="0.2491%" height="15" fill="rgb(224,93,4)" fg:x="969540" fg:w="5779"/><text x="42.0435%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,608 samples, 0.24%)</title><rect x="41.8008%" y="389" width="0.2417%" height="15" fill="rgb(208,81,34)" fg:x="969711" fg:w="5608"/><text x="42.0508%" y="399.50"></text></g><g><title>native_write_msr (5,562 samples, 0.24%)</title><rect x="41.8028%" y="373" width="0.2398%" height="15" fill="rgb(233,92,54)" fg:x="969757" fg:w="5562"/><text x="42.0528%" y="383.50"></text></g><g><title>finish_task_switch (6,600 samples, 0.28%)</title><rect x="41.7675%" y="421" width="0.2845%" height="15" fill="rgb(237,21,14)" fg:x="968939" fg:w="6600"/><text x="42.0175%" y="431.50"></text></g><g><title>newidle_balance (313 samples, 0.01%)</title><rect x="42.0589%" y="405" width="0.0135%" height="15" fill="rgb(249,128,51)" fg:x="975698" fg:w="313"/><text x="42.3089%" y="415.50"></text></g><g><title>pick_next_task_fair (582 samples, 0.03%)</title><rect x="42.0523%" y="421" width="0.0251%" height="15" fill="rgb(223,129,24)" fg:x="975544" fg:w="582"/><text x="42.3023%" y="431.50"></text></g><g><title>__update_idle_core (531 samples, 0.02%)</title><rect x="42.0810%" y="405" width="0.0229%" height="15" fill="rgb(231,168,25)" fg:x="976211" fg:w="531"/><text x="42.3310%" y="415.50"></text></g><g><title>pick_next_task_idle (620 samples, 0.03%)</title><rect x="42.0774%" y="421" width="0.0267%" height="15" fill="rgb(224,39,20)" fg:x="976126" fg:w="620"/><text x="42.3274%" y="431.50"></text></g><g><title>psi_task_change (2,487 samples, 0.11%)</title><rect x="42.1041%" y="421" width="0.1072%" height="15" fill="rgb(225,152,53)" fg:x="976746" fg:w="2487"/><text x="42.3541%" y="431.50"></text></g><g><title>psi_group_change (2,132 samples, 0.09%)</title><rect x="42.1194%" y="405" width="0.0919%" height="15" fill="rgb(252,17,24)" fg:x="977101" fg:w="2132"/><text x="42.3694%" y="415.50"></text></g><g><title>record_times (583 samples, 0.03%)</title><rect x="42.1862%" y="389" width="0.0251%" height="15" fill="rgb(250,114,30)" fg:x="978650" fg:w="583"/><text x="42.4362%" y="399.50"></text></g><g><title>sched_clock_cpu (392 samples, 0.02%)</title><rect x="42.1944%" y="373" width="0.0169%" height="15" fill="rgb(229,5,4)" fg:x="978841" fg:w="392"/><text x="42.4444%" y="383.50"></text></g><g><title>sched_clock (345 samples, 0.01%)</title><rect x="42.1964%" y="357" width="0.0149%" height="15" fill="rgb(225,176,49)" fg:x="978888" fg:w="345"/><text x="42.4464%" y="367.50"></text></g><g><title>native_sched_clock (333 samples, 0.01%)</title><rect x="42.1969%" y="341" width="0.0144%" height="15" fill="rgb(224,221,49)" fg:x="978900" fg:w="333"/><text x="42.4469%" y="351.50"></text></g><g><title>__schedule (15,696 samples, 0.68%)</title><rect x="41.5652%" y="437" width="0.6766%" height="15" fill="rgb(253,169,27)" fg:x="964244" fg:w="15696"/><text x="41.8152%" y="447.50"></text></g><g><title>update_rq_clock (262 samples, 0.01%)</title><rect x="42.2305%" y="421" width="0.0113%" height="15" fill="rgb(211,206,16)" fg:x="979678" fg:w="262"/><text x="42.4805%" y="431.50"></text></g><g><title>__btrfs_tree_lock (54,814 samples, 2.36%)</title><rect x="39.8790%" y="469" width="2.3628%" height="15" fill="rgb(244,87,35)" fg:x="925127" fg:w="54814"/><text x="40.1290%" y="479.50">__..</text></g><g><title>schedule (15,856 samples, 0.68%)</title><rect x="41.5583%" y="453" width="0.6835%" height="15" fill="rgb(246,28,10)" fg:x="964085" fg:w="15856"/><text x="41.8083%" y="463.50"></text></g><g><title>btrfs_lock_root_node (55,445 samples, 2.39%)</title><rect x="39.8764%" y="485" width="2.3900%" height="15" fill="rgb(229,12,44)" fg:x="925067" fg:w="55445"/><text x="40.1264%" y="495.50">bt..</text></g><g><title>btrfs_root_node (571 samples, 0.02%)</title><rect x="42.2418%" y="469" width="0.0246%" height="15" fill="rgb(210,145,37)" fg:x="979941" fg:w="571"/><text x="42.4918%" y="479.50"></text></g><g><title>btrfs_set_path_blocking (1,197 samples, 0.05%)</title><rect x="42.2664%" y="485" width="0.0516%" height="15" fill="rgb(227,112,52)" fg:x="980512" fg:w="1197"/><text x="42.5164%" y="495.50"></text></g><g><title>btrfs_set_lock_blocking_write (433 samples, 0.02%)</title><rect x="42.2994%" y="469" width="0.0187%" height="15" fill="rgb(238,155,34)" fg:x="981276" fg:w="433"/><text x="42.5494%" y="479.50"></text></g><g><title>btrfs_tree_read_unlock (581 samples, 0.03%)</title><rect x="42.3181%" y="485" width="0.0250%" height="15" fill="rgb(239,226,36)" fg:x="981710" fg:w="581"/><text x="42.5681%" y="495.50"></text></g><g><title>_raw_write_lock (319 samples, 0.01%)</title><rect x="42.3497%" y="469" width="0.0138%" height="15" fill="rgb(230,16,23)" fg:x="982443" fg:w="319"/><text x="42.5997%" y="479.50"></text></g><g><title>btrfs_try_tree_write_lock (3,142 samples, 0.14%)</title><rect x="42.3431%" y="485" width="0.1354%" height="15" fill="rgb(236,171,36)" fg:x="982291" fg:w="3142"/><text x="42.5931%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (2,671 samples, 0.12%)</title><rect x="42.3634%" y="469" width="0.1151%" height="15" fill="rgb(221,22,14)" fg:x="982762" fg:w="2671"/><text x="42.6134%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (662 samples, 0.03%)</title><rect x="42.4791%" y="485" width="0.0285%" height="15" fill="rgb(242,43,11)" fg:x="985445" fg:w="662"/><text x="42.7291%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (4,595 samples, 0.20%)</title><rect x="42.5076%" y="485" width="0.1981%" height="15" fill="rgb(232,69,23)" fg:x="986107" fg:w="4595"/><text x="42.7576%" y="495.50"></text></g><g><title>btrfs_buffer_uptodate (575 samples, 0.02%)</title><rect x="42.7340%" y="469" width="0.0248%" height="15" fill="rgb(216,180,54)" fg:x="991360" fg:w="575"/><text x="42.9840%" y="479.50"></text></g><g><title>verify_parent_transid (451 samples, 0.02%)</title><rect x="42.7394%" y="453" width="0.0194%" height="15" fill="rgb(216,5,24)" fg:x="991484" fg:w="451"/><text x="42.9894%" y="463.50"></text></g><g><title>btrfs_get_64 (871 samples, 0.04%)</title><rect x="42.7588%" y="469" width="0.0375%" height="15" fill="rgb(225,89,9)" fg:x="991935" fg:w="871"/><text x="43.0088%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (251 samples, 0.01%)</title><rect x="42.7855%" y="453" width="0.0108%" height="15" fill="rgb(243,75,33)" fg:x="992555" fg:w="251"/><text x="43.0355%" y="463.50"></text></g><g><title>btrfs_verify_level_key (293 samples, 0.01%)</title><rect x="42.7998%" y="469" width="0.0126%" height="15" fill="rgb(247,141,45)" fg:x="992886" fg:w="293"/><text x="43.0498%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,393 samples, 0.10%)</title><rect x="42.8586%" y="453" width="0.1032%" height="15" fill="rgb(232,177,36)" fg:x="994250" fg:w="2393"/><text x="43.1086%" y="463.50"></text></g><g><title>mark_page_accessed (891 samples, 0.04%)</title><rect x="42.9749%" y="437" width="0.0384%" height="15" fill="rgb(219,125,36)" fg:x="996948" fg:w="891"/><text x="43.2249%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (1,266 samples, 0.05%)</title><rect x="42.9619%" y="453" width="0.0546%" height="15" fill="rgb(227,94,9)" fg:x="996646" fg:w="1266"/><text x="43.2119%" y="463.50"></text></g><g><title>find_extent_buffer (4,769 samples, 0.21%)</title><rect x="42.8124%" y="469" width="0.2056%" height="15" fill="rgb(240,34,52)" fg:x="993179" fg:w="4769"/><text x="43.0624%" y="479.50"></text></g><g><title>read_block_for_search.isra.0 (7,994 samples, 0.34%)</title><rect x="42.7057%" y="485" width="0.3446%" height="15" fill="rgb(216,45,12)" fg:x="990702" fg:w="7994"/><text x="42.9557%" y="495.50"></text></g><g><title>read_extent_buffer (748 samples, 0.03%)</title><rect x="43.0180%" y="469" width="0.0322%" height="15" fill="rgb(246,21,19)" fg:x="997948" fg:w="748"/><text x="43.2680%" y="479.50"></text></g><g><title>btrfs_get_64 (258 samples, 0.01%)</title><rect x="43.0632%" y="469" width="0.0111%" height="15" fill="rgb(213,98,42)" fg:x="998996" fg:w="258"/><text x="43.3132%" y="479.50"></text></g><g><title>__radix_tree_lookup (687 samples, 0.03%)</title><rect x="43.0979%" y="453" width="0.0296%" height="15" fill="rgb(250,136,47)" fg:x="999801" fg:w="687"/><text x="43.3479%" y="463.50"></text></g><g><title>mark_page_accessed (244 samples, 0.01%)</title><rect x="43.1324%" y="437" width="0.0105%" height="15" fill="rgb(251,124,27)" fg:x="1000601" fg:w="244"/><text x="43.3824%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (354 samples, 0.02%)</title><rect x="43.1277%" y="453" width="0.0153%" height="15" fill="rgb(229,180,14)" fg:x="1000492" fg:w="354"/><text x="43.3777%" y="463.50"></text></g><g><title>find_extent_buffer (1,598 samples, 0.07%)</title><rect x="43.0743%" y="469" width="0.0689%" height="15" fill="rgb(245,216,25)" fg:x="999254" fg:w="1598"/><text x="43.3243%" y="479.50"></text></g><g><title>reada_for_balance (2,308 samples, 0.10%)</title><rect x="43.0503%" y="485" width="0.0995%" height="15" fill="rgb(251,43,5)" fg:x="998696" fg:w="2308"/><text x="43.3003%" y="495.50"></text></g><g><title>__list_del_entry_valid (446 samples, 0.02%)</title><rect x="43.2123%" y="421" width="0.0192%" height="15" fill="rgb(250,128,24)" fg:x="1002454" fg:w="446"/><text x="43.4623%" y="431.50"></text></g><g><title>_raw_spin_lock (570 samples, 0.02%)</title><rect x="43.4300%" y="405" width="0.0246%" height="15" fill="rgb(217,117,27)" fg:x="1007506" fg:w="570"/><text x="43.6800%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (322 samples, 0.01%)</title><rect x="43.4407%" y="389" width="0.0139%" height="15" fill="rgb(245,147,4)" fg:x="1007754" fg:w="322"/><text x="43.6907%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (739 samples, 0.03%)</title><rect x="43.4546%" y="405" width="0.0319%" height="15" fill="rgb(242,201,35)" fg:x="1008076" fg:w="739"/><text x="43.7046%" y="415.50"></text></g><g><title>available_idle_cpu (602 samples, 0.03%)</title><rect x="43.5449%" y="389" width="0.0260%" height="15" fill="rgb(218,181,1)" fg:x="1010171" fg:w="602"/><text x="43.7949%" y="399.50"></text></g><g><title>select_task_rq_fair (2,893 samples, 0.12%)</title><rect x="43.4907%" y="405" width="0.1247%" height="15" fill="rgb(222,6,29)" fg:x="1008913" fg:w="2893"/><text x="43.7407%" y="415.50"></text></g><g><title>update_cfs_rq_h_load (672 samples, 0.03%)</title><rect x="43.5864%" y="389" width="0.0290%" height="15" fill="rgb(208,186,3)" fg:x="1011134" fg:w="672"/><text x="43.8364%" y="399.50"></text></g><g><title>set_task_cpu (262 samples, 0.01%)</title><rect x="43.6154%" y="405" width="0.0113%" height="15" fill="rgb(216,36,26)" fg:x="1011806" fg:w="262"/><text x="43.8654%" y="415.50"></text></g><g><title>update_cfs_group (240 samples, 0.01%)</title><rect x="43.7180%" y="357" width="0.0103%" height="15" fill="rgb(248,201,23)" fg:x="1014186" fg:w="240"/><text x="43.9680%" y="367.50"></text></g><g><title>update_curr (328 samples, 0.01%)</title><rect x="43.7283%" y="357" width="0.0141%" height="15" fill="rgb(251,170,31)" fg:x="1014426" fg:w="328"/><text x="43.9783%" y="367.50"></text></g><g><title>__update_load_avg_cfs_rq (252 samples, 0.01%)</title><rect x="43.7608%" y="341" width="0.0109%" height="15" fill="rgb(207,110,25)" fg:x="1015179" fg:w="252"/><text x="44.0108%" y="351.50"></text></g><g><title>enqueue_entity (2,692 samples, 0.12%)</title><rect x="43.6652%" y="373" width="0.1160%" height="15" fill="rgb(250,54,15)" fg:x="1012962" fg:w="2692"/><text x="43.9152%" y="383.50"></text></g><g><title>update_load_avg (900 samples, 0.04%)</title><rect x="43.7425%" y="357" width="0.0388%" height="15" fill="rgb(227,68,33)" fg:x="1014754" fg:w="900"/><text x="43.9925%" y="367.50"></text></g><g><title>enqueue_task_fair (3,461 samples, 0.15%)</title><rect x="43.6409%" y="389" width="0.1492%" height="15" fill="rgb(238,34,41)" fg:x="1012398" fg:w="3461"/><text x="43.8909%" y="399.50"></text></g><g><title>ttwu_do_activate (7,404 samples, 0.32%)</title><rect x="43.6267%" y="405" width="0.3192%" height="15" fill="rgb(220,11,15)" fg:x="1012068" fg:w="7404"/><text x="43.8767%" y="415.50"></text></g><g><title>psi_task_change (3,607 samples, 0.16%)</title><rect x="43.7904%" y="389" width="0.1555%" height="15" fill="rgb(246,111,35)" fg:x="1015865" fg:w="3607"/><text x="44.0404%" y="399.50"></text></g><g><title>psi_group_change (3,237 samples, 0.14%)</title><rect x="43.8063%" y="373" width="0.1395%" height="15" fill="rgb(209,88,53)" fg:x="1016235" fg:w="3237"/><text x="44.0563%" y="383.50"></text></g><g><title>record_times (518 samples, 0.02%)</title><rect x="43.9235%" y="357" width="0.0223%" height="15" fill="rgb(231,185,47)" fg:x="1018954" fg:w="518"/><text x="44.1735%" y="367.50"></text></g><g><title>sched_clock_cpu (341 samples, 0.01%)</title><rect x="43.9311%" y="341" width="0.0147%" height="15" fill="rgb(233,154,1)" fg:x="1019131" fg:w="341"/><text x="44.1811%" y="351.50"></text></g><g><title>sched_clock (293 samples, 0.01%)</title><rect x="43.9332%" y="325" width="0.0126%" height="15" fill="rgb(225,15,46)" fg:x="1019179" fg:w="293"/><text x="44.1832%" y="335.50"></text></g><g><title>native_sched_clock (266 samples, 0.01%)</title><rect x="43.9344%" y="309" width="0.0115%" height="15" fill="rgb(211,135,41)" fg:x="1019206" fg:w="266"/><text x="44.1844%" y="319.50"></text></g><g><title>resched_curr (312 samples, 0.01%)</title><rect x="43.9631%" y="373" width="0.0134%" height="15" fill="rgb(208,54,0)" fg:x="1019872" fg:w="312"/><text x="44.2131%" y="383.50"></text></g><g><title>ttwu_do_wakeup (717 samples, 0.03%)</title><rect x="43.9458%" y="405" width="0.0309%" height="15" fill="rgb(244,136,14)" fg:x="1019472" fg:w="717"/><text x="44.1958%" y="415.50"></text></g><g><title>check_preempt_curr (651 samples, 0.03%)</title><rect x="43.9487%" y="389" width="0.0281%" height="15" fill="rgb(241,56,14)" fg:x="1019538" fg:w="651"/><text x="44.1987%" y="399.50"></text></g><g><title>ttwu_queue_wakelist (572 samples, 0.02%)</title><rect x="43.9768%" y="405" width="0.0247%" height="15" fill="rgb(205,80,24)" fg:x="1020189" fg:w="572"/><text x="44.2268%" y="415.50"></text></g><g><title>__wake_up_common (19,323 samples, 0.83%)</title><rect x="43.1940%" y="453" width="0.8329%" height="15" fill="rgb(220,57,4)" fg:x="1002030" fg:w="19323"/><text x="43.4440%" y="463.50"></text></g><g><title>autoremove_wake_function (18,946 samples, 0.82%)</title><rect x="43.2102%" y="437" width="0.8167%" height="15" fill="rgb(226,193,50)" fg:x="1002407" fg:w="18946"/><text x="43.4602%" y="447.50"></text></g><g><title>try_to_wake_up (18,439 samples, 0.79%)</title><rect x="43.2321%" y="421" width="0.7948%" height="15" fill="rgb(231,168,22)" fg:x="1002914" fg:w="18439"/><text x="43.4821%" y="431.50"></text></g><g><title>update_rq_clock (592 samples, 0.03%)</title><rect x="44.0014%" y="405" width="0.0255%" height="15" fill="rgb(254,215,14)" fg:x="1020761" fg:w="592"/><text x="44.2514%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (2,821 samples, 0.12%)</title><rect x="44.0269%" y="453" width="0.1216%" height="15" fill="rgb(211,115,16)" fg:x="1021353" fg:w="2821"/><text x="44.2769%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,637 samples, 0.11%)</title><rect x="44.0349%" y="437" width="0.1137%" height="15" fill="rgb(236,210,16)" fg:x="1021537" fg:w="2637"/><text x="44.2849%" y="447.50"></text></g><g><title>__wake_up_common_lock (22,375 samples, 0.96%)</title><rect x="43.1912%" y="469" width="0.9645%" height="15" fill="rgb(221,94,12)" fg:x="1001965" fg:w="22375"/><text x="43.4412%" y="479.50"></text></g><g><title>btrfs_search_slot (158,281 samples, 6.82%)</title><rect x="37.3568%" y="501" width="6.8229%" height="15" fill="rgb(235,218,49)" fg:x="866616" fg:w="158281"/><text x="37.6068%" y="511.50">btrfs_sea..</text></g><g><title>unlock_up (23,829 samples, 1.03%)</title><rect x="43.1525%" y="485" width="1.0272%" height="15" fill="rgb(217,114,14)" fg:x="1001068" fg:w="23829"/><text x="43.4025%" y="495.50"></text></g><g><title>btrfs_tree_unlock (552 samples, 0.02%)</title><rect x="44.1559%" y="469" width="0.0238%" height="15" fill="rgb(216,145,22)" fg:x="1024345" fg:w="552"/><text x="44.4059%" y="479.50"></text></g><g><title>_raw_spin_lock (440 samples, 0.02%)</title><rect x="44.1892%" y="485" width="0.0190%" height="15" fill="rgb(217,112,39)" fg:x="1025117" fg:w="440"/><text x="44.4392%" y="495.50"></text></g><g><title>inode_sub_bytes (661 samples, 0.03%)</title><rect x="44.1797%" y="501" width="0.0285%" height="15" fill="rgb(225,85,32)" fg:x="1024897" fg:w="661"/><text x="44.4297%" y="511.50"></text></g><g><title>kmem_cache_alloc (858 samples, 0.04%)</title><rect x="44.2082%" y="501" width="0.0370%" height="15" fill="rgb(245,209,47)" fg:x="1025558" fg:w="858"/><text x="44.4582%" y="511.50"></text></g><g><title>kmem_cache_free (672 samples, 0.03%)</title><rect x="44.2452%" y="501" width="0.0290%" height="15" fill="rgb(218,220,15)" fg:x="1026416" fg:w="672"/><text x="44.4952%" y="511.50"></text></g><g><title>_raw_spin_lock (289 samples, 0.01%)</title><rect x="44.3214%" y="469" width="0.0125%" height="15" fill="rgb(222,202,31)" fg:x="1028185" fg:w="289"/><text x="44.5714%" y="479.50"></text></g><g><title>alloc_extent_state (1,626 samples, 0.07%)</title><rect x="44.3339%" y="469" width="0.0701%" height="15" fill="rgb(243,203,4)" fg:x="1028474" fg:w="1626"/><text x="44.5839%" y="479.50"></text></g><g><title>kmem_cache_alloc (1,145 samples, 0.05%)</title><rect x="44.3546%" y="453" width="0.0494%" height="15" fill="rgb(237,92,17)" fg:x="1028955" fg:w="1145"/><text x="44.6046%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (252 samples, 0.01%)</title><rect x="44.3931%" y="437" width="0.0109%" height="15" fill="rgb(231,119,7)" fg:x="1029848" fg:w="252"/><text x="44.6431%" y="447.50"></text></g><g><title>cache_state_if_flags (430 samples, 0.02%)</title><rect x="44.4042%" y="469" width="0.0185%" height="15" fill="rgb(237,82,41)" fg:x="1030106" fg:w="430"/><text x="44.6542%" y="479.50"></text></g><g><title>lock_extent_bits (5,024 samples, 0.22%)</title><rect x="44.2741%" y="501" width="0.2166%" height="15" fill="rgb(226,81,48)" fg:x="1027088" fg:w="5024"/><text x="44.5241%" y="511.50"></text></g><g><title>__set_extent_bit (4,773 samples, 0.21%)</title><rect x="44.2850%" y="485" width="0.2057%" height="15" fill="rgb(234,70,51)" fg:x="1027339" fg:w="4773"/><text x="44.5350%" y="495.50"></text></g><g><title>insert_state (1,576 samples, 0.07%)</title><rect x="44.4228%" y="469" width="0.0679%" height="15" fill="rgb(251,86,4)" fg:x="1030536" fg:w="1576"/><text x="44.6728%" y="479.50"></text></g><g><title>set_state_bits (1,006 samples, 0.04%)</title><rect x="44.4473%" y="453" width="0.0434%" height="15" fill="rgb(244,144,28)" fg:x="1031106" fg:w="1006"/><text x="44.6973%" y="463.50"></text></g><g><title>btrfs_set_delalloc_extent (460 samples, 0.02%)</title><rect x="44.4709%" y="437" width="0.0198%" height="15" fill="rgb(232,161,39)" fg:x="1031652" fg:w="460"/><text x="44.7209%" y="447.50"></text></g><g><title>btrfs_truncate_inode_items (235,665 samples, 10.16%)</title><rect x="34.3658%" y="517" width="10.1587%" height="15" fill="rgb(247,34,51)" fg:x="797230" fg:w="235665"/><text x="34.6158%" y="527.50">btrfs_truncate_..</text></g><g><title>read_extent_buffer (783 samples, 0.03%)</title><rect x="44.4907%" y="501" width="0.0338%" height="15" fill="rgb(225,132,2)" fg:x="1032112" fg:w="783"/><text x="44.7407%" y="511.50"></text></g><g><title>__clear_extent_bit (321 samples, 0.01%)</title><rect x="44.5250%" y="501" width="0.0138%" height="15" fill="rgb(209,159,44)" fg:x="1032907" fg:w="321"/><text x="44.7750%" y="511.50"></text></g><g><title>clear_extent_bit (334 samples, 0.01%)</title><rect x="44.5245%" y="517" width="0.0144%" height="15" fill="rgb(251,214,1)" fg:x="1032895" fg:w="334"/><text x="44.7745%" y="527.50"></text></g><g><title>btrfs_block_rsv_migrate (1,344 samples, 0.06%)</title><rect x="44.5544%" y="501" width="0.0579%" height="15" fill="rgb(247,84,47)" fg:x="1033590" fg:w="1344"/><text x="44.8044%" y="511.50"></text></g><g><title>_raw_spin_lock (1,178 samples, 0.05%)</title><rect x="44.5616%" y="485" width="0.0508%" height="15" fill="rgb(240,111,43)" fg:x="1033756" fg:w="1178"/><text x="44.8116%" y="495.50"></text></g><g><title>_raw_spin_lock (400 samples, 0.02%)</title><rect x="44.6293%" y="485" width="0.0172%" height="15" fill="rgb(215,214,35)" fg:x="1035328" fg:w="400"/><text x="44.8793%" y="495.50"></text></g><g><title>btrfs_block_rsv_add_bytes (631 samples, 0.03%)</title><rect x="44.6468%" y="485" width="0.0272%" height="15" fill="rgb(248,207,23)" fg:x="1035733" fg:w="631"/><text x="44.8968%" y="495.50"></text></g><g><title>_raw_spin_lock (387 samples, 0.02%)</title><rect x="44.6573%" y="469" width="0.0167%" height="15" fill="rgb(214,186,4)" fg:x="1035977" fg:w="387"/><text x="44.9073%" y="479.50"></text></g><g><title>_raw_spin_lock (1,297 samples, 0.06%)</title><rect x="44.7357%" y="453" width="0.0559%" height="15" fill="rgb(220,133,22)" fg:x="1037796" fg:w="1297"/><text x="44.9857%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (605 samples, 0.03%)</title><rect x="44.7656%" y="437" width="0.0261%" height="15" fill="rgb(239,134,19)" fg:x="1038488" fg:w="605"/><text x="45.0156%" y="447.50"></text></g><g><title>btrfs_get_alloc_profile (481 samples, 0.02%)</title><rect x="44.8666%" y="437" width="0.0207%" height="15" fill="rgb(250,140,9)" fg:x="1040831" fg:w="481"/><text x="45.1166%" y="447.50"></text></g><g><title>_raw_spin_lock (708 samples, 0.03%)</title><rect x="44.9341%" y="421" width="0.0305%" height="15" fill="rgb(225,59,14)" fg:x="1042397" fg:w="708"/><text x="45.1841%" y="431.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (4,012 samples, 0.17%)</title><rect x="44.7919%" y="453" width="0.1729%" height="15" fill="rgb(214,152,51)" fg:x="1039098" fg:w="4012"/><text x="45.0419%" y="463.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,798 samples, 0.08%)</title><rect x="44.8873%" y="437" width="0.0775%" height="15" fill="rgb(251,227,43)" fg:x="1041312" fg:w="1798"/><text x="45.1373%" y="447.50"></text></g><g><title>btrfs_get_alloc_profile (603 samples, 0.03%)</title><rect x="44.9948%" y="437" width="0.0260%" height="15" fill="rgb(241,96,17)" fg:x="1043805" fg:w="603"/><text x="45.2448%" y="447.50"></text></g><g><title>_raw_spin_lock (624 samples, 0.03%)</title><rect x="45.0439%" y="421" width="0.0269%" height="15" fill="rgb(234,198,43)" fg:x="1044946" fg:w="624"/><text x="45.2939%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (10,639 samples, 0.46%)</title><rect x="44.6124%" y="501" width="0.4586%" height="15" fill="rgb(220,108,29)" fg:x="1034934" fg:w="10639"/><text x="44.8624%" y="511.50"></text></g><g><title>btrfs_reserve_metadata_bytes (9,209 samples, 0.40%)</title><rect x="44.6740%" y="485" width="0.3970%" height="15" fill="rgb(226,163,33)" fg:x="1036364" fg:w="9209"/><text x="44.9240%" y="495.50"></text></g><g><title>__reserve_bytes (8,988 samples, 0.39%)</title><rect x="44.6835%" y="469" width="0.3874%" height="15" fill="rgb(205,194,45)" fg:x="1036585" fg:w="8988"/><text x="44.9335%" y="479.50"></text></g><g><title>calc_available_free_space.isra.0 (2,463 samples, 0.11%)</title><rect x="44.9648%" y="453" width="0.1062%" height="15" fill="rgb(206,143,44)" fg:x="1043110" fg:w="2463"/><text x="45.2148%" y="463.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,165 samples, 0.05%)</title><rect x="45.0207%" y="437" width="0.0502%" height="15" fill="rgb(236,136,36)" fg:x="1044408" fg:w="1165"/><text x="45.2707%" y="447.50"></text></g><g><title>btrfs_join_transaction (242 samples, 0.01%)</title><rect x="45.0710%" y="501" width="0.0104%" height="15" fill="rgb(249,172,42)" fg:x="1045573" fg:w="242"/><text x="45.3210%" y="511.50"></text></g><g><title>_raw_spin_lock (1,109 samples, 0.05%)</title><rect x="45.1995%" y="469" width="0.0478%" height="15" fill="rgb(216,139,23)" fg:x="1048554" fg:w="1109"/><text x="45.4495%" y="479.50"></text></g><g><title>join_transaction (2,252 samples, 0.10%)</title><rect x="45.1504%" y="485" width="0.0971%" height="15" fill="rgb(207,166,20)" fg:x="1047415" fg:w="2252"/><text x="45.4004%" y="495.50"></text></g><g><title>memset_erms (343 samples, 0.01%)</title><rect x="45.2878%" y="469" width="0.0148%" height="15" fill="rgb(210,209,22)" fg:x="1050603" fg:w="343"/><text x="45.5378%" y="479.50"></text></g><g><title>_cond_resched (240 samples, 0.01%)</title><rect x="45.3117%" y="453" width="0.0103%" height="15" fill="rgb(232,118,20)" fg:x="1051158" fg:w="240"/><text x="45.5617%" y="463.50"></text></g><g><title>evict_refill_and_join (18,193 samples, 0.78%)</title><rect x="44.5389%" y="517" width="0.7842%" height="15" fill="rgb(238,113,42)" fg:x="1033229" fg:w="18193"/><text x="44.7889%" y="527.50"></text></g><g><title>start_transaction (5,607 samples, 0.24%)</title><rect x="45.0814%" y="501" width="0.2417%" height="15" fill="rgb(231,42,5)" fg:x="1045815" fg:w="5607"/><text x="45.3314%" y="511.50"></text></g><g><title>kmem_cache_alloc (1,755 samples, 0.08%)</title><rect x="45.2474%" y="485" width="0.0757%" height="15" fill="rgb(243,166,24)" fg:x="1049667" fg:w="1755"/><text x="45.4974%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (476 samples, 0.02%)</title><rect x="45.3026%" y="469" width="0.0205%" height="15" fill="rgb(237,226,12)" fg:x="1050946" fg:w="476"/><text x="45.5526%" y="479.50"></text></g><g><title>kfree (1,438 samples, 0.06%)</title><rect x="45.3258%" y="517" width="0.0620%" height="15" fill="rgb(229,133,24)" fg:x="1051484" fg:w="1438"/><text x="45.5758%" y="527.50"></text></g><g><title>__slab_free (552 samples, 0.02%)</title><rect x="45.4245%" y="501" width="0.0238%" height="15" fill="rgb(238,33,43)" fg:x="1053775" fg:w="552"/><text x="45.6745%" y="511.50"></text></g><g><title>kmem_cache_free (1,883 samples, 0.08%)</title><rect x="45.3878%" y="517" width="0.0812%" height="15" fill="rgb(227,59,38)" fg:x="1052922" fg:w="1883"/><text x="45.6378%" y="527.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (375 samples, 0.02%)</title><rect x="45.4528%" y="501" width="0.0162%" height="15" fill="rgb(230,97,0)" fg:x="1054430" fg:w="375"/><text x="45.7028%" y="511.50"></text></g><g><title>truncate_inode_pages_final (644 samples, 0.03%)</title><rect x="45.4817%" y="517" width="0.0278%" height="15" fill="rgb(250,173,50)" fg:x="1055102" fg:w="644"/><text x="45.7317%" y="527.50"></text></g><g><title>__pagevec_release (796 samples, 0.03%)</title><rect x="45.5187%" y="501" width="0.0343%" height="15" fill="rgb(240,15,50)" fg:x="1055959" fg:w="796"/><text x="45.7687%" y="511.50"></text></g><g><title>release_pages (501 samples, 0.02%)</title><rect x="45.5314%" y="485" width="0.0216%" height="15" fill="rgb(221,93,22)" fg:x="1056254" fg:w="501"/><text x="45.7814%" y="495.50"></text></g><g><title>delete_from_page_cache_batch (336 samples, 0.01%)</title><rect x="45.5536%" y="501" width="0.0145%" height="15" fill="rgb(245,180,53)" fg:x="1056769" fg:w="336"/><text x="45.8036%" y="511.50"></text></g><g><title>btrfs_evict_inode (662,913 samples, 28.58%)</title><rect x="17.0121%" y="533" width="28.5758%" height="15" fill="rgb(231,88,51)" fg:x="394652" fg:w="662913"/><text x="17.2621%" y="543.50">btrfs_evict_inode</text></g><g><title>truncate_inode_pages_range (1,819 samples, 0.08%)</title><rect x="45.5095%" y="517" width="0.0784%" height="15" fill="rgb(240,58,21)" fg:x="1055746" fg:w="1819"/><text x="45.7595%" y="527.50"></text></g><g><title>clear_inode (565 samples, 0.02%)</title><rect x="45.5879%" y="533" width="0.0244%" height="15" fill="rgb(237,21,10)" fg:x="1057565" fg:w="565"/><text x="45.8379%" y="543.50"></text></g><g><title>_raw_spin_lock_irq (399 samples, 0.02%)</title><rect x="45.5951%" y="517" width="0.0172%" height="15" fill="rgb(218,43,11)" fg:x="1057731" fg:w="399"/><text x="45.8451%" y="527.50"></text></g><g><title>inode_wait_for_writeback (439 samples, 0.02%)</title><rect x="45.6123%" y="533" width="0.0189%" height="15" fill="rgb(218,221,29)" fg:x="1058130" fg:w="439"/><text x="45.8623%" y="543.50"></text></g><g><title>_raw_spin_lock (327 samples, 0.01%)</title><rect x="45.6171%" y="517" width="0.0141%" height="15" fill="rgb(214,118,42)" fg:x="1058242" fg:w="327"/><text x="45.8671%" y="527.50"></text></g><g><title>evict (667,226 samples, 28.76%)</title><rect x="16.8760%" y="549" width="28.7618%" height="15" fill="rgb(251,200,26)" fg:x="391495" fg:w="667226"/><text x="17.1260%" y="559.50">evict</text></g><g><title>__legitimize_mnt (523 samples, 0.02%)</title><rect x="45.7207%" y="469" width="0.0225%" height="15" fill="rgb(237,101,39)" fg:x="1060645" fg:w="523"/><text x="45.9707%" y="479.50"></text></g><g><title>__legitimize_path (1,037 samples, 0.04%)</title><rect x="45.7084%" y="485" width="0.0447%" height="15" fill="rgb(251,117,11)" fg:x="1060360" fg:w="1037"/><text x="45.9584%" y="495.50"></text></g><g><title>legitimize_links (359 samples, 0.02%)</title><rect x="45.7532%" y="485" width="0.0155%" height="15" fill="rgb(216,223,23)" fg:x="1061399" fg:w="359"/><text x="46.0032%" y="495.50"></text></g><g><title>complete_walk (2,175 samples, 0.09%)</title><rect x="45.6778%" y="517" width="0.0938%" height="15" fill="rgb(251,54,12)" fg:x="1059650" fg:w="2175"/><text x="45.9278%" y="527.50"></text></g><g><title>try_to_unlazy (1,870 samples, 0.08%)</title><rect x="45.6909%" y="501" width="0.0806%" height="15" fill="rgb(254,176,54)" fg:x="1059955" fg:w="1870"/><text x="45.9409%" y="511.50"></text></g><g><title>inode_permission.part.0 (1,256 samples, 0.05%)</title><rect x="45.7960%" y="501" width="0.0541%" height="15" fill="rgb(210,32,8)" fg:x="1062392" fg:w="1256"/><text x="46.0460%" y="511.50"></text></g><g><title>generic_permission (547 samples, 0.02%)</title><rect x="45.8265%" y="485" width="0.0236%" height="15" fill="rgb(235,52,38)" fg:x="1063101" fg:w="547"/><text x="46.0765%" y="495.50"></text></g><g><title>link_path_walk.part.0 (1,908 samples, 0.08%)</title><rect x="45.7715%" y="517" width="0.0822%" height="15" fill="rgb(231,4,44)" fg:x="1061825" fg:w="1908"/><text x="46.0215%" y="527.50"></text></g><g><title>__fget_files (1,185 samples, 0.05%)</title><rect x="45.9137%" y="485" width="0.0511%" height="15" fill="rgb(249,2,32)" fg:x="1065122" fg:w="1185"/><text x="46.1637%" y="495.50"></text></g><g><title>__fget_light (1,739 samples, 0.07%)</title><rect x="45.8899%" y="501" width="0.0750%" height="15" fill="rgb(224,65,26)" fg:x="1064570" fg:w="1739"/><text x="46.1399%" y="511.50"></text></g><g><title>path_init (2,726 samples, 0.12%)</title><rect x="45.8538%" y="517" width="0.1175%" height="15" fill="rgb(250,73,40)" fg:x="1063733" fg:w="2726"/><text x="46.1038%" y="527.50"></text></g><g><title>filename_parentat (8,716 samples, 0.38%)</title><rect x="45.6377%" y="549" width="0.3757%" height="15" fill="rgb(253,177,16)" fg:x="1058721" fg:w="8716"/><text x="45.8877%" y="559.50"></text></g><g><title>path_parentat (8,012 samples, 0.35%)</title><rect x="45.6681%" y="533" width="0.3454%" height="15" fill="rgb(217,32,34)" fg:x="1059425" fg:w="8012"/><text x="45.9181%" y="543.50"></text></g><g><title>terminate_walk (978 samples, 0.04%)</title><rect x="45.9713%" y="517" width="0.0422%" height="15" fill="rgb(212,7,10)" fg:x="1066459" fg:w="978"/><text x="46.2213%" y="527.50"></text></g><g><title>ihold (989 samples, 0.04%)</title><rect x="46.0134%" y="549" width="0.0426%" height="15" fill="rgb(245,89,8)" fg:x="1067437" fg:w="989"/><text x="46.2634%" y="559.50"></text></g><g><title>_atomic_dec_and_lock (343 samples, 0.01%)</title><rect x="46.0777%" y="533" width="0.0148%" height="15" fill="rgb(237,16,53)" fg:x="1068928" fg:w="343"/><text x="46.3277%" y="543.50"></text></g><g><title>iput.part.0 (1,090 samples, 0.05%)</title><rect x="46.0565%" y="549" width="0.0470%" height="15" fill="rgb(250,204,30)" fg:x="1068435" fg:w="1090"/><text x="46.3065%" y="559.50"></text></g><g><title>btrfs_drop_inode (252 samples, 0.01%)</title><rect x="46.0926%" y="533" width="0.0109%" height="15" fill="rgb(208,77,27)" fg:x="1069273" fg:w="252"/><text x="46.3426%" y="543.50"></text></g><g><title>__slab_free (232 samples, 0.01%)</title><rect x="46.1304%" y="533" width="0.0100%" height="15" fill="rgb(250,204,28)" fg:x="1070150" fg:w="232"/><text x="46.3804%" y="543.50"></text></g><g><title>kmem_cache_free (1,260 samples, 0.05%)</title><rect x="46.1035%" y="549" width="0.0543%" height="15" fill="rgb(244,63,21)" fg:x="1069525" fg:w="1260"/><text x="46.3535%" y="559.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (399 samples, 0.02%)</title><rect x="46.1406%" y="533" width="0.0172%" height="15" fill="rgb(236,85,44)" fg:x="1070386" fg:w="399"/><text x="46.3906%" y="543.50"></text></g><g><title>mnt_drop_write (681 samples, 0.03%)</title><rect x="46.1578%" y="549" width="0.0294%" height="15" fill="rgb(215,98,4)" fg:x="1070785" fg:w="681"/><text x="46.4078%" y="559.50"></text></g><g><title>__mnt_want_write (539 samples, 0.02%)</title><rect x="46.2031%" y="533" width="0.0232%" height="15" fill="rgb(235,38,11)" fg:x="1071837" fg:w="539"/><text x="46.4531%" y="543.50"></text></g><g><title>mnt_want_write (1,034 samples, 0.04%)</title><rect x="46.1871%" y="549" width="0.0446%" height="15" fill="rgb(254,186,25)" fg:x="1071466" fg:w="1034"/><text x="46.4371%" y="559.50"></text></g><g><title>putname (691 samples, 0.03%)</title><rect x="46.2466%" y="549" width="0.0298%" height="15" fill="rgb(225,55,31)" fg:x="1072846" fg:w="691"/><text x="46.4966%" y="559.50"></text></g><g><title>apparmor_path_unlink (388 samples, 0.02%)</title><rect x="46.2800%" y="533" width="0.0167%" height="15" fill="rgb(211,15,21)" fg:x="1073620" fg:w="388"/><text x="46.5300%" y="543.50"></text></g><g><title>security_path_unlink (1,814 samples, 0.08%)</title><rect x="46.2764%" y="549" width="0.0782%" height="15" fill="rgb(215,187,41)" fg:x="1073538" fg:w="1814"/><text x="46.5264%" y="559.50"></text></g><g><title>tomoyo_path_unlink (1,342 samples, 0.06%)</title><rect x="46.2968%" y="533" width="0.0578%" height="15" fill="rgb(248,69,32)" fg:x="1074010" fg:w="1342"/><text x="46.5468%" y="543.50"></text></g><g><title>tomoyo_path_perm (1,304 samples, 0.06%)</title><rect x="46.2984%" y="517" width="0.0562%" height="15" fill="rgb(252,102,52)" fg:x="1074048" fg:w="1304"/><text x="46.5484%" y="527.50"></text></g><g><title>tomoyo_init_request_info (945 samples, 0.04%)</title><rect x="46.3139%" y="501" width="0.0407%" height="15" fill="rgb(253,140,32)" fg:x="1074407" fg:w="945"/><text x="46.5639%" y="511.50"></text></g><g><title>tomoyo_domain (573 samples, 0.02%)</title><rect x="46.3299%" y="485" width="0.0247%" height="15" fill="rgb(216,56,42)" fg:x="1074779" fg:w="573"/><text x="46.5799%" y="495.50"></text></g><g><title>_raw_spin_lock (322 samples, 0.01%)</title><rect x="46.3848%" y="533" width="0.0139%" height="15" fill="rgb(216,184,14)" fg:x="1076051" fg:w="322"/><text x="46.6348%" y="543.50"></text></g><g><title>_raw_spin_lock (1,657 samples, 0.07%)</title><rect x="46.5558%" y="469" width="0.0714%" height="15" fill="rgb(237,187,27)" fg:x="1080018" fg:w="1657"/><text x="46.8058%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (598 samples, 0.03%)</title><rect x="46.6014%" y="453" width="0.0258%" height="15" fill="rgb(219,65,3)" fg:x="1081077" fg:w="598"/><text x="46.8514%" y="463.50"></text></g><g><title>btrfs_trans_release_metadata (2,686 samples, 0.12%)</title><rect x="46.5185%" y="501" width="0.1158%" height="15" fill="rgb(245,83,25)" fg:x="1079154" fg:w="2686"/><text x="46.7685%" y="511.50"></text></g><g><title>btrfs_block_rsv_release (2,506 samples, 0.11%)</title><rect x="46.5263%" y="485" width="0.1080%" height="15" fill="rgb(214,205,45)" fg:x="1079334" fg:w="2506"/><text x="46.7763%" y="495.50"></text></g><g><title>__btrfs_end_transaction (5,740 samples, 0.25%)</title><rect x="46.4225%" y="517" width="0.2474%" height="15" fill="rgb(241,20,18)" fg:x="1076926" fg:w="5740"/><text x="46.6725%" y="527.50"></text></g><g><title>kmem_cache_free (826 samples, 0.04%)</title><rect x="46.6343%" y="501" width="0.0356%" height="15" fill="rgb(232,163,23)" fg:x="1081840" fg:w="826"/><text x="46.8843%" y="511.50"></text></g><g><title>btrfs_end_log_trans (284 samples, 0.01%)</title><rect x="46.7843%" y="485" width="0.0122%" height="15" fill="rgb(214,5,46)" fg:x="1085319" fg:w="284"/><text x="47.0343%" y="495.50"></text></g><g><title>ttwu_do_activate (414 samples, 0.02%)</title><rect x="46.8517%" y="389" width="0.0178%" height="15" fill="rgb(229,78,17)" fg:x="1086884" fg:w="414"/><text x="47.1017%" y="399.50"></text></g><g><title>__wake_up_common (1,581 samples, 0.07%)</title><rect x="46.8069%" y="437" width="0.0682%" height="15" fill="rgb(248,89,10)" fg:x="1085844" fg:w="1581"/><text x="47.0569%" y="447.50"></text></g><g><title>autoremove_wake_function (1,538 samples, 0.07%)</title><rect x="46.8088%" y="421" width="0.0663%" height="15" fill="rgb(248,54,15)" fg:x="1085887" fg:w="1538"/><text x="47.0588%" y="431.50"></text></g><g><title>try_to_wake_up (1,523 samples, 0.07%)</title><rect x="46.8094%" y="405" width="0.0657%" height="15" fill="rgb(223,116,6)" fg:x="1085902" fg:w="1523"/><text x="47.0594%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (373 samples, 0.02%)</title><rect x="46.8751%" y="437" width="0.0161%" height="15" fill="rgb(205,125,38)" fg:x="1087425" fg:w="373"/><text x="47.1251%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (349 samples, 0.02%)</title><rect x="46.8761%" y="421" width="0.0150%" height="15" fill="rgb(251,78,38)" fg:x="1087449" fg:w="349"/><text x="47.1261%" y="431.50"></text></g><g><title>__wake_up_common_lock (1,979 samples, 0.09%)</title><rect x="46.8064%" y="453" width="0.0853%" height="15" fill="rgb(253,78,28)" fg:x="1085833" fg:w="1979"/><text x="47.0564%" y="463.50"></text></g><g><title>btrfs_tree_unlock (312 samples, 0.01%)</title><rect x="46.8918%" y="453" width="0.0134%" height="15" fill="rgb(209,120,3)" fg:x="1087813" fg:w="312"/><text x="47.1418%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (272 samples, 0.01%)</title><rect x="46.9053%" y="453" width="0.0117%" height="15" fill="rgb(238,229,9)" fg:x="1088126" fg:w="272"/><text x="47.1553%" y="463.50"></text></g><g><title>btrfs_free_path (3,005 samples, 0.13%)</title><rect x="46.7965%" y="485" width="0.1295%" height="15" fill="rgb(253,159,18)" fg:x="1085603" fg:w="3005"/><text x="47.0465%" y="495.50"></text></g><g><title>btrfs_release_path (2,943 samples, 0.13%)</title><rect x="46.7992%" y="469" width="0.1269%" height="15" fill="rgb(244,42,34)" fg:x="1085665" fg:w="2943"/><text x="47.0492%" y="479.50"></text></g><g><title>finish_wait (233 samples, 0.01%)</title><rect x="46.9848%" y="421" width="0.0100%" height="15" fill="rgb(224,8,7)" fg:x="1089971" fg:w="233"/><text x="47.2348%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (391 samples, 0.02%)</title><rect x="46.9963%" y="405" width="0.0169%" height="15" fill="rgb(210,201,45)" fg:x="1090237" fg:w="391"/><text x="47.2463%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (372 samples, 0.02%)</title><rect x="46.9971%" y="389" width="0.0160%" height="15" fill="rgb(252,185,21)" fg:x="1090256" fg:w="372"/><text x="47.2471%" y="399.50"></text></g><g><title>prepare_to_wait_event (429 samples, 0.02%)</title><rect x="46.9949%" y="421" width="0.0185%" height="15" fill="rgb(223,131,1)" fg:x="1090204" fg:w="429"/><text x="47.2449%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (1,220 samples, 0.05%)</title><rect x="46.9717%" y="437" width="0.0526%" height="15" fill="rgb(245,141,16)" fg:x="1089667" fg:w="1220"/><text x="47.2217%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (1,521 samples, 0.07%)</title><rect x="46.9698%" y="453" width="0.0656%" height="15" fill="rgb(229,55,45)" fg:x="1089623" fg:w="1521"/><text x="47.2198%" y="463.50"></text></g><g><title>btrfs_root_node (257 samples, 0.01%)</title><rect x="47.0243%" y="437" width="0.0111%" height="15" fill="rgb(208,92,15)" fg:x="1090887" fg:w="257"/><text x="47.2743%" y="447.50"></text></g><g><title>finish_wait (241 samples, 0.01%)</title><rect x="47.0655%" y="421" width="0.0104%" height="15" fill="rgb(234,185,47)" fg:x="1091844" fg:w="241"/><text x="47.3155%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (235 samples, 0.01%)</title><rect x="47.0658%" y="405" width="0.0101%" height="15" fill="rgb(253,104,50)" fg:x="1091850" fg:w="235"/><text x="47.3158%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (606 samples, 0.03%)</title><rect x="47.0778%" y="405" width="0.0261%" height="15" fill="rgb(205,70,7)" fg:x="1092128" fg:w="606"/><text x="47.3278%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (571 samples, 0.02%)</title><rect x="47.0793%" y="389" width="0.0246%" height="15" fill="rgb(240,178,43)" fg:x="1092163" fg:w="571"/><text x="47.3293%" y="399.50"></text></g><g><title>prepare_to_wait_event (658 samples, 0.03%)</title><rect x="47.0760%" y="421" width="0.0284%" height="15" fill="rgb(214,112,2)" fg:x="1092086" fg:w="658"/><text x="47.3260%" y="431.50"></text></g><g><title>__btrfs_tree_lock (1,842 samples, 0.08%)</title><rect x="47.0468%" y="437" width="0.0794%" height="15" fill="rgb(206,46,17)" fg:x="1091408" fg:w="1842"/><text x="47.2968%" y="447.50"></text></g><g><title>schedule (318 samples, 0.01%)</title><rect x="47.1124%" y="421" width="0.0137%" height="15" fill="rgb(225,220,16)" fg:x="1092932" fg:w="318"/><text x="47.3624%" y="431.50"></text></g><g><title>__schedule (312 samples, 0.01%)</title><rect x="47.1127%" y="405" width="0.0134%" height="15" fill="rgb(238,65,40)" fg:x="1092938" fg:w="312"/><text x="47.3627%" y="415.50"></text></g><g><title>btrfs_lock_root_node (2,073 samples, 0.09%)</title><rect x="47.0455%" y="453" width="0.0894%" height="15" fill="rgb(230,151,21)" fg:x="1091380" fg:w="2073"/><text x="47.2955%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (429 samples, 0.02%)</title><rect x="47.1349%" y="453" width="0.0185%" height="15" fill="rgb(218,58,49)" fg:x="1093453" fg:w="429"/><text x="47.3849%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (658 samples, 0.03%)</title><rect x="47.1722%" y="453" width="0.0284%" height="15" fill="rgb(219,179,14)" fg:x="1094319" fg:w="658"/><text x="47.4222%" y="463.50"></text></g><g><title>find_extent_buffer (470 samples, 0.02%)</title><rect x="47.2158%" y="437" width="0.0203%" height="15" fill="rgb(223,72,1)" fg:x="1095330" fg:w="470"/><text x="47.4658%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (937 samples, 0.04%)</title><rect x="47.2006%" y="453" width="0.0404%" height="15" fill="rgb(238,126,10)" fg:x="1094977" fg:w="937"/><text x="47.4506%" y="463.50"></text></g><g><title>btrfs_lookup_dir_index_item (7,674 samples, 0.33%)</title><rect x="46.9261%" y="485" width="0.3308%" height="15" fill="rgb(224,206,38)" fg:x="1088608" fg:w="7674"/><text x="47.1761%" y="495.50"></text></g><g><title>btrfs_search_slot (7,437 samples, 0.32%)</title><rect x="46.9363%" y="469" width="0.3206%" height="15" fill="rgb(212,201,54)" fg:x="1088845" fg:w="7437"/><text x="47.1863%" y="479.50"></text></g><g><title>_raw_read_lock (236 samples, 0.01%)</title><rect x="47.3210%" y="421" width="0.0102%" height="15" fill="rgb(218,154,48)" fg:x="1097771" fg:w="236"/><text x="47.5710%" y="431.50"></text></g><g><title>finish_wait (583 samples, 0.03%)</title><rect x="47.3315%" y="421" width="0.0251%" height="15" fill="rgb(232,93,24)" fg:x="1098014" fg:w="583"/><text x="47.5815%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (566 samples, 0.02%)</title><rect x="47.3322%" y="405" width="0.0244%" height="15" fill="rgb(245,30,21)" fg:x="1098031" fg:w="566"/><text x="47.5822%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (533 samples, 0.02%)</title><rect x="47.3337%" y="389" width="0.0230%" height="15" fill="rgb(242,148,29)" fg:x="1098064" fg:w="533"/><text x="47.5837%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,330 samples, 0.06%)</title><rect x="47.3619%" y="405" width="0.0573%" height="15" fill="rgb(244,153,54)" fg:x="1098720" fg:w="1330"/><text x="47.6119%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,273 samples, 0.05%)</title><rect x="47.3644%" y="389" width="0.0549%" height="15" fill="rgb(252,87,22)" fg:x="1098777" fg:w="1273"/><text x="47.6144%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,470 samples, 0.06%)</title><rect x="47.3567%" y="421" width="0.0634%" height="15" fill="rgb(210,51,29)" fg:x="1098599" fg:w="1470"/><text x="47.6067%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (3,443 samples, 0.15%)</title><rect x="47.3141%" y="437" width="0.1484%" height="15" fill="rgb(242,136,47)" fg:x="1097611" fg:w="3443"/><text x="47.5641%" y="447.50"></text></g><g><title>schedule (820 samples, 0.04%)</title><rect x="47.4272%" y="421" width="0.0353%" height="15" fill="rgb(238,68,4)" fg:x="1100234" fg:w="820"/><text x="47.6772%" y="431.50"></text></g><g><title>__schedule (797 samples, 0.03%)</title><rect x="47.4282%" y="405" width="0.0344%" height="15" fill="rgb(242,161,30)" fg:x="1100257" fg:w="797"/><text x="47.6782%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (3,865 samples, 0.17%)</title><rect x="47.3118%" y="453" width="0.1666%" height="15" fill="rgb(218,58,44)" fg:x="1097556" fg:w="3865"/><text x="47.5618%" y="463.50"></text></g><g><title>btrfs_root_node (366 samples, 0.02%)</title><rect x="47.4626%" y="437" width="0.0158%" height="15" fill="rgb(252,125,32)" fg:x="1101055" fg:w="366"/><text x="47.7126%" y="447.50"></text></g><g><title>finish_wait (336 samples, 0.01%)</title><rect x="47.5077%" y="421" width="0.0145%" height="15" fill="rgb(219,178,0)" fg:x="1102101" fg:w="336"/><text x="47.7577%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (323 samples, 0.01%)</title><rect x="47.5083%" y="405" width="0.0139%" height="15" fill="rgb(213,152,7)" fg:x="1102114" fg:w="323"/><text x="47.7583%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (303 samples, 0.01%)</title><rect x="47.5091%" y="389" width="0.0131%" height="15" fill="rgb(249,109,34)" fg:x="1102134" fg:w="303"/><text x="47.7591%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (788 samples, 0.03%)</title><rect x="47.5251%" y="405" width="0.0340%" height="15" fill="rgb(232,96,21)" fg:x="1102504" fg:w="788"/><text x="47.7751%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (740 samples, 0.03%)</title><rect x="47.5271%" y="389" width="0.0319%" height="15" fill="rgb(228,27,39)" fg:x="1102552" fg:w="740"/><text x="47.7771%" y="399.50"></text></g><g><title>prepare_to_wait_event (864 samples, 0.04%)</title><rect x="47.5222%" y="421" width="0.0372%" height="15" fill="rgb(211,182,52)" fg:x="1102438" fg:w="864"/><text x="47.7722%" y="431.50"></text></g><g><title>__btrfs_tree_lock (2,110 samples, 0.09%)</title><rect x="47.4913%" y="437" width="0.0910%" height="15" fill="rgb(234,178,38)" fg:x="1101721" fg:w="2110"/><text x="47.7413%" y="447.50"></text></g><g><title>schedule (368 samples, 0.02%)</title><rect x="47.5664%" y="421" width="0.0159%" height="15" fill="rgb(221,111,3)" fg:x="1103463" fg:w="368"/><text x="47.8164%" y="431.50"></text></g><g><title>__schedule (356 samples, 0.02%)</title><rect x="47.5669%" y="405" width="0.0153%" height="15" fill="rgb(228,175,21)" fg:x="1103475" fg:w="356"/><text x="47.8169%" y="415.50"></text></g><g><title>btrfs_lock_root_node (2,322 samples, 0.10%)</title><rect x="47.4900%" y="453" width="0.1001%" height="15" fill="rgb(228,174,43)" fg:x="1101690" fg:w="2322"/><text x="47.7400%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (534 samples, 0.02%)</title><rect x="47.5901%" y="453" width="0.0230%" height="15" fill="rgb(211,191,0)" fg:x="1104012" fg:w="534"/><text x="47.8401%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (747 samples, 0.03%)</title><rect x="47.6330%" y="453" width="0.0322%" height="15" fill="rgb(253,117,3)" fg:x="1105007" fg:w="747"/><text x="47.8830%" y="463.50"></text></g><g><title>__radix_tree_lookup (246 samples, 0.01%)</title><rect x="47.6835%" y="421" width="0.0106%" height="15" fill="rgb(241,127,19)" fg:x="1106180" fg:w="246"/><text x="47.9335%" y="431.50"></text></g><g><title>find_extent_buffer (497 samples, 0.02%)</title><rect x="47.6799%" y="437" width="0.0214%" height="15" fill="rgb(218,103,12)" fg:x="1106096" fg:w="497"/><text x="47.9299%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (937 samples, 0.04%)</title><rect x="47.6652%" y="453" width="0.0404%" height="15" fill="rgb(236,214,43)" fg:x="1105754" fg:w="937"/><text x="47.9152%" y="463.50"></text></g><g><title>btrfs_search_slot (10,445 samples, 0.45%)</title><rect x="47.2715%" y="469" width="0.4502%" height="15" fill="rgb(244,144,19)" fg:x="1096622" fg:w="10445"/><text x="47.5215%" y="479.50"></text></g><g><title>btrfs_lookup_dir_item (11,047 samples, 0.48%)</title><rect x="47.2569%" y="485" width="0.4762%" height="15" fill="rgb(246,188,10)" fg:x="1096282" fg:w="11047"/><text x="47.5069%" y="495.50"></text></g><g><title>crc32c (262 samples, 0.01%)</title><rect x="47.7218%" y="469" width="0.0113%" height="15" fill="rgb(212,193,33)" fg:x="1107067" fg:w="262"/><text x="47.9718%" y="479.50"></text></g><g><title>ttwu_do_activate (378 samples, 0.02%)</title><rect x="47.7888%" y="405" width="0.0163%" height="15" fill="rgb(241,51,29)" fg:x="1108623" fg:w="378"/><text x="48.0388%" y="415.50"></text></g><g><title>__wake_up_common (1,487 samples, 0.06%)</title><rect x="47.7465%" y="453" width="0.0641%" height="15" fill="rgb(211,58,19)" fg:x="1107642" fg:w="1487"/><text x="47.9965%" y="463.50"></text></g><g><title>autoremove_wake_function (1,442 samples, 0.06%)</title><rect x="47.7485%" y="437" width="0.0622%" height="15" fill="rgb(229,111,26)" fg:x="1107687" fg:w="1442"/><text x="47.9985%" y="447.50"></text></g><g><title>try_to_wake_up (1,419 samples, 0.06%)</title><rect x="47.7495%" y="421" width="0.0612%" height="15" fill="rgb(213,115,40)" fg:x="1107710" fg:w="1419"/><text x="47.9995%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (455 samples, 0.02%)</title><rect x="47.8106%" y="453" width="0.0196%" height="15" fill="rgb(209,56,44)" fg:x="1109129" fg:w="455"/><text x="48.0606%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (435 samples, 0.02%)</title><rect x="47.8115%" y="437" width="0.0188%" height="15" fill="rgb(230,108,32)" fg:x="1109149" fg:w="435"/><text x="48.0615%" y="447.50"></text></g><g><title>__wake_up_common_lock (1,970 samples, 0.08%)</title><rect x="47.7461%" y="469" width="0.0849%" height="15" fill="rgb(216,165,31)" fg:x="1107631" fg:w="1970"/><text x="47.9961%" y="479.50"></text></g><g><title>btrfs_tree_unlock (342 samples, 0.01%)</title><rect x="47.8310%" y="469" width="0.0147%" height="15" fill="rgb(218,122,21)" fg:x="1109602" fg:w="342"/><text x="48.0810%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (298 samples, 0.01%)</title><rect x="47.8460%" y="469" width="0.0128%" height="15" fill="rgb(223,224,47)" fg:x="1109950" fg:w="298"/><text x="48.0960%" y="479.50"></text></g><g><title>btrfs_release_path (3,126 samples, 0.13%)</title><rect x="47.7331%" y="485" width="0.1348%" height="15" fill="rgb(238,102,44)" fg:x="1107329" fg:w="3126"/><text x="47.9831%" y="495.50"></text></g><g><title>kmem_cache_alloc (535 samples, 0.02%)</title><rect x="47.8678%" y="485" width="0.0231%" height="15" fill="rgb(236,46,40)" fg:x="1110455" fg:w="535"/><text x="48.1178%" y="495.50"></text></g><g><title>kmem_cache_free (549 samples, 0.02%)</title><rect x="47.8909%" y="485" width="0.0237%" height="15" fill="rgb(247,202,50)" fg:x="1110990" fg:w="549"/><text x="48.1409%" y="495.50"></text></g><g><title>mutex_lock (569 samples, 0.02%)</title><rect x="47.9145%" y="485" width="0.0245%" height="15" fill="rgb(209,99,20)" fg:x="1111539" fg:w="569"/><text x="48.1645%" y="495.50"></text></g><g><title>btrfs_del_dir_entries_in_log (28,132 samples, 1.21%)</title><rect x="46.7424%" y="501" width="1.2127%" height="15" fill="rgb(252,27,34)" fg:x="1084347" fg:w="28132"/><text x="46.9924%" y="511.50"></text></g><g><title>mutex_unlock (371 samples, 0.02%)</title><rect x="47.9391%" y="485" width="0.0160%" height="15" fill="rgb(215,206,23)" fg:x="1112108" fg:w="371"/><text x="48.1891%" y="495.50"></text></g><g><title>select_task_rq_fair (294 samples, 0.01%)</title><rect x="48.1025%" y="373" width="0.0127%" height="15" fill="rgb(212,135,36)" fg:x="1115899" fg:w="294"/><text x="48.3525%" y="383.50"></text></g><g><title>enqueue_entity (331 samples, 0.01%)</title><rect x="48.1207%" y="341" width="0.0143%" height="15" fill="rgb(240,189,1)" fg:x="1116321" fg:w="331"/><text x="48.3707%" y="351.50"></text></g><g><title>enqueue_task_fair (430 samples, 0.02%)</title><rect x="48.1171%" y="357" width="0.0185%" height="15" fill="rgb(242,56,20)" fg:x="1116239" fg:w="430"/><text x="48.3671%" y="367.50"></text></g><g><title>ttwu_do_activate (932 samples, 0.04%)</title><rect x="48.1157%" y="373" width="0.0402%" height="15" fill="rgb(247,132,33)" fg:x="1116205" fg:w="932"/><text x="48.3657%" y="383.50"></text></g><g><title>psi_task_change (468 samples, 0.02%)</title><rect x="48.1357%" y="357" width="0.0202%" height="15" fill="rgb(208,149,11)" fg:x="1116669" fg:w="468"/><text x="48.3857%" y="367.50"></text></g><g><title>psi_group_change (410 samples, 0.02%)</title><rect x="48.1382%" y="341" width="0.0177%" height="15" fill="rgb(211,33,11)" fg:x="1116727" fg:w="410"/><text x="48.3882%" y="351.50"></text></g><g><title>__wake_up_common (3,433 samples, 0.15%)</title><rect x="48.0186%" y="421" width="0.1480%" height="15" fill="rgb(221,29,38)" fg:x="1113953" fg:w="3433"/><text x="48.2686%" y="431.50"></text></g><g><title>autoremove_wake_function (3,325 samples, 0.14%)</title><rect x="48.0232%" y="405" width="0.1433%" height="15" fill="rgb(206,182,49)" fg:x="1114061" fg:w="3325"/><text x="48.2732%" y="415.50"></text></g><g><title>try_to_wake_up (3,269 samples, 0.14%)</title><rect x="48.0257%" y="389" width="0.1409%" height="15" fill="rgb(216,140,1)" fg:x="1114117" fg:w="3269"/><text x="48.2757%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,462 samples, 0.06%)</title><rect x="48.1666%" y="421" width="0.0630%" height="15" fill="rgb(232,57,40)" fg:x="1117386" fg:w="1462"/><text x="48.4166%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,407 samples, 0.06%)</title><rect x="48.1689%" y="405" width="0.0607%" height="15" fill="rgb(224,186,18)" fg:x="1117441" fg:w="1407"/><text x="48.4189%" y="415.50"></text></g><g><title>__wake_up_common_lock (4,950 samples, 0.21%)</title><rect x="48.0176%" y="437" width="0.2134%" height="15" fill="rgb(215,121,11)" fg:x="1113929" fg:w="4950"/><text x="48.2676%" y="447.50"></text></g><g><title>btrfs_tree_unlock (378 samples, 0.02%)</title><rect x="48.2311%" y="437" width="0.0163%" height="15" fill="rgb(245,147,10)" fg:x="1118882" fg:w="378"/><text x="48.4811%" y="447.50"></text></g><g><title>_raw_spin_lock (316 samples, 0.01%)</title><rect x="48.2585%" y="421" width="0.0136%" height="15" fill="rgb(238,153,13)" fg:x="1119519" fg:w="316"/><text x="48.5085%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (557 samples, 0.02%)</title><rect x="48.2482%" y="437" width="0.0240%" height="15" fill="rgb(233,108,0)" fg:x="1119279" fg:w="557"/><text x="48.4982%" y="447.50"></text></g><g><title>btrfs_free_path (6,923 samples, 0.30%)</title><rect x="47.9919%" y="469" width="0.2984%" height="15" fill="rgb(212,157,17)" fg:x="1113334" fg:w="6923"/><text x="48.2419%" y="479.50"></text></g><g><title>btrfs_release_path (6,746 samples, 0.29%)</title><rect x="47.9995%" y="453" width="0.2908%" height="15" fill="rgb(225,213,38)" fg:x="1113511" fg:w="6746"/><text x="48.2495%" y="463.50"></text></g><g><title>release_extent_buffer (421 samples, 0.02%)</title><rect x="48.2722%" y="437" width="0.0181%" height="15" fill="rgb(248,16,11)" fg:x="1119836" fg:w="421"/><text x="48.5222%" y="447.50"></text></g><g><title>_raw_read_lock (441 samples, 0.02%)</title><rect x="48.3943%" y="421" width="0.0190%" height="15" fill="rgb(241,33,4)" fg:x="1122668" fg:w="441"/><text x="48.6443%" y="431.50"></text></g><g><title>finish_wait (712 samples, 0.03%)</title><rect x="48.4137%" y="421" width="0.0307%" height="15" fill="rgb(222,26,43)" fg:x="1123120" fg:w="712"/><text x="48.6637%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (677 samples, 0.03%)</title><rect x="48.4153%" y="405" width="0.0292%" height="15" fill="rgb(243,29,36)" fg:x="1123155" fg:w="677"/><text x="48.6653%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (644 samples, 0.03%)</title><rect x="48.4167%" y="389" width="0.0278%" height="15" fill="rgb(241,9,27)" fg:x="1123188" fg:w="644"/><text x="48.6667%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,775 samples, 0.08%)</title><rect x="48.4510%" y="405" width="0.0765%" height="15" fill="rgb(205,117,26)" fg:x="1123984" fg:w="1775"/><text x="48.7010%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,675 samples, 0.07%)</title><rect x="48.4553%" y="389" width="0.0722%" height="15" fill="rgb(209,80,39)" fg:x="1124084" fg:w="1675"/><text x="48.7053%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,961 samples, 0.08%)</title><rect x="48.4445%" y="421" width="0.0845%" height="15" fill="rgb(239,155,6)" fg:x="1123833" fg:w="1961"/><text x="48.6945%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (330 samples, 0.01%)</title><rect x="48.5290%" y="421" width="0.0142%" height="15" fill="rgb(212,104,12)" fg:x="1125794" fg:w="330"/><text x="48.7790%" y="431.50"></text></g><g><title>dequeue_entity (356 samples, 0.02%)</title><rect x="48.5554%" y="373" width="0.0153%" height="15" fill="rgb(234,204,3)" fg:x="1126405" fg:w="356"/><text x="48.8054%" y="383.50"></text></g><g><title>dequeue_task_fair (418 samples, 0.02%)</title><rect x="48.5532%" y="389" width="0.0180%" height="15" fill="rgb(251,218,7)" fg:x="1126356" fg:w="418"/><text x="48.8032%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (276 samples, 0.01%)</title><rect x="48.5744%" y="373" width="0.0119%" height="15" fill="rgb(221,81,32)" fg:x="1126846" fg:w="276"/><text x="48.8244%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (263 samples, 0.01%)</title><rect x="48.5749%" y="357" width="0.0113%" height="15" fill="rgb(214,152,26)" fg:x="1126859" fg:w="263"/><text x="48.8249%" y="367.50"></text></g><g><title>native_write_msr (255 samples, 0.01%)</title><rect x="48.5753%" y="341" width="0.0110%" height="15" fill="rgb(223,22,3)" fg:x="1126867" fg:w="255"/><text x="48.8253%" y="351.50"></text></g><g><title>finish_task_switch (363 samples, 0.02%)</title><rect x="48.5713%" y="389" width="0.0156%" height="15" fill="rgb(207,174,7)" fg:x="1126774" fg:w="363"/><text x="48.8213%" y="399.50"></text></g><g><title>psi_task_change (343 samples, 0.01%)</title><rect x="48.5924%" y="389" width="0.0148%" height="15" fill="rgb(224,19,52)" fg:x="1127264" fg:w="343"/><text x="48.8424%" y="399.50"></text></g><g><title>psi_group_change (284 samples, 0.01%)</title><rect x="48.5949%" y="373" width="0.0122%" height="15" fill="rgb(228,24,14)" fg:x="1127323" fg:w="284"/><text x="48.8449%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (5,335 samples, 0.23%)</title><rect x="48.3810%" y="437" width="0.2300%" height="15" fill="rgb(230,153,43)" fg:x="1122360" fg:w="5335"/><text x="48.6310%" y="447.50"></text></g><g><title>schedule (1,571 samples, 0.07%)</title><rect x="48.5432%" y="421" width="0.0677%" height="15" fill="rgb(231,106,12)" fg:x="1126124" fg:w="1571"/><text x="48.7932%" y="431.50"></text></g><g><title>__schedule (1,543 samples, 0.07%)</title><rect x="48.5444%" y="405" width="0.0665%" height="15" fill="rgb(215,92,2)" fg:x="1126152" fg:w="1543"/><text x="48.7944%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (6,884 samples, 0.30%)</title><rect x="48.3753%" y="453" width="0.2967%" height="15" fill="rgb(249,143,25)" fg:x="1122227" fg:w="6884"/><text x="48.6253%" y="463.50"></text></g><g><title>btrfs_root_node (1,416 samples, 0.06%)</title><rect x="48.6110%" y="437" width="0.0610%" height="15" fill="rgb(252,7,35)" fg:x="1127695" fg:w="1416"/><text x="48.8610%" y="447.50"></text></g><g><title>balance_level (397 samples, 0.02%)</title><rect x="48.6724%" y="453" width="0.0171%" height="15" fill="rgb(216,69,40)" fg:x="1129120" fg:w="397"/><text x="48.9224%" y="463.50"></text></g><g><title>_raw_write_lock (354 samples, 0.02%)</title><rect x="48.7163%" y="421" width="0.0153%" height="15" fill="rgb(240,36,33)" fg:x="1130138" fg:w="354"/><text x="48.9663%" y="431.50"></text></g><g><title>finish_wait (526 samples, 0.02%)</title><rect x="48.7316%" y="421" width="0.0227%" height="15" fill="rgb(231,128,14)" fg:x="1130493" fg:w="526"/><text x="48.9816%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (514 samples, 0.02%)</title><rect x="48.7321%" y="405" width="0.0222%" height="15" fill="rgb(245,143,14)" fg:x="1130505" fg:w="514"/><text x="48.9821%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (488 samples, 0.02%)</title><rect x="48.7332%" y="389" width="0.0210%" height="15" fill="rgb(222,130,28)" fg:x="1130531" fg:w="488"/><text x="48.9832%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,243 samples, 0.05%)</title><rect x="48.7592%" y="405" width="0.0536%" height="15" fill="rgb(212,10,48)" fg:x="1131133" fg:w="1243"/><text x="49.0092%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,185 samples, 0.05%)</title><rect x="48.7617%" y="389" width="0.0511%" height="15" fill="rgb(254,118,45)" fg:x="1131191" fg:w="1185"/><text x="49.0117%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,371 samples, 0.06%)</title><rect x="48.7544%" y="421" width="0.0591%" height="15" fill="rgb(228,6,45)" fg:x="1131023" fg:w="1371"/><text x="49.0044%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (303 samples, 0.01%)</title><rect x="48.8135%" y="421" width="0.0131%" height="15" fill="rgb(241,18,35)" fg:x="1132394" fg:w="303"/><text x="49.0635%" y="431.50"></text></g><g><title>__btrfs_tree_lock (3,693 samples, 0.16%)</title><rect x="48.6978%" y="437" width="0.1592%" height="15" fill="rgb(227,214,53)" fg:x="1129710" fg:w="3693"/><text x="48.9478%" y="447.50"></text></g><g><title>schedule (706 samples, 0.03%)</title><rect x="48.8266%" y="421" width="0.0304%" height="15" fill="rgb(224,107,51)" fg:x="1132697" fg:w="706"/><text x="49.0766%" y="431.50"></text></g><g><title>__schedule (694 samples, 0.03%)</title><rect x="48.8271%" y="405" width="0.0299%" height="15" fill="rgb(248,60,28)" fg:x="1132709" fg:w="694"/><text x="49.0771%" y="415.50"></text></g><g><title>btrfs_lock_root_node (4,143 samples, 0.18%)</title><rect x="48.6951%" y="453" width="0.1786%" height="15" fill="rgb(249,101,23)" fg:x="1129648" fg:w="4143"/><text x="48.9451%" y="463.50"></text></g><g><title>btrfs_root_node (387 samples, 0.02%)</title><rect x="48.8571%" y="437" width="0.0167%" height="15" fill="rgb(228,51,19)" fg:x="1133404" fg:w="387"/><text x="49.1071%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (252 samples, 0.01%)</title><rect x="48.8737%" y="453" width="0.0109%" height="15" fill="rgb(213,20,6)" fg:x="1133791" fg:w="252"/><text x="49.1237%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (334 samples, 0.01%)</title><rect x="48.8846%" y="453" width="0.0144%" height="15" fill="rgb(212,124,10)" fg:x="1134043" fg:w="334"/><text x="49.1346%" y="463.50"></text></g><g><title>_raw_spin_lock (286 samples, 0.01%)</title><rect x="48.9127%" y="437" width="0.0123%" height="15" fill="rgb(248,3,40)" fg:x="1134696" fg:w="286"/><text x="49.1627%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (453 samples, 0.02%)</title><rect x="48.9056%" y="453" width="0.0195%" height="15" fill="rgb(223,178,23)" fg:x="1134530" fg:w="453"/><text x="49.1556%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (1,643 samples, 0.07%)</title><rect x="48.9251%" y="453" width="0.0708%" height="15" fill="rgb(240,132,45)" fg:x="1134983" fg:w="1643"/><text x="49.1751%" y="463.50"></text></g><g><title>__radix_tree_lookup (691 samples, 0.03%)</title><rect x="49.0453%" y="421" width="0.0298%" height="15" fill="rgb(245,164,36)" fg:x="1137771" fg:w="691"/><text x="49.2953%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (360 samples, 0.02%)</title><rect x="49.0751%" y="421" width="0.0155%" height="15" fill="rgb(231,188,53)" fg:x="1138463" fg:w="360"/><text x="49.3251%" y="431.50"></text></g><g><title>mark_page_accessed (255 samples, 0.01%)</title><rect x="49.0797%" y="405" width="0.0110%" height="15" fill="rgb(237,198,39)" fg:x="1138568" fg:w="255"/><text x="49.3297%" y="415.50"></text></g><g><title>find_extent_buffer (1,510 samples, 0.07%)</title><rect x="49.0258%" y="437" width="0.0651%" height="15" fill="rgb(223,120,35)" fg:x="1137319" fg:w="1510"/><text x="49.2758%" y="447.50"></text></g><g><title>read_extent_buffer (256 samples, 0.01%)</title><rect x="49.0909%" y="437" width="0.0110%" height="15" fill="rgb(253,107,49)" fg:x="1138829" fg:w="256"/><text x="49.3409%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (2,460 samples, 0.11%)</title><rect x="48.9959%" y="453" width="0.1060%" height="15" fill="rgb(216,44,31)" fg:x="1136626" fg:w="2460"/><text x="49.2459%" y="463.50"></text></g><g><title>release_extent_buffer (251 samples, 0.01%)</title><rect x="49.1057%" y="453" width="0.0108%" height="15" fill="rgb(253,87,21)" fg:x="1139173" fg:w="251"/><text x="49.3557%" y="463.50"></text></g><g><title>btrfs_search_slot (19,548 samples, 0.84%)</title><rect x="48.2903%" y="469" width="0.8426%" height="15" fill="rgb(226,18,2)" fg:x="1120257" fg:w="19548"/><text x="48.5403%" y="479.50"></text></g><g><title>unlock_up (381 samples, 0.02%)</title><rect x="49.1166%" y="453" width="0.0164%" height="15" fill="rgb(216,8,46)" fg:x="1139424" fg:w="381"/><text x="49.3666%" y="463.50"></text></g><g><title>crc32c (715 samples, 0.03%)</title><rect x="49.1330%" y="469" width="0.0308%" height="15" fill="rgb(226,140,39)" fg:x="1139805" fg:w="715"/><text x="49.3830%" y="479.50"></text></g><g><title>crypto_shash_update (366 samples, 0.02%)</title><rect x="49.1480%" y="453" width="0.0158%" height="15" fill="rgb(221,194,54)" fg:x="1140154" fg:w="366"/><text x="49.3980%" y="463.50"></text></g><g><title>memset_erms (290 samples, 0.01%)</title><rect x="49.2064%" y="453" width="0.0125%" height="15" fill="rgb(213,92,11)" fg:x="1141509" fg:w="290"/><text x="49.4564%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,570 samples, 0.07%)</title><rect x="49.1638%" y="469" width="0.0677%" height="15" fill="rgb(229,162,46)" fg:x="1140520" fg:w="1570"/><text x="49.4138%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (291 samples, 0.01%)</title><rect x="49.2189%" y="453" width="0.0125%" height="15" fill="rgb(214,111,36)" fg:x="1141799" fg:w="291"/><text x="49.4689%" y="463.50"></text></g><g><title>btrfs_del_inode_ref (30,410 samples, 1.31%)</title><rect x="47.9755%" y="485" width="1.3109%" height="15" fill="rgb(207,6,21)" fg:x="1112954" fg:w="30410"/><text x="48.2255%" y="495.50"></text></g><g><title>kmem_cache_free (1,274 samples, 0.05%)</title><rect x="49.2315%" y="469" width="0.0549%" height="15" fill="rgb(213,127,38)" fg:x="1142090" fg:w="1274"/><text x="49.4815%" y="479.50"></text></g><g><title>btrfs_end_log_trans (503 samples, 0.02%)</title><rect x="49.2864%" y="485" width="0.0217%" height="15" fill="rgb(238,118,32)" fg:x="1143364" fg:w="503"/><text x="49.5364%" y="495.50"></text></g><g><title>mutex_lock (743 samples, 0.03%)</title><rect x="49.3081%" y="485" width="0.0320%" height="15" fill="rgb(240,139,39)" fg:x="1143867" fg:w="743"/><text x="49.5581%" y="495.50"></text></g><g><title>btrfs_del_inode_ref_in_log (32,479 samples, 1.40%)</title><rect x="47.9551%" y="501" width="1.4001%" height="15" fill="rgb(235,10,37)" fg:x="1112479" fg:w="32479"/><text x="48.2051%" y="511.50"></text></g><g><title>mutex_unlock (348 samples, 0.02%)</title><rect x="49.3401%" y="485" width="0.0150%" height="15" fill="rgb(249,171,38)" fg:x="1144610" fg:w="348"/><text x="49.5901%" y="495.50"></text></g><g><title>btrfs_free_tree_block (434 samples, 0.02%)</title><rect x="49.5139%" y="469" width="0.0187%" height="15" fill="rgb(242,144,32)" fg:x="1148641" fg:w="434"/><text x="49.7639%" y="479.50"></text></g><g><title>btrfs_del_leaf (572 samples, 0.02%)</title><rect x="49.5135%" y="485" width="0.0247%" height="15" fill="rgb(217,117,21)" fg:x="1148633" fg:w="572"/><text x="49.7635%" y="495.50"></text></g><g><title>btrfs_get_32 (620 samples, 0.03%)</title><rect x="49.5382%" y="485" width="0.0267%" height="15" fill="rgb(249,87,1)" fg:x="1149205" fg:w="620"/><text x="49.7882%" y="495.50"></text></g><g><title>check_setget_bounds.isra.0 (1,915 samples, 0.08%)</title><rect x="50.0872%" y="469" width="0.0825%" height="15" fill="rgb(248,196,48)" fg:x="1161942" fg:w="1915"/><text x="50.3372%" y="479.50"></text></g><g><title>btrfs_get_token_32 (14,034 samples, 0.60%)</title><rect x="49.5649%" y="485" width="0.6050%" height="15" fill="rgb(251,206,33)" fg:x="1149825" fg:w="14034"/><text x="49.8149%" y="495.50"></text></g><g><title>btrfs_mark_buffer_dirty (824 samples, 0.04%)</title><rect x="50.1699%" y="485" width="0.0355%" height="15" fill="rgb(232,141,28)" fg:x="1163859" fg:w="824"/><text x="50.4199%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (334 samples, 0.01%)</title><rect x="50.1910%" y="469" width="0.0144%" height="15" fill="rgb(209,167,14)" fg:x="1164349" fg:w="334"/><text x="50.4410%" y="479.50"></text></g><g><title>btrfs_set_token_32 (9,926 samples, 0.43%)</title><rect x="50.2060%" y="485" width="0.4279%" height="15" fill="rgb(225,11,50)" fg:x="1164698" fg:w="9926"/><text x="50.4560%" y="495.50"></text></g><g><title>check_setget_bounds.isra.0 (1,614 samples, 0.07%)</title><rect x="50.5643%" y="469" width="0.0696%" height="15" fill="rgb(209,50,20)" fg:x="1173010" fg:w="1614"/><text x="50.8143%" y="479.50"></text></g><g><title>leaf_space_used (557 samples, 0.02%)</title><rect x="50.6351%" y="485" width="0.0240%" height="15" fill="rgb(212,17,46)" fg:x="1174652" fg:w="557"/><text x="50.8851%" y="495.50"></text></g><g><title>btrfs_get_32 (428 samples, 0.02%)</title><rect x="50.6407%" y="469" width="0.0184%" height="15" fill="rgb(216,101,39)" fg:x="1174781" fg:w="428"/><text x="50.8907%" y="479.50"></text></g><g><title>memcpy_extent_buffer (1,916 samples, 0.08%)</title><rect x="50.6591%" y="485" width="0.0826%" height="15" fill="rgb(212,228,48)" fg:x="1175209" fg:w="1916"/><text x="50.9091%" y="495.50"></text></g><g><title>memmove (1,448 samples, 0.06%)</title><rect x="50.6793%" y="469" width="0.0624%" height="15" fill="rgb(250,6,50)" fg:x="1175677" fg:w="1448"/><text x="50.9293%" y="479.50"></text></g><g><title>copy_pages (741 samples, 0.03%)</title><rect x="50.7658%" y="469" width="0.0319%" height="15" fill="rgb(250,160,48)" fg:x="1177683" fg:w="741"/><text x="51.0158%" y="479.50"></text></g><g><title>memmove_extent_buffer (7,256 samples, 0.31%)</title><rect x="50.7417%" y="485" width="0.3128%" height="15" fill="rgb(244,216,33)" fg:x="1177125" fg:w="7256"/><text x="50.9917%" y="495.50"></text></g><g><title>memmove (5,957 samples, 0.26%)</title><rect x="50.7977%" y="469" width="0.2568%" height="15" fill="rgb(207,157,5)" fg:x="1178424" fg:w="5957"/><text x="51.0477%" y="479.50"></text></g><g><title>__push_leaf_left (436 samples, 0.02%)</title><rect x="51.0557%" y="469" width="0.0188%" height="15" fill="rgb(228,199,8)" fg:x="1184408" fg:w="436"/><text x="51.3057%" y="479.50"></text></g><g><title>push_leaf_left (619 samples, 0.03%)</title><rect x="51.0545%" y="485" width="0.0267%" height="15" fill="rgb(227,80,20)" fg:x="1184381" fg:w="619"/><text x="51.3045%" y="495.50"></text></g><g><title>__push_leaf_right (403 samples, 0.02%)</title><rect x="51.0823%" y="469" width="0.0174%" height="15" fill="rgb(222,9,33)" fg:x="1185025" fg:w="403"/><text x="51.3323%" y="479.50"></text></g><g><title>push_leaf_right (573 samples, 0.02%)</title><rect x="51.0812%" y="485" width="0.0247%" height="15" fill="rgb(239,44,28)" fg:x="1185000" fg:w="573"/><text x="51.3312%" y="495.50"></text></g><g><title>btrfs_del_items (40,665 samples, 1.75%)</title><rect x="49.3551%" y="501" width="1.7529%" height="15" fill="rgb(249,187,43)" fg:x="1144958" fg:w="40665"/><text x="49.6051%" y="511.50"></text></g><g><title>__list_add_valid (346 samples, 0.01%)</title><rect x="51.1940%" y="469" width="0.0149%" height="15" fill="rgb(216,141,28)" fg:x="1187617" fg:w="346"/><text x="51.4440%" y="479.50"></text></g><g><title>_raw_spin_lock (357 samples, 0.02%)</title><rect x="51.2089%" y="469" width="0.0154%" height="15" fill="rgb(230,154,53)" fg:x="1187963" fg:w="357"/><text x="51.4589%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,388 samples, 0.10%)</title><rect x="51.1369%" y="485" width="0.1029%" height="15" fill="rgb(227,82,4)" fg:x="1186292" fg:w="2388"/><text x="51.3869%" y="495.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,316 samples, 0.06%)</title><rect x="51.2404%" y="485" width="0.0567%" height="15" fill="rgb(220,107,16)" fg:x="1188693" fg:w="1316"/><text x="51.4904%" y="495.50"></text></g><g><title>btrfs_get_delayed_node (1,255 samples, 0.05%)</title><rect x="51.2430%" y="469" width="0.0541%" height="15" fill="rgb(207,187,2)" fg:x="1188754" fg:w="1255"/><text x="51.4930%" y="479.50"></text></g><g><title>__schedule (276 samples, 0.01%)</title><rect x="51.3112%" y="453" width="0.0119%" height="15" fill="rgb(210,162,52)" fg:x="1190336" fg:w="276"/><text x="51.5612%" y="463.50"></text></g><g><title>_cond_resched (314 samples, 0.01%)</title><rect x="51.3100%" y="469" width="0.0135%" height="15" fill="rgb(217,216,49)" fg:x="1190308" fg:w="314"/><text x="51.5600%" y="479.50"></text></g><g><title>mutex_lock (614 samples, 0.03%)</title><rect x="51.2971%" y="485" width="0.0265%" height="15" fill="rgb(218,146,49)" fg:x="1190009" fg:w="614"/><text x="51.5471%" y="495.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (5,145 samples, 0.22%)</title><rect x="51.1080%" y="501" width="0.2218%" height="15" fill="rgb(216,55,40)" fg:x="1185623" fg:w="5145"/><text x="51.3580%" y="511.50"></text></g><g><title>btrfs_comp_cpu_keys (763 samples, 0.03%)</title><rect x="51.3687%" y="469" width="0.0329%" height="15" fill="rgb(208,196,21)" fg:x="1191670" fg:w="763"/><text x="51.6187%" y="479.50"></text></g><g><title>__btrfs_add_delayed_item (1,874 samples, 0.08%)</title><rect x="51.3406%" y="485" width="0.0808%" height="15" fill="rgb(242,117,42)" fg:x="1191019" fg:w="1874"/><text x="51.5906%" y="495.50"></text></g><g><title>rb_insert_color (460 samples, 0.02%)</title><rect x="51.4016%" y="469" width="0.0198%" height="15" fill="rgb(210,11,23)" fg:x="1192433" fg:w="460"/><text x="51.6516%" y="479.50"></text></g><g><title>__list_del_entry_valid (284 samples, 0.01%)</title><rect x="51.4385%" y="469" width="0.0122%" height="15" fill="rgb(217,110,2)" fg:x="1193290" fg:w="284"/><text x="51.6885%" y="479.50"></text></g><g><title>_raw_spin_lock (253 samples, 0.01%)</title><rect x="51.4514%" y="469" width="0.0109%" height="15" fill="rgb(229,77,54)" fg:x="1193588" fg:w="253"/><text x="51.7014%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,632 samples, 0.07%)</title><rect x="51.4214%" y="485" width="0.0703%" height="15" fill="rgb(218,53,16)" fg:x="1192893" fg:w="1632"/><text x="51.6714%" y="495.50"></text></g><g><title>mutex_unlock (525 samples, 0.02%)</title><rect x="51.4691%" y="469" width="0.0226%" height="15" fill="rgb(215,38,13)" fg:x="1194000" fg:w="525"/><text x="51.7191%" y="479.50"></text></g><g><title>mutex_spin_on_owner (1,663 samples, 0.07%)</title><rect x="51.4981%" y="469" width="0.0717%" height="15" fill="rgb(235,42,18)" fg:x="1194673" fg:w="1663"/><text x="51.7481%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (403 samples, 0.02%)</title><rect x="51.5794%" y="405" width="0.0174%" height="15" fill="rgb(219,66,54)" fg:x="1196559" fg:w="403"/><text x="51.8294%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (398 samples, 0.02%)</title><rect x="51.5797%" y="389" width="0.0172%" height="15" fill="rgb(222,205,4)" fg:x="1196564" fg:w="398"/><text x="51.8297%" y="399.50"></text></g><g><title>native_write_msr (394 samples, 0.02%)</title><rect x="51.5798%" y="373" width="0.0170%" height="15" fill="rgb(227,213,46)" fg:x="1196568" fg:w="394"/><text x="51.8298%" y="383.50"></text></g><g><title>finish_task_switch (431 samples, 0.02%)</title><rect x="51.5787%" y="421" width="0.0186%" height="15" fill="rgb(250,145,42)" fg:x="1196542" fg:w="431"/><text x="51.8287%" y="431.50"></text></g><g><title>__mutex_lock.constprop.0 (2,614 samples, 0.11%)</title><rect x="51.4918%" y="485" width="0.1127%" height="15" fill="rgb(219,15,2)" fg:x="1194525" fg:w="2614"/><text x="51.7418%" y="495.50"></text></g><g><title>schedule_preempt_disabled (790 samples, 0.03%)</title><rect x="51.5704%" y="469" width="0.0341%" height="15" fill="rgb(231,181,52)" fg:x="1196349" fg:w="790"/><text x="51.8204%" y="479.50"></text></g><g><title>schedule (790 samples, 0.03%)</title><rect x="51.5704%" y="453" width="0.0341%" height="15" fill="rgb(235,1,42)" fg:x="1196349" fg:w="790"/><text x="51.8204%" y="463.50"></text></g><g><title>__schedule (783 samples, 0.03%)</title><rect x="51.5707%" y="437" width="0.0338%" height="15" fill="rgb(249,88,27)" fg:x="1196356" fg:w="783"/><text x="51.8207%" y="447.50"></text></g><g><title>_raw_spin_lock (1,528 samples, 0.07%)</title><rect x="51.6319%" y="453" width="0.0659%" height="15" fill="rgb(235,145,16)" fg:x="1197775" fg:w="1528"/><text x="51.8819%" y="463.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (2,094 samples, 0.09%)</title><rect x="51.6075%" y="485" width="0.0903%" height="15" fill="rgb(237,114,19)" fg:x="1197210" fg:w="2094"/><text x="51.8575%" y="495.50"></text></g><g><title>btrfs_block_rsv_migrate (1,725 samples, 0.07%)</title><rect x="51.6234%" y="469" width="0.0744%" height="15" fill="rgb(238,51,50)" fg:x="1197579" fg:w="1725"/><text x="51.8734%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (611 samples, 0.03%)</title><rect x="51.6978%" y="485" width="0.0263%" height="15" fill="rgb(205,194,25)" fg:x="1199304" fg:w="611"/><text x="51.9478%" y="495.50"></text></g><g><title>btrfs_get_delayed_node (536 samples, 0.02%)</title><rect x="51.7010%" y="469" width="0.0231%" height="15" fill="rgb(215,203,17)" fg:x="1199379" fg:w="536"/><text x="51.9510%" y="479.50"></text></g><g><title>kmem_cache_alloc_trace (1,044 samples, 0.05%)</title><rect x="51.7241%" y="485" width="0.0450%" height="15" fill="rgb(233,112,49)" fg:x="1199915" fg:w="1044"/><text x="51.9741%" y="495.50"></text></g><g><title>mutex_lock (443 samples, 0.02%)</title><rect x="51.7691%" y="485" width="0.0191%" height="15" fill="rgb(241,130,26)" fg:x="1200959" fg:w="443"/><text x="52.0191%" y="495.50"></text></g><g><title>btrfs_delete_delayed_dir_index (10,924 samples, 0.47%)</title><rect x="51.3298%" y="501" width="0.4709%" height="15" fill="rgb(252,223,19)" fg:x="1190768" fg:w="10924"/><text x="51.5798%" y="511.50"></text></g><g><title>mutex_unlock (290 samples, 0.01%)</title><rect x="51.7882%" y="485" width="0.0125%" height="15" fill="rgb(211,95,25)" fg:x="1201402" fg:w="290"/><text x="52.0382%" y="495.50"></text></g><g><title>btrfs_get_16 (291 samples, 0.01%)</title><rect x="51.8200%" y="485" width="0.0125%" height="15" fill="rgb(251,182,27)" fg:x="1202139" fg:w="291"/><text x="52.0700%" y="495.50"></text></g><g><title>btrfs_delete_one_dir_name (907 samples, 0.04%)</title><rect x="51.8007%" y="501" width="0.0391%" height="15" fill="rgb(238,24,4)" fg:x="1201692" fg:w="907"/><text x="52.0507%" y="511.50"></text></g><g><title>btrfs_get_16 (660 samples, 0.03%)</title><rect x="51.9024%" y="469" width="0.0285%" height="15" fill="rgb(224,220,25)" fg:x="1204052" fg:w="660"/><text x="52.1524%" y="479.50"></text></g><g><title>btrfs_get_32 (492 samples, 0.02%)</title><rect x="51.9309%" y="469" width="0.0212%" height="15" fill="rgb(239,133,26)" fg:x="1204712" fg:w="492"/><text x="52.1809%" y="479.50"></text></g><g><title>btrfs_match_dir_item_name (3,214 samples, 0.14%)</title><rect x="51.8745%" y="485" width="0.1385%" height="15" fill="rgb(211,94,48)" fg:x="1203405" fg:w="3214"/><text x="52.1245%" y="495.50"></text></g><g><title>memcmp_extent_buffer (1,415 samples, 0.06%)</title><rect x="51.9521%" y="469" width="0.0610%" height="15" fill="rgb(239,87,6)" fg:x="1205204" fg:w="1415"/><text x="52.2021%" y="479.50"></text></g><g><title>memcmp (826 samples, 0.04%)</title><rect x="51.9775%" y="453" width="0.0356%" height="15" fill="rgb(227,62,0)" fg:x="1205793" fg:w="826"/><text x="52.2275%" y="463.50"></text></g><g><title>_raw_read_lock (690 samples, 0.03%)</title><rect x="52.1848%" y="437" width="0.0297%" height="15" fill="rgb(211,226,4)" fg:x="1210603" fg:w="690"/><text x="52.4348%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (3,868 samples, 0.17%)</title><rect x="52.2268%" y="421" width="0.1667%" height="15" fill="rgb(253,38,52)" fg:x="1211577" fg:w="3868"/><text x="52.4768%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,704 samples, 0.16%)</title><rect x="52.2339%" y="405" width="0.1597%" height="15" fill="rgb(229,126,40)" fg:x="1211741" fg:w="3704"/><text x="52.4839%" y="415.50"></text></g><g><title>finish_wait (4,094 samples, 0.18%)</title><rect x="52.2171%" y="437" width="0.1765%" height="15" fill="rgb(229,165,44)" fg:x="1211352" fg:w="4094"/><text x="52.4671%" y="447.50"></text></g><g><title>__list_add_valid (232 samples, 0.01%)</title><rect x="52.4234%" y="421" width="0.0100%" height="15" fill="rgb(247,95,47)" fg:x="1216138" fg:w="232"/><text x="52.6734%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (10,167 samples, 0.44%)</title><rect x="52.4334%" y="421" width="0.4383%" height="15" fill="rgb(216,140,30)" fg:x="1216370" fg:w="10167"/><text x="52.6834%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,665 samples, 0.42%)</title><rect x="52.4551%" y="405" width="0.4166%" height="15" fill="rgb(246,214,8)" fg:x="1216872" fg:w="9665"/><text x="52.7051%" y="415.50"></text></g><g><title>prepare_to_wait_event (11,247 samples, 0.48%)</title><rect x="52.3939%" y="437" width="0.4848%" height="15" fill="rgb(227,224,15)" fg:x="1215453" fg:w="11247"/><text x="52.6439%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (10,953 samples, 0.47%)</title><rect x="52.8787%" y="437" width="0.4721%" height="15" fill="rgb(233,175,4)" fg:x="1226700" fg:w="10953"/><text x="53.1287%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,036 samples, 0.35%)</title><rect x="53.0045%" y="421" width="0.3464%" height="15" fill="rgb(221,66,45)" fg:x="1229617" fg:w="8036"/><text x="53.2545%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (340 samples, 0.01%)</title><rect x="53.3745%" y="405" width="0.0147%" height="15" fill="rgb(221,178,18)" fg:x="1238201" fg:w="340"/><text x="53.6245%" y="415.50"></text></g><g><title>update_curr (600 samples, 0.03%)</title><rect x="53.4263%" y="373" width="0.0259%" height="15" fill="rgb(213,81,29)" fg:x="1239404" fg:w="600"/><text x="53.6763%" y="383.50"></text></g><g><title>dequeue_entity (1,719 samples, 0.07%)</title><rect x="53.4020%" y="389" width="0.0741%" height="15" fill="rgb(220,89,49)" fg:x="1238840" fg:w="1719"/><text x="53.6520%" y="399.50"></text></g><g><title>update_load_avg (555 samples, 0.02%)</title><rect x="53.4522%" y="373" width="0.0239%" height="15" fill="rgb(227,60,33)" fg:x="1240004" fg:w="555"/><text x="53.7022%" y="383.50"></text></g><g><title>dequeue_task_fair (2,069 samples, 0.09%)</title><rect x="53.3921%" y="405" width="0.0892%" height="15" fill="rgb(205,113,12)" fg:x="1238609" fg:w="2069"/><text x="53.6421%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,223 samples, 0.18%)</title><rect x="53.4976%" y="389" width="0.1820%" height="15" fill="rgb(211,32,1)" fg:x="1241057" fg:w="4223"/><text x="53.7476%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,103 samples, 0.18%)</title><rect x="53.5028%" y="373" width="0.1769%" height="15" fill="rgb(246,2,12)" fg:x="1241177" fg:w="4103"/><text x="53.7528%" y="383.50"></text></g><g><title>native_write_msr (4,065 samples, 0.18%)</title><rect x="53.5044%" y="357" width="0.1752%" height="15" fill="rgb(243,37,27)" fg:x="1241215" fg:w="4065"/><text x="53.7544%" y="367.50"></text></g><g><title>finish_task_switch (4,788 samples, 0.21%)</title><rect x="53.4813%" y="405" width="0.2064%" height="15" fill="rgb(248,211,31)" fg:x="1240678" fg:w="4788"/><text x="53.7313%" y="415.50"></text></g><g><title>pick_next_task_fair (388 samples, 0.02%)</title><rect x="53.6877%" y="405" width="0.0167%" height="15" fill="rgb(242,146,47)" fg:x="1245466" fg:w="388"/><text x="53.9377%" y="415.50"></text></g><g><title>pick_next_task_idle (328 samples, 0.01%)</title><rect x="53.7044%" y="405" width="0.0141%" height="15" fill="rgb(206,70,20)" fg:x="1245854" fg:w="328"/><text x="53.9544%" y="415.50"></text></g><g><title>__update_idle_core (271 samples, 0.01%)</title><rect x="53.7068%" y="389" width="0.0117%" height="15" fill="rgb(215,10,51)" fg:x="1245911" fg:w="271"/><text x="53.9568%" y="399.50"></text></g><g><title>psi_task_change (1,559 samples, 0.07%)</title><rect x="53.7185%" y="405" width="0.0672%" height="15" fill="rgb(243,178,53)" fg:x="1246182" fg:w="1559"/><text x="53.9685%" y="415.50"></text></g><g><title>psi_group_change (1,307 samples, 0.06%)</title><rect x="53.7294%" y="389" width="0.0563%" height="15" fill="rgb(233,221,20)" fg:x="1246434" fg:w="1307"/><text x="53.9794%" y="399.50"></text></g><g><title>record_times (287 samples, 0.01%)</title><rect x="53.7733%" y="373" width="0.0124%" height="15" fill="rgb(218,95,35)" fg:x="1247454" fg:w="287"/><text x="54.0233%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (38,430 samples, 1.66%)</title><rect x="52.1512%" y="453" width="1.6566%" height="15" fill="rgb(229,13,5)" fg:x="1209822" fg:w="38430"/><text x="52.4012%" y="463.50"></text></g><g><title>schedule (10,599 samples, 0.46%)</title><rect x="53.3509%" y="437" width="0.4569%" height="15" fill="rgb(252,164,30)" fg:x="1237653" fg:w="10599"/><text x="53.6009%" y="447.50"></text></g><g><title>__schedule (10,511 samples, 0.45%)</title><rect x="53.3547%" y="421" width="0.4531%" height="15" fill="rgb(232,68,36)" fg:x="1237741" fg:w="10511"/><text x="53.6047%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (39,893 samples, 1.72%)</title><rect x="52.1434%" y="469" width="1.7196%" height="15" fill="rgb(219,59,54)" fg:x="1209642" fg:w="39893"/><text x="52.3934%" y="479.50"></text></g><g><title>btrfs_root_node (1,281 samples, 0.06%)</title><rect x="53.8078%" y="453" width="0.0552%" height="15" fill="rgb(250,92,33)" fg:x="1248254" fg:w="1281"/><text x="54.0578%" y="463.50"></text></g><g><title>prepare_to_wait_event (247 samples, 0.01%)</title><rect x="53.8695%" y="453" width="0.0106%" height="15" fill="rgb(229,162,54)" fg:x="1249684" fg:w="247"/><text x="54.1195%" y="463.50"></text></g><g><title>dequeue_entity (493 samples, 0.02%)</title><rect x="53.8944%" y="405" width="0.0213%" height="15" fill="rgb(244,114,52)" fg:x="1250263" fg:w="493"/><text x="54.1444%" y="415.50"></text></g><g><title>dequeue_task_fair (602 samples, 0.03%)</title><rect x="53.8916%" y="421" width="0.0260%" height="15" fill="rgb(212,211,43)" fg:x="1250197" fg:w="602"/><text x="54.1416%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (1,596 samples, 0.07%)</title><rect x="53.9225%" y="405" width="0.0688%" height="15" fill="rgb(226,147,8)" fg:x="1250914" fg:w="1596"/><text x="54.1725%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,582 samples, 0.07%)</title><rect x="53.9231%" y="389" width="0.0682%" height="15" fill="rgb(226,23,13)" fg:x="1250928" fg:w="1582"/><text x="54.1731%" y="399.50"></text></g><g><title>native_write_msr (1,572 samples, 0.07%)</title><rect x="53.9235%" y="373" width="0.0678%" height="15" fill="rgb(240,63,4)" fg:x="1250938" fg:w="1572"/><text x="54.1735%" y="383.50"></text></g><g><title>finish_task_switch (1,782 samples, 0.08%)</title><rect x="53.9175%" y="421" width="0.0768%" height="15" fill="rgb(221,1,32)" fg:x="1250799" fg:w="1782"/><text x="54.1675%" y="431.50"></text></g><g><title>psi_task_change (482 samples, 0.02%)</title><rect x="54.0047%" y="421" width="0.0208%" height="15" fill="rgb(242,117,10)" fg:x="1252821" fg:w="482"/><text x="54.2547%" y="431.50"></text></g><g><title>psi_group_change (402 samples, 0.02%)</title><rect x="54.0081%" y="405" width="0.0173%" height="15" fill="rgb(249,172,44)" fg:x="1252901" fg:w="402"/><text x="54.2581%" y="415.50"></text></g><g><title>__btrfs_tree_lock (3,914 samples, 0.17%)</title><rect x="53.8631%" y="469" width="0.1687%" height="15" fill="rgb(244,46,45)" fg:x="1249535" fg:w="3914"/><text x="54.1131%" y="479.50"></text></g><g><title>schedule (3,518 samples, 0.15%)</title><rect x="53.8801%" y="453" width="0.1516%" height="15" fill="rgb(206,43,17)" fg:x="1249931" fg:w="3518"/><text x="54.1301%" y="463.50"></text></g><g><title>__schedule (3,497 samples, 0.15%)</title><rect x="53.8810%" y="437" width="0.1507%" height="15" fill="rgb(239,218,39)" fg:x="1249952" fg:w="3497"/><text x="54.1310%" y="447.50"></text></g><g><title>btrfs_bin_search (232 samples, 0.01%)</title><rect x="54.0411%" y="469" width="0.0100%" height="15" fill="rgb(208,169,54)" fg:x="1253665" fg:w="232"/><text x="54.2911%" y="479.50"></text></g><g><title>__btrfs_cow_block (382 samples, 0.02%)</title><rect x="54.0513%" y="453" width="0.0165%" height="15" fill="rgb(247,25,42)" fg:x="1253901" fg:w="382"/><text x="54.3013%" y="463.50"></text></g><g><title>btrfs_cow_block (388 samples, 0.02%)</title><rect x="54.0511%" y="469" width="0.0167%" height="15" fill="rgb(226,23,31)" fg:x="1253897" fg:w="388"/><text x="54.3011%" y="479.50"></text></g><g><title>_cond_resched (245 samples, 0.01%)</title><rect x="54.1172%" y="437" width="0.0106%" height="15" fill="rgb(247,16,28)" fg:x="1255430" fg:w="245"/><text x="54.3672%" y="447.50"></text></g><g><title>_raw_write_lock (681 samples, 0.03%)</title><rect x="54.1306%" y="437" width="0.0294%" height="15" fill="rgb(231,147,38)" fg:x="1255741" fg:w="681"/><text x="54.3806%" y="447.50"></text></g><g><title>finish_wait (4,081 samples, 0.18%)</title><rect x="54.1600%" y="437" width="0.1759%" height="15" fill="rgb(253,81,48)" fg:x="1256424" fg:w="4081"/><text x="54.4100%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (3,849 samples, 0.17%)</title><rect x="54.1700%" y="421" width="0.1659%" height="15" fill="rgb(249,222,43)" fg:x="1256656" fg:w="3849"/><text x="54.4200%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,592 samples, 0.15%)</title><rect x="54.1811%" y="405" width="0.1548%" height="15" fill="rgb(221,3,27)" fg:x="1256913" fg:w="3592"/><text x="54.4311%" y="415.50"></text></g><g><title>__list_add_valid (292 samples, 0.01%)</title><rect x="54.3818%" y="421" width="0.0126%" height="15" fill="rgb(228,180,5)" fg:x="1261570" fg:w="292"/><text x="54.6318%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (10,524 samples, 0.45%)</title><rect x="54.3944%" y="421" width="0.4537%" height="15" fill="rgb(227,131,42)" fg:x="1261862" fg:w="10524"/><text x="54.6444%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,655 samples, 0.42%)</title><rect x="54.4319%" y="405" width="0.4162%" height="15" fill="rgb(212,3,39)" fg:x="1262731" fg:w="9655"/><text x="54.6819%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (250 samples, 0.01%)</title><rect x="54.8481%" y="421" width="0.0108%" height="15" fill="rgb(226,45,5)" fg:x="1272386" fg:w="250"/><text x="55.0981%" y="431.50"></text></g><g><title>prepare_to_wait_event (12,086 samples, 0.52%)</title><rect x="54.3379%" y="437" width="0.5210%" height="15" fill="rgb(215,167,45)" fg:x="1260551" fg:w="12086"/><text x="54.5879%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,020 samples, 0.39%)</title><rect x="55.3149%" y="421" width="0.3888%" height="15" fill="rgb(250,218,53)" fg:x="1283215" fg:w="9020"/><text x="55.5649%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (19,599 samples, 0.84%)</title><rect x="54.8589%" y="437" width="0.8448%" height="15" fill="rgb(207,140,0)" fg:x="1272637" fg:w="19599"/><text x="55.1089%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (472 samples, 0.02%)</title><rect x="55.7427%" y="405" width="0.0203%" height="15" fill="rgb(238,133,51)" fg:x="1293139" fg:w="472"/><text x="55.9927%" y="415.50"></text></g><g><title>update_cfs_group (269 samples, 0.01%)</title><rect x="55.8065%" y="373" width="0.0116%" height="15" fill="rgb(218,203,53)" fg:x="1294619" fg:w="269"/><text x="56.0565%" y="383.50"></text></g><g><title>update_curr (898 samples, 0.04%)</title><rect x="55.8181%" y="373" width="0.0387%" height="15" fill="rgb(226,184,25)" fg:x="1294888" fg:w="898"/><text x="56.0681%" y="383.50"></text></g><g><title>__update_load_avg_se (278 samples, 0.01%)</title><rect x="55.8807%" y="357" width="0.0120%" height="15" fill="rgb(231,121,21)" fg:x="1296341" fg:w="278"/><text x="56.1307%" y="367.50"></text></g><g><title>dequeue_entity (2,550 samples, 0.11%)</title><rect x="55.7837%" y="389" width="0.1099%" height="15" fill="rgb(251,14,34)" fg:x="1294091" fg:w="2550"/><text x="56.0337%" y="399.50"></text></g><g><title>update_load_avg (855 samples, 0.04%)</title><rect x="55.8568%" y="373" width="0.0369%" height="15" fill="rgb(249,193,11)" fg:x="1295786" fg:w="855"/><text x="56.1068%" y="383.50"></text></g><g><title>dequeue_task_fair (3,049 samples, 0.13%)</title><rect x="55.7699%" y="405" width="0.1314%" height="15" fill="rgb(220,172,37)" fg:x="1293771" fg:w="3049"/><text x="56.0199%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (5,158 samples, 0.22%)</title><rect x="55.9253%" y="389" width="0.2223%" height="15" fill="rgb(231,229,43)" fg:x="1297375" fg:w="5158"/><text x="56.1753%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,990 samples, 0.22%)</title><rect x="55.9325%" y="373" width="0.2151%" height="15" fill="rgb(250,161,5)" fg:x="1297543" fg:w="4990"/><text x="56.1825%" y="383.50"></text></g><g><title>native_write_msr (4,925 samples, 0.21%)</title><rect x="55.9353%" y="357" width="0.2123%" height="15" fill="rgb(218,225,18)" fg:x="1297608" fg:w="4925"/><text x="56.1853%" y="367.50"></text></g><g><title>finish_task_switch (5,930 samples, 0.26%)</title><rect x="55.9013%" y="405" width="0.2556%" height="15" fill="rgb(245,45,42)" fg:x="1296820" fg:w="5930"/><text x="56.1513%" y="415.50"></text></g><g><title>newidle_balance (285 samples, 0.01%)</title><rect x="56.1623%" y="389" width="0.0123%" height="15" fill="rgb(211,115,1)" fg:x="1302873" fg:w="285"/><text x="56.4123%" y="399.50"></text></g><g><title>pick_next_task_fair (547 samples, 0.02%)</title><rect x="56.1572%" y="405" width="0.0236%" height="15" fill="rgb(248,133,52)" fg:x="1302756" fg:w="547"/><text x="56.4072%" y="415.50"></text></g><g><title>__update_idle_core (471 samples, 0.02%)</title><rect x="56.1842%" y="389" width="0.0203%" height="15" fill="rgb(238,100,21)" fg:x="1303382" fg:w="471"/><text x="56.4342%" y="399.50"></text></g><g><title>pick_next_task_idle (552 samples, 0.02%)</title><rect x="56.1808%" y="405" width="0.0238%" height="15" fill="rgb(247,144,11)" fg:x="1303303" fg:w="552"/><text x="56.4308%" y="415.50"></text></g><g><title>psi_task_change (2,380 samples, 0.10%)</title><rect x="56.2046%" y="405" width="0.1026%" height="15" fill="rgb(206,164,16)" fg:x="1303855" fg:w="2380"/><text x="56.4546%" y="415.50"></text></g><g><title>psi_group_change (2,068 samples, 0.09%)</title><rect x="56.2180%" y="389" width="0.0891%" height="15" fill="rgb(222,34,3)" fg:x="1304167" fg:w="2068"/><text x="56.4680%" y="399.50"></text></g><g><title>record_times (506 samples, 0.02%)</title><rect x="56.2854%" y="373" width="0.0218%" height="15" fill="rgb(248,82,4)" fg:x="1305729" fg:w="506"/><text x="56.5354%" y="383.50"></text></g><g><title>sched_clock_cpu (340 samples, 0.01%)</title><rect x="56.2925%" y="357" width="0.0147%" height="15" fill="rgb(228,81,46)" fg:x="1305895" fg:w="340"/><text x="56.5425%" y="367.50"></text></g><g><title>sched_clock (295 samples, 0.01%)</title><rect x="56.2945%" y="341" width="0.0127%" height="15" fill="rgb(227,67,47)" fg:x="1305940" fg:w="295"/><text x="56.5445%" y="351.50"></text></g><g><title>native_sched_clock (274 samples, 0.01%)</title><rect x="56.2954%" y="325" width="0.0118%" height="15" fill="rgb(215,93,53)" fg:x="1305961" fg:w="274"/><text x="56.5454%" y="335.50"></text></g><g><title>psi_task_switch (275 samples, 0.01%)</title><rect x="56.3072%" y="405" width="0.0119%" height="15" fill="rgb(248,194,39)" fg:x="1306235" fg:w="275"/><text x="56.5572%" y="415.50"></text></g><g><title>__btrfs_tree_lock (52,609 samples, 2.27%)</title><rect x="54.0702%" y="453" width="2.2678%" height="15" fill="rgb(215,5,19)" fg:x="1254341" fg:w="52609"/><text x="54.3202%" y="463.50">_..</text></g><g><title>schedule (14,713 samples, 0.63%)</title><rect x="55.7038%" y="437" width="0.6342%" height="15" fill="rgb(226,215,51)" fg:x="1292237" fg:w="14713"/><text x="55.9538%" y="447.50"></text></g><g><title>__schedule (14,517 samples, 0.63%)</title><rect x="55.7122%" y="421" width="0.6258%" height="15" fill="rgb(225,56,26)" fg:x="1292433" fg:w="14517"/><text x="55.9622%" y="431.50"></text></g><g><title>update_rq_clock (249 samples, 0.01%)</title><rect x="56.3273%" y="405" width="0.0107%" height="15" fill="rgb(222,75,29)" fg:x="1306701" fg:w="249"/><text x="56.5773%" y="415.50"></text></g><g><title>btrfs_lock_root_node (53,238 samples, 2.29%)</title><rect x="54.0678%" y="469" width="2.2949%" height="15" fill="rgb(236,139,6)" fg:x="1254285" fg:w="53238"/><text x="54.3178%" y="479.50">b..</text></g><g><title>btrfs_root_node (573 samples, 0.02%)</title><rect x="56.3380%" y="453" width="0.0247%" height="15" fill="rgb(223,137,36)" fg:x="1306950" fg:w="573"/><text x="56.5880%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (485 samples, 0.02%)</title><rect x="56.3627%" y="469" width="0.0209%" height="15" fill="rgb(226,99,2)" fg:x="1307523" fg:w="485"/><text x="56.6127%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (259 samples, 0.01%)</title><rect x="56.3725%" y="453" width="0.0112%" height="15" fill="rgb(206,133,23)" fg:x="1307749" fg:w="259"/><text x="56.6225%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (528 samples, 0.02%)</title><rect x="56.3837%" y="469" width="0.0228%" height="15" fill="rgb(243,173,15)" fg:x="1308009" fg:w="528"/><text x="56.6337%" y="479.50"></text></g><g><title>_raw_write_lock (432 samples, 0.02%)</title><rect x="56.4119%" y="453" width="0.0186%" height="15" fill="rgb(228,69,28)" fg:x="1308663" fg:w="432"/><text x="56.6619%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (3,035 samples, 0.13%)</title><rect x="56.4064%" y="469" width="0.1308%" height="15" fill="rgb(212,51,22)" fg:x="1308537" fg:w="3035"/><text x="56.6564%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (2,475 samples, 0.11%)</title><rect x="56.4306%" y="453" width="0.1067%" height="15" fill="rgb(227,113,0)" fg:x="1309097" fg:w="2475"/><text x="56.6806%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (610 samples, 0.03%)</title><rect x="56.5379%" y="469" width="0.0263%" height="15" fill="rgb(252,84,27)" fg:x="1311588" fg:w="610"/><text x="56.7879%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (6,088 samples, 0.26%)</title><rect x="56.5642%" y="469" width="0.2624%" height="15" fill="rgb(223,145,39)" fg:x="1312198" fg:w="6088"/><text x="56.8142%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (696 samples, 0.03%)</title><rect x="56.8545%" y="453" width="0.0300%" height="15" fill="rgb(239,219,30)" fg:x="1318932" fg:w="696"/><text x="57.1045%" y="463.50"></text></g><g><title>verify_parent_transid (556 samples, 0.02%)</title><rect x="56.8605%" y="437" width="0.0240%" height="15" fill="rgb(224,196,39)" fg:x="1319072" fg:w="556"/><text x="57.1105%" y="447.50"></text></g><g><title>btrfs_get_64 (869 samples, 0.04%)</title><rect x="56.8845%" y="453" width="0.0375%" height="15" fill="rgb(205,35,43)" fg:x="1319628" fg:w="869"/><text x="57.1345%" y="463.50"></text></g><g><title>btrfs_verify_level_key (242 samples, 0.01%)</title><rect x="56.9252%" y="453" width="0.0104%" height="15" fill="rgb(228,201,21)" fg:x="1320572" fg:w="242"/><text x="57.1752%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,988 samples, 0.13%)</title><rect x="56.9961%" y="437" width="0.1288%" height="15" fill="rgb(237,118,16)" fg:x="1322216" fg:w="2988"/><text x="57.2461%" y="447.50"></text></g><g><title>mark_page_accessed (934 samples, 0.04%)</title><rect x="57.1372%" y="421" width="0.0403%" height="15" fill="rgb(241,17,19)" fg:x="1325490" fg:w="934"/><text x="57.3872%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,223 samples, 0.05%)</title><rect x="57.1254%" y="437" width="0.0527%" height="15" fill="rgb(214,10,25)" fg:x="1325217" fg:w="1223"/><text x="57.3754%" y="447.50"></text></g><g><title>find_extent_buffer (5,657 samples, 0.24%)</title><rect x="56.9356%" y="453" width="0.2439%" height="15" fill="rgb(238,37,29)" fg:x="1320814" fg:w="5657"/><text x="57.1856%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (8,939 samples, 0.39%)</title><rect x="56.8267%" y="469" width="0.3853%" height="15" fill="rgb(253,83,25)" fg:x="1318286" fg:w="8939"/><text x="57.0767%" y="479.50"></text></g><g><title>read_extent_buffer (754 samples, 0.03%)</title><rect x="57.1795%" y="453" width="0.0325%" height="15" fill="rgb(234,192,12)" fg:x="1326471" fg:w="754"/><text x="57.4295%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (287 samples, 0.01%)</title><rect x="57.2223%" y="453" width="0.0124%" height="15" fill="rgb(241,216,45)" fg:x="1327465" fg:w="287"/><text x="57.4723%" y="463.50"></text></g><g><title>verify_parent_transid (251 samples, 0.01%)</title><rect x="57.2239%" y="437" width="0.0108%" height="15" fill="rgb(242,22,33)" fg:x="1327501" fg:w="251"/><text x="57.4739%" y="447.50"></text></g><g><title>btrfs_get_64 (353 samples, 0.02%)</title><rect x="57.2347%" y="453" width="0.0152%" height="15" fill="rgb(231,105,49)" fg:x="1327752" fg:w="353"/><text x="57.4847%" y="463.50"></text></g><g><title>__radix_tree_lookup (1,199 samples, 0.05%)</title><rect x="57.2900%" y="437" width="0.0517%" height="15" fill="rgb(218,204,15)" fg:x="1329035" fg:w="1199"/><text x="57.5400%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (624 samples, 0.03%)</title><rect x="57.3420%" y="437" width="0.0269%" height="15" fill="rgb(235,138,41)" fg:x="1330242" fg:w="624"/><text x="57.5920%" y="447.50"></text></g><g><title>mark_page_accessed (490 samples, 0.02%)</title><rect x="57.3478%" y="421" width="0.0211%" height="15" fill="rgb(246,0,9)" fg:x="1330376" fg:w="490"/><text x="57.5978%" y="431.50"></text></g><g><title>find_extent_buffer (2,771 samples, 0.12%)</title><rect x="57.2499%" y="453" width="0.1194%" height="15" fill="rgb(210,74,4)" fg:x="1328105" fg:w="2771"/><text x="57.4999%" y="463.50"></text></g><g><title>reada_for_balance (3,844 samples, 0.17%)</title><rect x="57.2120%" y="469" width="0.1657%" height="15" fill="rgb(250,60,41)" fg:x="1327225" fg:w="3844"/><text x="57.4620%" y="479.50"></text></g><g><title>__list_del_entry_valid (499 samples, 0.02%)</title><rect x="57.4531%" y="405" width="0.0215%" height="15" fill="rgb(220,115,12)" fg:x="1332818" fg:w="499"/><text x="57.7031%" y="415.50"></text></g><g><title>_raw_spin_lock (590 samples, 0.03%)</title><rect x="57.7760%" y="389" width="0.0254%" height="15" fill="rgb(237,100,13)" fg:x="1340309" fg:w="590"/><text x="58.0260%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (320 samples, 0.01%)</title><rect x="57.7876%" y="373" width="0.0138%" height="15" fill="rgb(213,55,26)" fg:x="1340579" fg:w="320"/><text x="58.0376%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (786 samples, 0.03%)</title><rect x="57.8014%" y="389" width="0.0339%" height="15" fill="rgb(216,17,4)" fg:x="1340899" fg:w="786"/><text x="58.0514%" y="399.50"></text></g><g><title>available_idle_cpu (591 samples, 0.03%)</title><rect x="57.9017%" y="373" width="0.0255%" height="15" fill="rgb(220,153,47)" fg:x="1343224" fg:w="591"/><text x="58.1517%" y="383.50"></text></g><g><title>select_task_rq_fair (3,113 samples, 0.13%)</title><rect x="57.8401%" y="389" width="0.1342%" height="15" fill="rgb(215,131,9)" fg:x="1341795" fg:w="3113"/><text x="58.0901%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (696 samples, 0.03%)</title><rect x="57.9442%" y="373" width="0.0300%" height="15" fill="rgb(233,46,42)" fg:x="1344212" fg:w="696"/><text x="58.1942%" y="383.50"></text></g><g><title>set_task_cpu (264 samples, 0.01%)</title><rect x="57.9742%" y="389" width="0.0114%" height="15" fill="rgb(226,86,7)" fg:x="1344908" fg:w="264"/><text x="58.2242%" y="399.50"></text></g><g><title>reweight_entity (250 samples, 0.01%)</title><rect x="58.0752%" y="341" width="0.0108%" height="15" fill="rgb(239,226,21)" fg:x="1347251" fg:w="250"/><text x="58.3252%" y="351.50"></text></g><g><title>update_cfs_group (299 samples, 0.01%)</title><rect x="58.0860%" y="341" width="0.0129%" height="15" fill="rgb(244,137,22)" fg:x="1347501" fg:w="299"/><text x="58.3360%" y="351.50"></text></g><g><title>update_curr (341 samples, 0.01%)</title><rect x="58.0989%" y="341" width="0.0147%" height="15" fill="rgb(211,139,35)" fg:x="1347800" fg:w="341"/><text x="58.3489%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (306 samples, 0.01%)</title><rect x="58.1346%" y="325" width="0.0132%" height="15" fill="rgb(214,62,50)" fg:x="1348628" fg:w="306"/><text x="58.3846%" y="335.50"></text></g><g><title>enqueue_entity (3,060 samples, 0.13%)</title><rect x="58.0272%" y="357" width="0.1319%" height="15" fill="rgb(212,113,44)" fg:x="1346136" fg:w="3060"/><text x="58.2772%" y="367.50"></text></g><g><title>update_load_avg (1,055 samples, 0.05%)</title><rect x="58.1136%" y="341" width="0.0455%" height="15" fill="rgb(226,150,43)" fg:x="1348141" fg:w="1055"/><text x="58.3636%" y="351.50"></text></g><g><title>enqueue_task_fair (3,915 samples, 0.17%)</title><rect x="58.0004%" y="373" width="0.1688%" height="15" fill="rgb(250,71,37)" fg:x="1345514" fg:w="3915"/><text x="58.2504%" y="383.50"></text></g><g><title>ttwu_do_activate (8,032 samples, 0.35%)</title><rect x="57.9856%" y="389" width="0.3462%" height="15" fill="rgb(219,76,19)" fg:x="1345172" fg:w="8032"/><text x="58.2356%" y="399.50"></text></g><g><title>psi_task_change (3,771 samples, 0.16%)</title><rect x="58.1693%" y="373" width="0.1626%" height="15" fill="rgb(250,39,11)" fg:x="1349433" fg:w="3771"/><text x="58.4193%" y="383.50"></text></g><g><title>psi_group_change (3,349 samples, 0.14%)</title><rect x="58.1875%" y="357" width="0.1444%" height="15" fill="rgb(230,64,31)" fg:x="1349855" fg:w="3349"/><text x="58.4375%" y="367.50"></text></g><g><title>record_times (518 samples, 0.02%)</title><rect x="58.3095%" y="341" width="0.0223%" height="15" fill="rgb(208,222,23)" fg:x="1352686" fg:w="518"/><text x="58.5595%" y="351.50"></text></g><g><title>sched_clock_cpu (333 samples, 0.01%)</title><rect x="58.3175%" y="325" width="0.0144%" height="15" fill="rgb(227,125,18)" fg:x="1352871" fg:w="333"/><text x="58.5675%" y="335.50"></text></g><g><title>sched_clock (272 samples, 0.01%)</title><rect x="58.3201%" y="309" width="0.0117%" height="15" fill="rgb(234,210,9)" fg:x="1352932" fg:w="272"/><text x="58.5701%" y="319.50"></text></g><g><title>native_sched_clock (245 samples, 0.01%)</title><rect x="58.3213%" y="293" width="0.0106%" height="15" fill="rgb(217,127,24)" fg:x="1352959" fg:w="245"/><text x="58.5713%" y="303.50"></text></g><g><title>resched_curr (328 samples, 0.01%)</title><rect x="58.3508%" y="357" width="0.0141%" height="15" fill="rgb(239,141,48)" fg:x="1353643" fg:w="328"/><text x="58.6008%" y="367.50"></text></g><g><title>ttwu_do_wakeup (772 samples, 0.03%)</title><rect x="58.3319%" y="389" width="0.0333%" height="15" fill="rgb(227,109,8)" fg:x="1353204" fg:w="772"/><text x="58.5819%" y="399.50"></text></g><g><title>check_preempt_curr (706 samples, 0.03%)</title><rect x="58.3347%" y="373" width="0.0304%" height="15" fill="rgb(235,184,23)" fg:x="1353270" fg:w="706"/><text x="58.5847%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (699 samples, 0.03%)</title><rect x="58.3651%" y="389" width="0.0301%" height="15" fill="rgb(227,226,48)" fg:x="1353976" fg:w="699"/><text x="58.6151%" y="399.50"></text></g><g><title>__wake_up_common (23,128 samples, 1.00%)</title><rect x="57.4254%" y="437" width="0.9970%" height="15" fill="rgb(206,150,11)" fg:x="1332175" fg:w="23128"/><text x="57.6754%" y="447.50"></text></g><g><title>autoremove_wake_function (22,553 samples, 0.97%)</title><rect x="57.4502%" y="421" width="0.9722%" height="15" fill="rgb(254,2,33)" fg:x="1332750" fg:w="22553"/><text x="57.7002%" y="431.50"></text></g><g><title>try_to_wake_up (21,965 samples, 0.95%)</title><rect x="57.4755%" y="405" width="0.9468%" height="15" fill="rgb(243,160,20)" fg:x="1333338" fg:w="21965"/><text x="57.7255%" y="415.50"></text></g><g><title>update_rq_clock (628 samples, 0.03%)</title><rect x="58.3953%" y="389" width="0.0271%" height="15" fill="rgb(218,208,30)" fg:x="1354675" fg:w="628"/><text x="58.6453%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (4,823 samples, 0.21%)</title><rect x="58.4223%" y="437" width="0.2079%" height="15" fill="rgb(224,120,49)" fg:x="1355303" fg:w="4823"/><text x="58.6723%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,555 samples, 0.20%)</title><rect x="58.4339%" y="421" width="0.1964%" height="15" fill="rgb(246,12,2)" fg:x="1355571" fg:w="4555"/><text x="58.6839%" y="431.50"></text></g><g><title>__wake_up_common_lock (28,231 samples, 1.22%)</title><rect x="57.4219%" y="453" width="1.2169%" height="15" fill="rgb(236,117,3)" fg:x="1332094" fg:w="28231"/><text x="57.6719%" y="463.50"></text></g><g><title>btrfs_search_slot (154,412 samples, 6.66%)</title><rect x="52.0131%" y="485" width="6.6562%" height="15" fill="rgb(216,128,52)" fg:x="1206619" fg:w="154412"/><text x="52.2631%" y="495.50">btrfs_sea..</text></g><g><title>unlock_up (29,856 samples, 1.29%)</title><rect x="57.3823%" y="469" width="1.2870%" height="15" fill="rgb(246,145,19)" fg:x="1331175" fg:w="29856"/><text x="57.6323%" y="479.50"></text></g><g><title>btrfs_tree_unlock (693 samples, 0.03%)</title><rect x="58.6394%" y="453" width="0.0299%" height="15" fill="rgb(222,11,46)" fg:x="1360338" fg:w="693"/><text x="58.8894%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (159,507 samples, 6.88%)</title><rect x="51.8485%" y="501" width="6.8758%" height="15" fill="rgb(245,82,36)" fg:x="1202801" fg:w="159507"/><text x="52.0985%" y="511.50">btrfs_loo..</text></g><g><title>crc32c (1,277 samples, 0.06%)</title><rect x="58.6693%" y="485" width="0.0550%" height="15" fill="rgb(250,73,51)" fg:x="1361031" fg:w="1277"/><text x="58.9193%" y="495.50"></text></g><g><title>crypto_shash_update (573 samples, 0.02%)</title><rect x="58.6996%" y="469" width="0.0247%" height="15" fill="rgb(221,189,23)" fg:x="1361735" fg:w="573"/><text x="58.9496%" y="479.50"></text></g><g><title>select_task_rq_fair (730 samples, 0.03%)</title><rect x="58.8004%" y="421" width="0.0315%" height="15" fill="rgb(210,33,7)" fg:x="1364074" fg:w="730"/><text x="59.0504%" y="431.50"></text></g><g><title>enqueue_entity (775 samples, 0.03%)</title><rect x="58.8461%" y="389" width="0.0334%" height="15" fill="rgb(210,107,22)" fg:x="1365134" fg:w="775"/><text x="59.0961%" y="399.50"></text></g><g><title>update_load_avg (263 samples, 0.01%)</title><rect x="58.8682%" y="373" width="0.0113%" height="15" fill="rgb(222,116,37)" fg:x="1365646" fg:w="263"/><text x="59.1182%" y="383.50"></text></g><g><title>enqueue_task_fair (977 samples, 0.04%)</title><rect x="58.8391%" y="405" width="0.0421%" height="15" fill="rgb(254,17,48)" fg:x="1364971" fg:w="977"/><text x="59.0891%" y="415.50"></text></g><g><title>ttwu_do_activate (2,001 samples, 0.09%)</title><rect x="58.8350%" y="421" width="0.0863%" height="15" fill="rgb(224,36,32)" fg:x="1364877" fg:w="2001"/><text x="59.0850%" y="431.50"></text></g><g><title>psi_task_change (929 samples, 0.04%)</title><rect x="58.8812%" y="405" width="0.0400%" height="15" fill="rgb(232,90,46)" fg:x="1365949" fg:w="929"/><text x="59.1312%" y="415.50"></text></g><g><title>psi_group_change (827 samples, 0.04%)</title><rect x="58.8856%" y="389" width="0.0356%" height="15" fill="rgb(241,66,40)" fg:x="1366051" fg:w="827"/><text x="59.1356%" y="399.50"></text></g><g><title>__wake_up_common (4,766 samples, 0.21%)</title><rect x="58.7368%" y="469" width="0.2054%" height="15" fill="rgb(249,184,29)" fg:x="1362599" fg:w="4766"/><text x="58.9868%" y="479.50"></text></g><g><title>autoremove_wake_function (4,666 samples, 0.20%)</title><rect x="58.7412%" y="453" width="0.2011%" height="15" fill="rgb(231,181,1)" fg:x="1362699" fg:w="4666"/><text x="58.9912%" y="463.50"></text></g><g><title>try_to_wake_up (4,573 samples, 0.20%)</title><rect x="58.7452%" y="437" width="0.1971%" height="15" fill="rgb(224,94,2)" fg:x="1362792" fg:w="4573"/><text x="58.9952%" y="447.50"></text></g><g><title>__wake_up_common_lock (4,979 samples, 0.21%)</title><rect x="58.7356%" y="485" width="0.2146%" height="15" fill="rgb(229,170,15)" fg:x="1362570" fg:w="4979"/><text x="58.9856%" y="495.50"></text></g><g><title>btrfs_tree_unlock (430 samples, 0.02%)</title><rect x="58.9504%" y="485" width="0.0185%" height="15" fill="rgb(240,127,35)" fg:x="1367554" fg:w="430"/><text x="59.2004%" y="495.50"></text></g><g><title>_raw_spin_lock (413 samples, 0.02%)</title><rect x="59.0135%" y="469" width="0.0178%" height="15" fill="rgb(248,196,34)" fg:x="1369018" fg:w="413"/><text x="59.2635%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (1,441 samples, 0.06%)</title><rect x="58.9698%" y="485" width="0.0621%" height="15" fill="rgb(236,137,7)" fg:x="1368004" fg:w="1441"/><text x="59.2198%" y="495.50"></text></g><g><title>btrfs_release_path (7,508 samples, 0.32%)</title><rect x="58.7243%" y="501" width="0.3236%" height="15" fill="rgb(235,127,16)" fg:x="1362308" fg:w="7508"/><text x="58.9743%" y="511.50"></text></g><g><title>release_extent_buffer (371 samples, 0.02%)</title><rect x="59.0319%" y="485" width="0.0160%" height="15" fill="rgb(250,192,54)" fg:x="1369445" fg:w="371"/><text x="59.2819%" y="495.50"></text></g><g><title>_raw_spin_lock (435 samples, 0.02%)</title><rect x="59.1033%" y="453" width="0.0188%" height="15" fill="rgb(218,98,20)" fg:x="1371101" fg:w="435"/><text x="59.3533%" y="463.50"></text></g><g><title>mutex_lock (324 samples, 0.01%)</title><rect x="59.1221%" y="453" width="0.0140%" height="15" fill="rgb(230,176,47)" fg:x="1371537" fg:w="324"/><text x="59.3721%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,755 samples, 0.08%)</title><rect x="59.0779%" y="469" width="0.0757%" height="15" fill="rgb(244,2,33)" fg:x="1370510" fg:w="1755"/><text x="59.3279%" y="479.50"></text></g><g><title>mutex_unlock (404 samples, 0.02%)</title><rect x="59.1361%" y="453" width="0.0174%" height="15" fill="rgb(231,100,17)" fg:x="1371861" fg:w="404"/><text x="59.3861%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (497 samples, 0.02%)</title><rect x="59.1637%" y="469" width="0.0214%" height="15" fill="rgb(245,23,12)" fg:x="1372501" fg:w="497"/><text x="59.4137%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (426 samples, 0.02%)</title><rect x="59.1667%" y="453" width="0.0184%" height="15" fill="rgb(249,55,22)" fg:x="1372572" fg:w="426"/><text x="59.4167%" y="463.50"></text></g><g><title>inode_get_bytes (346 samples, 0.01%)</title><rect x="59.1985%" y="453" width="0.0149%" height="15" fill="rgb(207,134,9)" fg:x="1373309" fg:w="346"/><text x="59.4485%" y="463.50"></text></g><g><title>fill_stack_inode_item (1,015 samples, 0.04%)</title><rect x="59.1851%" y="469" width="0.0438%" height="15" fill="rgb(218,134,0)" fg:x="1372998" fg:w="1015"/><text x="59.4351%" y="479.50"></text></g><g><title>map_id_up (358 samples, 0.02%)</title><rect x="59.2134%" y="453" width="0.0154%" height="15" fill="rgb(213,212,33)" fg:x="1373655" fg:w="358"/><text x="59.4634%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (4,098 samples, 0.18%)</title><rect x="59.0713%" y="485" width="0.1767%" height="15" fill="rgb(252,106,18)" fg:x="1370359" fg:w="4098"/><text x="59.3213%" y="495.50"></text></g><g><title>mutex_unlock (237 samples, 0.01%)</title><rect x="59.2378%" y="469" width="0.0102%" height="15" fill="rgb(208,126,42)" fg:x="1374220" fg:w="237"/><text x="59.4878%" y="479.50"></text></g><g><title>_raw_spin_lock (497 samples, 0.02%)</title><rect x="59.2542%" y="469" width="0.0214%" height="15" fill="rgb(246,175,29)" fg:x="1374601" fg:w="497"/><text x="59.5042%" y="479.50"></text></g><g><title>btrfs_update_inode (5,906 samples, 0.25%)</title><rect x="59.0479%" y="501" width="0.2546%" height="15" fill="rgb(215,13,50)" fg:x="1369816" fg:w="5906"/><text x="59.2979%" y="511.50"></text></g><g><title>btrfs_update_root_times (1,265 samples, 0.05%)</title><rect x="59.2480%" y="485" width="0.0545%" height="15" fill="rgb(216,172,15)" fg:x="1374457" fg:w="1265"/><text x="59.4980%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (623 samples, 0.03%)</title><rect x="59.2757%" y="469" width="0.0269%" height="15" fill="rgb(212,103,13)" fg:x="1375099" fg:w="623"/><text x="59.5257%" y="479.50"></text></g><g><title>kmem_cache_alloc (731 samples, 0.03%)</title><rect x="59.3093%" y="501" width="0.0315%" height="15" fill="rgb(231,171,36)" fg:x="1375879" fg:w="731"/><text x="59.5593%" y="511.50"></text></g><g><title>__btrfs_unlink_inode (294,587 samples, 12.70%)</title><rect x="46.6699%" y="517" width="12.6986%" height="15" fill="rgb(250,123,20)" fg:x="1082666" fg:w="294587"/><text x="46.9199%" y="527.50">__btrfs_unlink_inode</text></g><g><title>kmem_cache_free (643 samples, 0.03%)</title><rect x="59.3408%" y="501" width="0.0277%" height="15" fill="rgb(212,53,50)" fg:x="1376610" fg:w="643"/><text x="59.5908%" y="511.50"></text></g><g><title>__radix_tree_lookup (449 samples, 0.02%)</title><rect x="59.3934%" y="501" width="0.0194%" height="15" fill="rgb(243,54,12)" fg:x="1377829" fg:w="449"/><text x="59.6434%" y="511.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,035 samples, 0.04%)</title><rect x="59.3686%" y="517" width="0.0446%" height="15" fill="rgb(234,101,34)" fg:x="1377255" fg:w="1035"/><text x="59.6186%" y="527.50"></text></g><g><title>btrfs_balance_delayed_items (626 samples, 0.03%)</title><rect x="59.4267%" y="501" width="0.0270%" height="15" fill="rgb(254,67,22)" fg:x="1378602" fg:w="626"/><text x="59.6767%" y="511.50"></text></g><g><title>_raw_spin_lock (400 samples, 0.02%)</title><rect x="59.4629%" y="469" width="0.0172%" height="15" fill="rgb(250,35,47)" fg:x="1379443" fg:w="400"/><text x="59.7129%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (352 samples, 0.02%)</title><rect x="59.4650%" y="453" width="0.0152%" height="15" fill="rgb(226,126,38)" fg:x="1379491" fg:w="352"/><text x="59.7150%" y="463.50"></text></g><g><title>select_task_rq_fair (332 samples, 0.01%)</title><rect x="59.5006%" y="453" width="0.0143%" height="15" fill="rgb(216,138,53)" fg:x="1380318" fg:w="332"/><text x="59.7506%" y="463.50"></text></g><g><title>ttwu_do_activate (365 samples, 0.02%)</title><rect x="59.5164%" y="453" width="0.0157%" height="15" fill="rgb(246,199,43)" fg:x="1380684" fg:w="365"/><text x="59.7664%" y="463.50"></text></g><g><title>try_to_wake_up (1,339 samples, 0.06%)</title><rect x="59.4843%" y="469" width="0.0577%" height="15" fill="rgb(232,125,11)" fg:x="1379938" fg:w="1339"/><text x="59.7343%" y="479.50"></text></g><g><title>__queue_work (1,943 samples, 0.08%)</title><rect x="59.4583%" y="485" width="0.0838%" height="15" fill="rgb(218,219,45)" fg:x="1379335" fg:w="1943"/><text x="59.7083%" y="495.50"></text></g><g><title>btrfs_btree_balance_dirty (3,003 samples, 0.13%)</title><rect x="59.4132%" y="517" width="0.1294%" height="15" fill="rgb(216,102,54)" fg:x="1378290" fg:w="3003"/><text x="59.6632%" y="527.50"></text></g><g><title>queue_work_on (1,993 samples, 0.09%)</title><rect x="59.4568%" y="501" width="0.0859%" height="15" fill="rgb(250,228,7)" fg:x="1379300" fg:w="1993"/><text x="59.7068%" y="511.50"></text></g><g><title>ttwu_do_activate (472 samples, 0.02%)</title><rect x="59.6537%" y="389" width="0.0203%" height="15" fill="rgb(226,125,25)" fg:x="1383869" fg:w="472"/><text x="59.9037%" y="399.50"></text></g><g><title>psi_task_change (245 samples, 0.01%)</title><rect x="59.6635%" y="373" width="0.0106%" height="15" fill="rgb(224,165,27)" fg:x="1384096" fg:w="245"/><text x="59.9135%" y="383.50"></text></g><g><title>__wake_up_common (2,170 samples, 0.09%)</title><rect x="59.5862%" y="437" width="0.0935%" height="15" fill="rgb(233,86,3)" fg:x="1382302" fg:w="2170"/><text x="59.8362%" y="447.50"></text></g><g><title>autoremove_wake_function (2,151 samples, 0.09%)</title><rect x="59.5870%" y="421" width="0.0927%" height="15" fill="rgb(228,116,20)" fg:x="1382321" fg:w="2151"/><text x="59.8370%" y="431.50"></text></g><g><title>try_to_wake_up (2,138 samples, 0.09%)</title><rect x="59.5875%" y="405" width="0.0922%" height="15" fill="rgb(209,192,17)" fg:x="1382334" fg:w="2138"/><text x="59.8375%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,227 samples, 0.10%)</title><rect x="59.5857%" y="453" width="0.0960%" height="15" fill="rgb(224,88,34)" fg:x="1382290" fg:w="2227"/><text x="59.8357%" y="463.50"></text></g><g><title>btrfs_tree_unlock (339 samples, 0.01%)</title><rect x="59.6817%" y="453" width="0.0146%" height="15" fill="rgb(233,38,6)" fg:x="1384519" fg:w="339"/><text x="59.9317%" y="463.50"></text></g><g><title>_raw_spin_lock (501 samples, 0.02%)</title><rect x="59.7451%" y="437" width="0.0216%" height="15" fill="rgb(212,59,30)" fg:x="1385988" fg:w="501"/><text x="59.9951%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,620 samples, 0.07%)</title><rect x="59.6972%" y="453" width="0.0698%" height="15" fill="rgb(213,80,3)" fg:x="1384877" fg:w="1620"/><text x="59.9472%" y="463.50"></text></g><g><title>btrfs_free_path (5,019 samples, 0.22%)</title><rect x="59.5681%" y="485" width="0.2164%" height="15" fill="rgb(251,178,7)" fg:x="1381883" fg:w="5019"/><text x="59.8181%" y="495.50"></text></g><g><title>btrfs_release_path (4,886 samples, 0.21%)</title><rect x="59.5738%" y="469" width="0.2106%" height="15" fill="rgb(213,154,26)" fg:x="1382016" fg:w="4886"/><text x="59.8238%" y="479.50"></text></g><g><title>release_extent_buffer (405 samples, 0.02%)</title><rect x="59.7670%" y="453" width="0.0175%" height="15" fill="rgb(238,165,49)" fg:x="1386497" fg:w="405"/><text x="60.0170%" y="463.50"></text></g><g><title>_raw_read_lock (661 samples, 0.03%)</title><rect x="59.9437%" y="421" width="0.0285%" height="15" fill="rgb(248,91,46)" fg:x="1390596" fg:w="661"/><text x="60.1937%" y="431.50"></text></g><g><title>finish_wait (5,078 samples, 0.22%)</title><rect x="59.9756%" y="421" width="0.2189%" height="15" fill="rgb(244,21,52)" fg:x="1391336" fg:w="5078"/><text x="60.2256%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (4,854 samples, 0.21%)</title><rect x="59.9852%" y="405" width="0.2092%" height="15" fill="rgb(247,122,20)" fg:x="1391560" fg:w="4854"/><text x="60.2352%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,616 samples, 0.20%)</title><rect x="59.9955%" y="389" width="0.1990%" height="15" fill="rgb(218,27,9)" fg:x="1391798" fg:w="4616"/><text x="60.2455%" y="399.50"></text></g><g><title>__list_add_valid (289 samples, 0.01%)</title><rect x="60.2275%" y="405" width="0.0125%" height="15" fill="rgb(246,7,6)" fg:x="1397180" fg:w="289"/><text x="60.4775%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (12,392 samples, 0.53%)</title><rect x="60.2400%" y="405" width="0.5342%" height="15" fill="rgb(227,135,54)" fg:x="1397469" fg:w="12392"/><text x="60.4900%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,811 samples, 0.51%)</title><rect x="60.2650%" y="389" width="0.5091%" height="15" fill="rgb(247,14,11)" fg:x="1398050" fg:w="11811"/><text x="60.5150%" y="399.50"></text></g><g><title>prepare_to_wait_event (13,637 samples, 0.59%)</title><rect x="60.1950%" y="421" width="0.5878%" height="15" fill="rgb(206,149,34)" fg:x="1396425" fg:w="13637"/><text x="60.4450%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (11,322 samples, 0.49%)</title><rect x="60.7828%" y="421" width="0.4881%" height="15" fill="rgb(227,228,4)" fg:x="1410062" fg:w="11322"/><text x="61.0328%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,216 samples, 0.35%)</title><rect x="60.9167%" y="405" width="0.3542%" height="15" fill="rgb(238,218,28)" fg:x="1413168" fg:w="8216"/><text x="61.1667%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (329 samples, 0.01%)</title><rect x="61.2989%" y="389" width="0.0142%" height="15" fill="rgb(252,86,40)" fg:x="1422035" fg:w="329"/><text x="61.5489%" y="399.50"></text></g><g><title>update_curr (701 samples, 0.03%)</title><rect x="61.3548%" y="357" width="0.0302%" height="15" fill="rgb(251,225,11)" fg:x="1423332" fg:w="701"/><text x="61.6048%" y="367.50"></text></g><g><title>dequeue_entity (1,827 samples, 0.08%)</title><rect x="61.3301%" y="373" width="0.0788%" height="15" fill="rgb(206,46,49)" fg:x="1422758" fg:w="1827"/><text x="61.5801%" y="383.50"></text></g><g><title>update_load_avg (552 samples, 0.02%)</title><rect x="61.3850%" y="357" width="0.0238%" height="15" fill="rgb(245,128,24)" fg:x="1424033" fg:w="552"/><text x="61.6350%" y="367.50"></text></g><g><title>dequeue_task_fair (2,268 samples, 0.10%)</title><rect x="61.3172%" y="389" width="0.0978%" height="15" fill="rgb(219,177,34)" fg:x="1422458" fg:w="2268"/><text x="61.5672%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (5,189 samples, 0.22%)</title><rect x="61.4357%" y="373" width="0.2237%" height="15" fill="rgb(218,60,48)" fg:x="1425208" fg:w="5189"/><text x="61.6857%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,017 samples, 0.22%)</title><rect x="61.4431%" y="357" width="0.2163%" height="15" fill="rgb(221,11,5)" fg:x="1425380" fg:w="5017"/><text x="61.6931%" y="367.50"></text></g><g><title>native_write_msr (4,948 samples, 0.21%)</title><rect x="61.4461%" y="341" width="0.2133%" height="15" fill="rgb(220,148,13)" fg:x="1425449" fg:w="4948"/><text x="61.6961%" y="351.50"></text></g><g><title>finish_task_switch (5,868 samples, 0.25%)</title><rect x="61.4149%" y="389" width="0.2529%" height="15" fill="rgb(210,16,3)" fg:x="1424726" fg:w="5868"/><text x="61.6649%" y="399.50"></text></g><g><title>pick_next_task_fair (419 samples, 0.02%)</title><rect x="61.6683%" y="389" width="0.0181%" height="15" fill="rgb(236,80,2)" fg:x="1430605" fg:w="419"/><text x="61.9183%" y="399.50"></text></g><g><title>__update_idle_core (311 samples, 0.01%)</title><rect x="61.6891%" y="373" width="0.0134%" height="15" fill="rgb(239,129,19)" fg:x="1431086" fg:w="311"/><text x="61.9391%" y="383.50"></text></g><g><title>pick_next_task_idle (374 samples, 0.02%)</title><rect x="61.6864%" y="389" width="0.0161%" height="15" fill="rgb(220,106,35)" fg:x="1431024" fg:w="374"/><text x="61.9364%" y="399.50"></text></g><g><title>psi_task_change (1,726 samples, 0.07%)</title><rect x="61.7025%" y="389" width="0.0744%" height="15" fill="rgb(252,139,45)" fg:x="1431398" fg:w="1726"/><text x="61.9525%" y="399.50"></text></g><g><title>psi_group_change (1,462 samples, 0.06%)</title><rect x="61.7139%" y="373" width="0.0630%" height="15" fill="rgb(229,8,36)" fg:x="1431662" fg:w="1462"/><text x="61.9639%" y="383.50"></text></g><g><title>record_times (327 samples, 0.01%)</title><rect x="61.7628%" y="357" width="0.0141%" height="15" fill="rgb(230,126,33)" fg:x="1432797" fg:w="327"/><text x="62.0128%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (43,847 samples, 1.89%)</title><rect x="59.9077%" y="437" width="1.8901%" height="15" fill="rgb(239,140,21)" fg:x="1389760" fg:w="43847"/><text x="60.1577%" y="447.50">_..</text></g><g><title>schedule (12,223 samples, 0.53%)</title><rect x="61.2709%" y="421" width="0.5269%" height="15" fill="rgb(254,104,9)" fg:x="1421384" fg:w="12223"/><text x="61.5209%" y="431.50"></text></g><g><title>__schedule (12,085 samples, 0.52%)</title><rect x="61.2768%" y="405" width="0.5209%" height="15" fill="rgb(239,52,14)" fg:x="1421522" fg:w="12085"/><text x="61.5268%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (45,176 samples, 1.95%)</title><rect x="59.9018%" y="453" width="1.9474%" height="15" fill="rgb(208,227,44)" fg:x="1389624" fg:w="45176"/><text x="60.1518%" y="463.50">_..</text></g><g><title>btrfs_root_node (1,192 samples, 0.05%)</title><rect x="61.7978%" y="437" width="0.0514%" height="15" fill="rgb(246,18,19)" fg:x="1433608" fg:w="1192"/><text x="62.0478%" y="447.50"></text></g><g><title>finish_wait (376 samples, 0.02%)</title><rect x="61.8671%" y="437" width="0.0162%" height="15" fill="rgb(235,228,25)" fg:x="1435217" fg:w="376"/><text x="62.1171%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (318 samples, 0.01%)</title><rect x="61.8696%" y="421" width="0.0137%" height="15" fill="rgb(240,156,20)" fg:x="1435275" fg:w="318"/><text x="62.1196%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (259 samples, 0.01%)</title><rect x="61.8722%" y="405" width="0.0112%" height="15" fill="rgb(224,8,20)" fg:x="1435334" fg:w="259"/><text x="62.1222%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (606 samples, 0.03%)</title><rect x="61.8990%" y="421" width="0.0261%" height="15" fill="rgb(214,12,52)" fg:x="1435956" fg:w="606"/><text x="62.1490%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (380 samples, 0.02%)</title><rect x="61.9087%" y="405" width="0.0164%" height="15" fill="rgb(211,220,47)" fg:x="1436182" fg:w="380"/><text x="62.1587%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,016 samples, 0.04%)</title><rect x="61.8843%" y="437" width="0.0438%" height="15" fill="rgb(250,173,5)" fg:x="1435616" fg:w="1016"/><text x="62.1343%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (383 samples, 0.02%)</title><rect x="61.9597%" y="421" width="0.0165%" height="15" fill="rgb(250,125,52)" fg:x="1437363" fg:w="383"/><text x="62.2097%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,115 samples, 0.05%)</title><rect x="61.9281%" y="437" width="0.0481%" height="15" fill="rgb(209,133,18)" fg:x="1436632" fg:w="1115"/><text x="62.1781%" y="447.50"></text></g><g><title>update_curr (336 samples, 0.01%)</title><rect x="62.0172%" y="373" width="0.0145%" height="15" fill="rgb(216,173,22)" fg:x="1438699" fg:w="336"/><text x="62.2672%" y="383.50"></text></g><g><title>dequeue_entity (917 samples, 0.04%)</title><rect x="62.0050%" y="389" width="0.0395%" height="15" fill="rgb(205,3,22)" fg:x="1438415" fg:w="917"/><text x="62.2550%" y="399.50"></text></g><g><title>update_load_avg (297 samples, 0.01%)</title><rect x="62.0317%" y="373" width="0.0128%" height="15" fill="rgb(248,22,20)" fg:x="1439035" fg:w="297"/><text x="62.2817%" y="383.50"></text></g><g><title>dequeue_task_fair (1,120 samples, 0.05%)</title><rect x="61.9997%" y="405" width="0.0483%" height="15" fill="rgb(233,6,29)" fg:x="1438292" fg:w="1120"/><text x="62.2497%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (2,473 samples, 0.11%)</title><rect x="62.0588%" y="389" width="0.1066%" height="15" fill="rgb(240,22,54)" fg:x="1439663" fg:w="2473"/><text x="62.3088%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,415 samples, 0.10%)</title><rect x="62.0613%" y="373" width="0.1041%" height="15" fill="rgb(231,133,32)" fg:x="1439721" fg:w="2415"/><text x="62.3113%" y="383.50"></text></g><g><title>native_write_msr (2,387 samples, 0.10%)</title><rect x="62.0625%" y="357" width="0.1029%" height="15" fill="rgb(248,193,4)" fg:x="1439749" fg:w="2387"/><text x="62.3125%" y="367.50"></text></g><g><title>finish_task_switch (2,796 samples, 0.12%)</title><rect x="62.0480%" y="405" width="0.1205%" height="15" fill="rgb(211,178,46)" fg:x="1439412" fg:w="2796"/><text x="62.2980%" y="415.50"></text></g><g><title>psi_task_change (835 samples, 0.04%)</title><rect x="62.1860%" y="405" width="0.0360%" height="15" fill="rgb(224,5,42)" fg:x="1442614" fg:w="835"/><text x="62.4360%" y="415.50"></text></g><g><title>psi_group_change (705 samples, 0.03%)</title><rect x="62.1916%" y="389" width="0.0304%" height="15" fill="rgb(239,176,25)" fg:x="1442744" fg:w="705"/><text x="62.4416%" y="399.50"></text></g><g><title>__btrfs_tree_lock (8,886 samples, 0.38%)</title><rect x="61.8492%" y="453" width="0.3830%" height="15" fill="rgb(245,187,50)" fg:x="1434800" fg:w="8886"/><text x="62.0992%" y="463.50"></text></g><g><title>schedule (5,939 samples, 0.26%)</title><rect x="61.9762%" y="437" width="0.2560%" height="15" fill="rgb(248,24,15)" fg:x="1437747" fg:w="5939"/><text x="62.2262%" y="447.50"></text></g><g><title>__schedule (5,868 samples, 0.25%)</title><rect x="61.9793%" y="421" width="0.2529%" height="15" fill="rgb(205,166,13)" fg:x="1437818" fg:w="5868"/><text x="62.2293%" y="431.50"></text></g><g><title>btrfs_leaf_free_space (992 samples, 0.04%)</title><rect x="62.2417%" y="453" width="0.0428%" height="15" fill="rgb(208,114,23)" fg:x="1443906" fg:w="992"/><text x="62.4917%" y="463.50"></text></g><g><title>leaf_space_used (706 samples, 0.03%)</title><rect x="62.2540%" y="437" width="0.0304%" height="15" fill="rgb(239,127,18)" fg:x="1444192" fg:w="706"/><text x="62.5040%" y="447.50"></text></g><g><title>btrfs_get_32 (442 samples, 0.02%)</title><rect x="62.2654%" y="421" width="0.0191%" height="15" fill="rgb(219,154,28)" fg:x="1444456" fg:w="442"/><text x="62.5154%" y="431.50"></text></g><g><title>btrfs_set_lock_blocking_read (243 samples, 0.01%)</title><rect x="62.3133%" y="437" width="0.0105%" height="15" fill="rgb(225,157,23)" fg:x="1445567" fg:w="243"/><text x="62.5633%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (813 samples, 0.04%)</title><rect x="62.2942%" y="453" width="0.0350%" height="15" fill="rgb(219,8,6)" fg:x="1445124" fg:w="813"/><text x="62.5442%" y="463.50"></text></g><g><title>_raw_write_lock (535 samples, 0.02%)</title><rect x="62.3376%" y="437" width="0.0231%" height="15" fill="rgb(212,47,6)" fg:x="1446130" fg:w="535"/><text x="62.5876%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (6,894 samples, 0.30%)</title><rect x="62.3294%" y="453" width="0.2972%" height="15" fill="rgb(224,190,4)" fg:x="1445941" fg:w="6894"/><text x="62.5794%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (6,169 samples, 0.27%)</title><rect x="62.3607%" y="437" width="0.2659%" height="15" fill="rgb(239,183,29)" fg:x="1446666" fg:w="6169"/><text x="62.6107%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,041 samples, 0.04%)</title><rect x="62.5817%" y="421" width="0.0449%" height="15" fill="rgb(213,57,7)" fg:x="1451794" fg:w="1041"/><text x="62.8317%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (3,796 samples, 0.16%)</title><rect x="62.6266%" y="453" width="0.1636%" height="15" fill="rgb(216,148,1)" fg:x="1452836" fg:w="3796"/><text x="62.8766%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (759 samples, 0.03%)</title><rect x="62.8150%" y="437" width="0.0327%" height="15" fill="rgb(236,182,29)" fg:x="1457205" fg:w="759"/><text x="63.0650%" y="447.50"></text></g><g><title>verify_parent_transid (612 samples, 0.03%)</title><rect x="62.8213%" y="421" width="0.0264%" height="15" fill="rgb(244,120,48)" fg:x="1457352" fg:w="612"/><text x="63.0713%" y="431.50"></text></g><g><title>btrfs_get_64 (755 samples, 0.03%)</title><rect x="62.8477%" y="437" width="0.0325%" height="15" fill="rgb(206,71,34)" fg:x="1457964" fg:w="755"/><text x="63.0977%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (279 samples, 0.01%)</title><rect x="62.8682%" y="421" width="0.0120%" height="15" fill="rgb(242,32,6)" fg:x="1458440" fg:w="279"/><text x="63.1182%" y="431.50"></text></g><g><title>btrfs_verify_level_key (268 samples, 0.01%)</title><rect x="62.8827%" y="437" width="0.0116%" height="15" fill="rgb(241,35,3)" fg:x="1458776" fg:w="268"/><text x="63.1327%" y="447.50"></text></g><g><title>__radix_tree_lookup (2,324 samples, 0.10%)</title><rect x="62.9854%" y="421" width="0.1002%" height="15" fill="rgb(222,62,19)" fg:x="1461158" fg:w="2324"/><text x="63.2354%" y="431.50"></text></g><g><title>mark_page_accessed (818 samples, 0.04%)</title><rect x="63.1011%" y="405" width="0.0353%" height="15" fill="rgb(223,110,41)" fg:x="1463843" fg:w="818"/><text x="63.3511%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,237 samples, 0.05%)</title><rect x="63.0859%" y="421" width="0.0533%" height="15" fill="rgb(208,224,4)" fg:x="1463490" fg:w="1237"/><text x="63.3359%" y="431.50"></text></g><g><title>find_extent_buffer (5,702 samples, 0.25%)</title><rect x="62.8942%" y="437" width="0.2458%" height="15" fill="rgb(241,137,19)" fg:x="1459044" fg:w="5702"/><text x="63.1442%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (8,745 samples, 0.38%)</title><rect x="62.7903%" y="453" width="0.3770%" height="15" fill="rgb(244,24,17)" fg:x="1456632" fg:w="8745"/><text x="63.0403%" y="463.50"></text></g><g><title>read_extent_buffer (631 samples, 0.03%)</title><rect x="63.1400%" y="437" width="0.0272%" height="15" fill="rgb(245,178,49)" fg:x="1464746" fg:w="631"/><text x="63.3900%" y="447.50"></text></g><g><title>_raw_spin_lock (272 samples, 0.01%)</title><rect x="63.2845%" y="373" width="0.0117%" height="15" fill="rgb(219,160,38)" fg:x="1468097" fg:w="272"/><text x="63.5345%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (269 samples, 0.01%)</title><rect x="63.2962%" y="373" width="0.0116%" height="15" fill="rgb(228,137,14)" fg:x="1468369" fg:w="269"/><text x="63.5462%" y="383.50"></text></g><g><title>available_idle_cpu (264 samples, 0.01%)</title><rect x="63.3348%" y="357" width="0.0114%" height="15" fill="rgb(237,134,11)" fg:x="1469263" fg:w="264"/><text x="63.5848%" y="367.50"></text></g><g><title>select_task_rq_fair (1,337 samples, 0.06%)</title><rect x="63.3091%" y="373" width="0.0576%" height="15" fill="rgb(211,126,44)" fg:x="1468669" fg:w="1337"/><text x="63.5591%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (295 samples, 0.01%)</title><rect x="63.3541%" y="357" width="0.0127%" height="15" fill="rgb(226,171,33)" fg:x="1469711" fg:w="295"/><text x="63.6041%" y="367.50"></text></g><g><title>enqueue_entity (1,215 samples, 0.05%)</title><rect x="63.3884%" y="341" width="0.0524%" height="15" fill="rgb(253,99,13)" fg:x="1470507" fg:w="1215"/><text x="63.6384%" y="351.50"></text></g><g><title>update_load_avg (433 samples, 0.02%)</title><rect x="63.4221%" y="325" width="0.0187%" height="15" fill="rgb(244,48,7)" fg:x="1471289" fg:w="433"/><text x="63.6721%" y="335.50"></text></g><g><title>enqueue_task_fair (1,565 samples, 0.07%)</title><rect x="63.3779%" y="357" width="0.0675%" height="15" fill="rgb(244,217,54)" fg:x="1470263" fg:w="1565"/><text x="63.6279%" y="367.50"></text></g><g><title>ttwu_do_activate (3,219 samples, 0.14%)</title><rect x="63.3716%" y="373" width="0.1388%" height="15" fill="rgb(224,15,18)" fg:x="1470117" fg:w="3219"/><text x="63.6216%" y="383.50"></text></g><g><title>psi_task_change (1,506 samples, 0.06%)</title><rect x="63.4454%" y="357" width="0.0649%" height="15" fill="rgb(244,99,12)" fg:x="1471830" fg:w="1506"/><text x="63.6954%" y="367.50"></text></g><g><title>psi_group_change (1,332 samples, 0.06%)</title><rect x="63.4529%" y="341" width="0.0574%" height="15" fill="rgb(233,226,8)" fg:x="1472004" fg:w="1332"/><text x="63.7029%" y="351.50"></text></g><g><title>ttwu_do_wakeup (278 samples, 0.01%)</title><rect x="63.5103%" y="373" width="0.0120%" height="15" fill="rgb(229,211,3)" fg:x="1473336" fg:w="278"/><text x="63.7603%" y="383.50"></text></g><g><title>check_preempt_curr (249 samples, 0.01%)</title><rect x="63.5116%" y="357" width="0.0107%" height="15" fill="rgb(216,140,21)" fg:x="1473365" fg:w="249"/><text x="63.7616%" y="367.50"></text></g><g><title>__wake_up_common (7,443 samples, 0.32%)</title><rect x="63.2205%" y="421" width="0.3208%" height="15" fill="rgb(234,122,30)" fg:x="1466612" fg:w="7443"/><text x="63.4705%" y="431.50"></text></g><g><title>autoremove_wake_function (7,318 samples, 0.32%)</title><rect x="63.2259%" y="405" width="0.3155%" height="15" fill="rgb(236,25,46)" fg:x="1466737" fg:w="7318"/><text x="63.4759%" y="415.50"></text></g><g><title>try_to_wake_up (7,099 samples, 0.31%)</title><rect x="63.2353%" y="389" width="0.3060%" height="15" fill="rgb(217,52,54)" fg:x="1466956" fg:w="7099"/><text x="63.4853%" y="399.50"></text></g><g><title>update_rq_clock (251 samples, 0.01%)</title><rect x="63.5305%" y="373" width="0.0108%" height="15" fill="rgb(222,29,26)" fg:x="1473804" fg:w="251"/><text x="63.7805%" y="383.50"></text></g><g><title>__wake_up_common_lock (7,636 samples, 0.33%)</title><rect x="63.2195%" y="437" width="0.3292%" height="15" fill="rgb(216,177,29)" fg:x="1466590" fg:w="7636"/><text x="63.4695%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (643 samples, 0.03%)</title><rect x="63.5490%" y="437" width="0.0277%" height="15" fill="rgb(247,136,51)" fg:x="1474233" fg:w="643"/><text x="63.7990%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (254 samples, 0.01%)</title><rect x="63.5767%" y="437" width="0.0109%" height="15" fill="rgb(231,47,47)" fg:x="1474876" fg:w="254"/><text x="63.8267%" y="447.50"></text></g><g><title>btrfs_search_slot (88,059 samples, 3.80%)</title><rect x="59.8011%" y="469" width="3.7959%" height="15" fill="rgb(211,192,36)" fg:x="1387288" fg:w="88059"/><text x="60.0511%" y="479.50">btrf..</text></g><g><title>unlock_up (9,615 samples, 0.41%)</title><rect x="63.1825%" y="453" width="0.4145%" height="15" fill="rgb(229,156,32)" fg:x="1465732" fg:w="9615"/><text x="63.4325%" y="463.50"></text></g><g><title>btrfs_get_32 (394 samples, 0.02%)</title><rect x="63.6579%" y="453" width="0.0170%" height="15" fill="rgb(248,213,20)" fg:x="1476759" fg:w="394"/><text x="63.9079%" y="463.50"></text></g><g><title>btrfs_get_token_32 (373 samples, 0.02%)</title><rect x="63.6749%" y="453" width="0.0161%" height="15" fill="rgb(217,64,7)" fg:x="1477153" fg:w="373"/><text x="63.9249%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (1,089 samples, 0.05%)</title><rect x="63.6909%" y="453" width="0.0469%" height="15" fill="rgb(232,142,8)" fg:x="1477526" fg:w="1089"/><text x="63.9409%" y="463.50"></text></g><g><title>leaf_space_used (896 samples, 0.04%)</title><rect x="63.6993%" y="437" width="0.0386%" height="15" fill="rgb(224,92,44)" fg:x="1477719" fg:w="896"/><text x="63.9493%" y="447.50"></text></g><g><title>btrfs_get_32 (649 samples, 0.03%)</title><rect x="63.7099%" y="421" width="0.0280%" height="15" fill="rgb(214,169,17)" fg:x="1477966" fg:w="649"/><text x="63.9599%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (788 samples, 0.03%)</title><rect x="63.7379%" y="453" width="0.0340%" height="15" fill="rgb(210,59,37)" fg:x="1478615" fg:w="788"/><text x="63.9879%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (381 samples, 0.02%)</title><rect x="63.7554%" y="437" width="0.0164%" height="15" fill="rgb(214,116,48)" fg:x="1479022" fg:w="381"/><text x="64.0054%" y="447.50"></text></g><g><title>btrfs_set_token_32 (548 samples, 0.02%)</title><rect x="63.7719%" y="453" width="0.0236%" height="15" fill="rgb(244,191,6)" fg:x="1479403" fg:w="548"/><text x="64.0219%" y="463.50"></text></g><g><title>btrfs_unlock_up_safe (369 samples, 0.02%)</title><rect x="63.7955%" y="453" width="0.0159%" height="15" fill="rgb(241,50,52)" fg:x="1479951" fg:w="369"/><text x="64.0455%" y="463.50"></text></g><g><title>copy_pages (283 samples, 0.01%)</title><rect x="63.8253%" y="437" width="0.0122%" height="15" fill="rgb(236,75,39)" fg:x="1480643" fg:w="283"/><text x="64.0753%" y="447.50"></text></g><g><title>memmove_extent_buffer (755 samples, 0.03%)</title><rect x="63.8114%" y="453" width="0.0325%" height="15" fill="rgb(236,99,0)" fg:x="1480320" fg:w="755"/><text x="64.0614%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (94,881 samples, 4.09%)</title><rect x="59.7845%" y="485" width="4.0900%" height="15" fill="rgb(207,202,15)" fg:x="1386902" fg:w="94881"/><text x="60.0345%" y="495.50">btrf..</text></g><g><title>setup_items_for_insert (6,436 samples, 0.28%)</title><rect x="63.5970%" y="469" width="0.2774%" height="15" fill="rgb(233,207,14)" fg:x="1475347" fg:w="6436"/><text x="63.8470%" y="479.50"></text></g><g><title>write_extent_buffer (708 samples, 0.03%)</title><rect x="63.8439%" y="453" width="0.0305%" height="15" fill="rgb(226,27,51)" fg:x="1481075" fg:w="708"/><text x="64.0939%" y="463.50"></text></g><g><title>kmem_cache_alloc (718 samples, 0.03%)</title><rect x="63.8744%" y="485" width="0.0310%" height="15" fill="rgb(206,104,42)" fg:x="1481783" fg:w="718"/><text x="64.1244%" y="495.50"></text></g><g><title>btrfs_orphan_add (101,560 samples, 4.38%)</title><rect x="59.5526%" y="517" width="4.3779%" height="15" fill="rgb(212,225,4)" fg:x="1381523" fg:w="101560"/><text x="59.8026%" y="527.50">btrfs..</text></g><g><title>btrfs_insert_orphan_item (101,377 samples, 4.37%)</title><rect x="59.5605%" y="501" width="4.3700%" height="15" fill="rgb(233,96,42)" fg:x="1381706" fg:w="101377"/><text x="59.8105%" y="511.50">btrfs..</text></g><g><title>kmem_cache_free (582 samples, 0.03%)</title><rect x="63.9054%" y="485" width="0.0251%" height="15" fill="rgb(229,21,32)" fg:x="1482501" fg:w="582"/><text x="64.1554%" y="495.50"></text></g><g><title>mutex_lock (852 samples, 0.04%)</title><rect x="63.9336%" y="501" width="0.0367%" height="15" fill="rgb(226,216,24)" fg:x="1483156" fg:w="852"/><text x="64.1836%" y="511.50"></text></g><g><title>btrfs_record_unlink_dir (1,139 samples, 0.05%)</title><rect x="63.9305%" y="517" width="0.0491%" height="15" fill="rgb(221,163,17)" fg:x="1483083" fg:w="1139"/><text x="64.1805%" y="527.50"></text></g><g><title>_raw_spin_lock (233 samples, 0.01%)</title><rect x="64.0376%" y="469" width="0.0100%" height="15" fill="rgb(216,216,42)" fg:x="1485569" fg:w="233"/><text x="64.2876%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,169 samples, 0.05%)</title><rect x="64.0207%" y="485" width="0.0504%" height="15" fill="rgb(240,118,7)" fg:x="1485176" fg:w="1169"/><text x="64.2707%" y="495.50"></text></g><g><title>mutex_unlock (360 samples, 0.02%)</title><rect x="64.0556%" y="469" width="0.0155%" height="15" fill="rgb(221,67,37)" fg:x="1485985" fg:w="360"/><text x="64.3056%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (947 samples, 0.04%)</title><rect x="64.0712%" y="485" width="0.0408%" height="15" fill="rgb(241,32,44)" fg:x="1486348" fg:w="947"/><text x="64.3212%" y="495.50"></text></g><g><title>_raw_spin_lock (837 samples, 0.04%)</title><rect x="64.0760%" y="469" width="0.0361%" height="15" fill="rgb(235,204,43)" fg:x="1486458" fg:w="837"/><text x="64.3260%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (317 samples, 0.01%)</title><rect x="64.1120%" y="485" width="0.0137%" height="15" fill="rgb(213,116,10)" fg:x="1487295" fg:w="317"/><text x="64.3620%" y="495.50"></text></g><g><title>btrfs_get_delayed_node (287 samples, 0.01%)</title><rect x="64.1133%" y="469" width="0.0124%" height="15" fill="rgb(239,15,48)" fg:x="1487325" fg:w="287"/><text x="64.3633%" y="479.50"></text></g><g><title>fill_stack_inode_item (524 samples, 0.02%)</title><rect x="64.1257%" y="485" width="0.0226%" height="15" fill="rgb(207,123,36)" fg:x="1487612" fg:w="524"/><text x="64.3757%" y="495.50"></text></g><g><title>mutex_lock (354 samples, 0.02%)</title><rect x="64.1483%" y="485" width="0.0153%" height="15" fill="rgb(209,103,30)" fg:x="1488136" fg:w="354"/><text x="64.3983%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (4,010 samples, 0.17%)</title><rect x="63.9965%" y="501" width="0.1729%" height="15" fill="rgb(238,100,19)" fg:x="1484615" fg:w="4010"/><text x="64.2465%" y="511.50"></text></g><g><title>btrfs_update_inode (4,794 samples, 0.21%)</title><rect x="63.9861%" y="517" width="0.2067%" height="15" fill="rgb(244,30,14)" fg:x="1484373" fg:w="4794"/><text x="64.2361%" y="527.50"></text></g><g><title>btrfs_update_root_times (542 samples, 0.02%)</title><rect x="64.1694%" y="501" width="0.0234%" height="15" fill="rgb(249,174,6)" fg:x="1488625" fg:w="542"/><text x="64.4194%" y="511.50"></text></g><g><title>ktime_get_real_ts64 (267 samples, 0.01%)</title><rect x="64.1812%" y="485" width="0.0115%" height="15" fill="rgb(235,213,41)" fg:x="1488900" fg:w="267"/><text x="64.4312%" y="495.50"></text></g><g><title>drop_nlink (791 samples, 0.03%)</title><rect x="64.1927%" y="517" width="0.0341%" height="15" fill="rgb(213,118,6)" fg:x="1489167" fg:w="791"/><text x="64.4427%" y="527.50"></text></g><g><title>_raw_spin_lock (691 samples, 0.03%)</title><rect x="64.3001%" y="485" width="0.0298%" height="15" fill="rgb(235,44,51)" fg:x="1491658" fg:w="691"/><text x="64.5501%" y="495.50"></text></g><g><title>_raw_spin_lock (1,187 samples, 0.05%)</title><rect x="64.3679%" y="453" width="0.0512%" height="15" fill="rgb(217,9,53)" fg:x="1493231" fg:w="1187"/><text x="64.6179%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (464 samples, 0.02%)</title><rect x="64.3991%" y="437" width="0.0200%" height="15" fill="rgb(237,172,34)" fg:x="1493954" fg:w="464"/><text x="64.6491%" y="447.50"></text></g><g><title>_raw_spin_lock (365 samples, 0.02%)</title><rect x="64.4779%" y="421" width="0.0157%" height="15" fill="rgb(206,206,11)" fg:x="1495782" fg:w="365"/><text x="64.7279%" y="431.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,730 samples, 0.07%)</title><rect x="64.4191%" y="453" width="0.0746%" height="15" fill="rgb(214,149,29)" fg:x="1494418" fg:w="1730"/><text x="64.6691%" y="463.50"></text></g><g><title>btrfs_reduce_alloc_profile (827 samples, 0.04%)</title><rect x="64.4580%" y="437" width="0.0356%" height="15" fill="rgb(208,123,3)" fg:x="1495321" fg:w="827"/><text x="64.7080%" y="447.50"></text></g><g><title>_raw_spin_lock (259 samples, 0.01%)</title><rect x="64.5174%" y="421" width="0.0112%" height="15" fill="rgb(229,126,4)" fg:x="1496698" fg:w="259"/><text x="64.7674%" y="431.50"></text></g><g><title>__reserve_bytes (4,108 samples, 0.18%)</title><rect x="64.3515%" y="469" width="0.1771%" height="15" fill="rgb(222,92,36)" fg:x="1492850" fg:w="4108"/><text x="64.6015%" y="479.50"></text></g><g><title>calc_available_free_space.isra.0 (810 samples, 0.03%)</title><rect x="64.4937%" y="453" width="0.0349%" height="15" fill="rgb(216,39,41)" fg:x="1496148" fg:w="810"/><text x="64.7437%" y="463.50"></text></g><g><title>btrfs_reduce_alloc_profile (428 samples, 0.02%)</title><rect x="64.5101%" y="437" width="0.0184%" height="15" fill="rgb(253,127,28)" fg:x="1496530" fg:w="428"/><text x="64.7601%" y="447.50"></text></g><g><title>btrfs_block_rsv_add (5,439 samples, 0.23%)</title><rect x="64.2943%" y="501" width="0.2345%" height="15" fill="rgb(249,152,51)" fg:x="1491523" fg:w="5439"/><text x="64.5443%" y="511.50"></text></g><g><title>btrfs_reserve_metadata_bytes (4,613 samples, 0.20%)</title><rect x="64.3299%" y="485" width="0.1989%" height="15" fill="rgb(209,123,42)" fg:x="1492349" fg:w="4613"/><text x="64.5799%" y="495.50"></text></g><g><title>_raw_spin_lock (390 samples, 0.02%)</title><rect x="64.5566%" y="485" width="0.0168%" height="15" fill="rgb(241,118,22)" fg:x="1497608" fg:w="390"/><text x="64.8066%" y="495.50"></text></g><g><title>join_transaction (986 samples, 0.04%)</title><rect x="64.5310%" y="501" width="0.0425%" height="15" fill="rgb(208,25,7)" fg:x="1497013" fg:w="986"/><text x="64.7810%" y="511.50"></text></g><g><title>kmem_cache_alloc (713 samples, 0.03%)</title><rect x="64.5735%" y="501" width="0.0307%" height="15" fill="rgb(243,144,39)" fg:x="1497999" fg:w="713"/><text x="64.8235%" y="511.50"></text></g><g><title>btrfs_unlink (423,368 samples, 18.25%)</title><rect x="46.3992%" y="533" width="18.2499%" height="15" fill="rgb(250,50,5)" fg:x="1076386" fg:w="423368"/><text x="46.6492%" y="543.50">btrfs_unlink</text></g><g><title>start_transaction (9,795 samples, 0.42%)</title><rect x="64.2269%" y="517" width="0.4222%" height="15" fill="rgb(207,67,11)" fg:x="1489959" fg:w="9795"/><text x="64.4769%" y="527.50"></text></g><g><title>wait_current_trans (1,042 samples, 0.04%)</title><rect x="64.6042%" y="501" width="0.0449%" height="15" fill="rgb(245,204,40)" fg:x="1498712" fg:w="1042"/><text x="64.8542%" y="511.50"></text></g><g><title>_raw_spin_lock (719 samples, 0.03%)</title><rect x="64.6181%" y="485" width="0.0310%" height="15" fill="rgb(238,228,24)" fg:x="1499035" fg:w="719"/><text x="64.8681%" y="495.50"></text></g><g><title>_raw_spin_lock (329 samples, 0.01%)</title><rect x="64.6542%" y="517" width="0.0142%" height="15" fill="rgb(217,116,22)" fg:x="1499873" fg:w="329"/><text x="64.9042%" y="527.50"></text></g><g><title>d_delete (450 samples, 0.02%)</title><rect x="64.6491%" y="533" width="0.0194%" height="15" fill="rgb(234,98,12)" fg:x="1499754" fg:w="450"/><text x="64.8991%" y="543.50"></text></g><g><title>__srcu_read_lock (773 samples, 0.03%)</title><rect x="64.7203%" y="485" width="0.0333%" height="15" fill="rgb(242,170,50)" fg:x="1501405" fg:w="773"/><text x="64.9703%" y="495.50"></text></g><g><title>dentry_unlink_inode (2,136 samples, 0.09%)</title><rect x="64.6685%" y="533" width="0.0921%" height="15" fill="rgb(235,7,5)" fg:x="1500204" fg:w="2136"/><text x="64.9185%" y="543.50"></text></g><g><title>fsnotify_destroy_marks (1,389 samples, 0.06%)</title><rect x="64.7007%" y="517" width="0.0599%" height="15" fill="rgb(241,114,28)" fg:x="1500951" fg:w="1389"/><text x="64.9507%" y="527.50"></text></g><g><title>fsnotify_grab_connector (1,134 samples, 0.05%)</title><rect x="64.7117%" y="501" width="0.0489%" height="15" fill="rgb(246,112,42)" fg:x="1501206" fg:w="1134"/><text x="64.9617%" y="511.50"></text></g><g><title>down_write (1,140 samples, 0.05%)</title><rect x="64.7606%" y="533" width="0.0491%" height="15" fill="rgb(248,228,14)" fg:x="1502340" fg:w="1140"/><text x="65.0106%" y="543.50"></text></g><g><title>fsnotify (1,339 samples, 0.06%)</title><rect x="64.8097%" y="533" width="0.0577%" height="15" fill="rgb(208,133,18)" fg:x="1503480" fg:w="1339"/><text x="65.0597%" y="543.50"></text></g><g><title>ihold (289 samples, 0.01%)</title><rect x="64.8674%" y="533" width="0.0125%" height="15" fill="rgb(207,35,49)" fg:x="1504819" fg:w="289"/><text x="65.1174%" y="543.50"></text></g><g><title>iput.part.0 (568 samples, 0.02%)</title><rect x="64.8821%" y="533" width="0.0245%" height="15" fill="rgb(205,68,36)" fg:x="1505160" fg:w="568"/><text x="65.1321%" y="543.50"></text></g><g><title>_atomic_dec_and_lock (457 samples, 0.02%)</title><rect x="64.8869%" y="517" width="0.0197%" height="15" fill="rgb(245,62,40)" fg:x="1505271" fg:w="457"/><text x="65.1369%" y="527.50"></text></g><g><title>btrfs_permission (483 samples, 0.02%)</title><rect x="64.9265%" y="501" width="0.0208%" height="15" fill="rgb(228,27,24)" fg:x="1506188" fg:w="483"/><text x="65.1765%" y="511.50"></text></g><g><title>inode_permission.part.0 (709 samples, 0.03%)</title><rect x="64.9188%" y="517" width="0.0306%" height="15" fill="rgb(253,19,12)" fg:x="1506011" fg:w="709"/><text x="65.1688%" y="527.50"></text></g><g><title>may_delete (1,008 samples, 0.04%)</title><rect x="64.9067%" y="533" width="0.0435%" height="15" fill="rgb(232,28,20)" fg:x="1505729" fg:w="1008"/><text x="65.1567%" y="543.50"></text></g><g><title>do_unlinkat (1,143,970 samples, 49.31%)</title><rect x="15.6549%" y="565" width="49.3125%" height="15" fill="rgb(218,35,51)" fg:x="363168" fg:w="1143970"/><text x="15.9049%" y="575.50">do_unlinkat</text></g><g><title>vfs_unlink (431,582 samples, 18.60%)</title><rect x="46.3634%" y="549" width="18.6040%" height="15" fill="rgb(212,90,40)" fg:x="1075556" fg:w="431582"/><text x="46.6134%" y="559.50">vfs_unlink</text></g><g><title>up_write (351 samples, 0.02%)</title><rect x="64.9523%" y="533" width="0.0151%" height="15" fill="rgb(220,172,12)" fg:x="1506787" fg:w="351"/><text x="65.2023%" y="543.50"></text></g><g><title>do_syscall_64 (1,256,004 samples, 54.14%)</title><rect x="10.8361%" y="581" width="54.1419%" height="15" fill="rgb(226,159,20)" fg:x="251380" fg:w="1256004"/><text x="11.0861%" y="591.50">do_syscall_64</text></g><g><title>syscall_enter_from_user_mode (246 samples, 0.01%)</title><rect x="64.9674%" y="565" width="0.0106%" height="15" fill="rgb(234,205,16)" fg:x="1507138" fg:w="246"/><text x="65.2174%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,258,738 samples, 54.26%)</title><rect x="10.8114%" y="597" width="54.2598%" height="15" fill="rgb(207,9,39)" fg:x="250808" fg:w="1258738"/><text x="11.0614%" y="607.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (2,162 samples, 0.09%)</title><rect x="64.9780%" y="581" width="0.0932%" height="15" fill="rgb(249,143,15)" fg:x="1507384" fg:w="2162"/><text x="65.2280%" y="591.50"></text></g><g><title>exit_to_user_mode_prepare (1,825 samples, 0.08%)</title><rect x="64.9925%" y="565" width="0.0787%" height="15" fill="rgb(253,133,29)" fg:x="1507721" fg:w="1825"/><text x="65.2425%" y="575.50"></text></g><g><title>switch_fpu_return (1,498 samples, 0.06%)</title><rect x="65.0066%" y="549" width="0.0646%" height="15" fill="rgb(221,187,0)" fg:x="1508048" fg:w="1498"/><text x="65.2566%" y="559.50"></text></g><g><title>copy_kernel_to_fpregs (622 samples, 0.03%)</title><rect x="65.0444%" y="533" width="0.0268%" height="15" fill="rgb(205,204,26)" fg:x="1508924" fg:w="622"/><text x="65.2944%" y="543.50"></text></g><g><title>syscall_return_via_sysret (492 samples, 0.02%)</title><rect x="65.0770%" y="597" width="0.0212%" height="15" fill="rgb(224,68,54)" fg:x="1509680" fg:w="492"/><text x="65.3270%" y="607.50"></text></g><g><title>__GI_unlinkat (1,262,366 samples, 54.42%)</title><rect x="10.6824%" y="613" width="54.4162%" height="15" fill="rgb(209,67,4)" fg:x="247814" fg:w="1262366"/><text x="10.9324%" y="623.50">__GI_unlinkat</text></g><g><title>_int_free (325 samples, 0.01%)</title><rect x="65.1035%" y="597" width="0.0140%" height="15" fill="rgb(228,229,18)" fg:x="1510295" fg:w="325"/><text x="65.3535%" y="607.50"></text></g><g><title>__closedir (426 samples, 0.02%)</title><rect x="65.0992%" y="613" width="0.0184%" height="15" fill="rgb(231,89,13)" fg:x="1510195" fg:w="426"/><text x="65.3492%" y="623.50"></text></g><g><title>__dirfd (533 samples, 0.02%)</title><rect x="65.1175%" y="613" width="0.0230%" height="15" fill="rgb(210,182,18)" fg:x="1510621" fg:w="533"/><text x="65.3675%" y="623.50"></text></g><g><title>__GI___fcntl64_nocancel (291 samples, 0.01%)</title><rect x="65.1441%" y="597" width="0.0125%" height="15" fill="rgb(240,105,2)" fg:x="1511237" fg:w="291"/><text x="65.3941%" y="607.50"></text></g><g><title>__fcntl64_nocancel_adjusted (281 samples, 0.01%)</title><rect x="65.1445%" y="581" width="0.0121%" height="15" fill="rgb(207,170,50)" fg:x="1511247" fg:w="281"/><text x="65.3945%" y="591.50"></text></g><g><title>btrfs_getattr (247 samples, 0.01%)</title><rect x="65.1726%" y="517" width="0.0106%" height="15" fill="rgb(232,133,24)" fg:x="1511897" fg:w="247"/><text x="65.4226%" y="527.50"></text></g><g><title>__do_sys_newfstat (693 samples, 0.03%)</title><rect x="65.1620%" y="549" width="0.0299%" height="15" fill="rgb(235,166,27)" fg:x="1511652" fg:w="693"/><text x="65.4120%" y="559.50"></text></g><g><title>vfs_fstat (518 samples, 0.02%)</title><rect x="65.1695%" y="533" width="0.0223%" height="15" fill="rgb(209,19,13)" fg:x="1511827" fg:w="518"/><text x="65.4195%" y="543.50"></text></g><g><title>do_syscall_64 (738 samples, 0.03%)</title><rect x="65.1612%" y="565" width="0.0318%" height="15" fill="rgb(226,79,39)" fg:x="1511633" fg:w="738"/><text x="65.4112%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (762 samples, 0.03%)</title><rect x="65.1610%" y="581" width="0.0328%" height="15" fill="rgb(222,163,10)" fg:x="1511629" fg:w="762"/><text x="65.4110%" y="591.50"></text></g><g><title>__GI___fxstat (873 samples, 0.04%)</title><rect x="65.1566%" y="597" width="0.0376%" height="15" fill="rgb(214,44,19)" fg:x="1511528" fg:w="873"/><text x="65.4066%" y="607.50"></text></g><g><title>_int_malloc (576 samples, 0.02%)</title><rect x="65.2107%" y="565" width="0.0248%" height="15" fill="rgb(210,217,13)" fg:x="1512783" fg:w="576"/><text x="65.4607%" y="575.50"></text></g><g><title>__GI___libc_malloc (738 samples, 0.03%)</title><rect x="65.2038%" y="581" width="0.0318%" height="15" fill="rgb(237,61,54)" fg:x="1512622" fg:w="738"/><text x="65.4538%" y="591.50"></text></g><g><title>__fdopendir (2,180 samples, 0.09%)</title><rect x="65.1438%" y="613" width="0.0940%" height="15" fill="rgb(226,184,24)" fg:x="1511231" fg:w="2180"/><text x="65.3938%" y="623.50"></text></g><g><title>__alloc_dir (1,010 samples, 0.04%)</title><rect x="65.1943%" y="597" width="0.0435%" height="15" fill="rgb(223,226,4)" fg:x="1512401" fg:w="1010"/><text x="65.4443%" y="607.50"></text></g><g><title>kmem_cache_alloc (536 samples, 0.02%)</title><rect x="65.2787%" y="469" width="0.0231%" height="15" fill="rgb(210,26,41)" fg:x="1514360" fg:w="536"/><text x="65.5287%" y="479.50"></text></g><g><title>__alloc_file (837 samples, 0.04%)</title><rect x="65.2757%" y="485" width="0.0361%" height="15" fill="rgb(220,221,6)" fg:x="1514291" fg:w="837"/><text x="65.5257%" y="495.50"></text></g><g><title>security_file_alloc (232 samples, 0.01%)</title><rect x="65.3018%" y="469" width="0.0100%" height="15" fill="rgb(225,89,49)" fg:x="1514896" fg:w="232"/><text x="65.5518%" y="479.50"></text></g><g><title>alloc_empty_file (891 samples, 0.04%)</title><rect x="65.2745%" y="501" width="0.0384%" height="15" fill="rgb(218,70,45)" fg:x="1514261" fg:w="891"/><text x="65.5245%" y="511.50"></text></g><g><title>btrfs_opendir (560 samples, 0.02%)</title><rect x="65.3236%" y="485" width="0.0241%" height="15" fill="rgb(238,166,21)" fg:x="1515401" fg:w="560"/><text x="65.5736%" y="495.50"></text></g><g><title>kmem_cache_alloc_trace (496 samples, 0.02%)</title><rect x="65.3264%" y="469" width="0.0214%" height="15" fill="rgb(224,141,44)" fg:x="1515465" fg:w="496"/><text x="65.5764%" y="479.50"></text></g><g><title>security_file_open (382 samples, 0.02%)</title><rect x="65.3572%" y="485" width="0.0165%" height="15" fill="rgb(230,12,49)" fg:x="1516180" fg:w="382"/><text x="65.6072%" y="495.50"></text></g><g><title>do_dentry_open (1,304 samples, 0.06%)</title><rect x="65.3176%" y="501" width="0.0562%" height="15" fill="rgb(212,174,12)" fg:x="1515261" fg:w="1304"/><text x="65.5676%" y="511.50"></text></g><g><title>do_filp_open (3,297 samples, 0.14%)</title><rect x="65.2670%" y="533" width="0.1421%" height="15" fill="rgb(246,67,9)" fg:x="1514088" fg:w="3297"/><text x="65.5170%" y="543.50"></text></g><g><title>path_openat (3,246 samples, 0.14%)</title><rect x="65.2692%" y="517" width="0.1399%" height="15" fill="rgb(239,35,23)" fg:x="1514139" fg:w="3246"/><text x="65.5192%" y="527.50"></text></g><g><title>getname_flags.part.0 (465 samples, 0.02%)</title><rect x="65.4152%" y="533" width="0.0200%" height="15" fill="rgb(211,167,0)" fg:x="1517525" fg:w="465"/><text x="65.6652%" y="543.50"></text></g><g><title>strncpy_from_user (236 samples, 0.01%)</title><rect x="65.4250%" y="517" width="0.0102%" height="15" fill="rgb(225,119,45)" fg:x="1517754" fg:w="236"/><text x="65.6750%" y="527.50"></text></g><g><title>__x64_sys_openat (4,377 samples, 0.19%)</title><rect x="65.2501%" y="565" width="0.1887%" height="15" fill="rgb(210,162,6)" fg:x="1513696" fg:w="4377"/><text x="65.5001%" y="575.50"></text></g><g><title>do_sys_openat2 (4,311 samples, 0.19%)</title><rect x="65.2529%" y="549" width="0.1858%" height="15" fill="rgb(208,118,35)" fg:x="1513762" fg:w="4311"/><text x="65.5029%" y="559.50"></text></g><g><title>do_syscall_64 (4,450 samples, 0.19%)</title><rect x="65.2479%" y="581" width="0.1918%" height="15" fill="rgb(239,4,53)" fg:x="1513644" fg:w="4450"/><text x="65.4979%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,501 samples, 0.19%)</title><rect x="65.2473%" y="597" width="0.1940%" height="15" fill="rgb(213,130,21)" fg:x="1513630" fg:w="4501"/><text x="65.4973%" y="607.50"></text></g><g><title>__libc_openat64 (4,732 samples, 0.20%)</title><rect x="65.2387%" y="613" width="0.2040%" height="15" fill="rgb(235,148,0)" fg:x="1513432" fg:w="4732"/><text x="65.4887%" y="623.50"></text></g><g><title>crc32c_pcl_intel_update (316 samples, 0.01%)</title><rect x="65.4792%" y="597" width="0.0136%" height="15" fill="rgb(244,224,18)" fg:x="1519010" fg:w="316"/><text x="65.7292%" y="607.50"></text></g><g><title>entry_SYSCALL_64 (565 samples, 0.02%)</title><rect x="65.4928%" y="597" width="0.0244%" height="15" fill="rgb(211,214,4)" fg:x="1519326" fg:w="565"/><text x="65.7428%" y="607.50"></text></g><g><title>btrfs_dentry_delete (268 samples, 0.01%)</title><rect x="65.6203%" y="533" width="0.0116%" height="15" fill="rgb(206,119,25)" fg:x="1522283" fg:w="268"/><text x="65.8703%" y="543.50"></text></g><g><title>__list_add_valid (494 samples, 0.02%)</title><rect x="65.6916%" y="501" width="0.0213%" height="15" fill="rgb(243,93,47)" fg:x="1523939" fg:w="494"/><text x="65.9416%" y="511.50"></text></g><g><title>_raw_spin_lock (707 samples, 0.03%)</title><rect x="65.7129%" y="501" width="0.0305%" height="15" fill="rgb(224,194,6)" fg:x="1524433" fg:w="707"/><text x="65.9629%" y="511.50"></text></g><g><title>d_lru_add (2,874 samples, 0.12%)</title><rect x="65.6318%" y="533" width="0.1239%" height="15" fill="rgb(243,229,6)" fg:x="1522551" fg:w="2874"/><text x="65.8818%" y="543.50"></text></g><g><title>list_lru_add (2,601 samples, 0.11%)</title><rect x="65.6436%" y="517" width="0.1121%" height="15" fill="rgb(207,23,50)" fg:x="1522824" fg:w="2601"/><text x="65.8936%" y="527.50"></text></g><g><title>mem_cgroup_from_obj (280 samples, 0.01%)</title><rect x="65.7436%" y="501" width="0.0121%" height="15" fill="rgb(253,192,32)" fg:x="1525145" fg:w="280"/><text x="65.9936%" y="511.50"></text></g><g><title>lockref_put_or_lock (583 samples, 0.03%)</title><rect x="65.7557%" y="533" width="0.0251%" height="15" fill="rgb(213,21,6)" fg:x="1525425" fg:w="583"/><text x="66.0057%" y="543.50"></text></g><g><title>dput (4,431 samples, 0.19%)</title><rect x="65.5908%" y="549" width="0.1910%" height="15" fill="rgb(243,151,13)" fg:x="1521600" fg:w="4431"/><text x="65.8408%" y="559.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (343 samples, 0.01%)</title><rect x="65.8593%" y="453" width="0.0148%" height="15" fill="rgb(233,165,41)" fg:x="1527829" fg:w="343"/><text x="66.1093%" y="463.50"></text></g><g><title>_raw_spin_lock (400 samples, 0.02%)</title><rect x="65.9170%" y="437" width="0.0172%" height="15" fill="rgb(246,176,45)" fg:x="1529166" fg:w="400"/><text x="66.1670%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,369 samples, 0.06%)</title><rect x="65.8756%" y="453" width="0.0590%" height="15" fill="rgb(217,170,52)" fg:x="1528206" fg:w="1369"/><text x="66.1256%" y="463.50"></text></g><g><title>btrfs_free_path (2,475 samples, 0.11%)</title><rect x="65.8434%" y="485" width="0.1067%" height="15" fill="rgb(214,203,54)" fg:x="1527460" fg:w="2475"/><text x="66.0934%" y="495.50"></text></g><g><title>btrfs_release_path (2,367 samples, 0.10%)</title><rect x="65.8481%" y="469" width="0.1020%" height="15" fill="rgb(248,215,49)" fg:x="1527568" fg:w="2367"/><text x="66.0981%" y="479.50"></text></g><g><title>release_extent_buffer (360 samples, 0.02%)</title><rect x="65.9346%" y="453" width="0.0155%" height="15" fill="rgb(208,46,10)" fg:x="1529575" fg:w="360"/><text x="66.1846%" y="463.50"></text></g><g><title>_raw_read_lock (565 samples, 0.02%)</title><rect x="66.0902%" y="421" width="0.0244%" height="15" fill="rgb(254,5,31)" fg:x="1533186" fg:w="565"/><text x="66.3402%" y="431.50"></text></g><g><title>finish_wait (3,207 samples, 0.14%)</title><rect x="66.1163%" y="421" width="0.1382%" height="15" fill="rgb(222,104,33)" fg:x="1533791" fg:w="3207"/><text x="66.3663%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (3,046 samples, 0.13%)</title><rect x="66.1233%" y="405" width="0.1313%" height="15" fill="rgb(248,49,16)" fg:x="1533952" fg:w="3046"/><text x="66.3733%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,932 samples, 0.13%)</title><rect x="66.1282%" y="389" width="0.1264%" height="15" fill="rgb(232,198,41)" fg:x="1534066" fg:w="2932"/><text x="66.3782%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (7,705 samples, 0.33%)</title><rect x="66.2851%" y="405" width="0.3321%" height="15" fill="rgb(214,125,3)" fg:x="1537707" fg:w="7705"/><text x="66.5351%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,352 samples, 0.32%)</title><rect x="66.3003%" y="389" width="0.3169%" height="15" fill="rgb(229,220,28)" fg:x="1538060" fg:w="7352"/><text x="66.5503%" y="399.50"></text></g><g><title>prepare_to_wait_event (8,547 samples, 0.37%)</title><rect x="66.2550%" y="421" width="0.3684%" height="15" fill="rgb(222,64,37)" fg:x="1537009" fg:w="8547"/><text x="66.5050%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (8,504 samples, 0.37%)</title><rect x="66.6235%" y="421" width="0.3666%" height="15" fill="rgb(249,184,13)" fg:x="1545556" fg:w="8504"/><text x="66.8735%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,302 samples, 0.27%)</title><rect x="66.7184%" y="405" width="0.2717%" height="15" fill="rgb(252,176,6)" fg:x="1547758" fg:w="6302"/><text x="66.9684%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (248 samples, 0.01%)</title><rect x="67.0114%" y="389" width="0.0107%" height="15" fill="rgb(228,153,7)" fg:x="1554556" fg:w="248"/><text x="67.2614%" y="399.50"></text></g><g><title>update_curr (516 samples, 0.02%)</title><rect x="67.0509%" y="357" width="0.0222%" height="15" fill="rgb(242,193,5)" fg:x="1555472" fg:w="516"/><text x="67.3009%" y="367.50"></text></g><g><title>dequeue_entity (1,300 samples, 0.06%)</title><rect x="67.0344%" y="373" width="0.0560%" height="15" fill="rgb(232,140,9)" fg:x="1555089" fg:w="1300"/><text x="67.2844%" y="383.50"></text></g><g><title>update_load_avg (401 samples, 0.02%)</title><rect x="67.0732%" y="357" width="0.0173%" height="15" fill="rgb(213,222,16)" fg:x="1555988" fg:w="401"/><text x="67.3232%" y="367.50"></text></g><g><title>dequeue_task_fair (1,555 samples, 0.07%)</title><rect x="67.0256%" y="389" width="0.0670%" height="15" fill="rgb(222,75,50)" fg:x="1554884" fg:w="1555"/><text x="67.2756%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (3,298 samples, 0.14%)</title><rect x="67.1054%" y="373" width="0.1422%" height="15" fill="rgb(205,180,2)" fg:x="1556737" fg:w="3298"/><text x="67.3554%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,187 samples, 0.14%)</title><rect x="67.1102%" y="357" width="0.1374%" height="15" fill="rgb(216,34,7)" fg:x="1556848" fg:w="3187"/><text x="67.3602%" y="367.50"></text></g><g><title>native_write_msr (3,140 samples, 0.14%)</title><rect x="67.1123%" y="341" width="0.1354%" height="15" fill="rgb(253,16,32)" fg:x="1556895" fg:w="3140"/><text x="67.3623%" y="351.50"></text></g><g><title>finish_task_switch (3,736 samples, 0.16%)</title><rect x="67.0926%" y="389" width="0.1610%" height="15" fill="rgb(208,97,28)" fg:x="1556439" fg:w="3736"/><text x="67.3426%" y="399.50"></text></g><g><title>pick_next_task_fair (257 samples, 0.01%)</title><rect x="67.2539%" y="389" width="0.0111%" height="15" fill="rgb(225,92,11)" fg:x="1560180" fg:w="257"/><text x="67.5039%" y="399.50"></text></g><g><title>__update_idle_core (250 samples, 0.01%)</title><rect x="67.2664%" y="373" width="0.0108%" height="15" fill="rgb(243,38,12)" fg:x="1560471" fg:w="250"/><text x="67.5164%" y="383.50"></text></g><g><title>pick_next_task_idle (289 samples, 0.01%)</title><rect x="67.2649%" y="389" width="0.0125%" height="15" fill="rgb(208,139,16)" fg:x="1560437" fg:w="289"/><text x="67.5149%" y="399.50"></text></g><g><title>psi_task_change (1,166 samples, 0.05%)</title><rect x="67.2774%" y="389" width="0.0503%" height="15" fill="rgb(227,24,9)" fg:x="1560726" fg:w="1166"/><text x="67.5274%" y="399.50"></text></g><g><title>psi_group_change (962 samples, 0.04%)</title><rect x="67.2862%" y="373" width="0.0415%" height="15" fill="rgb(206,62,11)" fg:x="1560930" fg:w="962"/><text x="67.5362%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (29,654 samples, 1.28%)</title><rect x="66.0641%" y="437" width="1.2783%" height="15" fill="rgb(228,134,27)" fg:x="1532579" fg:w="29654"/><text x="66.3141%" y="447.50"></text></g><g><title>schedule (8,173 samples, 0.35%)</title><rect x="66.9901%" y="421" width="0.3523%" height="15" fill="rgb(205,55,33)" fg:x="1554060" fg:w="8173"/><text x="67.2401%" y="431.50"></text></g><g><title>__schedule (8,067 samples, 0.35%)</title><rect x="66.9946%" y="405" width="0.3477%" height="15" fill="rgb(243,75,43)" fg:x="1554166" fg:w="8067"/><text x="67.2446%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (31,289 samples, 1.35%)</title><rect x="66.0565%" y="453" width="1.3488%" height="15" fill="rgb(223,27,42)" fg:x="1532403" fg:w="31289"/><text x="66.3065%" y="463.50"></text></g><g><title>btrfs_root_node (1,458 samples, 0.06%)</title><rect x="67.3424%" y="437" width="0.0628%" height="15" fill="rgb(232,189,33)" fg:x="1562234" fg:w="1458"/><text x="67.5924%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (268 samples, 0.01%)</title><rect x="67.4180%" y="421" width="0.0116%" height="15" fill="rgb(210,9,39)" fg:x="1563987" fg:w="268"/><text x="67.6680%" y="431.50"></text></g><g><title>prepare_to_wait_event (373 samples, 0.02%)</title><rect x="67.4143%" y="437" width="0.0161%" height="15" fill="rgb(242,85,26)" fg:x="1563901" fg:w="373"/><text x="67.6643%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (286 samples, 0.01%)</title><rect x="67.4303%" y="437" width="0.0123%" height="15" fill="rgb(248,44,4)" fg:x="1564274" fg:w="286"/><text x="67.6803%" y="447.50"></text></g><g><title>dequeue_entity (242 samples, 0.01%)</title><rect x="67.4523%" y="389" width="0.0104%" height="15" fill="rgb(250,96,46)" fg:x="1564783" fg:w="242"/><text x="67.7023%" y="399.50"></text></g><g><title>dequeue_task_fair (291 samples, 0.01%)</title><rect x="67.4508%" y="405" width="0.0125%" height="15" fill="rgb(229,116,26)" fg:x="1564749" fg:w="291"/><text x="67.7008%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (643 samples, 0.03%)</title><rect x="67.4659%" y="389" width="0.0277%" height="15" fill="rgb(246,94,34)" fg:x="1565099" fg:w="643"/><text x="67.7159%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (617 samples, 0.03%)</title><rect x="67.4670%" y="373" width="0.0266%" height="15" fill="rgb(251,73,21)" fg:x="1565125" fg:w="617"/><text x="67.7170%" y="383.50"></text></g><g><title>native_write_msr (613 samples, 0.03%)</title><rect x="67.4672%" y="357" width="0.0264%" height="15" fill="rgb(254,121,25)" fg:x="1565129" fg:w="613"/><text x="67.7172%" y="367.50"></text></g><g><title>finish_task_switch (738 samples, 0.03%)</title><rect x="67.4634%" y="405" width="0.0318%" height="15" fill="rgb(215,161,49)" fg:x="1565040" fg:w="738"/><text x="67.7134%" y="415.50"></text></g><g><title>psi_task_change (236 samples, 0.01%)</title><rect x="67.5004%" y="405" width="0.0102%" height="15" fill="rgb(221,43,13)" fg:x="1565899" fg:w="236"/><text x="67.7504%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (2,522 samples, 0.11%)</title><rect x="67.4053%" y="453" width="0.1087%" height="15" fill="rgb(249,5,37)" fg:x="1563692" fg:w="2522"/><text x="67.6553%" y="463.50"></text></g><g><title>schedule (1,654 samples, 0.07%)</title><rect x="67.4427%" y="437" width="0.0713%" height="15" fill="rgb(226,25,44)" fg:x="1564560" fg:w="1654"/><text x="67.6927%" y="447.50"></text></g><g><title>__schedule (1,628 samples, 0.07%)</title><rect x="67.4438%" y="421" width="0.0702%" height="15" fill="rgb(238,189,16)" fg:x="1564586" fg:w="1628"/><text x="67.6938%" y="431.50"></text></g><g><title>select_task_rq_fair (294 samples, 0.01%)</title><rect x="67.5295%" y="389" width="0.0127%" height="15" fill="rgb(251,186,8)" fg:x="1566574" fg:w="294"/><text x="67.7795%" y="399.50"></text></g><g><title>enqueue_entity (257 samples, 0.01%)</title><rect x="67.5460%" y="357" width="0.0111%" height="15" fill="rgb(254,34,31)" fg:x="1566958" fg:w="257"/><text x="67.7960%" y="367.50"></text></g><g><title>enqueue_task_fair (321 samples, 0.01%)</title><rect x="67.5442%" y="373" width="0.0138%" height="15" fill="rgb(225,215,27)" fg:x="1566916" fg:w="321"/><text x="67.7942%" y="383.50"></text></g><g><title>ttwu_do_activate (649 samples, 0.03%)</title><rect x="67.5430%" y="389" width="0.0280%" height="15" fill="rgb(221,192,48)" fg:x="1566887" fg:w="649"/><text x="67.7930%" y="399.50"></text></g><g><title>psi_task_change (298 samples, 0.01%)</title><rect x="67.5581%" y="373" width="0.0128%" height="15" fill="rgb(219,137,20)" fg:x="1567238" fg:w="298"/><text x="67.8081%" y="383.50"></text></g><g><title>psi_group_change (263 samples, 0.01%)</title><rect x="67.5596%" y="357" width="0.0113%" height="15" fill="rgb(219,84,11)" fg:x="1567273" fg:w="263"/><text x="67.8096%" y="367.50"></text></g><g><title>__wake_up_common (1,449 samples, 0.06%)</title><rect x="67.5142%" y="437" width="0.0625%" height="15" fill="rgb(224,10,23)" fg:x="1566220" fg:w="1449"/><text x="67.7642%" y="447.50"></text></g><g><title>autoremove_wake_function (1,422 samples, 0.06%)</title><rect x="67.5154%" y="421" width="0.0613%" height="15" fill="rgb(248,22,39)" fg:x="1566247" fg:w="1422"/><text x="67.7654%" y="431.50"></text></g><g><title>try_to_wake_up (1,381 samples, 0.06%)</title><rect x="67.5172%" y="405" width="0.0595%" height="15" fill="rgb(212,154,20)" fg:x="1566288" fg:w="1381"/><text x="67.7672%" y="415.50"></text></g><g><title>__wake_up_common_lock (1,478 samples, 0.06%)</title><rect x="67.5140%" y="453" width="0.0637%" height="15" fill="rgb(236,199,50)" fg:x="1566215" fg:w="1478"/><text x="67.7640%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (963 samples, 0.04%)</title><rect x="67.5880%" y="453" width="0.0415%" height="15" fill="rgb(211,9,17)" fg:x="1567932" fg:w="963"/><text x="67.8380%" y="463.50"></text></g><g><title>btrfs_set_lock_blocking_read (552 samples, 0.02%)</title><rect x="67.6057%" y="437" width="0.0238%" height="15" fill="rgb(243,216,36)" fg:x="1568343" fg:w="552"/><text x="67.8557%" y="447.50"></text></g><g><title>_raw_read_lock (422 samples, 0.02%)</title><rect x="67.6404%" y="437" width="0.0182%" height="15" fill="rgb(250,2,10)" fg:x="1569146" fg:w="422"/><text x="67.8904%" y="447.50"></text></g><g><title>btrfs_tree_read_lock_atomic (2,486 samples, 0.11%)</title><rect x="67.6295%" y="453" width="0.1072%" height="15" fill="rgb(226,50,48)" fg:x="1568895" fg:w="2486"/><text x="67.8795%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (1,812 samples, 0.08%)</title><rect x="67.6586%" y="437" width="0.0781%" height="15" fill="rgb(243,81,16)" fg:x="1569569" fg:w="1812"/><text x="67.9086%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (588 samples, 0.03%)</title><rect x="67.7114%" y="421" width="0.0253%" height="15" fill="rgb(250,14,2)" fg:x="1570793" fg:w="588"/><text x="67.9614%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (936 samples, 0.04%)</title><rect x="67.7367%" y="453" width="0.0403%" height="15" fill="rgb(233,135,29)" fg:x="1571381" fg:w="936"/><text x="67.9867%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (4,478 samples, 0.19%)</title><rect x="67.7808%" y="453" width="0.1930%" height="15" fill="rgb(224,64,43)" fg:x="1572404" fg:w="4478"/><text x="68.0308%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (543 samples, 0.02%)</title><rect x="68.0046%" y="437" width="0.0234%" height="15" fill="rgb(238,84,13)" fg:x="1577596" fg:w="543"/><text x="68.2546%" y="447.50"></text></g><g><title>verify_parent_transid (381 samples, 0.02%)</title><rect x="68.0116%" y="421" width="0.0164%" height="15" fill="rgb(253,48,26)" fg:x="1577758" fg:w="381"/><text x="68.2616%" y="431.50"></text></g><g><title>btrfs_get_64 (818 samples, 0.04%)</title><rect x="68.0280%" y="437" width="0.0353%" height="15" fill="rgb(205,223,31)" fg:x="1578139" fg:w="818"/><text x="68.2780%" y="447.50"></text></g><g><title>btrfs_verify_level_key (268 samples, 0.01%)</title><rect x="68.0657%" y="437" width="0.0116%" height="15" fill="rgb(221,41,32)" fg:x="1579014" fg:w="268"/><text x="68.3157%" y="447.50"></text></g><g><title>__radix_tree_lookup (2,601 samples, 0.11%)</title><rect x="68.1239%" y="421" width="0.1121%" height="15" fill="rgb(213,158,31)" fg:x="1580363" fg:w="2601"/><text x="68.3739%" y="431.50"></text></g><g><title>mark_page_accessed (865 samples, 0.04%)</title><rect x="68.2518%" y="405" width="0.0373%" height="15" fill="rgb(245,126,43)" fg:x="1583331" fg:w="865"/><text x="68.5018%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,297 samples, 0.06%)</title><rect x="68.2368%" y="421" width="0.0559%" height="15" fill="rgb(227,7,22)" fg:x="1582982" fg:w="1297"/><text x="68.4868%" y="431.50"></text></g><g><title>find_extent_buffer (5,019 samples, 0.22%)</title><rect x="68.0773%" y="437" width="0.2164%" height="15" fill="rgb(252,90,44)" fg:x="1579282" fg:w="5019"/><text x="68.3273%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (8,212 samples, 0.35%)</title><rect x="67.9738%" y="453" width="0.3540%" height="15" fill="rgb(253,91,0)" fg:x="1576882" fg:w="8212"/><text x="68.2238%" y="463.50"></text></g><g><title>read_extent_buffer (793 samples, 0.03%)</title><rect x="68.2936%" y="437" width="0.0342%" height="15" fill="rgb(252,175,49)" fg:x="1584301" fg:w="793"/><text x="68.5436%" y="447.50"></text></g><g><title>btrfs_search_slot (55,501 samples, 2.39%)</title><rect x="65.9627%" y="469" width="2.3925%" height="15" fill="rgb(246,150,1)" fg:x="1530227" fg:w="55501"/><text x="66.2127%" y="479.50">bt..</text></g><g><title>unlock_up (634 samples, 0.03%)</title><rect x="68.3278%" y="453" width="0.0273%" height="15" fill="rgb(241,192,25)" fg:x="1585094" fg:w="634"/><text x="68.5778%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (56,689 samples, 2.44%)</title><rect x="65.9501%" y="485" width="2.4437%" height="15" fill="rgb(239,187,11)" fg:x="1529935" fg:w="56689"/><text x="66.2001%" y="495.50">bt..</text></g><g><title>crc32c (896 samples, 0.04%)</title><rect x="68.3551%" y="469" width="0.0386%" height="15" fill="rgb(218,202,51)" fg:x="1585728" fg:w="896"/><text x="68.6051%" y="479.50"></text></g><g><title>crypto_shash_update (463 samples, 0.02%)</title><rect x="68.3738%" y="453" width="0.0200%" height="15" fill="rgb(225,176,8)" fg:x="1586161" fg:w="463"/><text x="68.6238%" y="463.50"></text></g><g><title>kmem_cache_alloc (948 samples, 0.04%)</title><rect x="68.3938%" y="485" width="0.0409%" height="15" fill="rgb(219,122,41)" fg:x="1586624" fg:w="948"/><text x="68.6438%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (267 samples, 0.01%)</title><rect x="68.4231%" y="469" width="0.0115%" height="15" fill="rgb(248,140,20)" fg:x="1587305" fg:w="267"/><text x="68.6731%" y="479.50"></text></g><g><title>btrfs_lookup (61,507 samples, 2.65%)</title><rect x="65.8069%" y="517" width="2.6514%" height="15" fill="rgb(245,41,37)" fg:x="1526612" fg:w="61507"/><text x="66.0569%" y="527.50">bt..</text></g><g><title>btrfs_lookup_dentry (61,373 samples, 2.65%)</title><rect x="65.8126%" y="501" width="2.6456%" height="15" fill="rgb(235,82,39)" fg:x="1526746" fg:w="61373"/><text x="66.0626%" y="511.50">bt..</text></g><g><title>kmem_cache_free (547 samples, 0.02%)</title><rect x="68.4346%" y="485" width="0.0236%" height="15" fill="rgb(230,108,42)" fg:x="1587572" fg:w="547"/><text x="68.6846%" y="495.50"></text></g><g><title>d_set_d_op (343 samples, 0.01%)</title><rect x="68.4778%" y="485" width="0.0148%" height="15" fill="rgb(215,150,50)" fg:x="1588573" fg:w="343"/><text x="68.7278%" y="495.50"></text></g><g><title>allocate_slab (314 samples, 0.01%)</title><rect x="68.5343%" y="437" width="0.0135%" height="15" fill="rgb(233,212,5)" fg:x="1589883" fg:w="314"/><text x="68.7843%" y="447.50"></text></g><g><title>___slab_alloc (724 samples, 0.03%)</title><rect x="68.5201%" y="453" width="0.0312%" height="15" fill="rgb(245,80,22)" fg:x="1589555" fg:w="724"/><text x="68.7701%" y="463.50"></text></g><g><title>__slab_alloc (768 samples, 0.03%)</title><rect x="68.5183%" y="469" width="0.0331%" height="15" fill="rgb(238,129,16)" fg:x="1589512" fg:w="768"/><text x="68.7683%" y="479.50"></text></g><g><title>__mod_memcg_lruvec_state (445 samples, 0.02%)</title><rect x="68.6031%" y="453" width="0.0192%" height="15" fill="rgb(240,19,0)" fg:x="1591479" fg:w="445"/><text x="68.8531%" y="463.50"></text></g><g><title>__mod_memcg_state.part.0 (338 samples, 0.01%)</title><rect x="68.6077%" y="437" width="0.0146%" height="15" fill="rgb(232,42,35)" fg:x="1591586" fg:w="338"/><text x="68.8577%" y="447.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,759 samples, 0.08%)</title><rect x="68.5516%" y="469" width="0.0758%" height="15" fill="rgb(223,130,24)" fg:x="1590286" fg:w="1759"/><text x="68.8016%" y="479.50"></text></g><g><title>get_obj_cgroup_from_current (952 samples, 0.04%)</title><rect x="68.6459%" y="453" width="0.0410%" height="15" fill="rgb(237,16,22)" fg:x="1592473" fg:w="952"/><text x="68.8959%" y="463.50"></text></g><g><title>obj_cgroup_charge (411 samples, 0.02%)</title><rect x="68.6869%" y="453" width="0.0177%" height="15" fill="rgb(248,192,20)" fg:x="1593425" fg:w="411"/><text x="68.9369%" y="463.50"></text></g><g><title>kmem_cache_alloc (4,930 samples, 0.21%)</title><rect x="68.4926%" y="485" width="0.2125%" height="15" fill="rgb(233,167,2)" fg:x="1588916" fg:w="4930"/><text x="68.7426%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,622 samples, 0.07%)</title><rect x="68.6352%" y="469" width="0.0699%" height="15" fill="rgb(252,71,44)" fg:x="1592224" fg:w="1622"/><text x="68.8852%" y="479.50"></text></g><g><title>__d_alloc (5,745 samples, 0.25%)</title><rect x="68.4639%" y="501" width="0.2476%" height="15" fill="rgb(238,37,47)" fg:x="1588250" fg:w="5745"/><text x="68.7139%" y="511.50"></text></g><g><title>__list_add_valid (250 samples, 0.01%)</title><rect x="68.7115%" y="501" width="0.0108%" height="15" fill="rgb(214,202,54)" fg:x="1593995" fg:w="250"/><text x="68.9615%" y="511.50"></text></g><g><title>d_alloc (6,307 samples, 0.27%)</title><rect x="68.4582%" y="517" width="0.2719%" height="15" fill="rgb(254,165,40)" fg:x="1588119" fg:w="6307"/><text x="68.7082%" y="527.50"></text></g><g><title>__d_rehash (534 samples, 0.02%)</title><rect x="68.7518%" y="485" width="0.0230%" height="15" fill="rgb(246,173,38)" fg:x="1594930" fg:w="534"/><text x="69.0018%" y="495.50"></text></g><g><title>__d_add (933 samples, 0.04%)</title><rect x="68.7425%" y="501" width="0.0402%" height="15" fill="rgb(215,3,27)" fg:x="1594714" fg:w="933"/><text x="68.9925%" y="511.50"></text></g><g><title>d_splice_alias (1,222 samples, 0.05%)</title><rect x="68.7301%" y="517" width="0.0527%" height="15" fill="rgb(239,169,51)" fg:x="1594426" fg:w="1222"/><text x="68.9801%" y="527.50"></text></g><g><title>__d_lookup (1,551 samples, 0.07%)</title><rect x="68.7924%" y="485" width="0.0669%" height="15" fill="rgb(212,5,25)" fg:x="1595872" fg:w="1551"/><text x="69.0424%" y="495.50"></text></g><g><title>__lookup_hash (70,988 samples, 3.06%)</title><rect x="65.7993%" y="533" width="3.0600%" height="15" fill="rgb(243,45,17)" fg:x="1526436" fg:w="70988"/><text x="66.0493%" y="543.50">__l..</text></g><g><title>lookup_dcache (1,776 samples, 0.08%)</title><rect x="68.7828%" y="517" width="0.0766%" height="15" fill="rgb(242,97,9)" fg:x="1595648" fg:w="1776"/><text x="69.0328%" y="527.50"></text></g><g><title>d_lookup (1,718 samples, 0.07%)</title><rect x="68.7853%" y="501" width="0.0741%" height="15" fill="rgb(228,71,31)" fg:x="1595706" fg:w="1718"/><text x="69.0353%" y="511.50"></text></g><g><title>down_write (298 samples, 0.01%)</title><rect x="68.8595%" y="533" width="0.0128%" height="15" fill="rgb(252,184,16)" fg:x="1597428" fg:w="298"/><text x="69.1095%" y="543.50"></text></g><g><title>__legitimize_mnt (653 samples, 0.03%)</title><rect x="68.9329%" y="453" width="0.0281%" height="15" fill="rgb(236,169,46)" fg:x="1599130" fg:w="653"/><text x="69.1829%" y="463.50"></text></g><g><title>__legitimize_path (1,121 samples, 0.05%)</title><rect x="68.9204%" y="469" width="0.0483%" height="15" fill="rgb(207,17,47)" fg:x="1598842" fg:w="1121"/><text x="69.1704%" y="479.50"></text></g><g><title>legitimize_links (251 samples, 0.01%)</title><rect x="68.9688%" y="469" width="0.0108%" height="15" fill="rgb(206,201,28)" fg:x="1599964" fg:w="251"/><text x="69.2188%" y="479.50"></text></g><g><title>complete_walk (1,836 samples, 0.08%)</title><rect x="68.9024%" y="501" width="0.0791%" height="15" fill="rgb(224,184,23)" fg:x="1598424" fg:w="1836"/><text x="69.1524%" y="511.50"></text></g><g><title>try_to_unlazy (1,650 samples, 0.07%)</title><rect x="68.9104%" y="485" width="0.0711%" height="15" fill="rgb(208,139,48)" fg:x="1598610" fg:w="1650"/><text x="69.1604%" y="495.50"></text></g><g><title>btrfs_permission (291 samples, 0.01%)</title><rect x="69.4058%" y="469" width="0.0125%" height="15" fill="rgb(208,130,10)" fg:x="1610102" fg:w="291"/><text x="69.6558%" y="479.50"></text></g><g><title>inode_permission.part.0 (7,148 samples, 0.31%)</title><rect x="69.1769%" y="485" width="0.3081%" height="15" fill="rgb(211,213,45)" fg:x="1604792" fg:w="7148"/><text x="69.4269%" y="495.50"></text></g><g><title>generic_permission (1,546 samples, 0.07%)</title><rect x="69.4184%" y="469" width="0.0666%" height="15" fill="rgb(235,100,30)" fg:x="1610394" fg:w="1546"/><text x="69.6684%" y="479.50"></text></g><g><title>security_inode_permission (378 samples, 0.02%)</title><rect x="69.4851%" y="485" width="0.0163%" height="15" fill="rgb(206,144,31)" fg:x="1611940" fg:w="378"/><text x="69.7351%" y="495.50"></text></g><g><title>__d_lookup_rcu (9,509 samples, 0.41%)</title><rect x="69.6368%" y="453" width="0.4099%" height="15" fill="rgb(224,200,26)" fg:x="1615460" fg:w="9509"/><text x="69.8868%" y="463.50"></text></g><g><title>lookup_fast (10,955 samples, 0.47%)</title><rect x="69.5748%" y="469" width="0.4722%" height="15" fill="rgb(247,104,53)" fg:x="1614023" fg:w="10955"/><text x="69.8248%" y="479.50"></text></g><g><title>__lookup_mnt (332 samples, 0.01%)</title><rect x="70.1104%" y="453" width="0.0143%" height="15" fill="rgb(220,14,17)" fg:x="1626448" fg:w="332"/><text x="70.3604%" y="463.50"></text></g><g><title>link_path_walk.part.0 (26,527 samples, 1.14%)</title><rect x="68.9816%" y="501" width="1.1435%" height="15" fill="rgb(230,140,40)" fg:x="1600260" fg:w="26527"/><text x="69.2316%" y="511.50"></text></g><g><title>walk_component (14,469 samples, 0.62%)</title><rect x="69.5013%" y="485" width="0.6237%" height="15" fill="rgb(229,2,41)" fg:x="1612318" fg:w="14469"/><text x="69.7513%" y="495.50"></text></g><g><title>step_into (1,809 samples, 0.08%)</title><rect x="70.0471%" y="469" width="0.0780%" height="15" fill="rgb(232,89,16)" fg:x="1624978" fg:w="1809"/><text x="70.2971%" y="479.50"></text></g><g><title>path_init (1,927 samples, 0.08%)</title><rect x="70.1251%" y="501" width="0.0831%" height="15" fill="rgb(247,59,52)" fg:x="1626787" fg:w="1927"/><text x="70.3751%" y="511.50"></text></g><g><title>nd_jump_root (1,118 samples, 0.05%)</title><rect x="70.1599%" y="485" width="0.0482%" height="15" fill="rgb(226,110,21)" fg:x="1627596" fg:w="1118"/><text x="70.4099%" y="495.50"></text></g><g><title>set_root (818 samples, 0.04%)</title><rect x="70.1729%" y="469" width="0.0353%" height="15" fill="rgb(224,176,43)" fg:x="1627896" fg:w="818"/><text x="70.4229%" y="479.50"></text></g><g><title>filename_parentat (31,731 samples, 1.37%)</title><rect x="68.8723%" y="533" width="1.3678%" height="15" fill="rgb(221,73,6)" fg:x="1597726" fg:w="31731"/><text x="69.1223%" y="543.50"></text></g><g><title>path_parentat (31,250 samples, 1.35%)</title><rect x="68.8931%" y="517" width="1.3471%" height="15" fill="rgb(232,78,19)" fg:x="1598207" fg:w="31250"/><text x="69.1431%" y="527.50"></text></g><g><title>terminate_walk (743 samples, 0.03%)</title><rect x="70.2081%" y="501" width="0.0320%" height="15" fill="rgb(233,112,48)" fg:x="1628714" fg:w="743"/><text x="70.4581%" y="511.50"></text></g><g><title>kmem_cache_free (719 samples, 0.03%)</title><rect x="70.2402%" y="533" width="0.0310%" height="15" fill="rgb(243,131,47)" fg:x="1629457" fg:w="719"/><text x="70.4902%" y="543.50"></text></g><g><title>__mnt_want_write (381 samples, 0.02%)</title><rect x="70.2903%" y="517" width="0.0164%" height="15" fill="rgb(226,51,1)" fg:x="1630621" fg:w="381"/><text x="70.5403%" y="527.50"></text></g><g><title>mnt_want_write (982 samples, 0.04%)</title><rect x="70.2711%" y="533" width="0.0423%" height="15" fill="rgb(247,58,7)" fg:x="1630176" fg:w="982"/><text x="70.5211%" y="543.50"></text></g><g><title>filename_create (105,248 samples, 4.54%)</title><rect x="65.7818%" y="549" width="4.5369%" height="15" fill="rgb(209,7,32)" fg:x="1526031" fg:w="105248"/><text x="66.0318%" y="559.50">filen..</text></g><g><title>memset_erms (2,966 samples, 0.13%)</title><rect x="70.3886%" y="517" width="0.1279%" height="15" fill="rgb(209,39,41)" fg:x="1632901" fg:w="2966"/><text x="70.6386%" y="527.50"></text></g><g><title>kmem_cache_alloc (4,479 samples, 0.19%)</title><rect x="70.3429%" y="533" width="0.1931%" height="15" fill="rgb(226,182,46)" fg:x="1631841" fg:w="4479"/><text x="70.5929%" y="543.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (453 samples, 0.02%)</title><rect x="70.5165%" y="517" width="0.0195%" height="15" fill="rgb(230,219,10)" fg:x="1635867" fg:w="453"/><text x="70.7665%" y="527.50"></text></g><g><title>__check_heap_object (453 samples, 0.02%)</title><rect x="70.6733%" y="501" width="0.0195%" height="15" fill="rgb(227,175,30)" fg:x="1639506" fg:w="453"/><text x="70.9233%" y="511.50"></text></g><g><title>__virt_addr_valid (1,044 samples, 0.05%)</title><rect x="70.6929%" y="501" width="0.0450%" height="15" fill="rgb(217,2,50)" fg:x="1639959" fg:w="1044"/><text x="70.9429%" y="511.50"></text></g><g><title>__check_object_size (2,361 samples, 0.10%)</title><rect x="70.6461%" y="517" width="0.1018%" height="15" fill="rgb(229,160,0)" fg:x="1638875" fg:w="2361"/><text x="70.8961%" y="527.50"></text></g><g><title>getname_flags.part.0 (9,822 samples, 0.42%)</title><rect x="70.3253%" y="549" width="0.4234%" height="15" fill="rgb(207,78,37)" fg:x="1631432" fg:w="9822"/><text x="70.5753%" y="559.50"></text></g><g><title>strncpy_from_user (4,934 samples, 0.21%)</title><rect x="70.5360%" y="533" width="0.2127%" height="15" fill="rgb(225,57,0)" fg:x="1636320" fg:w="4934"/><text x="70.7860%" y="543.50"></text></g><g><title>kmem_cache_free (909 samples, 0.04%)</title><rect x="70.7487%" y="549" width="0.0392%" height="15" fill="rgb(232,154,2)" fg:x="1641254" fg:w="909"/><text x="70.9987%" y="559.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (310 samples, 0.01%)</title><rect x="70.7745%" y="533" width="0.0134%" height="15" fill="rgb(241,212,25)" fg:x="1641853" fg:w="310"/><text x="71.0245%" y="543.50"></text></g><g><title>apparmor_path_symlink (754 samples, 0.03%)</title><rect x="70.8182%" y="533" width="0.0325%" height="15" fill="rgb(226,69,20)" fg:x="1642866" fg:w="754"/><text x="71.0682%" y="543.50"></text></g><g><title>security_path_symlink (2,470 samples, 0.11%)</title><rect x="70.8015%" y="549" width="0.1065%" height="15" fill="rgb(247,184,54)" fg:x="1642480" fg:w="2470"/><text x="71.0515%" y="559.50"></text></g><g><title>tomoyo_path_symlink (1,328 samples, 0.06%)</title><rect x="70.8508%" y="533" width="0.0572%" height="15" fill="rgb(210,145,0)" fg:x="1643622" fg:w="1328"/><text x="71.1008%" y="543.50"></text></g><g><title>tomoyo_path_perm (1,285 samples, 0.06%)</title><rect x="70.8526%" y="517" width="0.0554%" height="15" fill="rgb(253,82,12)" fg:x="1643665" fg:w="1285"/><text x="71.1026%" y="527.50"></text></g><g><title>tomoyo_init_request_info (899 samples, 0.04%)</title><rect x="70.8692%" y="501" width="0.0388%" height="15" fill="rgb(245,42,11)" fg:x="1644051" fg:w="899"/><text x="71.1192%" y="511.50"></text></g><g><title>tomoyo_domain (535 samples, 0.02%)</title><rect x="70.8849%" y="485" width="0.0231%" height="15" fill="rgb(219,147,32)" fg:x="1644415" fg:w="535"/><text x="71.1349%" y="495.50"></text></g><g><title>up_write (596 samples, 0.03%)</title><rect x="70.9080%" y="549" width="0.0257%" height="15" fill="rgb(246,12,7)" fg:x="1644950" fg:w="596"/><text x="71.1580%" y="559.50"></text></g><g><title>btrfs_create_pending_block_groups (333 samples, 0.01%)</title><rect x="71.0874%" y="501" width="0.0144%" height="15" fill="rgb(243,50,9)" fg:x="1649111" fg:w="333"/><text x="71.3374%" y="511.50"></text></g><g><title>_raw_spin_lock (1,455 samples, 0.06%)</title><rect x="71.1457%" y="469" width="0.0627%" height="15" fill="rgb(219,149,6)" fg:x="1650465" fg:w="1455"/><text x="71.3957%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (512 samples, 0.02%)</title><rect x="71.1864%" y="453" width="0.0221%" height="15" fill="rgb(241,51,42)" fg:x="1651408" fg:w="512"/><text x="71.4364%" y="463.50"></text></g><g><title>btrfs_trans_release_metadata (2,267 samples, 0.10%)</title><rect x="71.1197%" y="501" width="0.0977%" height="15" fill="rgb(226,128,27)" fg:x="1649861" fg:w="2267"/><text x="71.3697%" y="511.50"></text></g><g><title>btrfs_block_rsv_release (2,088 samples, 0.09%)</title><rect x="71.1274%" y="485" width="0.0900%" height="15" fill="rgb(244,144,4)" fg:x="1650040" fg:w="2088"/><text x="71.3774%" y="495.50"></text></g><g><title>__btrfs_end_transaction (5,136 samples, 0.22%)</title><rect x="71.0265%" y="517" width="0.2214%" height="15" fill="rgb(221,4,13)" fg:x="1647698" fg:w="5136"/><text x="71.2765%" y="527.50"></text></g><g><title>kmem_cache_free (706 samples, 0.03%)</title><rect x="71.2174%" y="501" width="0.0304%" height="15" fill="rgb(208,170,28)" fg:x="1652128" fg:w="706"/><text x="71.4674%" y="511.50"></text></g><g><title>__radix_tree_lookup (404 samples, 0.02%)</title><rect x="71.2747%" y="501" width="0.0174%" height="15" fill="rgb(226,131,13)" fg:x="1653457" fg:w="404"/><text x="71.5247%" y="511.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,045 samples, 0.05%)</title><rect x="71.2480%" y="517" width="0.0450%" height="15" fill="rgb(215,72,41)" fg:x="1652837" fg:w="1045"/><text x="71.4980%" y="527.50"></text></g><g><title>btrfs_comp_cpu_keys (759 samples, 0.03%)</title><rect x="71.4196%" y="453" width="0.0327%" height="15" fill="rgb(243,108,20)" fg:x="1656818" fg:w="759"/><text x="71.6696%" y="463.50"></text></g><g><title>__btrfs_add_delayed_item (2,109 samples, 0.09%)</title><rect x="71.3787%" y="469" width="0.0909%" height="15" fill="rgb(230,189,17)" fg:x="1655869" fg:w="2109"/><text x="71.6287%" y="479.50"></text></g><g><title>rb_insert_color (401 samples, 0.02%)</title><rect x="71.4523%" y="453" width="0.0173%" height="15" fill="rgb(220,50,17)" fg:x="1657577" fg:w="401"/><text x="71.7023%" y="463.50"></text></g><g><title>_raw_spin_lock (324 samples, 0.01%)</title><rect x="71.4974%" y="453" width="0.0140%" height="15" fill="rgb(248,152,48)" fg:x="1658622" fg:w="324"/><text x="71.7474%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,751 samples, 0.08%)</title><rect x="71.4696%" y="469" width="0.0755%" height="15" fill="rgb(244,91,11)" fg:x="1657978" fg:w="1751"/><text x="71.7196%" y="479.50"></text></g><g><title>mutex_unlock (602 samples, 0.03%)</title><rect x="71.5191%" y="453" width="0.0260%" height="15" fill="rgb(220,157,5)" fg:x="1659127" fg:w="602"/><text x="71.7691%" y="463.50"></text></g><g><title>___slab_alloc (312 samples, 0.01%)</title><rect x="71.5760%" y="437" width="0.0134%" height="15" fill="rgb(253,137,8)" fg:x="1660446" fg:w="312"/><text x="71.8260%" y="447.50"></text></g><g><title>__slab_alloc (373 samples, 0.02%)</title><rect x="71.5734%" y="453" width="0.0161%" height="15" fill="rgb(217,137,51)" fg:x="1660387" fg:w="373"/><text x="71.8234%" y="463.50"></text></g><g><title>_cond_resched (234 samples, 0.01%)</title><rect x="71.6140%" y="437" width="0.0101%" height="15" fill="rgb(218,209,53)" fg:x="1661329" fg:w="234"/><text x="71.8640%" y="447.50"></text></g><g><title>__kmalloc (1,842 samples, 0.08%)</title><rect x="71.5451%" y="469" width="0.0794%" height="15" fill="rgb(249,137,25)" fg:x="1659729" fg:w="1842"/><text x="71.7951%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (449 samples, 0.02%)</title><rect x="71.6051%" y="453" width="0.0194%" height="15" fill="rgb(239,155,26)" fg:x="1661122" fg:w="449"/><text x="71.8551%" y="463.50"></text></g><g><title>mutex_spin_on_owner (1,411 samples, 0.06%)</title><rect x="71.6256%" y="453" width="0.0608%" height="15" fill="rgb(227,85,46)" fg:x="1661598" fg:w="1411"/><text x="71.8756%" y="463.50"></text></g><g><title>__mutex_lock.constprop.0 (1,578 samples, 0.07%)</title><rect x="71.6245%" y="469" width="0.0680%" height="15" fill="rgb(251,107,43)" fg:x="1661571" fg:w="1578"/><text x="71.8745%" y="479.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,558 samples, 0.07%)</title><rect x="71.6929%" y="469" width="0.0672%" height="15" fill="rgb(234,170,33)" fg:x="1663158" fg:w="1558"/><text x="71.9429%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,394 samples, 0.06%)</title><rect x="71.7000%" y="453" width="0.0601%" height="15" fill="rgb(206,29,35)" fg:x="1663322" fg:w="1394"/><text x="71.9500%" y="463.50"></text></g><g><title>_raw_spin_lock (1,245 samples, 0.05%)</title><rect x="71.7064%" y="437" width="0.0537%" height="15" fill="rgb(227,138,25)" fg:x="1663471" fg:w="1245"/><text x="71.9564%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (660 samples, 0.03%)</title><rect x="71.7600%" y="469" width="0.0285%" height="15" fill="rgb(249,131,35)" fg:x="1664716" fg:w="660"/><text x="72.0100%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (580 samples, 0.03%)</title><rect x="71.7635%" y="453" width="0.0250%" height="15" fill="rgb(239,6,40)" fg:x="1664796" fg:w="580"/><text x="72.0135%" y="463.50"></text></g><g><title>memcpy_erms (298 samples, 0.01%)</title><rect x="71.7885%" y="469" width="0.0128%" height="15" fill="rgb(246,136,47)" fg:x="1665377" fg:w="298"/><text x="72.0385%" y="479.50"></text></g><g><title>mutex_lock (290 samples, 0.01%)</title><rect x="71.8014%" y="469" width="0.0125%" height="15" fill="rgb(253,58,26)" fg:x="1665675" fg:w="290"/><text x="72.0514%" y="479.50"></text></g><g><title>btrfs_insert_delayed_dir_index (10,643 samples, 0.46%)</title><rect x="71.3625%" y="485" width="0.4588%" height="15" fill="rgb(237,141,10)" fg:x="1655493" fg:w="10643"/><text x="71.6125%" y="495.50"></text></g><g><title>btrfs_mark_buffer_dirty (463 samples, 0.02%)</title><rect x="71.8213%" y="485" width="0.0200%" height="15" fill="rgb(234,156,12)" fg:x="1666136" fg:w="463"/><text x="72.0713%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (281 samples, 0.01%)</title><rect x="71.8291%" y="469" width="0.0121%" height="15" fill="rgb(243,224,36)" fg:x="1666318" fg:w="281"/><text x="72.0791%" y="479.50"></text></g><g><title>_raw_spin_lock (390 samples, 0.02%)</title><rect x="71.8932%" y="453" width="0.0168%" height="15" fill="rgb(205,229,51)" fg:x="1667805" fg:w="390"/><text x="72.1432%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,390 samples, 0.06%)</title><rect x="71.8505%" y="469" width="0.0599%" height="15" fill="rgb(223,189,4)" fg:x="1666814" fg:w="1390"/><text x="72.1005%" y="479.50"></text></g><g><title>btrfs_release_path (1,955 samples, 0.08%)</title><rect x="71.8412%" y="485" width="0.0843%" height="15" fill="rgb(249,167,54)" fg:x="1666599" fg:w="1955"/><text x="72.0912%" y="495.50"></text></g><g><title>release_extent_buffer (350 samples, 0.02%)</title><rect x="71.9104%" y="469" width="0.0151%" height="15" fill="rgb(218,34,28)" fg:x="1668204" fg:w="350"/><text x="72.1604%" y="479.50"></text></g><g><title>btrfs_set_16 (263 samples, 0.01%)</title><rect x="71.9255%" y="485" width="0.0113%" height="15" fill="rgb(232,109,42)" fg:x="1668554" fg:w="263"/><text x="72.1755%" y="495.50"></text></g><g><title>crc32c (719 samples, 0.03%)</title><rect x="71.9476%" y="485" width="0.0310%" height="15" fill="rgb(248,214,46)" fg:x="1669068" fg:w="719"/><text x="72.1976%" y="495.50"></text></g><g><title>crypto_shash_update (461 samples, 0.02%)</title><rect x="71.9588%" y="469" width="0.0199%" height="15" fill="rgb(244,216,40)" fg:x="1669326" fg:w="461"/><text x="72.2088%" y="479.50"></text></g><g><title>btrfs_get_32 (437 samples, 0.02%)</title><rect x="71.9924%" y="469" width="0.0188%" height="15" fill="rgb(231,226,31)" fg:x="1670107" fg:w="437"/><text x="72.2424%" y="479.50"></text></g><g><title>_raw_read_lock (507 samples, 0.02%)</title><rect x="72.1347%" y="405" width="0.0219%" height="15" fill="rgb(238,38,43)" fg:x="1673407" fg:w="507"/><text x="72.3847%" y="415.50"></text></g><g><title>finish_wait (2,528 samples, 0.11%)</title><rect x="72.1582%" y="405" width="0.1090%" height="15" fill="rgb(208,88,43)" fg:x="1673953" fg:w="2528"/><text x="72.4082%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (2,421 samples, 0.10%)</title><rect x="72.1628%" y="389" width="0.1044%" height="15" fill="rgb(205,136,37)" fg:x="1674060" fg:w="2421"/><text x="72.4128%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,331 samples, 0.10%)</title><rect x="72.1667%" y="373" width="0.1005%" height="15" fill="rgb(237,34,14)" fg:x="1674150" fg:w="2331"/><text x="72.4167%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (6,309 samples, 0.27%)</title><rect x="72.2925%" y="389" width="0.2720%" height="15" fill="rgb(236,193,44)" fg:x="1677068" fg:w="6309"/><text x="72.5425%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,031 samples, 0.26%)</title><rect x="72.3045%" y="373" width="0.2600%" height="15" fill="rgb(231,48,10)" fg:x="1677346" fg:w="6031"/><text x="72.5545%" y="383.50"></text></g><g><title>prepare_to_wait_event (6,992 samples, 0.30%)</title><rect x="72.2675%" y="405" width="0.3014%" height="15" fill="rgb(213,141,34)" fg:x="1676488" fg:w="6992"/><text x="72.5175%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (7,631 samples, 0.33%)</title><rect x="72.5689%" y="405" width="0.3289%" height="15" fill="rgb(249,130,34)" fg:x="1683480" fg:w="7631"/><text x="72.8189%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,723 samples, 0.25%)</title><rect x="72.6511%" y="389" width="0.2467%" height="15" fill="rgb(219,42,41)" fg:x="1685388" fg:w="5723"/><text x="72.9011%" y="399.50"></text></g><g><title>update_curr (363 samples, 0.02%)</title><rect x="72.9440%" y="341" width="0.0156%" height="15" fill="rgb(224,100,54)" fg:x="1692181" fg:w="363"/><text x="73.1940%" y="351.50"></text></g><g><title>dequeue_entity (1,038 samples, 0.04%)</title><rect x="72.9292%" y="357" width="0.0447%" height="15" fill="rgb(229,200,27)" fg:x="1691839" fg:w="1038"/><text x="73.1792%" y="367.50"></text></g><g><title>update_load_avg (333 samples, 0.01%)</title><rect x="72.9596%" y="341" width="0.0144%" height="15" fill="rgb(217,118,10)" fg:x="1692544" fg:w="333"/><text x="73.2096%" y="351.50"></text></g><g><title>dequeue_task_fair (1,249 samples, 0.05%)</title><rect x="72.9223%" y="373" width="0.0538%" height="15" fill="rgb(206,22,3)" fg:x="1691679" fg:w="1249"/><text x="73.1723%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (2,400 samples, 0.10%)</title><rect x="72.9860%" y="357" width="0.1035%" height="15" fill="rgb(232,163,46)" fg:x="1693156" fg:w="2400"/><text x="73.2360%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,330 samples, 0.10%)</title><rect x="72.9890%" y="341" width="0.1004%" height="15" fill="rgb(206,95,13)" fg:x="1693226" fg:w="2330"/><text x="73.2390%" y="351.50"></text></g><g><title>native_write_msr (2,286 samples, 0.10%)</title><rect x="72.9909%" y="325" width="0.0985%" height="15" fill="rgb(253,154,18)" fg:x="1693270" fg:w="2286"/><text x="73.2409%" y="335.50"></text></g><g><title>finish_task_switch (2,714 samples, 0.12%)</title><rect x="72.9762%" y="373" width="0.1170%" height="15" fill="rgb(219,32,23)" fg:x="1692928" fg:w="2714"/><text x="73.2262%" y="383.50"></text></g><g><title>pick_next_task_idle (237 samples, 0.01%)</title><rect x="73.1018%" y="373" width="0.0102%" height="15" fill="rgb(230,191,45)" fg:x="1695842" fg:w="237"/><text x="73.3518%" y="383.50"></text></g><g><title>psi_task_change (914 samples, 0.04%)</title><rect x="73.1120%" y="373" width="0.0394%" height="15" fill="rgb(229,64,36)" fg:x="1696079" fg:w="914"/><text x="73.3620%" y="383.50"></text></g><g><title>psi_group_change (777 samples, 0.03%)</title><rect x="73.1179%" y="357" width="0.0335%" height="15" fill="rgb(205,129,25)" fg:x="1696216" fg:w="777"/><text x="73.3679%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (24,428 samples, 1.05%)</title><rect x="72.1102%" y="421" width="1.0530%" height="15" fill="rgb(254,112,7)" fg:x="1672840" fg:w="24428"/><text x="72.3602%" y="431.50"></text></g><g><title>schedule (6,157 samples, 0.27%)</title><rect x="72.8978%" y="405" width="0.2654%" height="15" fill="rgb(226,53,48)" fg:x="1691111" fg:w="6157"/><text x="73.1478%" y="415.50"></text></g><g><title>__schedule (6,080 samples, 0.26%)</title><rect x="72.9012%" y="389" width="0.2621%" height="15" fill="rgb(214,153,38)" fg:x="1691188" fg:w="6080"/><text x="73.1512%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (25,529 samples, 1.10%)</title><rect x="72.1055%" y="437" width="1.1005%" height="15" fill="rgb(243,101,7)" fg:x="1672730" fg:w="25529"/><text x="72.3555%" y="447.50"></text></g><g><title>btrfs_root_node (990 samples, 0.04%)</title><rect x="73.1633%" y="421" width="0.0427%" height="15" fill="rgb(240,140,22)" fg:x="1697269" fg:w="990"/><text x="73.4133%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (458 samples, 0.02%)</title><rect x="73.2255%" y="405" width="0.0197%" height="15" fill="rgb(235,114,2)" fg:x="1698713" fg:w="458"/><text x="73.4755%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (386 samples, 0.02%)</title><rect x="73.2286%" y="389" width="0.0166%" height="15" fill="rgb(242,59,12)" fg:x="1698785" fg:w="386"/><text x="73.4786%" y="399.50"></text></g><g><title>prepare_to_wait_event (622 samples, 0.03%)</title><rect x="73.2195%" y="421" width="0.0268%" height="15" fill="rgb(252,134,9)" fg:x="1698574" fg:w="622"/><text x="73.4695%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (497 samples, 0.02%)</title><rect x="73.2464%" y="421" width="0.0214%" height="15" fill="rgb(236,4,44)" fg:x="1699196" fg:w="497"/><text x="73.4964%" y="431.50"></text></g><g><title>dequeue_entity (380 samples, 0.02%)</title><rect x="73.2801%" y="373" width="0.0164%" height="15" fill="rgb(254,172,41)" fg:x="1699980" fg:w="380"/><text x="73.5301%" y="383.50"></text></g><g><title>dequeue_task_fair (463 samples, 0.02%)</title><rect x="73.2781%" y="389" width="0.0200%" height="15" fill="rgb(244,63,20)" fg:x="1699933" fg:w="463"/><text x="73.5281%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (898 samples, 0.04%)</title><rect x="73.3019%" y="373" width="0.0387%" height="15" fill="rgb(250,73,31)" fg:x="1700485" fg:w="898"/><text x="73.5519%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (872 samples, 0.04%)</title><rect x="73.3030%" y="357" width="0.0376%" height="15" fill="rgb(241,38,36)" fg:x="1700511" fg:w="872"/><text x="73.5530%" y="367.50"></text></g><g><title>native_write_msr (859 samples, 0.04%)</title><rect x="73.3036%" y="341" width="0.0370%" height="15" fill="rgb(245,211,2)" fg:x="1700524" fg:w="859"/><text x="73.5536%" y="351.50"></text></g><g><title>finish_task_switch (1,018 samples, 0.04%)</title><rect x="73.2981%" y="389" width="0.0439%" height="15" fill="rgb(206,120,28)" fg:x="1700396" fg:w="1018"/><text x="73.5481%" y="399.50"></text></g><g><title>psi_task_change (300 samples, 0.01%)</title><rect x="73.3486%" y="389" width="0.0129%" height="15" fill="rgb(211,59,34)" fg:x="1701569" fg:w="300"/><text x="73.5986%" y="399.50"></text></g><g><title>psi_group_change (245 samples, 0.01%)</title><rect x="73.3510%" y="373" width="0.0106%" height="15" fill="rgb(233,168,5)" fg:x="1701624" fg:w="245"/><text x="73.6010%" y="383.50"></text></g><g><title>__btrfs_tree_lock (3,705 samples, 0.16%)</title><rect x="73.2060%" y="437" width="0.1597%" height="15" fill="rgb(234,33,13)" fg:x="1698259" fg:w="3705"/><text x="73.4560%" y="447.50"></text></g><g><title>schedule (2,271 samples, 0.10%)</title><rect x="73.2678%" y="421" width="0.0979%" height="15" fill="rgb(231,150,26)" fg:x="1699693" fg:w="2271"/><text x="73.5178%" y="431.50"></text></g><g><title>__schedule (2,242 samples, 0.10%)</title><rect x="73.2690%" y="405" width="0.0966%" height="15" fill="rgb(217,191,4)" fg:x="1699722" fg:w="2242"/><text x="73.5190%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (810 samples, 0.03%)</title><rect x="73.3801%" y="437" width="0.0349%" height="15" fill="rgb(246,198,38)" fg:x="1702299" fg:w="810"/><text x="73.6301%" y="447.50"></text></g><g><title>leaf_space_used (676 samples, 0.03%)</title><rect x="73.3859%" y="421" width="0.0291%" height="15" fill="rgb(245,64,37)" fg:x="1702433" fg:w="676"/><text x="73.6359%" y="431.50"></text></g><g><title>btrfs_get_32 (534 samples, 0.02%)</title><rect x="73.3920%" y="405" width="0.0230%" height="15" fill="rgb(250,30,36)" fg:x="1702575" fg:w="534"/><text x="73.6420%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (428 samples, 0.02%)</title><rect x="73.4239%" y="389" width="0.0184%" height="15" fill="rgb(217,86,53)" fg:x="1703315" fg:w="428"/><text x="73.6739%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (401 samples, 0.02%)</title><rect x="73.4251%" y="373" width="0.0173%" height="15" fill="rgb(228,157,16)" fg:x="1703342" fg:w="401"/><text x="73.6751%" y="383.50"></text></g><g><title>prepare_to_wait_event (467 samples, 0.02%)</title><rect x="73.4225%" y="405" width="0.0201%" height="15" fill="rgb(217,59,31)" fg:x="1703283" fg:w="467"/><text x="73.6725%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (356 samples, 0.02%)</title><rect x="73.4427%" y="405" width="0.0153%" height="15" fill="rgb(237,138,41)" fg:x="1703750" fg:w="356"/><text x="73.6927%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,341 samples, 0.06%)</title><rect x="73.4150%" y="421" width="0.0578%" height="15" fill="rgb(227,91,49)" fg:x="1703109" fg:w="1341"/><text x="73.6650%" y="431.50"></text></g><g><title>schedule (344 samples, 0.01%)</title><rect x="73.4580%" y="405" width="0.0148%" height="15" fill="rgb(247,21,44)" fg:x="1704106" fg:w="344"/><text x="73.7080%" y="415.50"></text></g><g><title>__schedule (337 samples, 0.01%)</title><rect x="73.4583%" y="389" width="0.0145%" height="15" fill="rgb(219,210,51)" fg:x="1704113" fg:w="337"/><text x="73.7083%" y="399.50"></text></g><g><title>btrfs_lock_root_node (1,347 samples, 0.06%)</title><rect x="73.4150%" y="437" width="0.0581%" height="15" fill="rgb(209,140,6)" fg:x="1703109" fg:w="1347"/><text x="73.6650%" y="447.50"></text></g><g><title>_raw_write_lock (338 samples, 0.01%)</title><rect x="73.4853%" y="421" width="0.0146%" height="15" fill="rgb(221,188,24)" fg:x="1704739" fg:w="338"/><text x="73.7353%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (2,567 samples, 0.11%)</title><rect x="73.4999%" y="421" width="0.1107%" height="15" fill="rgb(232,154,20)" fg:x="1705077" fg:w="2567"/><text x="73.7499%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (684 samples, 0.03%)</title><rect x="73.5810%" y="405" width="0.0295%" height="15" fill="rgb(244,137,50)" fg:x="1706960" fg:w="684"/><text x="73.8310%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (3,029 samples, 0.13%)</title><rect x="73.4800%" y="437" width="0.1306%" height="15" fill="rgb(225,185,43)" fg:x="1704616" fg:w="3029"/><text x="73.7300%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,725 samples, 0.20%)</title><rect x="73.6108%" y="437" width="0.2037%" height="15" fill="rgb(213,205,38)" fg:x="1707651" fg:w="4725"/><text x="73.8608%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (507 samples, 0.02%)</title><rect x="73.8356%" y="421" width="0.0219%" height="15" fill="rgb(236,73,12)" fg:x="1712865" fg:w="507"/><text x="74.0856%" y="431.50"></text></g><g><title>verify_parent_transid (404 samples, 0.02%)</title><rect x="73.8400%" y="405" width="0.0174%" height="15" fill="rgb(235,219,13)" fg:x="1712968" fg:w="404"/><text x="74.0900%" y="415.50"></text></g><g><title>btrfs_get_64 (653 samples, 0.03%)</title><rect x="73.8574%" y="421" width="0.0281%" height="15" fill="rgb(218,59,36)" fg:x="1713372" fg:w="653"/><text x="74.1074%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,002 samples, 0.09%)</title><rect x="73.9425%" y="405" width="0.0863%" height="15" fill="rgb(205,110,39)" fg:x="1715345" fg:w="2002"/><text x="74.1925%" y="415.50"></text></g><g><title>mark_page_accessed (831 samples, 0.04%)</title><rect x="74.0404%" y="389" width="0.0358%" height="15" fill="rgb(218,206,42)" fg:x="1717617" fg:w="831"/><text x="74.2904%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,146 samples, 0.05%)</title><rect x="74.0288%" y="405" width="0.0494%" height="15" fill="rgb(248,125,24)" fg:x="1717347" fg:w="1146"/><text x="74.2788%" y="415.50"></text></g><g><title>find_extent_buffer (4,240 samples, 0.18%)</title><rect x="73.8970%" y="421" width="0.1828%" height="15" fill="rgb(242,28,27)" fg:x="1714290" fg:w="4240"/><text x="74.1470%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (6,737 samples, 0.29%)</title><rect x="73.8145%" y="437" width="0.2904%" height="15" fill="rgb(216,228,15)" fg:x="1712376" fg:w="6737"/><text x="74.0645%" y="447.50"></text></g><g><title>read_extent_buffer (583 samples, 0.03%)</title><rect x="74.0798%" y="421" width="0.0251%" height="15" fill="rgb(235,116,46)" fg:x="1718530" fg:w="583"/><text x="74.3298%" y="431.50"></text></g><g><title>alloc_extent_buffer (276 samples, 0.01%)</title><rect x="74.1119%" y="389" width="0.0119%" height="15" fill="rgb(224,18,32)" fg:x="1719276" fg:w="276"/><text x="74.3619%" y="399.50"></text></g><g><title>alloc_tree_block_no_bg_flush (672 samples, 0.03%)</title><rect x="74.1110%" y="421" width="0.0290%" height="15" fill="rgb(252,5,12)" fg:x="1719255" fg:w="672"/><text x="74.3610%" y="431.50"></text></g><g><title>btrfs_alloc_tree_block (670 samples, 0.03%)</title><rect x="74.1111%" y="405" width="0.0289%" height="15" fill="rgb(251,36,5)" fg:x="1719257" fg:w="670"/><text x="74.3611%" y="415.50"></text></g><g><title>copy_for_split (367 samples, 0.02%)</title><rect x="74.1429%" y="421" width="0.0158%" height="15" fill="rgb(217,53,14)" fg:x="1719994" fg:w="367"/><text x="74.3929%" y="431.50"></text></g><g><title>btrfs_get_token_32 (467 samples, 0.02%)</title><rect x="74.1702%" y="389" width="0.0201%" height="15" fill="rgb(215,86,45)" fg:x="1720628" fg:w="467"/><text x="74.4202%" y="399.50"></text></g><g><title>btrfs_set_token_32 (426 samples, 0.02%)</title><rect x="74.1912%" y="389" width="0.0184%" height="15" fill="rgb(242,169,11)" fg:x="1721116" fg:w="426"/><text x="74.4412%" y="399.50"></text></g><g><title>memmove_extent_buffer (250 samples, 0.01%)</title><rect x="74.2163%" y="389" width="0.0108%" height="15" fill="rgb(211,213,45)" fg:x="1721698" fg:w="250"/><text x="74.4663%" y="399.50"></text></g><g><title>__push_leaf_left (1,559 samples, 0.07%)</title><rect x="74.1600%" y="405" width="0.0672%" height="15" fill="rgb(205,88,11)" fg:x="1720392" fg:w="1559"/><text x="74.4100%" y="415.50"></text></g><g><title>push_leaf_left (1,756 samples, 0.08%)</title><rect x="74.1588%" y="421" width="0.0757%" height="15" fill="rgb(252,69,26)" fg:x="1720363" fg:w="1756"/><text x="74.4088%" y="431.50"></text></g><g><title>btrfs_get_token_32 (487 samples, 0.02%)</title><rect x="74.2514%" y="389" width="0.0210%" height="15" fill="rgb(246,123,37)" fg:x="1722511" fg:w="487"/><text x="74.5014%" y="399.50"></text></g><g><title>btrfs_set_token_32 (474 samples, 0.02%)</title><rect x="74.2743%" y="389" width="0.0204%" height="15" fill="rgb(212,205,5)" fg:x="1723043" fg:w="474"/><text x="74.5243%" y="399.50"></text></g><g><title>__push_leaf_right (1,745 samples, 0.08%)</title><rect x="74.2381%" y="405" width="0.0752%" height="15" fill="rgb(253,148,0)" fg:x="1722204" fg:w="1745"/><text x="74.4881%" y="415.50"></text></g><g><title>__btrfs_cow_block (235 samples, 0.01%)</title><rect x="74.3141%" y="389" width="0.0101%" height="15" fill="rgb(239,22,4)" fg:x="1723966" fg:w="235"/><text x="74.5641%" y="399.50"></text></g><g><title>btrfs_cow_block (253 samples, 0.01%)</title><rect x="74.3134%" y="405" width="0.0109%" height="15" fill="rgb(226,26,53)" fg:x="1723949" fg:w="253"/><text x="74.5634%" y="415.50"></text></g><g><title>btrfs_read_node_slot (303 samples, 0.01%)</title><rect x="74.3279%" y="405" width="0.0131%" height="15" fill="rgb(225,229,45)" fg:x="1724287" fg:w="303"/><text x="74.5779%" y="415.50"></text></g><g><title>read_tree_block (243 samples, 0.01%)</title><rect x="74.3305%" y="389" width="0.0105%" height="15" fill="rgb(220,60,37)" fg:x="1724347" fg:w="243"/><text x="74.5805%" y="399.50"></text></g><g><title>push_leaf_right (2,527 samples, 0.11%)</title><rect x="74.2345%" y="421" width="0.1089%" height="15" fill="rgb(217,180,35)" fg:x="1722119" fg:w="2527"/><text x="74.4845%" y="431.50"></text></g><g><title>split_leaf (5,445 samples, 0.23%)</title><rect x="74.1088%" y="437" width="0.2347%" height="15" fill="rgb(229,7,53)" fg:x="1719203" fg:w="5445"/><text x="74.3588%" y="447.50"></text></g><g><title>split_node (439 samples, 0.02%)</title><rect x="74.3435%" y="437" width="0.0189%" height="15" fill="rgb(254,137,3)" fg:x="1724648" fg:w="439"/><text x="74.5935%" y="447.50"></text></g><g><title>push_nodes_for_insert (426 samples, 0.02%)</title><rect x="74.3441%" y="421" width="0.0184%" height="15" fill="rgb(215,140,41)" fg:x="1724661" fg:w="426"/><text x="74.5941%" y="431.50"></text></g><g><title>select_task_rq_fair (657 samples, 0.03%)</title><rect x="74.4288%" y="357" width="0.0283%" height="15" fill="rgb(250,80,15)" fg:x="1726627" fg:w="657"/><text x="74.6788%" y="367.50"></text></g><g><title>enqueue_entity (558 samples, 0.02%)</title><rect x="74.4680%" y="325" width="0.0241%" height="15" fill="rgb(252,191,6)" fg:x="1727537" fg:w="558"/><text x="74.7180%" y="335.50"></text></g><g><title>enqueue_task_fair (737 samples, 0.03%)</title><rect x="74.4627%" y="341" width="0.0318%" height="15" fill="rgb(246,217,18)" fg:x="1727414" fg:w="737"/><text x="74.7127%" y="351.50"></text></g><g><title>ttwu_do_activate (1,504 samples, 0.06%)</title><rect x="74.4597%" y="357" width="0.0648%" height="15" fill="rgb(223,93,7)" fg:x="1727343" fg:w="1504"/><text x="74.7097%" y="367.50"></text></g><g><title>psi_task_change (695 samples, 0.03%)</title><rect x="74.4945%" y="341" width="0.0300%" height="15" fill="rgb(225,55,52)" fg:x="1728152" fg:w="695"/><text x="74.7445%" y="351.50"></text></g><g><title>psi_group_change (612 samples, 0.03%)</title><rect x="74.4981%" y="325" width="0.0264%" height="15" fill="rgb(240,31,24)" fg:x="1728235" fg:w="612"/><text x="74.7481%" y="335.50"></text></g><g><title>__wake_up_common (3,437 samples, 0.15%)</title><rect x="74.3901%" y="405" width="0.1482%" height="15" fill="rgb(205,56,52)" fg:x="1725729" fg:w="3437"/><text x="74.6401%" y="415.50"></text></g><g><title>autoremove_wake_function (3,380 samples, 0.15%)</title><rect x="74.3926%" y="389" width="0.1457%" height="15" fill="rgb(246,146,12)" fg:x="1725786" fg:w="3380"/><text x="74.6426%" y="399.50"></text></g><g><title>try_to_wake_up (3,273 samples, 0.14%)</title><rect x="74.3972%" y="373" width="0.1411%" height="15" fill="rgb(239,84,36)" fg:x="1725893" fg:w="3273"/><text x="74.6472%" y="383.50"></text></g><g><title>__wake_up_common_lock (3,568 samples, 0.15%)</title><rect x="74.3893%" y="421" width="0.1538%" height="15" fill="rgb(207,41,40)" fg:x="1725710" fg:w="3568"/><text x="74.6393%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (576 samples, 0.02%)</title><rect x="74.5433%" y="421" width="0.0248%" height="15" fill="rgb(241,179,25)" fg:x="1729282" fg:w="576"/><text x="74.7933%" y="431.50"></text></g><g><title>btrfs_search_slot (59,361 samples, 2.56%)</title><rect x="72.0189%" y="453" width="2.5588%" height="15" fill="rgb(210,0,34)" fg:x="1670720" fg:w="59361"/><text x="72.2689%" y="463.50">bt..</text></g><g><title>unlock_up (4,994 samples, 0.22%)</title><rect x="74.3624%" y="437" width="0.2153%" height="15" fill="rgb(225,217,29)" fg:x="1725087" fg:w="4994"/><text x="74.6124%" y="447.50"></text></g><g><title>btrfs_get_32 (387 samples, 0.02%)</title><rect x="74.6912%" y="437" width="0.0167%" height="15" fill="rgb(216,191,38)" fg:x="1732713" fg:w="387"/><text x="74.9412%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (1,755 samples, 0.08%)</title><rect x="75.1275%" y="421" width="0.0757%" height="15" fill="rgb(232,140,52)" fg:x="1742835" fg:w="1755"/><text x="75.3775%" y="431.50"></text></g><g><title>btrfs_get_token_32 (11,491 samples, 0.50%)</title><rect x="74.7078%" y="437" width="0.4953%" height="15" fill="rgb(223,158,51)" fg:x="1733100" fg:w="11491"/><text x="74.9578%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (994 samples, 0.04%)</title><rect x="75.2032%" y="437" width="0.0428%" height="15" fill="rgb(235,29,51)" fg:x="1744591" fg:w="994"/><text x="75.4532%" y="447.50"></text></g><g><title>leaf_space_used (838 samples, 0.04%)</title><rect x="75.2099%" y="421" width="0.0361%" height="15" fill="rgb(215,181,18)" fg:x="1744747" fg:w="838"/><text x="75.4599%" y="431.50"></text></g><g><title>btrfs_get_32 (635 samples, 0.03%)</title><rect x="75.2186%" y="405" width="0.0274%" height="15" fill="rgb(227,125,34)" fg:x="1744950" fg:w="635"/><text x="75.4686%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (653 samples, 0.03%)</title><rect x="75.2460%" y="437" width="0.0281%" height="15" fill="rgb(230,197,49)" fg:x="1745585" fg:w="653"/><text x="75.4960%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (277 samples, 0.01%)</title><rect x="75.2622%" y="421" width="0.0119%" height="15" fill="rgb(239,141,16)" fg:x="1745961" fg:w="277"/><text x="75.5122%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,600 samples, 0.07%)</title><rect x="75.6076%" y="421" width="0.0690%" height="15" fill="rgb(225,105,43)" fg:x="1753972" fg:w="1600"/><text x="75.8576%" y="431.50"></text></g><g><title>btrfs_set_token_32 (9,335 samples, 0.40%)</title><rect x="75.2742%" y="437" width="0.4024%" height="15" fill="rgb(214,131,14)" fg:x="1746238" fg:w="9335"/><text x="75.5242%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (313 samples, 0.01%)</title><rect x="75.6766%" y="437" width="0.0135%" height="15" fill="rgb(229,177,11)" fg:x="1755573" fg:w="313"/><text x="75.9266%" y="447.50"></text></g><g><title>copy_pages (382 samples, 0.02%)</title><rect x="75.7007%" y="421" width="0.0165%" height="15" fill="rgb(231,180,14)" fg:x="1756133" fg:w="382"/><text x="75.9507%" y="431.50"></text></g><g><title>memcpy_extent_buffer (3,803 samples, 0.16%)</title><rect x="75.6904%" y="437" width="0.1639%" height="15" fill="rgb(232,88,2)" fg:x="1755893" fg:w="3803"/><text x="75.9404%" y="447.50"></text></g><g><title>memmove (3,181 samples, 0.14%)</title><rect x="75.7172%" y="421" width="0.1371%" height="15" fill="rgb(205,220,8)" fg:x="1756515" fg:w="3181"/><text x="75.9672%" y="431.50"></text></g><g><title>copy_pages (337 samples, 0.01%)</title><rect x="75.8724%" y="421" width="0.0145%" height="15" fill="rgb(225,23,53)" fg:x="1760116" fg:w="337"/><text x="76.1224%" y="431.50"></text></g><g><title>memmove_extent_buffer (2,951 samples, 0.13%)</title><rect x="75.8543%" y="437" width="0.1272%" height="15" fill="rgb(213,62,29)" fg:x="1759696" fg:w="2951"/><text x="76.1043%" y="447.50"></text></g><g><title>memmove (2,194 samples, 0.09%)</title><rect x="75.8869%" y="421" width="0.0946%" height="15" fill="rgb(227,75,7)" fg:x="1760453" fg:w="2194"/><text x="76.1369%" y="431.50"></text></g><g><title>insert_with_overflow (93,257 samples, 4.02%)</title><rect x="71.9786%" y="485" width="4.0200%" height="15" fill="rgb(207,105,14)" fg:x="1669787" fg:w="93257"/><text x="72.2286%" y="495.50">inse..</text></g><g><title>btrfs_insert_empty_items (92,500 samples, 3.99%)</title><rect x="72.0113%" y="469" width="3.9873%" height="15" fill="rgb(245,62,29)" fg:x="1670544" fg:w="92500"/><text x="72.2613%" y="479.50">btrf..</text></g><g><title>setup_items_for_insert (32,963 samples, 1.42%)</title><rect x="74.5777%" y="453" width="1.4209%" height="15" fill="rgb(236,202,4)" fg:x="1730081" fg:w="32963"/><text x="74.8277%" y="463.50"></text></g><g><title>write_extent_buffer (397 samples, 0.02%)</title><rect x="75.9815%" y="437" width="0.0171%" height="15" fill="rgb(250,67,1)" fg:x="1762647" fg:w="397"/><text x="76.2315%" y="447.50"></text></g><g><title>kmem_cache_alloc (761 samples, 0.03%)</title><rect x="75.9986%" y="485" width="0.0328%" height="15" fill="rgb(253,115,44)" fg:x="1763044" fg:w="761"/><text x="76.2486%" y="495.50"></text></g><g><title>kmem_cache_free (588 samples, 0.03%)</title><rect x="76.0314%" y="485" width="0.0253%" height="15" fill="rgb(251,139,18)" fg:x="1763805" fg:w="588"/><text x="76.2814%" y="495.50"></text></g><g><title>btrfs_insert_dir_item (110,539 samples, 4.76%)</title><rect x="71.3307%" y="501" width="4.7649%" height="15" fill="rgb(218,22,32)" fg:x="1654755" fg:w="110539"/><text x="71.5807%" y="511.50">btrfs_..</text></g><g><title>write_extent_buffer (901 samples, 0.04%)</title><rect x="76.0568%" y="485" width="0.0388%" height="15" fill="rgb(243,53,5)" fg:x="1764393" fg:w="901"/><text x="76.3068%" y="495.50"></text></g><g><title>_raw_spin_lock (307 samples, 0.01%)</title><rect x="76.1436%" y="453" width="0.0132%" height="15" fill="rgb(227,56,16)" fg:x="1766408" fg:w="307"/><text x="76.3936%" y="463.50"></text></g><g><title>mutex_lock (233 samples, 0.01%)</title><rect x="76.1569%" y="453" width="0.0100%" height="15" fill="rgb(245,53,0)" fg:x="1766715" fg:w="233"/><text x="76.4069%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,210 samples, 0.05%)</title><rect x="76.1256%" y="469" width="0.0522%" height="15" fill="rgb(216,170,35)" fg:x="1765989" fg:w="1210"/><text x="76.3756%" y="479.50"></text></g><g><title>mutex_unlock (251 samples, 0.01%)</title><rect x="76.1669%" y="453" width="0.0108%" height="15" fill="rgb(211,200,8)" fg:x="1766948" fg:w="251"/><text x="76.4169%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (328 samples, 0.01%)</title><rect x="76.1858%" y="469" width="0.0141%" height="15" fill="rgb(228,204,44)" fg:x="1767387" fg:w="328"/><text x="76.4358%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (284 samples, 0.01%)</title><rect x="76.1877%" y="453" width="0.0122%" height="15" fill="rgb(214,121,17)" fg:x="1767431" fg:w="284"/><text x="76.4377%" y="463.50"></text></g><g><title>inode_get_bytes (249 samples, 0.01%)</title><rect x="76.2066%" y="453" width="0.0107%" height="15" fill="rgb(233,64,38)" fg:x="1767870" fg:w="249"/><text x="76.4566%" y="463.50"></text></g><g><title>fill_stack_inode_item (530 samples, 0.02%)</title><rect x="76.2000%" y="469" width="0.0228%" height="15" fill="rgb(253,54,19)" fg:x="1767715" fg:w="530"/><text x="76.4500%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (2,805 samples, 0.12%)</title><rect x="76.1197%" y="485" width="0.1209%" height="15" fill="rgb(253,94,18)" fg:x="1765853" fg:w="2805"/><text x="76.3697%" y="495.50"></text></g><g><title>_raw_spin_lock (530 samples, 0.02%)</title><rect x="76.2445%" y="469" width="0.0228%" height="15" fill="rgb(227,57,52)" fg:x="1768747" fg:w="530"/><text x="76.4945%" y="479.50"></text></g><g><title>btrfs_update_inode (4,351 samples, 0.19%)</title><rect x="76.0956%" y="501" width="0.1876%" height="15" fill="rgb(230,228,50)" fg:x="1765294" fg:w="4351"/><text x="76.3456%" y="511.50"></text></g><g><title>btrfs_update_root_times (987 samples, 0.04%)</title><rect x="76.2406%" y="485" width="0.0425%" height="15" fill="rgb(217,205,27)" fg:x="1768658" fg:w="987"/><text x="76.4906%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (368 samples, 0.02%)</title><rect x="76.2673%" y="469" width="0.0159%" height="15" fill="rgb(252,71,50)" fg:x="1769277" fg:w="368"/><text x="76.5173%" y="479.50"></text></g><g><title>current_time (262 samples, 0.01%)</title><rect x="76.2832%" y="501" width="0.0113%" height="15" fill="rgb(209,86,4)" fg:x="1769645" fg:w="262"/><text x="76.5332%" y="511.50"></text></g><g><title>btrfs_add_link (116,075 samples, 5.00%)</title><rect x="71.2930%" y="517" width="5.0036%" height="15" fill="rgb(229,94,0)" fg:x="1653882" fg:w="116075"/><text x="71.5430%" y="527.50">btrfs_..</text></g><g><title>btrfs_balance_delayed_items (822 samples, 0.04%)</title><rect x="76.3226%" y="501" width="0.0354%" height="15" fill="rgb(252,223,21)" fg:x="1770560" fg:w="822"/><text x="76.5726%" y="511.50"></text></g><g><title>_raw_spin_lock (746 samples, 0.03%)</title><rect x="76.3801%" y="469" width="0.0322%" height="15" fill="rgb(230,210,4)" fg:x="1771893" fg:w="746"/><text x="76.6301%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (610 samples, 0.03%)</title><rect x="76.3859%" y="453" width="0.0263%" height="15" fill="rgb(240,149,38)" fg:x="1772029" fg:w="610"/><text x="76.6359%" y="463.50"></text></g><g><title>insert_work (237 samples, 0.01%)</title><rect x="76.4122%" y="469" width="0.0102%" height="15" fill="rgb(254,105,20)" fg:x="1772639" fg:w="237"/><text x="76.6622%" y="479.50"></text></g><g><title>_raw_spin_lock (311 samples, 0.01%)</title><rect x="76.4360%" y="453" width="0.0134%" height="15" fill="rgb(253,87,46)" fg:x="1773190" fg:w="311"/><text x="76.6860%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (245 samples, 0.01%)</title><rect x="76.4388%" y="437" width="0.0106%" height="15" fill="rgb(253,116,33)" fg:x="1773256" fg:w="245"/><text x="76.6888%" y="447.50"></text></g><g><title>select_task_rq_fair (634 samples, 0.03%)</title><rect x="76.4574%" y="453" width="0.0273%" height="15" fill="rgb(229,198,5)" fg:x="1773687" fg:w="634"/><text x="76.7074%" y="463.50"></text></g><g><title>enqueue_task_fair (526 samples, 0.02%)</title><rect x="76.4908%" y="437" width="0.0227%" height="15" fill="rgb(242,38,37)" fg:x="1774461" fg:w="526"/><text x="76.7408%" y="447.50"></text></g><g><title>enqueue_entity (406 samples, 0.02%)</title><rect x="76.4959%" y="421" width="0.0175%" height="15" fill="rgb(242,69,53)" fg:x="1774581" fg:w="406"/><text x="76.7459%" y="431.50"></text></g><g><title>ttwu_do_activate (836 samples, 0.04%)</title><rect x="76.4881%" y="453" width="0.0360%" height="15" fill="rgb(249,80,16)" fg:x="1774399" fg:w="836"/><text x="76.7381%" y="463.50"></text></g><g><title>psi_task_change (248 samples, 0.01%)</title><rect x="76.5134%" y="437" width="0.0107%" height="15" fill="rgb(206,128,11)" fg:x="1774987" fg:w="248"/><text x="76.7634%" y="447.50"></text></g><g><title>ttwu_do_wakeup (262 samples, 0.01%)</title><rect x="76.5241%" y="453" width="0.0113%" height="15" fill="rgb(212,35,20)" fg:x="1775235" fg:w="262"/><text x="76.7741%" y="463.50"></text></g><g><title>check_preempt_curr (248 samples, 0.01%)</title><rect x="76.5247%" y="437" width="0.0107%" height="15" fill="rgb(236,79,13)" fg:x="1775249" fg:w="248"/><text x="76.7747%" y="447.50"></text></g><g><title>try_to_wake_up (2,780 samples, 0.12%)</title><rect x="76.4224%" y="469" width="0.1198%" height="15" fill="rgb(233,123,3)" fg:x="1772876" fg:w="2780"/><text x="76.6724%" y="479.50"></text></g><g><title>__queue_work (4,023 samples, 0.17%)</title><rect x="76.3689%" y="485" width="0.1734%" height="15" fill="rgb(214,93,52)" fg:x="1771634" fg:w="4023"/><text x="76.6189%" y="495.50"></text></g><g><title>btrfs_btree_balance_dirty (5,679 samples, 0.24%)</title><rect x="76.2984%" y="517" width="0.2448%" height="15" fill="rgb(251,37,40)" fg:x="1769998" fg:w="5679"/><text x="76.5484%" y="527.50"></text></g><g><title>queue_work_on (4,123 samples, 0.18%)</title><rect x="76.3655%" y="501" width="0.1777%" height="15" fill="rgb(227,80,54)" fg:x="1771554" fg:w="4123"/><text x="76.6155%" y="511.50"></text></g><g><title>mutex_lock (547 samples, 0.02%)</title><rect x="76.5506%" y="501" width="0.0236%" height="15" fill="rgb(254,48,11)" fg:x="1775850" fg:w="547"/><text x="76.8006%" y="511.50"></text></g><g><title>btrfs_find_free_ino (1,124 samples, 0.05%)</title><rect x="76.5453%" y="517" width="0.0485%" height="15" fill="rgb(235,193,26)" fg:x="1775726" fg:w="1124"/><text x="76.7953%" y="527.50"></text></g><g><title>mutex_unlock (453 samples, 0.02%)</title><rect x="76.5742%" y="501" width="0.0195%" height="15" fill="rgb(229,99,21)" fg:x="1776397" fg:w="453"/><text x="76.8242%" y="511.50"></text></g><g><title>__task_rq_lock (254 samples, 0.01%)</title><rect x="76.8319%" y="421" width="0.0109%" height="15" fill="rgb(211,140,41)" fg:x="1782374" fg:w="254"/><text x="77.0819%" y="431.50"></text></g><g><title>_raw_spin_lock (251 samples, 0.01%)</title><rect x="76.8320%" y="405" width="0.0108%" height="15" fill="rgb(240,227,30)" fg:x="1782377" fg:w="251"/><text x="77.0820%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (246 samples, 0.01%)</title><rect x="76.8322%" y="389" width="0.0106%" height="15" fill="rgb(215,224,45)" fg:x="1782382" fg:w="246"/><text x="77.0822%" y="399.50"></text></g><g><title>select_task_rq_fair (747 samples, 0.03%)</title><rect x="76.8574%" y="421" width="0.0322%" height="15" fill="rgb(206,123,31)" fg:x="1782966" fg:w="747"/><text x="77.1074%" y="431.50"></text></g><g><title>enqueue_entity (811 samples, 0.03%)</title><rect x="76.9057%" y="389" width="0.0350%" height="15" fill="rgb(210,138,16)" fg:x="1784086" fg:w="811"/><text x="77.1557%" y="399.50"></text></g><g><title>update_load_avg (287 samples, 0.01%)</title><rect x="76.9282%" y="373" width="0.0124%" height="15" fill="rgb(228,57,28)" fg:x="1784610" fg:w="287"/><text x="77.1782%" y="383.50"></text></g><g><title>enqueue_task_fair (1,073 samples, 0.05%)</title><rect x="76.8949%" y="405" width="0.0463%" height="15" fill="rgb(242,170,10)" fg:x="1783837" fg:w="1073"/><text x="77.1449%" y="415.50"></text></g><g><title>ttwu_do_activate (2,151 samples, 0.09%)</title><rect x="76.8919%" y="421" width="0.0927%" height="15" fill="rgb(228,214,39)" fg:x="1783766" fg:w="2151"/><text x="77.1419%" y="431.50"></text></g><g><title>psi_task_change (1,001 samples, 0.04%)</title><rect x="76.9414%" y="405" width="0.0431%" height="15" fill="rgb(218,179,33)" fg:x="1784916" fg:w="1001"/><text x="77.1914%" y="415.50"></text></g><g><title>psi_group_change (848 samples, 0.04%)</title><rect x="76.9480%" y="389" width="0.0366%" height="15" fill="rgb(235,193,39)" fg:x="1785069" fg:w="848"/><text x="77.1980%" y="399.50"></text></g><g><title>ttwu_do_wakeup (276 samples, 0.01%)</title><rect x="76.9846%" y="421" width="0.0119%" height="15" fill="rgb(219,221,36)" fg:x="1785917" fg:w="276"/><text x="77.2346%" y="431.50"></text></g><g><title>check_preempt_curr (260 samples, 0.01%)</title><rect x="76.9853%" y="405" width="0.0112%" height="15" fill="rgb(248,218,19)" fg:x="1785933" fg:w="260"/><text x="77.2353%" y="415.50"></text></g><g><title>ttwu_queue_wakelist (289 samples, 0.01%)</title><rect x="76.9965%" y="421" width="0.0125%" height="15" fill="rgb(205,50,9)" fg:x="1786193" fg:w="289"/><text x="77.2465%" y="431.50"></text></g><g><title>__wake_up_common (9,569 samples, 0.41%)</title><rect x="76.6040%" y="469" width="0.4125%" height="15" fill="rgb(238,81,28)" fg:x="1777088" fg:w="9569"/><text x="76.8540%" y="479.50"></text></g><g><title>autoremove_wake_function (9,400 samples, 0.41%)</title><rect x="76.6113%" y="453" width="0.4052%" height="15" fill="rgb(235,110,19)" fg:x="1777257" fg:w="9400"/><text x="76.8613%" y="463.50"></text></g><g><title>try_to_wake_up (9,325 samples, 0.40%)</title><rect x="76.6145%" y="437" width="0.4020%" height="15" fill="rgb(214,7,14)" fg:x="1777332" fg:w="9325"/><text x="76.8645%" y="447.50"></text></g><g><title>__wake_up_common_lock (9,770 samples, 0.42%)</title><rect x="76.6015%" y="485" width="0.4212%" height="15" fill="rgb(211,77,3)" fg:x="1777030" fg:w="9770"/><text x="76.8515%" y="495.50"></text></g><g><title>btrfs_tree_unlock (289 samples, 0.01%)</title><rect x="77.0227%" y="485" width="0.0125%" height="15" fill="rgb(229,5,9)" fg:x="1786800" fg:w="289"/><text x="77.2727%" y="495.50"></text></g><g><title>_raw_spin_lock (409 samples, 0.02%)</title><rect x="77.0877%" y="469" width="0.0176%" height="15" fill="rgb(225,90,11)" fg:x="1788309" fg:w="409"/><text x="77.3377%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (1,613 samples, 0.07%)</title><rect x="77.0359%" y="485" width="0.0695%" height="15" fill="rgb(242,56,8)" fg:x="1787108" fg:w="1613"/><text x="77.2859%" y="495.50"></text></g><g><title>btrfs_free_path (12,221 samples, 0.53%)</title><rect x="76.5937%" y="517" width="0.5268%" height="15" fill="rgb(249,212,39)" fg:x="1776850" fg:w="12221"/><text x="76.8437%" y="527.50"></text></g><g><title>btrfs_release_path (12,211 samples, 0.53%)</title><rect x="76.5942%" y="501" width="0.5264%" height="15" fill="rgb(236,90,9)" fg:x="1776860" fg:w="12211"/><text x="76.8442%" y="511.50"></text></g><g><title>release_extent_buffer (350 samples, 0.02%)</title><rect x="77.1055%" y="485" width="0.0151%" height="15" fill="rgb(206,88,35)" fg:x="1788721" fg:w="350"/><text x="77.3555%" y="495.50"></text></g><g><title>btrfs_init_acl (625 samples, 0.03%)</title><rect x="77.1278%" y="517" width="0.0269%" height="15" fill="rgb(205,126,30)" fg:x="1789240" fg:w="625"/><text x="77.3778%" y="527.50"></text></g><g><title>_raw_read_lock (555 samples, 0.02%)</title><rect x="77.2823%" y="453" width="0.0239%" height="15" fill="rgb(230,176,12)" fg:x="1792823" fg:w="555"/><text x="77.5323%" y="463.50"></text></g><g><title>finish_wait (2,570 samples, 0.11%)</title><rect x="77.3077%" y="453" width="0.1108%" height="15" fill="rgb(243,19,9)" fg:x="1793413" fg:w="2570"/><text x="77.5577%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (2,446 samples, 0.11%)</title><rect x="77.3131%" y="437" width="0.1054%" height="15" fill="rgb(245,171,17)" fg:x="1793537" fg:w="2446"/><text x="77.5631%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,354 samples, 0.10%)</title><rect x="77.3170%" y="421" width="0.1015%" height="15" fill="rgb(227,52,21)" fg:x="1793629" fg:w="2354"/><text x="77.5670%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (5,780 samples, 0.25%)</title><rect x="77.4440%" y="437" width="0.2492%" height="15" fill="rgb(238,69,14)" fg:x="1796574" fg:w="5780"/><text x="77.6940%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,440 samples, 0.23%)</title><rect x="77.4586%" y="421" width="0.2345%" height="15" fill="rgb(241,156,39)" fg:x="1796914" fg:w="5440"/><text x="77.7086%" y="431.50"></text></g><g><title>prepare_to_wait_event (6,480 samples, 0.28%)</title><rect x="77.4185%" y="453" width="0.2793%" height="15" fill="rgb(212,227,28)" fg:x="1795984" fg:w="6480"/><text x="77.6685%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (9,004 samples, 0.39%)</title><rect x="77.6979%" y="453" width="0.3881%" height="15" fill="rgb(209,118,27)" fg:x="1802464" fg:w="9004"/><text x="77.9479%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,717 samples, 0.29%)</title><rect x="77.7965%" y="437" width="0.2895%" height="15" fill="rgb(226,102,5)" fg:x="1804751" fg:w="6717"/><text x="78.0465%" y="447.50"></text></g><g><title>update_curr (403 samples, 0.02%)</title><rect x="78.1332%" y="389" width="0.0174%" height="15" fill="rgb(223,34,3)" fg:x="1812564" fg:w="403"/><text x="78.3832%" y="399.50"></text></g><g><title>dequeue_entity (1,070 samples, 0.05%)</title><rect x="78.1194%" y="405" width="0.0461%" height="15" fill="rgb(221,81,38)" fg:x="1812243" fg:w="1070"/><text x="78.3694%" y="415.50"></text></g><g><title>update_load_avg (346 samples, 0.01%)</title><rect x="78.1506%" y="389" width="0.0149%" height="15" fill="rgb(236,219,28)" fg:x="1812967" fg:w="346"/><text x="78.4006%" y="399.50"></text></g><g><title>dequeue_task_fair (1,277 samples, 0.06%)</title><rect x="78.1133%" y="421" width="0.0550%" height="15" fill="rgb(213,200,14)" fg:x="1812101" fg:w="1277"/><text x="78.3633%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (2,451 samples, 0.11%)</title><rect x="78.1773%" y="405" width="0.1057%" height="15" fill="rgb(240,33,19)" fg:x="1813585" fg:w="2451"/><text x="78.4273%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,399 samples, 0.10%)</title><rect x="78.1795%" y="389" width="0.1034%" height="15" fill="rgb(233,113,27)" fg:x="1813637" fg:w="2399"/><text x="78.4295%" y="399.50"></text></g><g><title>native_write_msr (2,379 samples, 0.10%)</title><rect x="78.1804%" y="373" width="0.1026%" height="15" fill="rgb(220,221,18)" fg:x="1813657" fg:w="2379"/><text x="78.4304%" y="383.50"></text></g><g><title>finish_task_switch (2,760 samples, 0.12%)</title><rect x="78.1683%" y="421" width="0.1190%" height="15" fill="rgb(238,92,8)" fg:x="1813378" fg:w="2760"/><text x="78.4183%" y="431.50"></text></g><g><title>psi_task_change (948 samples, 0.04%)</title><rect x="78.3056%" y="421" width="0.0409%" height="15" fill="rgb(222,164,16)" fg:x="1816562" fg:w="948"/><text x="78.5556%" y="431.50"></text></g><g><title>psi_group_change (774 samples, 0.03%)</title><rect x="78.3131%" y="405" width="0.0334%" height="15" fill="rgb(241,119,3)" fg:x="1816736" fg:w="774"/><text x="78.5631%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (25,482 samples, 1.10%)</title><rect x="77.2591%" y="469" width="1.0984%" height="15" fill="rgb(241,44,8)" fg:x="1792285" fg:w="25482"/><text x="77.5091%" y="479.50"></text></g><g><title>schedule (6,299 samples, 0.27%)</title><rect x="78.0860%" y="453" width="0.2715%" height="15" fill="rgb(230,36,40)" fg:x="1811468" fg:w="6299"/><text x="78.3360%" y="463.50"></text></g><g><title>__schedule (6,225 samples, 0.27%)</title><rect x="78.0892%" y="437" width="0.2683%" height="15" fill="rgb(243,16,36)" fg:x="1811542" fg:w="6225"/><text x="78.3392%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (26,670 samples, 1.15%)</title><rect x="77.2540%" y="485" width="1.1496%" height="15" fill="rgb(231,4,26)" fg:x="1792168" fg:w="26670"/><text x="77.5040%" y="495.50"></text></g><g><title>btrfs_root_node (1,071 samples, 0.05%)</title><rect x="78.3575%" y="469" width="0.0462%" height="15" fill="rgb(240,9,31)" fg:x="1817767" fg:w="1071"/><text x="78.6075%" y="479.50"></text></g><g><title>finish_wait (1,137 samples, 0.05%)</title><rect x="78.4365%" y="469" width="0.0490%" height="15" fill="rgb(207,173,15)" fg:x="1819598" fg:w="1137"/><text x="78.6865%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,018 samples, 0.04%)</title><rect x="78.4416%" y="453" width="0.0439%" height="15" fill="rgb(224,192,53)" fg:x="1819717" fg:w="1018"/><text x="78.6916%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (891 samples, 0.04%)</title><rect x="78.4471%" y="437" width="0.0384%" height="15" fill="rgb(223,67,28)" fg:x="1819844" fg:w="891"/><text x="78.6971%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (3,466 samples, 0.15%)</title><rect x="78.5181%" y="453" width="0.1494%" height="15" fill="rgb(211,20,47)" fg:x="1821492" fg:w="3466"/><text x="78.7681%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,915 samples, 0.13%)</title><rect x="78.5419%" y="437" width="0.1257%" height="15" fill="rgb(240,228,2)" fg:x="1822043" fg:w="2915"/><text x="78.7919%" y="447.50"></text></g><g><title>prepare_to_wait_event (4,347 samples, 0.19%)</title><rect x="78.4874%" y="469" width="0.1874%" height="15" fill="rgb(248,151,12)" fg:x="1820779" fg:w="4347"/><text x="78.7374%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (4,239 samples, 0.18%)</title><rect x="78.6748%" y="469" width="0.1827%" height="15" fill="rgb(244,8,39)" fg:x="1825126" fg:w="4239"/><text x="78.9248%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,144 samples, 0.09%)</title><rect x="78.7651%" y="453" width="0.0924%" height="15" fill="rgb(222,26,8)" fg:x="1827221" fg:w="2144"/><text x="79.0151%" y="463.50"></text></g><g><title>__perf_event_task_sched_out (326 samples, 0.01%)</title><rect x="78.8866%" y="437" width="0.0141%" height="15" fill="rgb(213,106,44)" fg:x="1830040" fg:w="326"/><text x="79.1366%" y="447.50"></text></g><g><title>update_curr (736 samples, 0.03%)</title><rect x="78.9440%" y="405" width="0.0317%" height="15" fill="rgb(214,129,20)" fg:x="1831372" fg:w="736"/><text x="79.1940%" y="415.50"></text></g><g><title>dequeue_entity (2,036 samples, 0.09%)</title><rect x="78.9152%" y="421" width="0.0878%" height="15" fill="rgb(212,32,13)" fg:x="1830705" fg:w="2036"/><text x="79.1652%" y="431.50"></text></g><g><title>update_load_avg (633 samples, 0.03%)</title><rect x="78.9757%" y="405" width="0.0273%" height="15" fill="rgb(208,168,33)" fg:x="1832108" fg:w="633"/><text x="79.2257%" y="415.50"></text></g><g><title>dequeue_task_fair (2,409 samples, 0.10%)</title><rect x="78.9037%" y="437" width="0.1038%" height="15" fill="rgb(231,207,8)" fg:x="1830438" fg:w="2409"/><text x="79.1537%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (3,828 samples, 0.17%)</title><rect x="79.0263%" y="421" width="0.1650%" height="15" fill="rgb(235,219,23)" fg:x="1833282" fg:w="3828"/><text x="79.2763%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,740 samples, 0.16%)</title><rect x="79.0301%" y="405" width="0.1612%" height="15" fill="rgb(226,216,26)" fg:x="1833370" fg:w="3740"/><text x="79.2801%" y="415.50"></text></g><g><title>native_write_msr (3,709 samples, 0.16%)</title><rect x="79.0315%" y="389" width="0.1599%" height="15" fill="rgb(239,137,16)" fg:x="1833401" fg:w="3709"/><text x="79.2815%" y="399.50"></text></g><g><title>finish_task_switch (4,432 samples, 0.19%)</title><rect x="79.0076%" y="437" width="0.1910%" height="15" fill="rgb(207,12,36)" fg:x="1832847" fg:w="4432"/><text x="79.2576%" y="447.50"></text></g><g><title>pick_next_task_fair (376 samples, 0.02%)</title><rect x="79.1987%" y="437" width="0.0162%" height="15" fill="rgb(210,214,24)" fg:x="1837281" fg:w="376"/><text x="79.4487%" y="447.50"></text></g><g><title>__update_idle_core (368 samples, 0.02%)</title><rect x="79.2179%" y="421" width="0.0159%" height="15" fill="rgb(206,56,30)" fg:x="1837727" fg:w="368"/><text x="79.4679%" y="431.50"></text></g><g><title>pick_next_task_idle (439 samples, 0.02%)</title><rect x="79.2149%" y="437" width="0.0189%" height="15" fill="rgb(228,143,26)" fg:x="1837657" fg:w="439"/><text x="79.4649%" y="447.50"></text></g><g><title>psi_task_change (1,642 samples, 0.07%)</title><rect x="79.2338%" y="437" width="0.0708%" height="15" fill="rgb(216,218,46)" fg:x="1838096" fg:w="1642"/><text x="79.4838%" y="447.50"></text></g><g><title>psi_group_change (1,375 samples, 0.06%)</title><rect x="79.2454%" y="421" width="0.0593%" height="15" fill="rgb(206,6,19)" fg:x="1838363" fg:w="1375"/><text x="79.4954%" y="431.50"></text></g><g><title>record_times (322 samples, 0.01%)</title><rect x="79.2907%" y="405" width="0.0139%" height="15" fill="rgb(239,177,51)" fg:x="1839416" fg:w="322"/><text x="79.5407%" y="415.50"></text></g><g><title>__btrfs_tree_lock (21,381 samples, 0.92%)</title><rect x="78.4037%" y="485" width="0.9217%" height="15" fill="rgb(216,55,25)" fg:x="1818838" fg:w="21381"/><text x="78.6537%" y="495.50"></text></g><g><title>schedule (10,854 samples, 0.47%)</title><rect x="78.8575%" y="469" width="0.4679%" height="15" fill="rgb(231,163,29)" fg:x="1829365" fg:w="10854"/><text x="79.1075%" y="479.50"></text></g><g><title>__schedule (10,703 samples, 0.46%)</title><rect x="78.8640%" y="453" width="0.4614%" height="15" fill="rgb(232,149,50)" fg:x="1829516" fg:w="10703"/><text x="79.1140%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (818 samples, 0.04%)</title><rect x="79.3340%" y="485" width="0.0353%" height="15" fill="rgb(223,142,48)" fg:x="1840420" fg:w="818"/><text x="79.5840%" y="495.50"></text></g><g><title>leaf_space_used (619 samples, 0.03%)</title><rect x="79.3426%" y="469" width="0.0267%" height="15" fill="rgb(245,83,23)" fg:x="1840619" fg:w="619"/><text x="79.5926%" y="479.50"></text></g><g><title>btrfs_get_32 (453 samples, 0.02%)</title><rect x="79.3498%" y="453" width="0.0195%" height="15" fill="rgb(224,63,2)" fg:x="1840785" fg:w="453"/><text x="79.5998%" y="463.50"></text></g><g><title>btrfs_set_lock_blocking_read (299 samples, 0.01%)</title><rect x="79.4040%" y="469" width="0.0129%" height="15" fill="rgb(218,65,53)" fg:x="1842043" fg:w="299"/><text x="79.6540%" y="479.50"></text></g><g><title>btrfs_set_path_blocking (1,108 samples, 0.05%)</title><rect x="79.3792%" y="485" width="0.0478%" height="15" fill="rgb(221,84,29)" fg:x="1841469" fg:w="1108"/><text x="79.6292%" y="495.50"></text></g><g><title>btrfs_set_lock_blocking_write (235 samples, 0.01%)</title><rect x="79.4169%" y="469" width="0.0101%" height="15" fill="rgb(234,0,32)" fg:x="1842342" fg:w="235"/><text x="79.6669%" y="479.50"></text></g><g><title>_raw_write_lock (510 samples, 0.02%)</title><rect x="79.4386%" y="469" width="0.0220%" height="15" fill="rgb(206,20,16)" fg:x="1842846" fg:w="510"/><text x="79.6886%" y="479.50"></text></g><g><title>btrfs_try_tree_write_lock (19,110 samples, 0.82%)</title><rect x="79.4271%" y="485" width="0.8238%" height="15" fill="rgb(244,172,18)" fg:x="1842580" fg:w="19110"/><text x="79.6771%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (18,329 samples, 0.79%)</title><rect x="79.4608%" y="469" width="0.7901%" height="15" fill="rgb(254,133,1)" fg:x="1843361" fg:w="18329"/><text x="79.7108%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,082 samples, 0.31%)</title><rect x="79.9456%" y="453" width="0.3053%" height="15" fill="rgb(222,206,41)" fg:x="1854608" fg:w="7082"/><text x="80.1956%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (3,291 samples, 0.14%)</title><rect x="80.2509%" y="485" width="0.1419%" height="15" fill="rgb(212,3,42)" fg:x="1861691" fg:w="3291"/><text x="80.5009%" y="495.50"></text></g><g><title>btrfs_buffer_uptodate (618 samples, 0.03%)</title><rect x="80.4148%" y="469" width="0.0266%" height="15" fill="rgb(241,11,4)" fg:x="1865492" fg:w="618"/><text x="80.6648%" y="479.50"></text></g><g><title>verify_parent_transid (478 samples, 0.02%)</title><rect x="80.4208%" y="453" width="0.0206%" height="15" fill="rgb(205,19,26)" fg:x="1865632" fg:w="478"/><text x="80.6708%" y="463.50"></text></g><g><title>btrfs_get_64 (706 samples, 0.03%)</title><rect x="80.4414%" y="469" width="0.0304%" height="15" fill="rgb(210,179,32)" fg:x="1866110" fg:w="706"/><text x="80.6914%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (256 samples, 0.01%)</title><rect x="80.4608%" y="453" width="0.0110%" height="15" fill="rgb(227,116,49)" fg:x="1866560" fg:w="256"/><text x="80.7108%" y="463.50"></text></g><g><title>btrfs_verify_level_key (343 samples, 0.01%)</title><rect x="80.4734%" y="469" width="0.0148%" height="15" fill="rgb(211,146,6)" fg:x="1866852" fg:w="343"/><text x="80.7234%" y="479.50"></text></g><g><title>__radix_tree_lookup (1,811 samples, 0.08%)</title><rect x="80.5622%" y="453" width="0.0781%" height="15" fill="rgb(219,44,39)" fg:x="1868911" fg:w="1811"/><text x="80.8122%" y="463.50"></text></g><g><title>mark_page_accessed (757 samples, 0.03%)</title><rect x="80.6568%" y="437" width="0.0326%" height="15" fill="rgb(234,128,11)" fg:x="1871107" fg:w="757"/><text x="80.9068%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (1,343 samples, 0.06%)</title><rect x="80.6406%" y="453" width="0.0579%" height="15" fill="rgb(220,183,53)" fg:x="1870731" fg:w="1343"/><text x="80.8906%" y="463.50"></text></g><g><title>find_extent_buffer (4,904 samples, 0.21%)</title><rect x="80.4882%" y="469" width="0.2114%" height="15" fill="rgb(213,219,32)" fg:x="1867195" fg:w="4904"/><text x="80.7382%" y="479.50"></text></g><g><title>read_block_for_search.isra.0 (7,744 samples, 0.33%)</title><rect x="80.3928%" y="485" width="0.3338%" height="15" fill="rgb(232,156,16)" fg:x="1864982" fg:w="7744"/><text x="80.6428%" y="495.50"></text></g><g><title>read_extent_buffer (627 samples, 0.03%)</title><rect x="80.6996%" y="469" width="0.0270%" height="15" fill="rgb(246,135,34)" fg:x="1872099" fg:w="627"/><text x="80.9496%" y="479.50"></text></g><g><title>add_to_page_cache_lru (248 samples, 0.01%)</title><rect x="80.7452%" y="405" width="0.0107%" height="15" fill="rgb(241,99,0)" fg:x="1873156" fg:w="248"/><text x="80.9952%" y="415.50"></text></g><g><title>pagecache_get_page (541 samples, 0.02%)</title><rect x="80.7364%" y="421" width="0.0233%" height="15" fill="rgb(222,103,45)" fg:x="1872952" fg:w="541"/><text x="80.9864%" y="431.50"></text></g><g><title>alloc_extent_buffer (689 samples, 0.03%)</title><rect x="80.7310%" y="437" width="0.0297%" height="15" fill="rgb(212,57,4)" fg:x="1872827" fg:w="689"/><text x="80.9810%" y="447.50"></text></g><g><title>btrfs_reserve_extent (269 samples, 0.01%)</title><rect x="80.7687%" y="437" width="0.0116%" height="15" fill="rgb(215,68,47)" fg:x="1873703" fg:w="269"/><text x="81.0187%" y="447.50"></text></g><g><title>set_extent_bit (236 samples, 0.01%)</title><rect x="80.7823%" y="437" width="0.0102%" height="15" fill="rgb(230,84,2)" fg:x="1874017" fg:w="236"/><text x="81.0323%" y="447.50"></text></g><g><title>__set_extent_bit (233 samples, 0.01%)</title><rect x="80.7824%" y="421" width="0.0100%" height="15" fill="rgb(220,102,14)" fg:x="1874020" fg:w="233"/><text x="81.0324%" y="431.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,486 samples, 0.06%)</title><rect x="80.7292%" y="469" width="0.0641%" height="15" fill="rgb(240,10,32)" fg:x="1872786" fg:w="1486"/><text x="80.9792%" y="479.50"></text></g><g><title>btrfs_alloc_tree_block (1,482 samples, 0.06%)</title><rect x="80.7294%" y="453" width="0.0639%" height="15" fill="rgb(215,47,27)" fg:x="1872790" fg:w="1482"/><text x="80.9794%" y="463.50"></text></g><g><title>copy_for_split (579 samples, 0.02%)</title><rect x="80.7953%" y="469" width="0.0250%" height="15" fill="rgb(233,188,43)" fg:x="1874319" fg:w="579"/><text x="81.0453%" y="479.50"></text></g><g><title>__push_leaf_left (982 samples, 0.04%)</title><rect x="80.8225%" y="453" width="0.0423%" height="15" fill="rgb(253,190,1)" fg:x="1874951" fg:w="982"/><text x="81.0725%" y="463.50"></text></g><g><title>push_leaf_left (1,221 samples, 0.05%)</title><rect x="80.8205%" y="469" width="0.0526%" height="15" fill="rgb(206,114,52)" fg:x="1874903" fg:w="1221"/><text x="81.0705%" y="479.50"></text></g><g><title>split_leaf (3,444 samples, 0.15%)</title><rect x="80.7269%" y="485" width="0.1485%" height="15" fill="rgb(233,120,37)" fg:x="1872733" fg:w="3444"/><text x="80.9769%" y="495.50"></text></g><g><title>__list_del_entry_valid (239 samples, 0.01%)</title><rect x="80.9197%" y="421" width="0.0103%" height="15" fill="rgb(214,52,39)" fg:x="1877205" fg:w="239"/><text x="81.1697%" y="431.50"></text></g><g><title>_raw_spin_lock (531 samples, 0.02%)</title><rect x="80.9884%" y="405" width="0.0229%" height="15" fill="rgb(223,80,29)" fg:x="1878799" fg:w="531"/><text x="81.2384%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (332 samples, 0.01%)</title><rect x="80.9970%" y="389" width="0.0143%" height="15" fill="rgb(230,101,40)" fg:x="1878998" fg:w="332"/><text x="81.2470%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (356 samples, 0.02%)</title><rect x="81.0113%" y="405" width="0.0153%" height="15" fill="rgb(219,211,8)" fg:x="1879330" fg:w="356"/><text x="81.2613%" y="415.50"></text></g><g><title>available_idle_cpu (443 samples, 0.02%)</title><rect x="81.0707%" y="389" width="0.0191%" height="15" fill="rgb(252,126,28)" fg:x="1880708" fg:w="443"/><text x="81.3207%" y="399.50"></text></g><g><title>select_task_rq_fair (2,043 samples, 0.09%)</title><rect x="81.0288%" y="405" width="0.0881%" height="15" fill="rgb(215,56,38)" fg:x="1879737" fg:w="2043"/><text x="81.2788%" y="415.50"></text></g><g><title>update_cfs_rq_h_load (381 samples, 0.02%)</title><rect x="81.1005%" y="389" width="0.0164%" height="15" fill="rgb(249,55,44)" fg:x="1881399" fg:w="381"/><text x="81.3505%" y="399.50"></text></g><g><title>update_curr (234 samples, 0.01%)</title><rect x="81.1935%" y="357" width="0.0101%" height="15" fill="rgb(220,221,32)" fg:x="1883558" fg:w="234"/><text x="81.4435%" y="367.50"></text></g><g><title>enqueue_entity (1,897 samples, 0.08%)</title><rect x="81.1504%" y="373" width="0.0818%" height="15" fill="rgb(212,216,41)" fg:x="1882557" fg:w="1897"/><text x="81.4004%" y="383.50"></text></g><g><title>update_load_avg (662 samples, 0.03%)</title><rect x="81.2036%" y="357" width="0.0285%" height="15" fill="rgb(228,213,43)" fg:x="1883792" fg:w="662"/><text x="81.4536%" y="367.50"></text></g><g><title>enqueue_task_fair (2,433 samples, 0.10%)</title><rect x="81.1334%" y="389" width="0.1049%" height="15" fill="rgb(211,31,26)" fg:x="1882162" fg:w="2433"/><text x="81.3834%" y="399.50"></text></g><g><title>ttwu_do_activate (4,898 samples, 0.21%)</title><rect x="81.1237%" y="405" width="0.2111%" height="15" fill="rgb(229,202,19)" fg:x="1881938" fg:w="4898"/><text x="81.3737%" y="415.50"></text></g><g><title>psi_task_change (2,237 samples, 0.10%)</title><rect x="81.2384%" y="389" width="0.0964%" height="15" fill="rgb(229,105,46)" fg:x="1884599" fg:w="2237"/><text x="81.4884%" y="399.50"></text></g><g><title>psi_group_change (1,978 samples, 0.09%)</title><rect x="81.2496%" y="373" width="0.0853%" height="15" fill="rgb(235,108,1)" fg:x="1884858" fg:w="1978"/><text x="81.4996%" y="383.50"></text></g><g><title>record_times (360 samples, 0.02%)</title><rect x="81.3193%" y="357" width="0.0155%" height="15" fill="rgb(245,111,35)" fg:x="1886476" fg:w="360"/><text x="81.5693%" y="367.50"></text></g><g><title>sched_clock_cpu (244 samples, 0.01%)</title><rect x="81.3243%" y="341" width="0.0105%" height="15" fill="rgb(219,185,31)" fg:x="1886592" fg:w="244"/><text x="81.5743%" y="351.50"></text></g><g><title>ttwu_do_wakeup (473 samples, 0.02%)</title><rect x="81.3349%" y="405" width="0.0204%" height="15" fill="rgb(214,4,43)" fg:x="1886836" fg:w="473"/><text x="81.5849%" y="415.50"></text></g><g><title>check_preempt_curr (413 samples, 0.02%)</title><rect x="81.3374%" y="389" width="0.0178%" height="15" fill="rgb(235,227,40)" fg:x="1886896" fg:w="413"/><text x="81.5874%" y="399.50"></text></g><g><title>ttwu_queue_wakelist (241 samples, 0.01%)</title><rect x="81.3552%" y="405" width="0.0104%" height="15" fill="rgb(230,88,30)" fg:x="1887309" fg:w="241"/><text x="81.6052%" y="415.50"></text></g><g><title>__wake_up_common (10,956 samples, 0.47%)</title><rect x="80.9105%" y="453" width="0.4723%" height="15" fill="rgb(216,217,1)" fg:x="1876991" fg:w="10956"/><text x="81.1605%" y="463.50"></text></g><g><title>autoremove_wake_function (10,777 samples, 0.46%)</title><rect x="80.9182%" y="437" width="0.4646%" height="15" fill="rgb(248,139,50)" fg:x="1877170" fg:w="10777"/><text x="81.1682%" y="447.50"></text></g><g><title>try_to_wake_up (10,491 samples, 0.45%)</title><rect x="80.9305%" y="421" width="0.4522%" height="15" fill="rgb(233,1,21)" fg:x="1877456" fg:w="10491"/><text x="81.1805%" y="431.50"></text></g><g><title>update_rq_clock (397 samples, 0.02%)</title><rect x="81.3656%" y="405" width="0.0171%" height="15" fill="rgb(215,183,12)" fg:x="1887550" fg:w="397"/><text x="81.6156%" y="415.50"></text></g><g><title>__wake_up_common_lock (11,221 samples, 0.48%)</title><rect x="80.9077%" y="469" width="0.4837%" height="15" fill="rgb(229,104,42)" fg:x="1876926" fg:w="11221"/><text x="81.1577%" y="479.50"></text></g><g><title>btrfs_tree_read_unlock (577 samples, 0.02%)</title><rect x="81.3914%" y="469" width="0.0249%" height="15" fill="rgb(243,34,48)" fg:x="1888148" fg:w="577"/><text x="81.6414%" y="479.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (276 samples, 0.01%)</title><rect x="81.4163%" y="469" width="0.0119%" height="15" fill="rgb(239,11,44)" fg:x="1888725" fg:w="276"/><text x="81.6663%" y="479.50"></text></g><g><title>btrfs_search_slot (99,275 samples, 4.28%)</title><rect x="77.1617%" y="501" width="4.2794%" height="15" fill="rgb(231,98,35)" fg:x="1790025" fg:w="99275"/><text x="77.4117%" y="511.50">btrfs..</text></g><g><title>unlock_up (13,072 samples, 0.56%)</title><rect x="80.8776%" y="485" width="0.5635%" height="15" fill="rgb(233,28,25)" fg:x="1876228" fg:w="13072"/><text x="81.1276%" y="495.50"></text></g><g><title>btrfs_tree_unlock (299 samples, 0.01%)</title><rect x="81.4282%" y="469" width="0.0129%" height="15" fill="rgb(234,123,11)" fg:x="1889001" fg:w="299"/><text x="81.6782%" y="479.50"></text></g><g><title>btrfs_get_32 (428 samples, 0.02%)</title><rect x="81.4979%" y="485" width="0.0184%" height="15" fill="rgb(220,69,3)" fg:x="1890619" fg:w="428"/><text x="81.7479%" y="495.50"></text></g><g><title>btrfs_get_token_32 (1,259 samples, 0.05%)</title><rect x="81.5164%" y="485" width="0.0543%" height="15" fill="rgb(214,64,36)" fg:x="1891047" fg:w="1259"/><text x="81.7664%" y="495.50"></text></g><g><title>btrfs_leaf_free_space (1,016 samples, 0.04%)</title><rect x="81.5706%" y="485" width="0.0438%" height="15" fill="rgb(211,138,32)" fg:x="1892306" fg:w="1016"/><text x="81.8206%" y="495.50"></text></g><g><title>leaf_space_used (869 samples, 0.04%)</title><rect x="81.5770%" y="469" width="0.0375%" height="15" fill="rgb(213,118,47)" fg:x="1892453" fg:w="869"/><text x="81.8270%" y="479.50"></text></g><g><title>btrfs_get_32 (665 samples, 0.03%)</title><rect x="81.5858%" y="453" width="0.0287%" height="15" fill="rgb(243,124,49)" fg:x="1892657" fg:w="665"/><text x="81.8358%" y="463.50"></text></g><g><title>btrfs_mark_buffer_dirty (755 samples, 0.03%)</title><rect x="81.6144%" y="485" width="0.0325%" height="15" fill="rgb(221,30,28)" fg:x="1893322" fg:w="755"/><text x="81.8644%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (371 samples, 0.02%)</title><rect x="81.6310%" y="469" width="0.0160%" height="15" fill="rgb(246,37,13)" fg:x="1893706" fg:w="371"/><text x="81.8810%" y="479.50"></text></g><g><title>btrfs_set_token_32 (1,156 samples, 0.05%)</title><rect x="81.6470%" y="485" width="0.0498%" height="15" fill="rgb(249,66,14)" fg:x="1894077" fg:w="1156"/><text x="81.8970%" y="495.50"></text></g><g><title>memcpy_extent_buffer (756 samples, 0.03%)</title><rect x="81.7067%" y="485" width="0.0326%" height="15" fill="rgb(213,166,5)" fg:x="1895462" fg:w="756"/><text x="81.9567%" y="495.50"></text></g><g><title>memmove (423 samples, 0.02%)</title><rect x="81.7210%" y="469" width="0.0182%" height="15" fill="rgb(221,66,24)" fg:x="1895795" fg:w="423"/><text x="81.9710%" y="479.50"></text></g><g><title>memmove_extent_buffer (866 samples, 0.04%)</title><rect x="81.7393%" y="485" width="0.0373%" height="15" fill="rgb(210,132,17)" fg:x="1896218" fg:w="866"/><text x="81.9893%" y="495.50"></text></g><g><title>memmove (403 samples, 0.02%)</title><rect x="81.7592%" y="469" width="0.0174%" height="15" fill="rgb(243,202,5)" fg:x="1896681" fg:w="403"/><text x="82.0092%" y="479.50"></text></g><g><title>btrfs_insert_empty_items (107,744 samples, 4.64%)</title><rect x="77.1548%" y="517" width="4.6445%" height="15" fill="rgb(233,70,48)" fg:x="1789865" fg:w="107744"/><text x="77.4048%" y="527.50">btrfs..</text></g><g><title>setup_items_for_insert (8,309 samples, 0.36%)</title><rect x="81.4411%" y="501" width="0.3582%" height="15" fill="rgb(238,41,26)" fg:x="1889300" fg:w="8309"/><text x="81.6911%" y="511.50"></text></g><g><title>write_extent_buffer (525 samples, 0.02%)</title><rect x="81.7766%" y="485" width="0.0226%" height="15" fill="rgb(241,19,31)" fg:x="1897084" fg:w="525"/><text x="82.0266%" y="495.50"></text></g><g><title>btrfs_mark_buffer_dirty (547 samples, 0.02%)</title><rect x="81.7992%" y="517" width="0.0236%" height="15" fill="rgb(214,76,10)" fg:x="1897609" fg:w="547"/><text x="82.0492%" y="527.50"></text></g><g><title>set_extent_buffer_dirty (384 samples, 0.02%)</title><rect x="81.8063%" y="501" width="0.0166%" height="15" fill="rgb(254,202,22)" fg:x="1897772" fg:w="384"/><text x="82.0563%" y="511.50"></text></g><g><title>_raw_spin_lock (497 samples, 0.02%)</title><rect x="81.9073%" y="501" width="0.0214%" height="15" fill="rgb(214,72,24)" fg:x="1900117" fg:w="497"/><text x="82.1573%" y="511.50"></text></g><g><title>_raw_spin_lock (483 samples, 0.02%)</title><rect x="81.9986%" y="453" width="0.0208%" height="15" fill="rgb(221,92,46)" fg:x="1902234" fg:w="483"/><text x="82.2486%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,708 samples, 0.07%)</title><rect x="81.9476%" y="469" width="0.0736%" height="15" fill="rgb(246,13,50)" fg:x="1901050" fg:w="1708"/><text x="82.1976%" y="479.50"></text></g><g><title>btrfs_free_path (2,475 samples, 0.11%)</title><rect x="81.9300%" y="501" width="0.1067%" height="15" fill="rgb(240,165,38)" fg:x="1900642" fg:w="2475"/><text x="82.1800%" y="511.50"></text></g><g><title>btrfs_release_path (2,452 samples, 0.11%)</title><rect x="81.9310%" y="485" width="0.1057%" height="15" fill="rgb(241,24,51)" fg:x="1900665" fg:w="2452"/><text x="82.1810%" y="495.50"></text></g><g><title>release_extent_buffer (359 samples, 0.02%)</title><rect x="82.0212%" y="469" width="0.0155%" height="15" fill="rgb(227,51,44)" fg:x="1902758" fg:w="359"/><text x="82.2712%" y="479.50"></text></g><g><title>btrfs_get_32 (351 samples, 0.02%)</title><rect x="82.0367%" y="501" width="0.0151%" height="15" fill="rgb(231,121,3)" fg:x="1903117" fg:w="351"/><text x="82.2867%" y="511.50"></text></g><g><title>_raw_read_lock (466 samples, 0.02%)</title><rect x="82.1803%" y="437" width="0.0201%" height="15" fill="rgb(245,3,41)" fg:x="1906449" fg:w="466"/><text x="82.4303%" y="447.50"></text></g><g><title>finish_wait (2,262 samples, 0.10%)</title><rect x="82.2015%" y="437" width="0.0975%" height="15" fill="rgb(214,13,26)" fg:x="1906941" fg:w="2262"/><text x="82.4515%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (2,161 samples, 0.09%)</title><rect x="82.2059%" y="421" width="0.0932%" height="15" fill="rgb(252,75,11)" fg:x="1907042" fg:w="2161"/><text x="82.4559%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,058 samples, 0.09%)</title><rect x="82.2103%" y="405" width="0.0887%" height="15" fill="rgb(218,226,17)" fg:x="1907145" fg:w="2058"/><text x="82.4603%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (5,408 samples, 0.23%)</title><rect x="82.3235%" y="421" width="0.2331%" height="15" fill="rgb(248,89,38)" fg:x="1909770" fg:w="5408"/><text x="82.5735%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,101 samples, 0.22%)</title><rect x="82.3367%" y="405" width="0.2199%" height="15" fill="rgb(237,73,46)" fg:x="1910077" fg:w="5101"/><text x="82.5867%" y="415.50"></text></g><g><title>prepare_to_wait_event (6,061 samples, 0.26%)</title><rect x="82.2993%" y="437" width="0.2613%" height="15" fill="rgb(242,78,33)" fg:x="1909209" fg:w="6061"/><text x="82.5493%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (7,871 samples, 0.34%)</title><rect x="82.5605%" y="437" width="0.3393%" height="15" fill="rgb(235,60,3)" fg:x="1915270" fg:w="7871"/><text x="82.8105%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,796 samples, 0.25%)</title><rect x="82.6500%" y="421" width="0.2498%" height="15" fill="rgb(216,172,19)" fg:x="1917345" fg:w="5796"/><text x="82.9000%" y="431.50"></text></g><g><title>update_curr (408 samples, 0.02%)</title><rect x="82.9491%" y="373" width="0.0176%" height="15" fill="rgb(227,6,42)" fg:x="1924285" fg:w="408"/><text x="83.1991%" y="383.50"></text></g><g><title>dequeue_entity (1,103 samples, 0.05%)</title><rect x="82.9332%" y="389" width="0.0475%" height="15" fill="rgb(223,207,42)" fg:x="1923916" fg:w="1103"/><text x="83.1832%" y="399.50"></text></g><g><title>update_load_avg (326 samples, 0.01%)</title><rect x="82.9667%" y="373" width="0.0141%" height="15" fill="rgb(246,138,30)" fg:x="1924693" fg:w="326"/><text x="83.2167%" y="383.50"></text></g><g><title>dequeue_task_fair (1,320 samples, 0.06%)</title><rect x="82.9264%" y="405" width="0.0569%" height="15" fill="rgb(251,199,47)" fg:x="1923757" fg:w="1320"/><text x="83.1764%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (2,165 samples, 0.09%)</title><rect x="82.9943%" y="389" width="0.0933%" height="15" fill="rgb(228,218,44)" fg:x="1925332" fg:w="2165"/><text x="83.2443%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,094 samples, 0.09%)</title><rect x="82.9973%" y="373" width="0.0903%" height="15" fill="rgb(220,68,6)" fg:x="1925403" fg:w="2094"/><text x="83.2473%" y="383.50"></text></g><g><title>native_write_msr (2,069 samples, 0.09%)</title><rect x="82.9984%" y="357" width="0.0892%" height="15" fill="rgb(240,60,26)" fg:x="1925428" fg:w="2069"/><text x="83.2484%" y="367.50"></text></g><g><title>finish_task_switch (2,500 samples, 0.11%)</title><rect x="82.9833%" y="405" width="0.1078%" height="15" fill="rgb(211,200,19)" fg:x="1925077" fg:w="2500"/><text x="83.2333%" y="415.50"></text></g><g><title>pick_next_task_idle (243 samples, 0.01%)</title><rect x="83.1011%" y="405" width="0.0105%" height="15" fill="rgb(242,145,30)" fg:x="1927810" fg:w="243"/><text x="83.3511%" y="415.50"></text></g><g><title>psi_task_change (920 samples, 0.04%)</title><rect x="83.1116%" y="405" width="0.0397%" height="15" fill="rgb(225,64,13)" fg:x="1928053" fg:w="920"/><text x="83.3616%" y="415.50"></text></g><g><title>psi_group_change (768 samples, 0.03%)</title><rect x="83.1181%" y="389" width="0.0331%" height="15" fill="rgb(218,103,35)" fg:x="1928205" fg:w="768"/><text x="83.3681%" y="399.50"></text></g><g><title>__schedule (6,019 samples, 0.26%)</title><rect x="82.9027%" y="421" width="0.2595%" height="15" fill="rgb(216,93,46)" fg:x="1923207" fg:w="6019"/><text x="83.1527%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (23,352 samples, 1.01%)</title><rect x="82.1556%" y="453" width="1.0066%" height="15" fill="rgb(225,159,27)" fg:x="1905875" fg:w="23352"/><text x="82.4056%" y="463.50"></text></g><g><title>schedule (6,086 samples, 0.26%)</title><rect x="82.8998%" y="437" width="0.2623%" height="15" fill="rgb(225,204,11)" fg:x="1923141" fg:w="6086"/><text x="83.1498%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (24,424 samples, 1.05%)</title><rect x="82.1518%" y="469" width="1.0528%" height="15" fill="rgb(205,56,4)" fg:x="1905789" fg:w="24424"/><text x="82.4018%" y="479.50"></text></g><g><title>btrfs_root_node (986 samples, 0.04%)</title><rect x="83.1622%" y="453" width="0.0425%" height="15" fill="rgb(206,6,35)" fg:x="1929227" fg:w="986"/><text x="83.4122%" y="463.50"></text></g><g><title>finish_wait (1,018 samples, 0.04%)</title><rect x="83.2343%" y="453" width="0.0439%" height="15" fill="rgb(247,73,52)" fg:x="1930900" fg:w="1018"/><text x="83.4843%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (934 samples, 0.04%)</title><rect x="83.2379%" y="437" width="0.0403%" height="15" fill="rgb(246,97,4)" fg:x="1930984" fg:w="934"/><text x="83.4879%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (821 samples, 0.04%)</title><rect x="83.2428%" y="421" width="0.0354%" height="15" fill="rgb(212,37,15)" fg:x="1931097" fg:w="821"/><text x="83.4928%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (2,993 samples, 0.13%)</title><rect x="83.3077%" y="437" width="0.1290%" height="15" fill="rgb(208,130,40)" fg:x="1932604" fg:w="2993"/><text x="83.5577%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,495 samples, 0.11%)</title><rect x="83.3292%" y="421" width="0.1076%" height="15" fill="rgb(236,55,29)" fg:x="1933102" fg:w="2495"/><text x="83.5792%" y="431.50"></text></g><g><title>prepare_to_wait_event (3,761 samples, 0.16%)</title><rect x="83.2805%" y="453" width="0.1621%" height="15" fill="rgb(209,156,45)" fg:x="1931973" fg:w="3761"/><text x="83.5305%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (3,491 samples, 0.15%)</title><rect x="83.4427%" y="453" width="0.1505%" height="15" fill="rgb(249,107,4)" fg:x="1935734" fg:w="3491"/><text x="83.6927%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,626 samples, 0.07%)</title><rect x="83.5231%" y="437" width="0.0701%" height="15" fill="rgb(227,7,13)" fg:x="1937599" fg:w="1626"/><text x="83.7731%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (380 samples, 0.02%)</title><rect x="83.6232%" y="421" width="0.0164%" height="15" fill="rgb(250,129,14)" fg:x="1939922" fg:w="380"/><text x="83.8732%" y="431.50"></text></g><g><title>update_curr (773 samples, 0.03%)</title><rect x="83.6819%" y="389" width="0.0333%" height="15" fill="rgb(229,92,13)" fg:x="1941284" fg:w="773"/><text x="83.9319%" y="399.50"></text></g><g><title>dequeue_entity (1,943 samples, 0.08%)</title><rect x="83.6557%" y="405" width="0.0838%" height="15" fill="rgb(245,98,39)" fg:x="1940675" fg:w="1943"/><text x="83.9057%" y="415.50"></text></g><g><title>update_load_avg (561 samples, 0.02%)</title><rect x="83.7152%" y="389" width="0.0242%" height="15" fill="rgb(234,135,48)" fg:x="1942057" fg:w="561"/><text x="83.9652%" y="399.50"></text></g><g><title>dequeue_task_fair (2,337 samples, 0.10%)</title><rect x="83.6433%" y="421" width="0.1007%" height="15" fill="rgb(230,98,28)" fg:x="1940388" fg:w="2337"/><text x="83.8933%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (4,178 samples, 0.18%)</title><rect x="83.7640%" y="405" width="0.1801%" height="15" fill="rgb(223,121,0)" fg:x="1943188" fg:w="4178"/><text x="84.0140%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,061 samples, 0.18%)</title><rect x="83.7690%" y="389" width="0.1751%" height="15" fill="rgb(234,173,33)" fg:x="1943305" fg:w="4061"/><text x="84.0190%" y="399.50"></text></g><g><title>native_write_msr (4,023 samples, 0.17%)</title><rect x="83.7707%" y="373" width="0.1734%" height="15" fill="rgb(245,47,8)" fg:x="1943343" fg:w="4023"/><text x="84.0207%" y="383.50"></text></g><g><title>finish_task_switch (4,800 samples, 0.21%)</title><rect x="83.7440%" y="421" width="0.2069%" height="15" fill="rgb(205,17,20)" fg:x="1942725" fg:w="4800"/><text x="83.9940%" y="431.50"></text></g><g><title>pick_next_task_fair (376 samples, 0.02%)</title><rect x="83.9511%" y="421" width="0.0162%" height="15" fill="rgb(232,151,16)" fg:x="1947528" fg:w="376"/><text x="84.2011%" y="431.50"></text></g><g><title>__update_idle_core (354 samples, 0.02%)</title><rect x="83.9695%" y="405" width="0.0153%" height="15" fill="rgb(208,30,32)" fg:x="1947956" fg:w="354"/><text x="84.2195%" y="415.50"></text></g><g><title>pick_next_task_idle (407 samples, 0.02%)</title><rect x="83.9673%" y="421" width="0.0175%" height="15" fill="rgb(254,26,3)" fg:x="1947904" fg:w="407"/><text x="84.2173%" y="431.50"></text></g><g><title>psi_task_change (1,654 samples, 0.07%)</title><rect x="83.9848%" y="421" width="0.0713%" height="15" fill="rgb(240,177,30)" fg:x="1948311" fg:w="1654"/><text x="84.2348%" y="431.50"></text></g><g><title>psi_group_change (1,369 samples, 0.06%)</title><rect x="83.9971%" y="405" width="0.0590%" height="15" fill="rgb(248,76,44)" fg:x="1948596" fg:w="1369"/><text x="84.2471%" y="415.50"></text></g><g><title>record_times (281 samples, 0.01%)</title><rect x="84.0440%" y="389" width="0.0121%" height="15" fill="rgb(241,186,54)" fg:x="1949684" fg:w="281"/><text x="84.2940%" y="399.50"></text></g><g><title>__schedule (11,151 samples, 0.48%)</title><rect x="83.5979%" y="437" width="0.4807%" height="15" fill="rgb(249,171,29)" fg:x="1939334" fg:w="11151"/><text x="83.8479%" y="447.50"></text></g><g><title>__btrfs_tree_lock (20,273 samples, 0.87%)</title><rect x="83.2047%" y="469" width="0.8739%" height="15" fill="rgb(237,151,44)" fg:x="1930213" fg:w="20273"/><text x="83.4547%" y="479.50"></text></g><g><title>schedule (11,261 samples, 0.49%)</title><rect x="83.5932%" y="453" width="0.4854%" height="15" fill="rgb(228,174,30)" fg:x="1939225" fg:w="11261"/><text x="83.8432%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (932 samples, 0.04%)</title><rect x="84.0888%" y="469" width="0.0402%" height="15" fill="rgb(252,14,37)" fg:x="1950722" fg:w="932"/><text x="84.3388%" y="479.50"></text></g><g><title>leaf_space_used (715 samples, 0.03%)</title><rect x="84.0981%" y="453" width="0.0308%" height="15" fill="rgb(207,111,40)" fg:x="1950939" fg:w="715"/><text x="84.3481%" y="463.50"></text></g><g><title>btrfs_get_32 (502 samples, 0.02%)</title><rect x="84.1073%" y="437" width="0.0216%" height="15" fill="rgb(248,171,54)" fg:x="1951152" fg:w="502"/><text x="84.3573%" y="447.50"></text></g><g><title>__btrfs_tree_lock (370 samples, 0.02%)</title><rect x="84.1289%" y="453" width="0.0159%" height="15" fill="rgb(211,127,2)" fg:x="1951654" fg:w="370"/><text x="84.3789%" y="463.50"></text></g><g><title>btrfs_lock_root_node (372 samples, 0.02%)</title><rect x="84.1289%" y="469" width="0.0160%" height="15" fill="rgb(236,87,47)" fg:x="1951654" fg:w="372"/><text x="84.3789%" y="479.50"></text></g><g><title>btrfs_set_path_blocking (433 samples, 0.02%)</title><rect x="84.1457%" y="469" width="0.0187%" height="15" fill="rgb(223,190,45)" fg:x="1952042" fg:w="433"/><text x="84.3957%" y="479.50"></text></g><g><title>_raw_write_lock (501 samples, 0.02%)</title><rect x="84.1751%" y="453" width="0.0216%" height="15" fill="rgb(215,5,16)" fg:x="1952724" fg:w="501"/><text x="84.4251%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (12,719 samples, 0.55%)</title><rect x="84.1646%" y="469" width="0.5483%" height="15" fill="rgb(252,82,33)" fg:x="1952481" fg:w="12719"/><text x="84.4146%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (11,974 samples, 0.52%)</title><rect x="84.1967%" y="453" width="0.5162%" height="15" fill="rgb(247,213,44)" fg:x="1953226" fg:w="11974"/><text x="84.4467%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,550 samples, 0.15%)</title><rect x="84.5598%" y="437" width="0.1530%" height="15" fill="rgb(205,196,44)" fg:x="1961650" fg:w="3550"/><text x="84.8098%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (3,422 samples, 0.15%)</title><rect x="84.7130%" y="469" width="0.1475%" height="15" fill="rgb(237,96,54)" fg:x="1965204" fg:w="3422"/><text x="84.9630%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (757 samples, 0.03%)</title><rect x="84.8850%" y="453" width="0.0326%" height="15" fill="rgb(230,113,34)" fg:x="1969194" fg:w="757"/><text x="85.1350%" y="463.50"></text></g><g><title>verify_parent_transid (587 samples, 0.03%)</title><rect x="84.8923%" y="437" width="0.0253%" height="15" fill="rgb(221,224,12)" fg:x="1969364" fg:w="587"/><text x="85.1423%" y="447.50"></text></g><g><title>btrfs_get_64 (765 samples, 0.03%)</title><rect x="84.9176%" y="453" width="0.0330%" height="15" fill="rgb(219,112,44)" fg:x="1969951" fg:w="765"/><text x="85.1676%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (232 samples, 0.01%)</title><rect x="84.9406%" y="437" width="0.0100%" height="15" fill="rgb(210,31,13)" fg:x="1970484" fg:w="232"/><text x="85.1906%" y="447.50"></text></g><g><title>btrfs_verify_level_key (252 samples, 0.01%)</title><rect x="84.9522%" y="453" width="0.0109%" height="15" fill="rgb(230,25,16)" fg:x="1970753" fg:w="252"/><text x="85.2022%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,150 samples, 0.09%)</title><rect x="85.0490%" y="437" width="0.0927%" height="15" fill="rgb(246,108,53)" fg:x="1972999" fg:w="2150"/><text x="85.2990%" y="447.50"></text></g><g><title>mark_page_accessed (909 samples, 0.04%)</title><rect x="85.1576%" y="421" width="0.0392%" height="15" fill="rgb(241,172,50)" fg:x="1975517" fg:w="909"/><text x="85.4076%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,498 samples, 0.06%)</title><rect x="85.1421%" y="437" width="0.0646%" height="15" fill="rgb(235,141,10)" fg:x="1975159" fg:w="1498"/><text x="85.3921%" y="447.50"></text></g><g><title>find_extent_buffer (5,683 samples, 0.24%)</title><rect x="84.9631%" y="453" width="0.2450%" height="15" fill="rgb(220,174,43)" fg:x="1971005" fg:w="5683"/><text x="85.2131%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (8,650 samples, 0.37%)</title><rect x="84.8605%" y="469" width="0.3729%" height="15" fill="rgb(215,181,40)" fg:x="1968626" fg:w="8650"/><text x="85.1105%" y="479.50"></text></g><g><title>read_extent_buffer (588 samples, 0.03%)</title><rect x="85.2081%" y="453" width="0.0253%" height="15" fill="rgb(230,97,2)" fg:x="1976688" fg:w="588"/><text x="85.4581%" y="463.50"></text></g><g><title>__add_to_page_cache_locked (236 samples, 0.01%)</title><rect x="85.2534%" y="373" width="0.0102%" height="15" fill="rgb(211,25,27)" fg:x="1977740" fg:w="236"/><text x="85.5034%" y="383.50"></text></g><g><title>add_to_page_cache_lru (302 samples, 0.01%)</title><rect x="85.2532%" y="389" width="0.0130%" height="15" fill="rgb(230,87,26)" fg:x="1977735" fg:w="302"/><text x="85.5032%" y="399.50"></text></g><g><title>pagecache_get_page (621 samples, 0.03%)</title><rect x="85.2440%" y="405" width="0.0268%" height="15" fill="rgb(227,160,17)" fg:x="1977521" fg:w="621"/><text x="85.4940%" y="415.50"></text></g><g><title>alloc_extent_buffer (789 samples, 0.03%)</title><rect x="85.2378%" y="421" width="0.0340%" height="15" fill="rgb(244,85,34)" fg:x="1977378" fg:w="789"/><text x="85.4878%" y="431.50"></text></g><g><title>btrfs_reserve_extent (333 samples, 0.01%)</title><rect x="85.2821%" y="421" width="0.0144%" height="15" fill="rgb(207,70,0)" fg:x="1978405" fg:w="333"/><text x="85.5321%" y="431.50"></text></g><g><title>find_free_extent (300 samples, 0.01%)</title><rect x="85.2835%" y="405" width="0.0129%" height="15" fill="rgb(223,129,7)" fg:x="1978438" fg:w="300"/><text x="85.5335%" y="415.50"></text></g><g><title>set_extent_bit (261 samples, 0.01%)</title><rect x="85.2988%" y="421" width="0.0113%" height="15" fill="rgb(246,105,7)" fg:x="1978793" fg:w="261"/><text x="85.5488%" y="431.50"></text></g><g><title>__set_extent_bit (257 samples, 0.01%)</title><rect x="85.2990%" y="405" width="0.0111%" height="15" fill="rgb(215,154,42)" fg:x="1978797" fg:w="257"/><text x="85.5490%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,743 samples, 0.08%)</title><rect x="85.2360%" y="453" width="0.0751%" height="15" fill="rgb(220,215,30)" fg:x="1977336" fg:w="1743"/><text x="85.4860%" y="463.50"></text></g><g><title>btrfs_alloc_tree_block (1,733 samples, 0.07%)</title><rect x="85.2364%" y="437" width="0.0747%" height="15" fill="rgb(228,81,51)" fg:x="1977346" fg:w="1733"/><text x="85.4864%" y="447.50"></text></g><g><title>__set_page_dirty_nobuffers (245 samples, 0.01%)</title><rect x="85.3216%" y="405" width="0.0106%" height="15" fill="rgb(247,71,54)" fg:x="1979323" fg:w="245"/><text x="85.5716%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (294 samples, 0.01%)</title><rect x="85.3203%" y="437" width="0.0127%" height="15" fill="rgb(234,176,34)" fg:x="1979291" fg:w="294"/><text x="85.5703%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (279 samples, 0.01%)</title><rect x="85.3209%" y="421" width="0.0120%" height="15" fill="rgb(241,103,54)" fg:x="1979306" fg:w="279"/><text x="85.5709%" y="431.50"></text></g><g><title>copy_for_split (698 samples, 0.03%)</title><rect x="85.3139%" y="453" width="0.0301%" height="15" fill="rgb(228,22,34)" fg:x="1979143" fg:w="698"/><text x="85.5639%" y="463.50"></text></g><g><title>btrfs_get_token_32 (240 samples, 0.01%)</title><rect x="85.3598%" y="421" width="0.0103%" height="15" fill="rgb(241,179,48)" fg:x="1980208" fg:w="240"/><text x="85.6098%" y="431.50"></text></g><g><title>btrfs_set_token_32 (241 samples, 0.01%)</title><rect x="85.3710%" y="421" width="0.0104%" height="15" fill="rgb(235,167,37)" fg:x="1980469" fg:w="241"/><text x="85.6210%" y="431.50"></text></g><g><title>__push_leaf_left (1,187 samples, 0.05%)</title><rect x="85.3473%" y="437" width="0.0512%" height="15" fill="rgb(213,109,30)" fg:x="1979918" fg:w="1187"/><text x="85.5973%" y="447.50"></text></g><g><title>push_leaf_left (1,468 samples, 0.06%)</title><rect x="85.3443%" y="453" width="0.0633%" height="15" fill="rgb(222,172,16)" fg:x="1979848" fg:w="1468"/><text x="85.5943%" y="463.50"></text></g><g><title>split_leaf (4,059 samples, 0.17%)</title><rect x="85.2340%" y="469" width="0.1750%" height="15" fill="rgb(233,192,5)" fg:x="1977291" fg:w="4059"/><text x="85.4840%" y="479.50"></text></g><g><title>__list_del_entry_valid (253 samples, 0.01%)</title><rect x="85.4560%" y="405" width="0.0109%" height="15" fill="rgb(247,189,41)" fg:x="1982440" fg:w="253"/><text x="85.7060%" y="415.50"></text></g><g><title>_raw_spin_lock (503 samples, 0.02%)</title><rect x="85.5249%" y="389" width="0.0217%" height="15" fill="rgb(218,134,47)" fg:x="1984038" fg:w="503"/><text x="85.7749%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (328 samples, 0.01%)</title><rect x="85.5324%" y="373" width="0.0141%" height="15" fill="rgb(216,29,3)" fg:x="1984213" fg:w="328"/><text x="85.7824%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (422 samples, 0.02%)</title><rect x="85.5466%" y="389" width="0.0182%" height="15" fill="rgb(246,140,12)" fg:x="1984541" fg:w="422"/><text x="85.7966%" y="399.50"></text></g><g><title>available_idle_cpu (456 samples, 0.02%)</title><rect x="85.6083%" y="373" width="0.0197%" height="15" fill="rgb(230,136,11)" fg:x="1985973" fg:w="456"/><text x="85.8583%" y="383.50"></text></g><g><title>select_task_rq_fair (2,123 samples, 0.09%)</title><rect x="85.5673%" y="389" width="0.0915%" height="15" fill="rgb(247,22,47)" fg:x="1985023" fg:w="2123"/><text x="85.8173%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (399 samples, 0.02%)</title><rect x="85.6417%" y="373" width="0.0172%" height="15" fill="rgb(218,84,22)" fg:x="1986747" fg:w="399"/><text x="85.8917%" y="383.50"></text></g><g><title>update_curr (242 samples, 0.01%)</title><rect x="85.7353%" y="341" width="0.0104%" height="15" fill="rgb(216,87,39)" fg:x="1988919" fg:w="242"/><text x="85.9853%" y="351.50"></text></g><g><title>enqueue_entity (1,915 samples, 0.08%)</title><rect x="85.6936%" y="357" width="0.0825%" height="15" fill="rgb(221,178,8)" fg:x="1987952" fg:w="1915"/><text x="85.9436%" y="367.50"></text></g><g><title>update_load_avg (706 samples, 0.03%)</title><rect x="85.7457%" y="341" width="0.0304%" height="15" fill="rgb(230,42,11)" fg:x="1989161" fg:w="706"/><text x="85.9957%" y="351.50"></text></g><g><title>enqueue_task_fair (2,436 samples, 0.11%)</title><rect x="85.6760%" y="373" width="0.1050%" height="15" fill="rgb(237,229,4)" fg:x="1987544" fg:w="2436"/><text x="85.9260%" y="383.50"></text></g><g><title>ttwu_do_activate (4,966 samples, 0.21%)</title><rect x="85.6668%" y="389" width="0.2141%" height="15" fill="rgb(222,31,33)" fg:x="1987329" fg:w="4966"/><text x="85.9168%" y="399.50"></text></g><g><title>psi_task_change (2,312 samples, 0.10%)</title><rect x="85.7812%" y="373" width="0.0997%" height="15" fill="rgb(210,17,39)" fg:x="1989983" fg:w="2312"/><text x="86.0312%" y="383.50"></text></g><g><title>psi_group_change (2,029 samples, 0.09%)</title><rect x="85.7934%" y="357" width="0.0875%" height="15" fill="rgb(244,93,20)" fg:x="1990266" fg:w="2029"/><text x="86.0434%" y="367.50"></text></g><g><title>record_times (322 samples, 0.01%)</title><rect x="85.8669%" y="341" width="0.0139%" height="15" fill="rgb(210,40,47)" fg:x="1991973" fg:w="322"/><text x="86.1169%" y="351.50"></text></g><g><title>ttwu_do_wakeup (488 samples, 0.02%)</title><rect x="85.8808%" y="389" width="0.0210%" height="15" fill="rgb(239,211,47)" fg:x="1992295" fg:w="488"/><text x="86.1308%" y="399.50"></text></g><g><title>check_preempt_curr (435 samples, 0.02%)</title><rect x="85.8831%" y="373" width="0.0188%" height="15" fill="rgb(251,223,49)" fg:x="1992348" fg:w="435"/><text x="86.1331%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (247 samples, 0.01%)</title><rect x="85.9019%" y="389" width="0.0106%" height="15" fill="rgb(221,149,5)" fg:x="1992783" fg:w="247"/><text x="86.1519%" y="399.50"></text></g><g><title>__wake_up_common (11,225 samples, 0.48%)</title><rect x="85.4466%" y="437" width="0.4839%" height="15" fill="rgb(219,224,51)" fg:x="1982223" fg:w="11225"/><text x="85.6966%" y="447.50"></text></g><g><title>autoremove_wake_function (11,050 samples, 0.48%)</title><rect x="85.4542%" y="421" width="0.4763%" height="15" fill="rgb(223,7,8)" fg:x="1982398" fg:w="11050"/><text x="85.7042%" y="431.50"></text></g><g><title>try_to_wake_up (10,743 samples, 0.46%)</title><rect x="85.4674%" y="405" width="0.4631%" height="15" fill="rgb(241,217,22)" fg:x="1982705" fg:w="10743"/><text x="85.7174%" y="415.50"></text></g><g><title>update_rq_clock (418 samples, 0.02%)</title><rect x="85.9125%" y="389" width="0.0180%" height="15" fill="rgb(248,209,0)" fg:x="1993030" fg:w="418"/><text x="86.1625%" y="399.50"></text></g><g><title>__wake_up_common_lock (11,503 samples, 0.50%)</title><rect x="85.4442%" y="453" width="0.4959%" height="15" fill="rgb(217,205,4)" fg:x="1982166" fg:w="11503"/><text x="85.6942%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (529 samples, 0.02%)</title><rect x="85.9401%" y="453" width="0.0228%" height="15" fill="rgb(228,124,39)" fg:x="1993670" fg:w="529"/><text x="86.1901%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (325 samples, 0.01%)</title><rect x="85.9629%" y="453" width="0.0140%" height="15" fill="rgb(250,116,42)" fg:x="1994199" fg:w="325"/><text x="86.2129%" y="463.50"></text></g><g><title>btrfs_search_slot (91,141 samples, 3.93%)</title><rect x="82.0631%" y="485" width="3.9288%" height="15" fill="rgb(223,202,9)" fg:x="1903731" fg:w="91141"/><text x="82.3131%" y="495.50">btrf..</text></g><g><title>unlock_up (13,435 samples, 0.58%)</title><rect x="85.4128%" y="469" width="0.5791%" height="15" fill="rgb(242,222,40)" fg:x="1981437" fg:w="13435"/><text x="85.6628%" y="479.50"></text></g><g><title>btrfs_tree_unlock (348 samples, 0.02%)</title><rect x="85.9769%" y="453" width="0.0150%" height="15" fill="rgb(229,99,46)" fg:x="1994524" fg:w="348"/><text x="86.2269%" y="463.50"></text></g><g><title>btrfs_get_32 (425 samples, 0.02%)</title><rect x="86.0620%" y="469" width="0.0183%" height="15" fill="rgb(225,56,46)" fg:x="1996498" fg:w="425"/><text x="86.3120%" y="479.50"></text></g><g><title>btrfs_get_token_32 (1,106 samples, 0.05%)</title><rect x="86.0803%" y="469" width="0.0477%" height="15" fill="rgb(227,94,5)" fg:x="1996923" fg:w="1106"/><text x="86.3303%" y="479.50"></text></g><g><title>btrfs_leaf_free_space (1,052 samples, 0.05%)</title><rect x="86.1280%" y="469" width="0.0453%" height="15" fill="rgb(205,112,38)" fg:x="1998029" fg:w="1052"/><text x="86.3780%" y="479.50"></text></g><g><title>leaf_space_used (875 samples, 0.04%)</title><rect x="86.1356%" y="453" width="0.0377%" height="15" fill="rgb(231,133,46)" fg:x="1998206" fg:w="875"/><text x="86.3856%" y="463.50"></text></g><g><title>btrfs_get_32 (670 samples, 0.03%)</title><rect x="86.1445%" y="437" width="0.0289%" height="15" fill="rgb(217,16,9)" fg:x="1998411" fg:w="670"/><text x="86.3945%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (885 samples, 0.04%)</title><rect x="86.1733%" y="469" width="0.0381%" height="15" fill="rgb(249,173,9)" fg:x="1999081" fg:w="885"/><text x="86.4233%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (403 samples, 0.02%)</title><rect x="86.1941%" y="453" width="0.0174%" height="15" fill="rgb(205,163,53)" fg:x="1999563" fg:w="403"/><text x="86.4441%" y="463.50"></text></g><g><title>btrfs_set_token_32 (1,369 samples, 0.06%)</title><rect x="86.2115%" y="469" width="0.0590%" height="15" fill="rgb(217,54,41)" fg:x="1999966" fg:w="1369"/><text x="86.4615%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (258 samples, 0.01%)</title><rect x="86.2594%" y="453" width="0.0111%" height="15" fill="rgb(228,216,12)" fg:x="2001077" fg:w="258"/><text x="86.5094%" y="463.50"></text></g><g><title>memcpy_extent_buffer (367 samples, 0.02%)</title><rect x="86.2795%" y="469" width="0.0158%" height="15" fill="rgb(244,228,15)" fg:x="2001543" fg:w="367"/><text x="86.5295%" y="479.50"></text></g><g><title>copy_pages (303 samples, 0.01%)</title><rect x="86.3137%" y="453" width="0.0131%" height="15" fill="rgb(221,176,53)" fg:x="2002338" fg:w="303"/><text x="86.5637%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,089 samples, 0.05%)</title><rect x="86.2953%" y="469" width="0.0469%" height="15" fill="rgb(205,94,34)" fg:x="2001910" fg:w="1089"/><text x="86.5453%" y="479.50"></text></g><g><title>memmove (358 samples, 0.02%)</title><rect x="86.3268%" y="453" width="0.0154%" height="15" fill="rgb(213,110,48)" fg:x="2002641" fg:w="358"/><text x="86.5768%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (100,338 samples, 4.33%)</title><rect x="82.0567%" y="501" width="4.3252%" height="15" fill="rgb(236,142,28)" fg:x="1903582" fg:w="100338"/><text x="82.3067%" y="511.50">btrfs..</text></g><g><title>setup_items_for_insert (9,048 samples, 0.39%)</title><rect x="85.9919%" y="485" width="0.3900%" height="15" fill="rgb(225,135,29)" fg:x="1994872" fg:w="9048"/><text x="86.2419%" y="495.50"></text></g><g><title>write_extent_buffer (921 samples, 0.04%)</title><rect x="86.3422%" y="469" width="0.0397%" height="15" fill="rgb(252,45,31)" fg:x="2002999" fg:w="921"/><text x="86.5922%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (595 samples, 0.03%)</title><rect x="86.3819%" y="501" width="0.0256%" height="15" fill="rgb(211,187,50)" fg:x="2003920" fg:w="595"/><text x="86.6319%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (367 samples, 0.02%)</title><rect x="86.3918%" y="485" width="0.0158%" height="15" fill="rgb(229,109,7)" fg:x="2004148" fg:w="367"/><text x="86.6418%" y="495.50"></text></g><g><title>btrfs_set_16 (354 samples, 0.02%)</title><rect x="86.4076%" y="501" width="0.0153%" height="15" fill="rgb(251,131,51)" fg:x="2004515" fg:w="354"/><text x="86.6576%" y="511.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (338 samples, 0.01%)</title><rect x="86.4322%" y="501" width="0.0146%" height="15" fill="rgb(251,180,35)" fg:x="2005086" fg:w="338"/><text x="86.6822%" y="511.50"></text></g><g><title>btrfs_update_root_times (594 samples, 0.03%)</title><rect x="86.4468%" y="501" width="0.0256%" height="15" fill="rgb(211,46,32)" fg:x="2005424" fg:w="594"/><text x="86.6968%" y="511.50"></text></g><g><title>ktime_get_real_ts64 (325 samples, 0.01%)</title><rect x="86.4584%" y="485" width="0.0140%" height="15" fill="rgb(248,123,17)" fg:x="2005693" fg:w="325"/><text x="86.7084%" y="495.50"></text></g><g><title>current_time (431 samples, 0.02%)</title><rect x="86.4724%" y="501" width="0.0186%" height="15" fill="rgb(227,141,18)" fg:x="2006018" fg:w="431"/><text x="86.7224%" y="511.50"></text></g><g><title>btrfs_set_token_32 (1,519 samples, 0.07%)</title><rect x="86.5257%" y="485" width="0.0655%" height="15" fill="rgb(216,102,9)" fg:x="2007255" fg:w="1519"/><text x="86.7757%" y="495.50"></text></g><g><title>check_setget_bounds.isra.0 (288 samples, 0.01%)</title><rect x="86.5788%" y="469" width="0.0124%" height="15" fill="rgb(253,47,13)" fg:x="2008486" fg:w="288"/><text x="86.8288%" y="479.50"></text></g><g><title>btrfs_set_token_64 (2,000 samples, 0.09%)</title><rect x="86.5912%" y="485" width="0.0862%" height="15" fill="rgb(226,93,23)" fg:x="2008774" fg:w="2000"/><text x="86.8412%" y="495.50"></text></g><g><title>check_setget_bounds.isra.0 (358 samples, 0.02%)</title><rect x="86.6620%" y="469" width="0.0154%" height="15" fill="rgb(247,104,17)" fg:x="2010416" fg:w="358"/><text x="86.9120%" y="479.50"></text></g><g><title>inode_get_bytes (287 samples, 0.01%)</title><rect x="86.6795%" y="485" width="0.0124%" height="15" fill="rgb(233,203,26)" fg:x="2010822" fg:w="287"/><text x="86.9295%" y="495.50"></text></g><g><title>fill_inode_item (4,960 samples, 0.21%)</title><rect x="86.4909%" y="501" width="0.2138%" height="15" fill="rgb(244,98,49)" fg:x="2006449" fg:w="4960"/><text x="86.7409%" y="511.50"></text></g><g><title>map_id_up (300 samples, 0.01%)</title><rect x="86.6918%" y="485" width="0.0129%" height="15" fill="rgb(235,134,22)" fg:x="2011109" fg:w="300"/><text x="86.9418%" y="495.50"></text></g><g><title>inherit_props (375 samples, 0.02%)</title><rect x="86.7048%" y="501" width="0.0162%" height="15" fill="rgb(221,70,32)" fg:x="2011409" fg:w="375"/><text x="86.9548%" y="511.50"></text></g><g><title>inode_init_owner (656 samples, 0.03%)</title><rect x="86.7209%" y="501" width="0.0283%" height="15" fill="rgb(238,15,50)" fg:x="2011784" fg:w="656"/><text x="86.9709%" y="511.50"></text></g><g><title>_raw_spin_lock (887 samples, 0.04%)</title><rect x="87.1201%" y="485" width="0.0382%" height="15" fill="rgb(215,221,48)" fg:x="2021044" fg:w="887"/><text x="87.3701%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (351 samples, 0.02%)</title><rect x="87.1432%" y="469" width="0.0151%" height="15" fill="rgb(236,73,3)" fg:x="2021580" fg:w="351"/><text x="87.3932%" y="479.50"></text></g><g><title>rb_insert_color (1,008 samples, 0.04%)</title><rect x="87.1605%" y="485" width="0.0435%" height="15" fill="rgb(250,107,11)" fg:x="2021981" fg:w="1008"/><text x="87.4105%" y="495.50"></text></g><g><title>inode_tree_add (10,490 samples, 0.45%)</title><rect x="86.7518%" y="501" width="0.4522%" height="15" fill="rgb(242,39,14)" fg:x="2012500" fg:w="10490"/><text x="87.0018%" y="511.50"></text></g><g><title>_raw_spin_lock (644 samples, 0.03%)</title><rect x="87.2105%" y="469" width="0.0278%" height="15" fill="rgb(248,164,37)" fg:x="2023141" fg:w="644"/><text x="87.4605%" y="479.50"></text></g><g><title>insert_inode_locked4 (2,085 samples, 0.09%)</title><rect x="87.2040%" y="501" width="0.0899%" height="15" fill="rgb(217,60,12)" fg:x="2022990" fg:w="2085"/><text x="87.4540%" y="511.50"></text></g><g><title>inode_insert5 (2,064 samples, 0.09%)</title><rect x="87.2049%" y="485" width="0.0890%" height="15" fill="rgb(240,125,29)" fg:x="2023011" fg:w="2064"/><text x="87.4549%" y="495.50"></text></g><g><title>find_inode (1,290 samples, 0.06%)</title><rect x="87.2382%" y="469" width="0.0556%" height="15" fill="rgb(208,207,28)" fg:x="2023785" fg:w="1290"/><text x="87.4882%" y="479.50"></text></g><g><title>kmem_cache_alloc (709 samples, 0.03%)</title><rect x="87.2938%" y="501" width="0.0306%" height="15" fill="rgb(209,159,27)" fg:x="2025075" fg:w="709"/><text x="87.5438%" y="511.50"></text></g><g><title>kmem_cache_free (566 samples, 0.02%)</title><rect x="87.3244%" y="501" width="0.0244%" height="15" fill="rgb(251,176,53)" fg:x="2025784" fg:w="566"/><text x="87.5744%" y="511.50"></text></g><g><title>memzero_extent_buffer (482 samples, 0.02%)</title><rect x="87.3488%" y="501" width="0.0208%" height="15" fill="rgb(211,85,7)" fg:x="2026350" fg:w="482"/><text x="87.5988%" y="511.50"></text></g><g><title>_raw_spin_lock (333 samples, 0.01%)</title><rect x="87.3726%" y="485" width="0.0144%" height="15" fill="rgb(216,64,54)" fg:x="2026901" fg:w="333"/><text x="87.6226%" y="495.50"></text></g><g><title>btrfs_init_metadata_block_rsv (719 samples, 0.03%)</title><rect x="87.4442%" y="453" width="0.0310%" height="15" fill="rgb(217,54,24)" fg:x="2028563" fg:w="719"/><text x="87.6942%" y="463.50"></text></g><g><title>btrfs_find_space_info (548 samples, 0.02%)</title><rect x="87.4516%" y="437" width="0.0236%" height="15" fill="rgb(208,206,53)" fg:x="2028734" fg:w="548"/><text x="87.7016%" y="447.50"></text></g><g><title>kernel_init_free_pages (357 samples, 0.02%)</title><rect x="87.5471%" y="341" width="0.0154%" height="15" fill="rgb(251,74,39)" fg:x="2030950" fg:w="357"/><text x="87.7971%" y="351.50"></text></g><g><title>clear_page_erms (343 samples, 0.01%)</title><rect x="87.5477%" y="325" width="0.0148%" height="15" fill="rgb(226,47,5)" fg:x="2030964" fg:w="343"/><text x="87.7977%" y="335.50"></text></g><g><title>prep_new_page (385 samples, 0.02%)</title><rect x="87.5468%" y="357" width="0.0166%" height="15" fill="rgb(234,111,33)" fg:x="2030942" fg:w="385"/><text x="87.7968%" y="367.50"></text></g><g><title>get_page_from_freelist (487 samples, 0.02%)</title><rect x="87.5424%" y="373" width="0.0210%" height="15" fill="rgb(251,14,10)" fg:x="2030841" fg:w="487"/><text x="87.7924%" y="383.50"></text></g><g><title>__alloc_pages_nodemask (516 samples, 0.02%)</title><rect x="87.5415%" y="389" width="0.0222%" height="15" fill="rgb(232,43,0)" fg:x="2030819" fg:w="516"/><text x="87.7915%" y="399.50"></text></g><g><title>allocate_slab (886 samples, 0.04%)</title><rect x="87.5387%" y="405" width="0.0382%" height="15" fill="rgb(222,68,43)" fg:x="2030756" fg:w="886"/><text x="87.7887%" y="415.50"></text></g><g><title>setup_object.isra.0 (269 samples, 0.01%)</title><rect x="87.5653%" y="389" width="0.0116%" height="15" fill="rgb(217,24,23)" fg:x="2031373" fg:w="269"/><text x="87.8153%" y="399.50"></text></g><g><title>___slab_alloc (1,287 samples, 0.06%)</title><rect x="87.5267%" y="421" width="0.0555%" height="15" fill="rgb(229,209,14)" fg:x="2030476" fg:w="1287"/><text x="87.7767%" y="431.50"></text></g><g><title>__slab_alloc (1,353 samples, 0.06%)</title><rect x="87.5247%" y="437" width="0.0583%" height="15" fill="rgb(250,149,48)" fg:x="2030431" fg:w="1353"/><text x="87.7747%" y="447.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,179 samples, 0.05%)</title><rect x="87.5833%" y="437" width="0.0508%" height="15" fill="rgb(210,120,37)" fg:x="2031789" fg:w="1179"/><text x="87.8333%" y="447.50"></text></g><g><title>get_obj_cgroup_from_current (502 samples, 0.02%)</title><rect x="87.6483%" y="421" width="0.0216%" height="15" fill="rgb(210,21,8)" fg:x="2033298" fg:w="502"/><text x="87.8983%" y="431.50"></text></g><g><title>__memcg_kmem_charge (310 samples, 0.01%)</title><rect x="87.6858%" y="405" width="0.0134%" height="15" fill="rgb(243,145,7)" fg:x="2034167" fg:w="310"/><text x="87.9358%" y="415.50"></text></g><g><title>try_charge (251 samples, 0.01%)</title><rect x="87.6883%" y="389" width="0.0108%" height="15" fill="rgb(238,178,32)" fg:x="2034226" fg:w="251"/><text x="87.9383%" y="399.50"></text></g><g><title>obj_cgroup_charge (826 samples, 0.04%)</title><rect x="87.6700%" y="421" width="0.0356%" height="15" fill="rgb(222,4,10)" fg:x="2033800" fg:w="826"/><text x="87.9200%" y="431.50"></text></g><g><title>btrfs_alloc_inode (7,002 samples, 0.30%)</title><rect x="87.4040%" y="469" width="0.3018%" height="15" fill="rgb(239,7,37)" fg:x="2027630" fg:w="7002"/><text x="87.6540%" y="479.50"></text></g><g><title>kmem_cache_alloc (5,000 samples, 0.22%)</title><rect x="87.4903%" y="453" width="0.2155%" height="15" fill="rgb(215,31,37)" fg:x="2029632" fg:w="5000"/><text x="87.7403%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,659 samples, 0.07%)</title><rect x="87.6343%" y="437" width="0.0715%" height="15" fill="rgb(224,83,33)" fg:x="2032973" fg:w="1659"/><text x="87.8843%" y="447.50"></text></g><g><title>alloc_inode (9,084 samples, 0.39%)</title><rect x="87.3869%" y="485" width="0.3916%" height="15" fill="rgb(239,55,3)" fg:x="2027234" fg:w="9084"/><text x="87.6369%" y="495.50"></text></g><g><title>inode_init_always (1,686 samples, 0.07%)</title><rect x="87.7058%" y="469" width="0.0727%" height="15" fill="rgb(247,92,11)" fg:x="2034632" fg:w="1686"/><text x="87.9558%" y="479.50"></text></g><g><title>security_inode_alloc (420 samples, 0.02%)</title><rect x="87.7604%" y="453" width="0.0181%" height="15" fill="rgb(239,200,7)" fg:x="2035898" fg:w="420"/><text x="88.0104%" y="463.50"></text></g><g><title>new_inode (10,044 samples, 0.43%)</title><rect x="87.3696%" y="501" width="0.4330%" height="15" fill="rgb(227,115,8)" fg:x="2026832" fg:w="10044"/><text x="87.6196%" y="511.50"></text></g><g><title>inode_sb_list_add (558 samples, 0.02%)</title><rect x="87.7785%" y="485" width="0.0241%" height="15" fill="rgb(215,189,27)" fg:x="2036318" fg:w="558"/><text x="88.0285%" y="495.50"></text></g><g><title>_raw_spin_lock (298 samples, 0.01%)</title><rect x="87.7897%" y="469" width="0.0128%" height="15" fill="rgb(251,216,39)" fg:x="2036578" fg:w="298"/><text x="88.0397%" y="479.50"></text></g><g><title>btrfs_new_inode (139,265 samples, 6.00%)</title><rect x="81.8228%" y="517" width="6.0032%" height="15" fill="rgb(207,29,47)" fg:x="1898156" fg:w="139265"/><text x="82.0728%" y="527.50">btrfs_ne..</text></g><g><title>write_extent_buffer (545 samples, 0.02%)</title><rect x="87.8025%" y="501" width="0.0235%" height="15" fill="rgb(210,71,34)" fg:x="2036876" fg:w="545"/><text x="88.0525%" y="511.50"></text></g><g><title>btrfs_set_64 (437 samples, 0.02%)</title><rect x="87.8347%" y="517" width="0.0188%" height="15" fill="rgb(253,217,51)" fg:x="2037621" fg:w="437"/><text x="88.0847%" y="527.50"></text></g><g><title>btrfs_set_8 (393 samples, 0.02%)</title><rect x="87.8535%" y="517" width="0.0169%" height="15" fill="rgb(222,117,46)" fg:x="2038058" fg:w="393"/><text x="88.1035%" y="527.50"></text></g><g><title>__list_add_valid (359 samples, 0.02%)</title><rect x="87.9770%" y="469" width="0.0155%" height="15" fill="rgb(226,132,6)" fg:x="2040924" fg:w="359"/><text x="88.2270%" y="479.50"></text></g><g><title>_raw_spin_lock (328 samples, 0.01%)</title><rect x="87.9925%" y="469" width="0.0141%" height="15" fill="rgb(254,145,51)" fg:x="2041283" fg:w="328"/><text x="88.2425%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,171 samples, 0.09%)</title><rect x="87.9299%" y="485" width="0.0936%" height="15" fill="rgb(231,199,27)" fg:x="2039831" fg:w="2171"/><text x="88.1799%" y="495.50"></text></g><g><title>_raw_spin_lock (1,069 samples, 0.05%)</title><rect x="88.0293%" y="469" width="0.0461%" height="15" fill="rgb(245,158,14)" fg:x="2042136" fg:w="1069"/><text x="88.2793%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,203 samples, 0.05%)</title><rect x="88.0236%" y="485" width="0.0519%" height="15" fill="rgb(240,113,14)" fg:x="2042003" fg:w="1203"/><text x="88.2736%" y="495.50"></text></g><g><title>__radix_tree_preload (294 samples, 0.01%)</title><rect x="88.1071%" y="469" width="0.0127%" height="15" fill="rgb(210,20,13)" fg:x="2043942" fg:w="294"/><text x="88.3571%" y="479.50"></text></g><g><title>_raw_spin_lock (237 samples, 0.01%)</title><rect x="88.1198%" y="469" width="0.0102%" height="15" fill="rgb(241,144,13)" fg:x="2044236" fg:w="237"/><text x="88.3698%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,230 samples, 0.10%)</title><rect x="88.1388%" y="453" width="0.0961%" height="15" fill="rgb(235,43,34)" fg:x="2044677" fg:w="2230"/><text x="88.3888%" y="463.50"></text></g><g><title>_raw_spin_lock (422 samples, 0.02%)</title><rect x="88.2349%" y="453" width="0.0182%" height="15" fill="rgb(208,36,20)" fg:x="2046907" fg:w="422"/><text x="88.4849%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (234 samples, 0.01%)</title><rect x="88.2431%" y="437" width="0.0101%" height="15" fill="rgb(239,204,10)" fg:x="2047095" fg:w="234"/><text x="88.4931%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (2,865 samples, 0.12%)</title><rect x="88.1301%" y="469" width="0.1235%" height="15" fill="rgb(217,84,43)" fg:x="2044474" fg:w="2865"/><text x="88.3801%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (232 samples, 0.01%)</title><rect x="88.2946%" y="405" width="0.0100%" height="15" fill="rgb(241,170,50)" fg:x="2048291" fg:w="232"/><text x="88.5446%" y="415.50"></text></g><g><title>allocate_slab (366 samples, 0.02%)</title><rect x="88.2918%" y="421" width="0.0158%" height="15" fill="rgb(226,205,29)" fg:x="2048226" fg:w="366"/><text x="88.5418%" y="431.50"></text></g><g><title>___slab_alloc (703 samples, 0.03%)</title><rect x="88.2793%" y="437" width="0.0303%" height="15" fill="rgb(233,113,1)" fg:x="2047935" fg:w="703"/><text x="88.5293%" y="447.50"></text></g><g><title>__slab_alloc (751 samples, 0.03%)</title><rect x="88.2773%" y="453" width="0.0324%" height="15" fill="rgb(253,98,13)" fg:x="2047889" fg:w="751"/><text x="88.5273%" y="463.50"></text></g><g><title>memset_erms (233 samples, 0.01%)</title><rect x="88.3129%" y="453" width="0.0100%" height="15" fill="rgb(211,115,12)" fg:x="2048715" fg:w="233"/><text x="88.5629%" y="463.50"></text></g><g><title>_cond_resched (251 samples, 0.01%)</title><rect x="88.3252%" y="437" width="0.0108%" height="15" fill="rgb(208,12,16)" fg:x="2049001" fg:w="251"/><text x="88.5752%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,920 samples, 0.08%)</title><rect x="88.2536%" y="469" width="0.0828%" height="15" fill="rgb(237,193,54)" fg:x="2047339" fg:w="1920"/><text x="88.5036%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (311 samples, 0.01%)</title><rect x="88.3229%" y="453" width="0.0134%" height="15" fill="rgb(243,22,42)" fg:x="2048948" fg:w="311"/><text x="88.5729%" y="463.50"></text></g><g><title>radix_tree_insert (846 samples, 0.04%)</title><rect x="88.3363%" y="469" width="0.0365%" height="15" fill="rgb(233,151,36)" fg:x="2049259" fg:w="846"/><text x="88.5863%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (6,980 samples, 0.30%)</title><rect x="88.0754%" y="485" width="0.3009%" height="15" fill="rgb(237,57,45)" fg:x="2043206" fg:w="6980"/><text x="88.3254%" y="495.50"></text></g><g><title>inode_get_bytes (246 samples, 0.01%)</title><rect x="88.3857%" y="469" width="0.0106%" height="15" fill="rgb(221,88,17)" fg:x="2050404" fg:w="246"/><text x="88.6357%" y="479.50"></text></g><g><title>fill_stack_inode_item (623 samples, 0.03%)</title><rect x="88.3763%" y="485" width="0.0269%" height="15" fill="rgb(230,79,15)" fg:x="2050186" fg:w="623"/><text x="88.6263%" y="495.50"></text></g><g><title>mutex_lock (502 samples, 0.02%)</title><rect x="88.4032%" y="485" width="0.0216%" height="15" fill="rgb(213,57,13)" fg:x="2050809" fg:w="502"/><text x="88.6532%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (12,403 samples, 0.53%)</title><rect x="87.8956%" y="501" width="0.5346%" height="15" fill="rgb(222,116,39)" fg:x="2039035" fg:w="12403"/><text x="88.1456%" y="511.50"></text></g><g><title>_raw_spin_lock (515 samples, 0.02%)</title><rect x="88.4338%" y="485" width="0.0222%" height="15" fill="rgb(245,107,2)" fg:x="2051520" fg:w="515"/><text x="88.6838%" y="495.50"></text></g><g><title>btrfs_update_inode (13,920 samples, 0.60%)</title><rect x="87.8732%" y="517" width="0.6000%" height="15" fill="rgb(238,1,10)" fg:x="2038514" fg:w="13920"/><text x="88.1232%" y="527.50"></text></g><g><title>btrfs_update_root_times (996 samples, 0.04%)</title><rect x="88.4303%" y="501" width="0.0429%" height="15" fill="rgb(249,4,48)" fg:x="2051438" fg:w="996"/><text x="88.6803%" y="511.50"></text></g><g><title>ktime_get_real_ts64 (399 samples, 0.02%)</title><rect x="88.4560%" y="485" width="0.0172%" height="15" fill="rgb(223,151,18)" fg:x="2052035" fg:w="399"/><text x="88.7060%" y="495.50"></text></g><g><title>__d_instantiate (919 samples, 0.04%)</title><rect x="88.4939%" y="501" width="0.0396%" height="15" fill="rgb(227,65,43)" fg:x="2052914" fg:w="919"/><text x="88.7439%" y="511.50"></text></g><g><title>d_flags_for_inode (456 samples, 0.02%)</title><rect x="88.5138%" y="485" width="0.0197%" height="15" fill="rgb(218,40,45)" fg:x="2053377" fg:w="456"/><text x="88.7638%" y="495.50"></text></g><g><title>security_d_instantiate (326 samples, 0.01%)</title><rect x="88.5425%" y="501" width="0.0141%" height="15" fill="rgb(252,121,31)" fg:x="2054042" fg:w="326"/><text x="88.7925%" y="511.50"></text></g><g><title>d_instantiate_new (1,952 samples, 0.08%)</title><rect x="88.4801%" y="517" width="0.0841%" height="15" fill="rgb(219,158,43)" fg:x="2052593" fg:w="1952"/><text x="88.7301%" y="527.50"></text></g><g><title>__schedule (269 samples, 0.01%)</title><rect x="88.6083%" y="469" width="0.0116%" height="15" fill="rgb(231,162,42)" fg:x="2055568" fg:w="269"/><text x="88.8583%" y="479.50"></text></g><g><title>_cond_resched (389 samples, 0.02%)</title><rect x="88.6057%" y="485" width="0.0168%" height="15" fill="rgb(217,179,25)" fg:x="2055507" fg:w="389"/><text x="88.8557%" y="495.50"></text></g><g><title>kmem_cache_alloc (1,196 samples, 0.05%)</title><rect x="88.5714%" y="517" width="0.0516%" height="15" fill="rgb(206,212,31)" fg:x="2054712" fg:w="1196"/><text x="88.8214%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (525 samples, 0.02%)</title><rect x="88.6003%" y="501" width="0.0226%" height="15" fill="rgb(235,144,12)" fg:x="2055383" fg:w="525"/><text x="88.8503%" y="511.50"></text></g><g><title>kmem_cache_free (570 samples, 0.02%)</title><rect x="88.6230%" y="517" width="0.0246%" height="15" fill="rgb(213,51,10)" fg:x="2055908" fg:w="570"/><text x="88.8730%" y="527.50"></text></g><g><title>security_inode_init_security (492 samples, 0.02%)</title><rect x="88.6478%" y="517" width="0.0212%" height="15" fill="rgb(231,145,14)" fg:x="2056484" fg:w="492"/><text x="88.8978%" y="527.50"></text></g><g><title>_raw_spin_lock (628 samples, 0.03%)</title><rect x="88.7687%" y="485" width="0.0271%" height="15" fill="rgb(235,15,28)" fg:x="2059288" fg:w="628"/><text x="89.0187%" y="495.50"></text></g><g><title>_raw_spin_lock (1,219 samples, 0.05%)</title><rect x="88.8315%" y="453" width="0.0525%" height="15" fill="rgb(237,206,10)" fg:x="2060747" fg:w="1219"/><text x="89.0815%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (468 samples, 0.02%)</title><rect x="88.8639%" y="437" width="0.0202%" height="15" fill="rgb(236,227,27)" fg:x="2061498" fg:w="468"/><text x="89.1139%" y="447.50"></text></g><g><title>btrfs_get_alloc_profile (258 samples, 0.01%)</title><rect x="88.9228%" y="437" width="0.0111%" height="15" fill="rgb(246,83,35)" fg:x="2062863" fg:w="258"/><text x="89.1728%" y="447.50"></text></g><g><title>_raw_spin_lock (389 samples, 0.02%)</title><rect x="88.9547%" y="421" width="0.0168%" height="15" fill="rgb(220,136,24)" fg:x="2063605" fg:w="389"/><text x="89.2047%" y="431.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (2,028 samples, 0.09%)</title><rect x="88.8842%" y="453" width="0.0874%" height="15" fill="rgb(217,3,25)" fg:x="2061968" fg:w="2028"/><text x="89.1342%" y="463.50"></text></g><g><title>btrfs_reduce_alloc_profile (875 samples, 0.04%)</title><rect x="88.9339%" y="437" width="0.0377%" height="15" fill="rgb(239,24,14)" fg:x="2063121" fg:w="875"/><text x="89.1839%" y="447.50"></text></g><g><title>_raw_spin_lock (307 samples, 0.01%)</title><rect x="89.0016%" y="421" width="0.0132%" height="15" fill="rgb(244,16,53)" fg:x="2064693" fg:w="307"/><text x="89.2516%" y="431.50"></text></g><g><title>btrfs_block_rsv_add (5,821 samples, 0.25%)</title><rect x="88.7640%" y="501" width="0.2509%" height="15" fill="rgb(208,175,44)" fg:x="2059181" fg:w="5821"/><text x="89.0140%" y="511.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,086 samples, 0.22%)</title><rect x="88.7957%" y="485" width="0.2192%" height="15" fill="rgb(252,18,48)" fg:x="2059916" fg:w="5086"/><text x="89.0457%" y="495.50"></text></g><g><title>__reserve_bytes (4,724 samples, 0.20%)</title><rect x="88.8113%" y="469" width="0.2036%" height="15" fill="rgb(234,199,32)" fg:x="2060278" fg:w="4724"/><text x="89.0613%" y="479.50"></text></g><g><title>calc_available_free_space.isra.0 (1,006 samples, 0.04%)</title><rect x="88.9716%" y="453" width="0.0434%" height="15" fill="rgb(225,77,54)" fg:x="2063996" fg:w="1006"/><text x="89.2216%" y="463.50"></text></g><g><title>btrfs_reduce_alloc_profile (495 samples, 0.02%)</title><rect x="88.9936%" y="437" width="0.0213%" height="15" fill="rgb(225,42,25)" fg:x="2064507" fg:w="495"/><text x="89.2436%" y="447.50"></text></g><g><title>_raw_spin_lock (411 samples, 0.02%)</title><rect x="89.0423%" y="485" width="0.0177%" height="15" fill="rgb(242,227,46)" fg:x="2065636" fg:w="411"/><text x="89.2923%" y="495.50"></text></g><g><title>join_transaction (985 samples, 0.04%)</title><rect x="89.0176%" y="501" width="0.0425%" height="15" fill="rgb(246,197,35)" fg:x="2065063" fg:w="985"/><text x="89.2676%" y="511.50"></text></g><g><title>kmem_cache_alloc (960 samples, 0.04%)</title><rect x="89.0601%" y="501" width="0.0414%" height="15" fill="rgb(215,159,26)" fg:x="2066048" fg:w="960"/><text x="89.3101%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (274 samples, 0.01%)</title><rect x="89.0896%" y="485" width="0.0118%" height="15" fill="rgb(212,194,50)" fg:x="2066734" fg:w="274"/><text x="89.3396%" y="495.50"></text></g><g><title>_raw_spin_lock (599 samples, 0.03%)</title><rect x="89.1111%" y="485" width="0.0258%" height="15" fill="rgb(246,132,1)" fg:x="2067232" fg:w="599"/><text x="89.3611%" y="495.50"></text></g><g><title>start_transaction (10,857 samples, 0.47%)</title><rect x="88.6690%" y="517" width="0.4680%" height="15" fill="rgb(217,71,7)" fg:x="2056976" fg:w="10857"/><text x="88.9190%" y="527.50"></text></g><g><title>wait_current_trans (824 samples, 0.04%)</title><rect x="89.1015%" y="501" width="0.0355%" height="15" fill="rgb(252,59,32)" fg:x="2067009" fg:w="824"/><text x="89.3515%" y="511.50"></text></g><g><title>strlen (2,839 samples, 0.12%)</title><rect x="89.1370%" y="517" width="0.1224%" height="15" fill="rgb(253,204,25)" fg:x="2067833" fg:w="2839"/><text x="89.3870%" y="527.50"></text></g><g><title>btrfs_symlink (425,067 samples, 18.32%)</title><rect x="70.9638%" y="533" width="18.3231%" height="15" fill="rgb(232,21,16)" fg:x="1646245" fg:w="425067"/><text x="71.2138%" y="543.50">btrfs_symlink</text></g><g><title>write_extent_buffer (640 samples, 0.03%)</title><rect x="89.2594%" y="517" width="0.0276%" height="15" fill="rgb(248,90,29)" fg:x="2070672" fg:w="640"/><text x="89.5094%" y="527.50"></text></g><g><title>fsnotify (460 samples, 0.02%)</title><rect x="89.2878%" y="533" width="0.0198%" height="15" fill="rgb(249,223,7)" fg:x="2071331" fg:w="460"/><text x="89.5378%" y="543.50"></text></g><g><title>btrfs_permission (389 samples, 0.02%)</title><rect x="89.3205%" y="517" width="0.0168%" height="15" fill="rgb(231,119,42)" fg:x="2072090" fg:w="389"/><text x="89.5705%" y="527.50"></text></g><g><title>inode_permission.part.0 (743 samples, 0.03%)</title><rect x="89.3076%" y="533" width="0.0320%" height="15" fill="rgb(215,41,35)" fg:x="2071791" fg:w="743"/><text x="89.5576%" y="543.50"></text></g><g><title>do_symlinkat (551,970 samples, 23.79%)</title><rect x="65.5619%" y="565" width="23.7935%" height="15" fill="rgb(220,44,45)" fg:x="1520930" fg:w="551970"/><text x="65.8119%" y="575.50">do_symlinkat</text></g><g><title>vfs_symlink (427,354 samples, 18.42%)</title><rect x="70.9337%" y="549" width="18.4217%" height="15" fill="rgb(253,197,36)" fg:x="1645546" fg:w="427354"/><text x="71.1837%" y="559.50">vfs_symlink</text></g><g><title>do_syscall_64 (552,889 samples, 23.83%)</title><rect x="65.5371%" y="581" width="23.8331%" height="15" fill="rgb(245,225,54)" fg:x="1520354" fg:w="552889"/><text x="65.7871%" y="591.50">do_syscall_64</text></g><g><title>syscall_enter_from_user_mode (343 samples, 0.01%)</title><rect x="89.3554%" y="565" width="0.0148%" height="15" fill="rgb(239,94,37)" fg:x="2072900" fg:w="343"/><text x="89.6054%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (554,658 samples, 23.91%)</title><rect x="65.5171%" y="597" width="23.9094%" height="15" fill="rgb(242,217,10)" fg:x="1519891" fg:w="554658"/><text x="65.7671%" y="607.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (1,306 samples, 0.06%)</title><rect x="89.3702%" y="581" width="0.0563%" height="15" fill="rgb(250,193,7)" fg:x="2073243" fg:w="1306"/><text x="89.6202%" y="591.50"></text></g><g><title>exit_to_user_mode_prepare (1,163 samples, 0.05%)</title><rect x="89.3764%" y="565" width="0.0501%" height="15" fill="rgb(230,104,19)" fg:x="2073386" fg:w="1163"/><text x="89.6264%" y="575.50"></text></g><g><title>switch_fpu_return (818 samples, 0.04%)</title><rect x="89.3912%" y="549" width="0.0353%" height="15" fill="rgb(230,181,4)" fg:x="2073731" fg:w="818"/><text x="89.6412%" y="559.50"></text></g><g><title>copy_kernel_to_fpregs (265 samples, 0.01%)</title><rect x="89.4151%" y="533" width="0.0114%" height="15" fill="rgb(216,219,49)" fg:x="2074284" fg:w="265"/><text x="89.6651%" y="543.50"></text></g><g><title>syscall_return_via_sysret (410 samples, 0.02%)</title><rect x="89.4342%" y="597" width="0.0177%" height="15" fill="rgb(254,144,0)" fg:x="2074727" fg:w="410"/><text x="89.6842%" y="607.50"></text></g><g><title>__symlink (556,936 samples, 24.01%)</title><rect x="65.4449%" y="613" width="24.0075%" height="15" fill="rgb(205,209,38)" fg:x="1518215" fg:w="556936"/><text x="65.6949%" y="623.50">__symlink</text></g><g><title>_int_free (656 samples, 0.03%)</title><rect x="89.4524%" y="613" width="0.0283%" height="15" fill="rgb(240,21,42)" fg:x="2075151" fg:w="656"/><text x="89.7024%" y="623.50"></text></g><g><title>free@plt (367 samples, 0.02%)</title><rect x="89.4844%" y="613" width="0.0158%" height="15" fill="rgb(241,132,3)" fg:x="2075893" fg:w="367"/><text x="89.7344%" y="623.50"></text></g><g><title>ThreadStateTransition::transition_from_native (238 samples, 0.01%)</title><rect x="89.5175%" y="597" width="0.0103%" height="15" fill="rgb(225,14,2)" fg:x="2076661" fg:w="238"/><text x="89.7675%" y="607.50"></text></g><g><title>jni_ExceptionOccurred (642 samples, 0.03%)</title><rect x="89.5003%" y="613" width="0.0277%" height="15" fill="rgb(210,141,35)" fg:x="2076260" fg:w="642"/><text x="89.7503%" y="623.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (572 samples, 0.02%)</title><rect x="89.5503%" y="597" width="0.0247%" height="15" fill="rgb(251,14,44)" fg:x="2077421" fg:w="572"/><text x="89.8003%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (387 samples, 0.02%)</title><rect x="89.5750%" y="597" width="0.0167%" height="15" fill="rgb(247,48,18)" fg:x="2077993" fg:w="387"/><text x="89.8250%" y="607.50"></text></g><g><title>[libc-2.31.so] (386 samples, 0.02%)</title><rect x="89.5916%" y="597" width="0.0166%" height="15" fill="rgb(225,0,40)" fg:x="2078380" fg:w="386"/><text x="89.8416%" y="607.50"></text></g><g><title>check_bounds (763 samples, 0.03%)</title><rect x="89.6085%" y="597" width="0.0329%" height="15" fill="rgb(221,31,33)" fg:x="2078771" fg:w="763"/><text x="89.8585%" y="607.50"></text></g><g><title>jni_GetByteArrayRegion (3,083 samples, 0.13%)</title><rect x="89.5279%" y="613" width="0.1329%" height="15" fill="rgb(237,42,40)" fg:x="2076902" fg:w="3083"/><text x="89.7779%" y="623.50"></text></g><g><title>memmove@plt (451 samples, 0.02%)</title><rect x="89.6414%" y="597" width="0.0194%" height="15" fill="rgb(233,51,29)" fg:x="2079534" fg:w="451"/><text x="89.8914%" y="607.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (904 samples, 0.04%)</title><rect x="89.6939%" y="581" width="0.0390%" height="15" fill="rgb(226,58,20)" fg:x="2080753" fg:w="904"/><text x="89.9439%" y="591.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (834 samples, 0.04%)</title><rect x="89.6969%" y="565" width="0.0360%" height="15" fill="rgb(208,98,7)" fg:x="2080823" fg:w="834"/><text x="89.9469%" y="575.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (1,067 samples, 0.05%)</title><rect x="89.6871%" y="597" width="0.0460%" height="15" fill="rgb(228,143,44)" fg:x="2080595" fg:w="1067"/><text x="89.9371%" y="607.50"></text></g><g><title>HandleMark::pop_and_restore (629 samples, 0.03%)</title><rect x="89.7331%" y="597" width="0.0271%" height="15" fill="rgb(246,55,38)" fg:x="2081662" fg:w="629"/><text x="89.9831%" y="607.50"></text></g><g><title>JNIHandles::make_local (666 samples, 0.03%)</title><rect x="89.7602%" y="597" width="0.0287%" height="15" fill="rgb(247,87,16)" fg:x="2082291" fg:w="666"/><text x="90.0102%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (385 samples, 0.02%)</title><rect x="89.7895%" y="597" width="0.0166%" height="15" fill="rgb(234,129,42)" fg:x="2082970" fg:w="385"/><text x="90.0395%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (502 samples, 0.02%)</title><rect x="89.8061%" y="597" width="0.0216%" height="15" fill="rgb(220,82,16)" fg:x="2083355" fg:w="502"/><text x="90.0561%" y="607.50"></text></g><g><title>jni_GetObjectField (3,870 samples, 0.17%)</title><rect x="89.6610%" y="613" width="0.1668%" height="15" fill="rgb(211,88,4)" fg:x="2079988" fg:w="3870"/><text x="89.9110%" y="623.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (397 samples, 0.02%)</title><rect x="89.8721%" y="597" width="0.0171%" height="15" fill="rgb(248,151,21)" fg:x="2084887" fg:w="397"/><text x="90.1221%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (702 samples, 0.03%)</title><rect x="89.8892%" y="597" width="0.0303%" height="15" fill="rgb(238,163,6)" fg:x="2085284" fg:w="702"/><text x="90.1392%" y="607.50"></text></g><g><title>jni_GetStringLength (2,135 samples, 0.09%)</title><rect x="89.8278%" y="613" width="0.0920%" height="15" fill="rgb(209,183,11)" fg:x="2083858" fg:w="2135"/><text x="90.0778%" y="623.50"></text></g><g><title>operator delete@plt (612 samples, 0.03%)</title><rect x="89.9355%" y="613" width="0.0264%" height="15" fill="rgb(219,37,20)" fg:x="2086357" fg:w="612"/><text x="90.1855%" y="623.50"></text></g><g><title>__GI___libc_malloc (961 samples, 0.04%)</title><rect x="89.9719%" y="597" width="0.0414%" height="15" fill="rgb(210,158,4)" fg:x="2087201" fg:w="961"/><text x="90.2219%" y="607.50"></text></g><g><title>tcache_get (434 samples, 0.02%)</title><rect x="89.9946%" y="581" width="0.0187%" height="15" fill="rgb(221,167,53)" fg:x="2087728" fg:w="434"/><text x="90.2446%" y="591.50"></text></g><g><title>operator new (1,308 samples, 0.06%)</title><rect x="89.9712%" y="613" width="0.0564%" height="15" fill="rgb(237,151,45)" fg:x="2087186" fg:w="1308"/><text x="90.2212%" y="623.50"></text></g><g><title>malloc@plt (331 samples, 0.01%)</title><rect x="90.0134%" y="597" width="0.0143%" height="15" fill="rgb(231,39,3)" fg:x="2088163" fg:w="331"/><text x="90.2634%" y="607.50"></text></g><g><title>operator new@plt (334 samples, 0.01%)</title><rect x="90.0276%" y="613" width="0.0144%" height="15" fill="rgb(212,167,28)" fg:x="2088494" fg:w="334"/><text x="90.2776%" y="623.50"></text></g><g><title>do_syscall_64 (233 samples, 0.01%)</title><rect x="90.0501%" y="581" width="0.0100%" height="15" fill="rgb(232,178,8)" fg:x="2089016" fg:w="233"/><text x="90.3001%" y="591.50"></text></g><g><title>__x64_sys_rename (232 samples, 0.01%)</title><rect x="90.0502%" y="565" width="0.0100%" height="15" fill="rgb(225,151,20)" fg:x="2089017" fg:w="232"/><text x="90.3002%" y="575.50"></text></g><g><title>do_renameat2 (232 samples, 0.01%)</title><rect x="90.0502%" y="549" width="0.0100%" height="15" fill="rgb(238,3,37)" fg:x="2089017" fg:w="232"/><text x="90.3002%" y="559.50"></text></g><g><title>rename (235 samples, 0.01%)</title><rect x="90.0501%" y="613" width="0.0101%" height="15" fill="rgb(251,147,42)" fg:x="2089015" fg:w="235"/><text x="90.3001%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (234 samples, 0.01%)</title><rect x="90.0501%" y="597" width="0.0101%" height="15" fill="rgb(208,173,10)" fg:x="2089016" fg:w="234"/><text x="90.3001%" y="607.50"></text></g><g><title>_int_malloc (488 samples, 0.02%)</title><rect x="90.0834%" y="565" width="0.0210%" height="15" fill="rgb(246,225,4)" fg:x="2089787" fg:w="488"/><text x="90.3334%" y="575.50"></text></g><g><title>__GI___libc_malloc (1,008 samples, 0.04%)</title><rect x="90.0665%" y="581" width="0.0435%" height="15" fill="rgb(248,102,6)" fg:x="2089397" fg:w="1008"/><text x="90.3165%" y="591.50"></text></g><g><title>operator new (1,062 samples, 0.05%)</title><rect x="90.0664%" y="597" width="0.0458%" height="15" fill="rgb(232,6,21)" fg:x="2089393" fg:w="1062"/><text x="90.3164%" y="607.50"></text></g><g><title>std::string::_Rep::_S_create (1,227 samples, 0.05%)</title><rect x="90.0620%" y="613" width="0.0529%" height="15" fill="rgb(221,179,22)" fg:x="2089291" fg:w="1227"/><text x="90.3120%" y="623.50"></text></g><g><title>[libunix_jni.so] (1,912,211 samples, 82.43%)</title><rect x="7.6863%" y="629" width="82.4287%" height="15" fill="rgb(252,50,20)" fg:x="178309" fg:w="1912211"/><text x="7.9363%" y="639.50">[libunix_jni.so]</text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (279 samples, 0.01%)</title><rect x="94.4741%" y="597" width="0.0120%" height="15" fill="rgb(222,56,38)" fg:x="2191646" fg:w="279"/><text x="94.7241%" y="607.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (280 samples, 0.01%)</title><rect x="94.4741%" y="613" width="0.0121%" height="15" fill="rgb(206,193,29)" fg:x="2191646" fg:w="280"/><text x="94.7241%" y="623.50"></text></g><g><title>LinkResolver::resolve_invoke (237 samples, 0.01%)</title><rect x="94.4992%" y="581" width="0.0102%" height="15" fill="rgb(239,192,45)" fg:x="2192227" fg:w="237"/><text x="94.7492%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (310 samples, 0.01%)</title><rect x="94.4971%" y="597" width="0.0134%" height="15" fill="rgb(254,18,36)" fg:x="2192178" fg:w="310"/><text x="94.7471%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (442 samples, 0.02%)</title><rect x="94.4950%" y="613" width="0.0191%" height="15" fill="rgb(221,127,11)" fg:x="2192131" fg:w="442"/><text x="94.7450%" y="623.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (304 samples, 0.01%)</title><rect x="94.5480%" y="485" width="0.0131%" height="15" fill="rgb(234,146,35)" fg:x="2193359" fg:w="304"/><text x="94.7980%" y="495.50"></text></g><g><title>SymbolTable::lookup_only (280 samples, 0.01%)</title><rect x="94.5490%" y="469" width="0.0121%" height="15" fill="rgb(254,201,37)" fg:x="2193383" fg:w="280"/><text x="94.7990%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (312 samples, 0.01%)</title><rect x="94.5478%" y="501" width="0.0134%" height="15" fill="rgb(211,202,23)" fg:x="2193354" fg:w="312"/><text x="94.7978%" y="511.50"></text></g><g><title>ClassFileParser::parse_stream (404 samples, 0.02%)</title><rect x="94.5475%" y="517" width="0.0174%" height="15" fill="rgb(237,91,2)" fg:x="2193348" fg:w="404"/><text x="94.7975%" y="527.50"></text></g><g><title>ClassFileParser::ClassFileParser (405 samples, 0.02%)</title><rect x="94.5475%" y="533" width="0.0175%" height="15" fill="rgb(226,228,36)" fg:x="2193348" fg:w="405"/><text x="94.7975%" y="543.50"></text></g><g><title>KlassFactory::create_from_stream (509 samples, 0.02%)</title><rect x="94.5475%" y="549" width="0.0219%" height="15" fill="rgb(213,63,50)" fg:x="2193347" fg:w="509"/><text x="94.7975%" y="559.50"></text></g><g><title>SystemDictionary::resolve_from_stream (535 samples, 0.02%)</title><rect x="94.5475%" y="565" width="0.0231%" height="15" fill="rgb(235,194,19)" fg:x="2193347" fg:w="535"/><text x="94.7975%" y="575.50"></text></g><g><title>JVM_DefineClassWithSource (539 samples, 0.02%)</title><rect x="94.5473%" y="597" width="0.0232%" height="15" fill="rgb(207,204,18)" fg:x="2193344" fg:w="539"/><text x="94.7973%" y="607.50"></text></g><g><title>jvm_define_class_common (539 samples, 0.02%)</title><rect x="94.5473%" y="581" width="0.0232%" height="15" fill="rgb(248,8,7)" fg:x="2193344" fg:w="539"/><text x="94.7973%" y="591.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (558 samples, 0.02%)</title><rect x="94.5473%" y="613" width="0.0241%" height="15" fill="rgb(223,145,47)" fg:x="2193343" fg:w="558"/><text x="94.7973%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (484 samples, 0.02%)</title><rect x="94.5907%" y="517" width="0.0209%" height="15" fill="rgb(228,84,11)" fg:x="2194350" fg:w="484"/><text x="94.8407%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (479 samples, 0.02%)</title><rect x="94.5909%" y="501" width="0.0206%" height="15" fill="rgb(218,76,45)" fg:x="2194355" fg:w="479"/><text x="94.8409%" y="511.50"></text></g><g><title>native_write_msr (479 samples, 0.02%)</title><rect x="94.5909%" y="485" width="0.0206%" height="15" fill="rgb(223,80,15)" fg:x="2194355" fg:w="479"/><text x="94.8409%" y="495.50"></text></g><g><title>schedule_tail (517 samples, 0.02%)</title><rect x="94.5899%" y="549" width="0.0223%" height="15" fill="rgb(219,218,33)" fg:x="2194332" fg:w="517"/><text x="94.8399%" y="559.50"></text></g><g><title>finish_task_switch (515 samples, 0.02%)</title><rect x="94.5900%" y="533" width="0.0222%" height="15" fill="rgb(208,51,11)" fg:x="2194334" fg:w="515"/><text x="94.8400%" y="543.50"></text></g><g><title>__libc_vfork (726 samples, 0.03%)</title><rect x="94.5811%" y="581" width="0.0313%" height="15" fill="rgb(229,165,39)" fg:x="2194128" fg:w="726"/><text x="94.8311%" y="591.50"></text></g><g><title>ret_from_fork (533 samples, 0.02%)</title><rect x="94.5894%" y="565" width="0.0230%" height="15" fill="rgb(241,100,24)" fg:x="2194321" fg:w="533"/><text x="94.8394%" y="575.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,191 samples, 0.05%)</title><rect x="94.5759%" y="613" width="0.0513%" height="15" fill="rgb(228,14,23)" fg:x="2194006" fg:w="1191"/><text x="94.8259%" y="623.50"></text></g><g><title>vforkChild (1,072 samples, 0.05%)</title><rect x="94.5810%" y="597" width="0.0462%" height="15" fill="rgb(247,116,52)" fg:x="2194125" fg:w="1072"/><text x="94.8310%" y="607.50"></text></g><g><title>childProcess (343 samples, 0.01%)</title><rect x="94.6124%" y="581" width="0.0148%" height="15" fill="rgb(216,149,33)" fg:x="2194854" fg:w="343"/><text x="94.8624%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (446 samples, 0.02%)</title><rect x="94.6892%" y="389" width="0.0192%" height="15" fill="rgb(238,142,29)" fg:x="2196636" fg:w="446"/><text x="94.9392%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (430 samples, 0.02%)</title><rect x="94.6899%" y="373" width="0.0185%" height="15" fill="rgb(224,83,40)" fg:x="2196652" fg:w="430"/><text x="94.9399%" y="383.50"></text></g><g><title>native_write_msr (426 samples, 0.02%)</title><rect x="94.6901%" y="357" width="0.0184%" height="15" fill="rgb(234,165,11)" fg:x="2196656" fg:w="426"/><text x="94.9401%" y="367.50"></text></g><g><title>finish_task_switch (469 samples, 0.02%)</title><rect x="94.6889%" y="405" width="0.0202%" height="15" fill="rgb(215,96,23)" fg:x="2196627" fg:w="469"/><text x="94.9389%" y="415.50"></text></g><g><title>futex_wait_queue_me (552 samples, 0.02%)</title><rect x="94.6871%" y="453" width="0.0238%" height="15" fill="rgb(233,179,26)" fg:x="2196586" fg:w="552"/><text x="94.9371%" y="463.50"></text></g><g><title>schedule (546 samples, 0.02%)</title><rect x="94.6873%" y="437" width="0.0235%" height="15" fill="rgb(225,129,33)" fg:x="2196592" fg:w="546"/><text x="94.9373%" y="447.50"></text></g><g><title>__schedule (543 samples, 0.02%)</title><rect x="94.6875%" y="421" width="0.0234%" height="15" fill="rgb(237,49,13)" fg:x="2196595" fg:w="543"/><text x="94.9375%" y="431.50"></text></g><g><title>do_syscall_64 (565 samples, 0.02%)</title><rect x="94.6866%" y="517" width="0.0244%" height="15" fill="rgb(211,3,31)" fg:x="2196574" fg:w="565"/><text x="94.9366%" y="527.50"></text></g><g><title>__x64_sys_futex (561 samples, 0.02%)</title><rect x="94.6867%" y="501" width="0.0242%" height="15" fill="rgb(216,152,19)" fg:x="2196578" fg:w="561"/><text x="94.9367%" y="511.50"></text></g><g><title>do_futex (560 samples, 0.02%)</title><rect x="94.6868%" y="485" width="0.0241%" height="15" fill="rgb(251,121,35)" fg:x="2196579" fg:w="560"/><text x="94.9368%" y="495.50"></text></g><g><title>futex_wait (557 samples, 0.02%)</title><rect x="94.6869%" y="469" width="0.0240%" height="15" fill="rgb(210,217,47)" fg:x="2196582" fg:w="557"/><text x="94.9369%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (574 samples, 0.02%)</title><rect x="94.6866%" y="533" width="0.0247%" height="15" fill="rgb(244,116,22)" fg:x="2196574" fg:w="574"/><text x="94.9366%" y="543.50"></text></g><g><title>__pthread_cond_wait (591 samples, 0.03%)</title><rect x="94.6859%" y="581" width="0.0255%" height="15" fill="rgb(228,17,21)" fg:x="2196559" fg:w="591"/><text x="94.9359%" y="591.50"></text></g><g><title>__pthread_cond_wait_common (591 samples, 0.03%)</title><rect x="94.6859%" y="565" width="0.0255%" height="15" fill="rgb(240,149,34)" fg:x="2196559" fg:w="591"/><text x="94.9359%" y="575.50"></text></g><g><title>futex_wait_cancelable (585 samples, 0.03%)</title><rect x="94.6862%" y="549" width="0.0252%" height="15" fill="rgb(208,125,47)" fg:x="2196565" fg:w="585"/><text x="94.9362%" y="559.50"></text></g><g><title>Parker::park (668 samples, 0.03%)</title><rect x="94.6835%" y="597" width="0.0288%" height="15" fill="rgb(249,186,39)" fg:x="2196502" fg:w="668"/><text x="94.9335%" y="607.50"></text></g><g><title>Unsafe_Park (680 samples, 0.03%)</title><rect x="94.6831%" y="613" width="0.0293%" height="15" fill="rgb(240,220,33)" fg:x="2196493" fg:w="680"/><text x="94.9331%" y="623.50"></text></g><g><title>__x64_sys_futex (277 samples, 0.01%)</title><rect x="94.7159%" y="533" width="0.0119%" height="15" fill="rgb(243,110,23)" fg:x="2197255" fg:w="277"/><text x="94.9659%" y="543.50"></text></g><g><title>do_futex (275 samples, 0.01%)</title><rect x="94.7160%" y="517" width="0.0119%" height="15" fill="rgb(219,163,46)" fg:x="2197257" fg:w="275"/><text x="94.9660%" y="527.50"></text></g><g><title>futex_wake (270 samples, 0.01%)</title><rect x="94.7162%" y="501" width="0.0116%" height="15" fill="rgb(216,126,30)" fg:x="2197262" fg:w="270"/><text x="94.9662%" y="511.50"></text></g><g><title>do_syscall_64 (279 samples, 0.01%)</title><rect x="94.7159%" y="549" width="0.0120%" height="15" fill="rgb(208,139,11)" fg:x="2197255" fg:w="279"/><text x="94.9659%" y="559.50"></text></g><g><title>__pthread_cond_signal (330 samples, 0.01%)</title><rect x="94.7154%" y="597" width="0.0142%" height="15" fill="rgb(213,118,36)" fg:x="2197242" fg:w="330"/><text x="94.9654%" y="607.50"></text></g><g><title>futex_wake (324 samples, 0.01%)</title><rect x="94.7156%" y="581" width="0.0140%" height="15" fill="rgb(226,43,17)" fg:x="2197248" fg:w="324"/><text x="94.9656%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (317 samples, 0.01%)</title><rect x="94.7159%" y="565" width="0.0137%" height="15" fill="rgb(254,217,4)" fg:x="2197255" fg:w="317"/><text x="94.9659%" y="575.50"></text></g><g><title>Unsafe_Unpark (401 samples, 0.02%)</title><rect x="94.7126%" y="613" width="0.0173%" height="15" fill="rgb(210,134,47)" fg:x="2197178" fg:w="401"/><text x="94.9626%" y="623.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (304 samples, 0.01%)</title><rect x="94.7436%" y="613" width="0.0131%" height="15" fill="rgb(237,24,49)" fg:x="2197896" fg:w="304"/><text x="94.9936%" y="623.50"></text></g><g><title>sysvec_apic_timer_interrupt (274 samples, 0.01%)</title><rect x="94.7448%" y="597" width="0.0118%" height="15" fill="rgb(251,39,46)" fg:x="2197926" fg:w="274"/><text x="94.9948%" y="607.50"></text></g><g><title>do_filp_open (266 samples, 0.01%)</title><rect x="94.7737%" y="517" width="0.0115%" height="15" fill="rgb(251,220,3)" fg:x="2198596" fg:w="266"/><text x="95.0237%" y="527.50"></text></g><g><title>path_openat (262 samples, 0.01%)</title><rect x="94.7739%" y="501" width="0.0113%" height="15" fill="rgb(228,105,12)" fg:x="2198600" fg:w="262"/><text x="95.0239%" y="511.50"></text></g><g><title>do_syscall_64 (329 samples, 0.01%)</title><rect x="94.7725%" y="565" width="0.0142%" height="15" fill="rgb(215,196,1)" fg:x="2198568" fg:w="329"/><text x="95.0225%" y="575.50"></text></g><g><title>__x64_sys_openat (326 samples, 0.01%)</title><rect x="94.7726%" y="549" width="0.0141%" height="15" fill="rgb(214,33,39)" fg:x="2198571" fg:w="326"/><text x="95.0226%" y="559.50"></text></g><g><title>do_sys_openat2 (326 samples, 0.01%)</title><rect x="94.7726%" y="533" width="0.0141%" height="15" fill="rgb(220,19,52)" fg:x="2198571" fg:w="326"/><text x="95.0226%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (334 samples, 0.01%)</title><rect x="94.7724%" y="581" width="0.0144%" height="15" fill="rgb(221,78,38)" fg:x="2198565" fg:w="334"/><text x="95.0224%" y="591.50"></text></g><g><title>__libc_open64 (345 samples, 0.01%)</title><rect x="94.7720%" y="597" width="0.0149%" height="15" fill="rgb(253,30,16)" fg:x="2198555" fg:w="345"/><text x="95.0220%" y="607.50"></text></g><g><title>fileOpen (487 samples, 0.02%)</title><rect x="94.7667%" y="613" width="0.0210%" height="15" fill="rgb(242,65,0)" fg:x="2198433" fg:w="487"/><text x="95.0167%" y="623.50"></text></g><g><title>[perf-23153.map] (108,580 samples, 4.68%)</title><rect x="90.1150%" y="629" width="4.6805%" height="15" fill="rgb(235,201,12)" fg:x="2090520" fg:w="108580"/><text x="90.3650%" y="639.50">[perf..</text></g><g><title>SharedRuntime::resolve_sub_helper (277 samples, 0.01%)</title><rect x="94.8017%" y="613" width="0.0119%" height="15" fill="rgb(233,161,9)" fg:x="2199244" fg:w="277"/><text x="95.0517%" y="623.50"></text></g><g><title>generic_file_buffered_read (252 samples, 0.01%)</title><rect x="94.8383%" y="469" width="0.0109%" height="15" fill="rgb(241,207,41)" fg:x="2200094" fg:w="252"/><text x="95.0883%" y="479.50"></text></g><g><title>new_sync_read (267 samples, 0.01%)</title><rect x="94.8378%" y="485" width="0.0115%" height="15" fill="rgb(212,69,46)" fg:x="2200083" fg:w="267"/><text x="95.0878%" y="495.50"></text></g><g><title>ksys_read (327 samples, 0.01%)</title><rect x="94.8357%" y="517" width="0.0141%" height="15" fill="rgb(239,69,45)" fg:x="2200034" fg:w="327"/><text x="95.0857%" y="527.50"></text></g><g><title>vfs_read (295 samples, 0.01%)</title><rect x="94.8371%" y="501" width="0.0127%" height="15" fill="rgb(242,117,48)" fg:x="2200066" fg:w="295"/><text x="95.0871%" y="511.50"></text></g><g><title>do_syscall_64 (338 samples, 0.01%)</title><rect x="94.8355%" y="533" width="0.0146%" height="15" fill="rgb(228,41,36)" fg:x="2200028" fg:w="338"/><text x="95.0855%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (347 samples, 0.01%)</title><rect x="94.8354%" y="549" width="0.0150%" height="15" fill="rgb(212,3,32)" fg:x="2200027" fg:w="347"/><text x="95.0854%" y="559.50"></text></g><g><title>__libc_read (365 samples, 0.02%)</title><rect x="94.8348%" y="581" width="0.0157%" height="15" fill="rgb(233,41,49)" fg:x="2200013" fg:w="365"/><text x="95.0848%" y="591.50"></text></g><g><title>__libc_read (364 samples, 0.02%)</title><rect x="94.8349%" y="565" width="0.0157%" height="15" fill="rgb(252,170,49)" fg:x="2200014" fg:w="364"/><text x="95.0849%" y="575.50"></text></g><g><title>handleRead (370 samples, 0.02%)</title><rect x="94.8347%" y="597" width="0.0159%" height="15" fill="rgb(229,53,26)" fg:x="2200011" fg:w="370"/><text x="95.0847%" y="607.50"></text></g><g><title>readBytes (520 samples, 0.02%)</title><rect x="94.8342%" y="613" width="0.0224%" height="15" fill="rgb(217,157,12)" fg:x="2200000" fg:w="520"/><text x="95.0842%" y="623.50"></text></g><g><title>[unknown] (1,458 samples, 0.06%)</title><rect x="94.7955%" y="629" width="0.0628%" height="15" fill="rgb(227,17,9)" fg:x="2199100" fg:w="1458"/><text x="95.0455%" y="639.50"></text></g><g><title>ret_from_fork (234 samples, 0.01%)</title><rect x="94.8587%" y="613" width="0.0101%" height="15" fill="rgb(218,84,12)" fg:x="2200567" fg:w="234"/><text x="95.1087%" y="623.50"></text></g><g><title>__GI___clone (360 samples, 0.02%)</title><rect x="94.8583%" y="629" width="0.0155%" height="15" fill="rgb(212,79,24)" fg:x="2200559" fg:w="360"/><text x="95.1083%" y="639.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (533 samples, 0.02%)</title><rect x="94.8846%" y="629" width="0.0230%" height="15" fill="rgb(217,222,37)" fg:x="2201168" fg:w="533"/><text x="95.1346%" y="639.50"></text></g><g><title>jni_GetStringLength (255 samples, 0.01%)</title><rect x="94.9077%" y="629" width="0.0110%" height="15" fill="rgb(246,208,8)" fg:x="2201704" fg:w="255"/><text x="95.1577%" y="639.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (238 samples, 0.01%)</title><rect x="94.9084%" y="613" width="0.0103%" height="15" fill="rgb(244,133,10)" fg:x="2201721" fg:w="238"/><text x="95.1584%" y="623.50"></text></g><g><title>skyframe-evalua (2,028,136 samples, 87.43%)</title><rect x="7.4958%" y="645" width="87.4258%" height="15" fill="rgb(209,219,41)" fg:x="173891" fg:w="2028136"/><text x="7.7458%" y="655.50">skyframe-evalua</text></g><g><title>__pagevec_release (418 samples, 0.02%)</title><rect x="96.0891%" y="325" width="0.0180%" height="15" fill="rgb(253,175,45)" fg:x="2229110" fg:w="418"/><text x="96.3391%" y="335.50"></text></g><g><title>release_pages (418 samples, 0.02%)</title><rect x="96.0891%" y="309" width="0.0180%" height="15" fill="rgb(235,100,37)" fg:x="2229110" fg:w="418"/><text x="96.3391%" y="319.50"></text></g><g><title>__clear_extent_bit (351 samples, 0.02%)</title><rect x="96.1101%" y="277" width="0.0151%" height="15" fill="rgb(225,87,19)" fg:x="2229597" fg:w="351"/><text x="96.3601%" y="287.50"></text></g><g><title>btrfs_releasepage (454 samples, 0.02%)</title><rect x="96.1074%" y="309" width="0.0196%" height="15" fill="rgb(217,152,17)" fg:x="2229536" fg:w="454"/><text x="96.3574%" y="319.50"></text></g><g><title>try_release_extent_mapping (410 samples, 0.02%)</title><rect x="96.1093%" y="293" width="0.0177%" height="15" fill="rgb(235,72,13)" fg:x="2229580" fg:w="410"/><text x="96.3593%" y="303.50"></text></g><g><title>invalidate_inode_page (479 samples, 0.02%)</title><rect x="96.1071%" y="325" width="0.0206%" height="15" fill="rgb(233,140,18)" fg:x="2229529" fg:w="479"/><text x="96.3571%" y="335.50"></text></g><g><title>__delete_from_page_cache (283 samples, 0.01%)</title><rect x="96.1334%" y="293" width="0.0122%" height="15" fill="rgb(207,212,28)" fg:x="2230138" fg:w="283"/><text x="96.3834%" y="303.50"></text></g><g><title>remove_mapping (390 samples, 0.02%)</title><rect x="96.1306%" y="325" width="0.0168%" height="15" fill="rgb(220,130,25)" fg:x="2230073" fg:w="390"/><text x="96.3806%" y="335.50"></text></g><g><title>__remove_mapping (383 samples, 0.02%)</title><rect x="96.1309%" y="309" width="0.0165%" height="15" fill="rgb(205,55,34)" fg:x="2230080" fg:w="383"/><text x="96.3809%" y="319.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (1,438 samples, 0.06%)</title><rect x="96.0861%" y="517" width="0.0620%" height="15" fill="rgb(237,54,35)" fg:x="2229040" fg:w="1438"/><text x="96.3361%" y="527.50"></text></g><g><title>try_to_free_pages (1,438 samples, 0.06%)</title><rect x="96.0861%" y="501" width="0.0620%" height="15" fill="rgb(208,67,23)" fg:x="2229040" fg:w="1438"/><text x="96.3361%" y="511.50"></text></g><g><title>do_try_to_free_pages (1,438 samples, 0.06%)</title><rect x="96.0861%" y="485" width="0.0620%" height="15" fill="rgb(206,207,50)" fg:x="2229040" fg:w="1438"/><text x="96.3361%" y="495.50"></text></g><g><title>shrink_node (1,438 samples, 0.06%)</title><rect x="96.0861%" y="469" width="0.0620%" height="15" fill="rgb(213,211,42)" fg:x="2229040" fg:w="1438"/><text x="96.3361%" y="479.50"></text></g><g><title>shrink_slab (1,428 samples, 0.06%)</title><rect x="96.0865%" y="453" width="0.0616%" height="15" fill="rgb(252,197,50)" fg:x="2229050" fg:w="1428"/><text x="96.3365%" y="463.50"></text></g><g><title>do_shrink_slab (1,428 samples, 0.06%)</title><rect x="96.0865%" y="437" width="0.0616%" height="15" fill="rgb(251,211,41)" fg:x="2229050" fg:w="1428"/><text x="96.3365%" y="447.50"></text></g><g><title>super_cache_scan (1,428 samples, 0.06%)</title><rect x="96.0865%" y="421" width="0.0616%" height="15" fill="rgb(229,211,5)" fg:x="2229050" fg:w="1428"/><text x="96.3365%" y="431.50"></text></g><g><title>prune_icache_sb (1,425 samples, 0.06%)</title><rect x="96.0866%" y="405" width="0.0614%" height="15" fill="rgb(239,36,31)" fg:x="2229053" fg:w="1425"/><text x="96.3366%" y="415.50"></text></g><g><title>list_lru_walk_one (1,425 samples, 0.06%)</title><rect x="96.0866%" y="389" width="0.0614%" height="15" fill="rgb(248,67,31)" fg:x="2229053" fg:w="1425"/><text x="96.3366%" y="399.50"></text></g><g><title>__list_lru_walk_one (1,425 samples, 0.06%)</title><rect x="96.0866%" y="373" width="0.0614%" height="15" fill="rgb(249,55,44)" fg:x="2229053" fg:w="1425"/><text x="96.3366%" y="383.50"></text></g><g><title>inode_lru_isolate (1,425 samples, 0.06%)</title><rect x="96.0866%" y="357" width="0.0614%" height="15" fill="rgb(216,82,12)" fg:x="2229053" fg:w="1425"/><text x="96.3366%" y="367.50"></text></g><g><title>__invalidate_mapping_pages (1,425 samples, 0.06%)</title><rect x="96.0866%" y="341" width="0.0614%" height="15" fill="rgb(242,174,1)" fg:x="2229053" fg:w="1425"/><text x="96.3366%" y="351.50"></text></g><g><title>kernel_init_free_pages (395 samples, 0.02%)</title><rect x="96.1635%" y="485" width="0.0170%" height="15" fill="rgb(208,120,29)" fg:x="2230836" fg:w="395"/><text x="96.4135%" y="495.50"></text></g><g><title>clear_page_erms (377 samples, 0.02%)</title><rect x="96.1643%" y="469" width="0.0163%" height="15" fill="rgb(221,105,43)" fg:x="2230854" fg:w="377"/><text x="96.4143%" y="479.50"></text></g><g><title>prep_new_page (424 samples, 0.02%)</title><rect x="96.1627%" y="501" width="0.0183%" height="15" fill="rgb(234,124,22)" fg:x="2230817" fg:w="424"/><text x="96.4127%" y="511.50"></text></g><g><title>get_page_from_freelist (694 samples, 0.03%)</title><rect x="96.1511%" y="517" width="0.0299%" height="15" fill="rgb(212,23,30)" fg:x="2230549" fg:w="694"/><text x="96.4011%" y="527.50"></text></g><g><title>__alloc_pages_nodemask (2,265 samples, 0.10%)</title><rect x="96.0835%" y="533" width="0.0976%" height="15" fill="rgb(219,122,53)" fg:x="2228981" fg:w="2265"/><text x="96.3335%" y="543.50"></text></g><g><title>alloc_pages_vma (2,316 samples, 0.10%)</title><rect x="96.0821%" y="549" width="0.0998%" height="15" fill="rgb(248,84,24)" fg:x="2228947" fg:w="2316"/><text x="96.3321%" y="559.50"></text></g><g><title>page_add_file_rmap (287 samples, 0.01%)</title><rect x="96.2273%" y="517" width="0.0124%" height="15" fill="rgb(245,115,18)" fg:x="2232317" fg:w="287"/><text x="96.4773%" y="527.50"></text></g><g><title>alloc_set_pte (472 samples, 0.02%)</title><rect x="96.2208%" y="533" width="0.0203%" height="15" fill="rgb(227,176,51)" fg:x="2232166" fg:w="472"/><text x="96.4708%" y="543.50"></text></g><g><title>filemap_map_pages (1,212 samples, 0.05%)</title><rect x="96.1982%" y="549" width="0.0522%" height="15" fill="rgb(229,63,42)" fg:x="2231642" fg:w="1212"/><text x="96.4482%" y="559.50"></text></g><g><title>lru_cache_add (262 samples, 0.01%)</title><rect x="96.2509%" y="549" width="0.0113%" height="15" fill="rgb(247,202,24)" fg:x="2232864" fg:w="262"/><text x="96.5009%" y="559.50"></text></g><g><title>pagevec_lru_move_fn (232 samples, 0.01%)</title><rect x="96.2522%" y="533" width="0.0100%" height="15" fill="rgb(244,173,20)" fg:x="2232894" fg:w="232"/><text x="96.5022%" y="543.50"></text></g><g><title>mem_cgroup_charge (290 samples, 0.01%)</title><rect x="96.2624%" y="549" width="0.0125%" height="15" fill="rgb(242,81,47)" fg:x="2233130" fg:w="290"/><text x="96.5124%" y="559.50"></text></g><g><title>handle_mm_fault (5,442 samples, 0.23%)</title><rect x="96.0520%" y="565" width="0.2346%" height="15" fill="rgb(231,185,54)" fg:x="2228249" fg:w="5442"/><text x="96.3020%" y="575.50"></text></g><g><title>do_user_addr_fault (5,763 samples, 0.25%)</title><rect x="96.0412%" y="581" width="0.2484%" height="15" fill="rgb(243,55,32)" fg:x="2228000" fg:w="5763"/><text x="96.2912%" y="591.50"></text></g><g><title>exc_page_fault (5,803 samples, 0.25%)</title><rect x="96.0396%" y="597" width="0.2501%" height="15" fill="rgb(208,167,19)" fg:x="2227962" fg:w="5803"/><text x="96.2896%" y="607.50"></text></g><g><title>asm_exc_page_fault (5,895 samples, 0.25%)</title><rect x="96.0375%" y="613" width="0.2541%" height="15" fill="rgb(231,72,35)" fg:x="2227913" fg:w="5895"/><text x="96.2875%" y="623.50"></text></g><g><title>entry_SYSCALL_64 (721 samples, 0.03%)</title><rect x="96.2996%" y="613" width="0.0311%" height="15" fill="rgb(250,173,51)" fg:x="2233993" fg:w="721"/><text x="96.5496%" y="623.50"></text></g><g><title>_copy_to_user (337 samples, 0.01%)</title><rect x="96.3675%" y="549" width="0.0145%" height="15" fill="rgb(209,5,22)" fg:x="2235569" fg:w="337"/><text x="96.6175%" y="559.50"></text></g><g><title>copy_user_enhanced_fast_string (299 samples, 0.01%)</title><rect x="96.3691%" y="533" width="0.0129%" height="15" fill="rgb(250,174,19)" fg:x="2235607" fg:w="299"/><text x="96.6191%" y="543.50"></text></g><g><title>cp_new_stat (605 samples, 0.03%)</title><rect x="96.3625%" y="565" width="0.0261%" height="15" fill="rgb(217,3,49)" fg:x="2235453" fg:w="605"/><text x="96.6125%" y="575.50"></text></g><g><title>__fget_light (233 samples, 0.01%)</title><rect x="96.3901%" y="549" width="0.0100%" height="15" fill="rgb(218,225,5)" fg:x="2236094" fg:w="233"/><text x="96.6401%" y="559.50"></text></g><g><title>btrfs_getattr (1,272 samples, 0.05%)</title><rect x="96.4002%" y="549" width="0.0548%" height="15" fill="rgb(236,89,11)" fg:x="2236327" fg:w="1272"/><text x="96.6502%" y="559.50"></text></g><g><title>security_inode_getattr (542 samples, 0.02%)</title><rect x="96.4585%" y="549" width="0.0234%" height="15" fill="rgb(206,33,28)" fg:x="2237681" fg:w="542"/><text x="96.7085%" y="559.50"></text></g><g><title>tomoyo_path_perm (385 samples, 0.02%)</title><rect x="96.4653%" y="533" width="0.0166%" height="15" fill="rgb(241,56,42)" fg:x="2237838" fg:w="385"/><text x="96.7153%" y="543.50"></text></g><g><title>__do_sys_newfstat (2,998 samples, 0.13%)</title><rect x="96.3613%" y="581" width="0.1292%" height="15" fill="rgb(222,44,11)" fg:x="2235424" fg:w="2998"/><text x="96.6113%" y="591.50"></text></g><g><title>vfs_fstat (2,364 samples, 0.10%)</title><rect x="96.3886%" y="565" width="0.1019%" height="15" fill="rgb(234,111,20)" fg:x="2236058" fg:w="2364"/><text x="96.6386%" y="575.50"></text></g><g><title>fput_many (369 samples, 0.02%)</title><rect x="96.5109%" y="549" width="0.0159%" height="15" fill="rgb(237,77,6)" fg:x="2238895" fg:w="369"/><text x="96.7609%" y="559.50"></text></g><g><title>task_work_add (245 samples, 0.01%)</title><rect x="96.5162%" y="533" width="0.0106%" height="15" fill="rgb(235,111,23)" fg:x="2239019" fg:w="245"/><text x="96.7662%" y="543.50"></text></g><g><title>__x64_sys_close (784 samples, 0.03%)</title><rect x="96.4962%" y="581" width="0.0338%" height="15" fill="rgb(251,135,29)" fg:x="2238555" fg:w="784"/><text x="96.7462%" y="591.50"></text></g><g><title>filp_close (533 samples, 0.02%)</title><rect x="96.5070%" y="565" width="0.0230%" height="15" fill="rgb(217,57,1)" fg:x="2238806" fg:w="533"/><text x="96.7570%" y="575.50"></text></g><g><title>bprm_execve (291 samples, 0.01%)</title><rect x="96.5302%" y="549" width="0.0125%" height="15" fill="rgb(249,119,31)" fg:x="2239343" fg:w="291"/><text x="96.7802%" y="559.50"></text></g><g><title>__x64_sys_execve (332 samples, 0.01%)</title><rect x="96.5301%" y="581" width="0.0143%" height="15" fill="rgb(233,164,33)" fg:x="2239342" fg:w="332"/><text x="96.7801%" y="591.50"></text></g><g><title>do_execveat_common (331 samples, 0.01%)</title><rect x="96.5302%" y="565" width="0.0143%" height="15" fill="rgb(250,217,43)" fg:x="2239343" fg:w="331"/><text x="96.7802%" y="575.50"></text></g><g><title>dequeue_task_fair (250 samples, 0.01%)</title><rect x="96.5691%" y="485" width="0.0108%" height="15" fill="rgb(232,154,50)" fg:x="2240245" fg:w="250"/><text x="96.8191%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (8,545 samples, 0.37%)</title><rect x="96.5857%" y="469" width="0.3683%" height="15" fill="rgb(227,190,8)" fg:x="2240631" fg:w="8545"/><text x="96.8357%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (8,415 samples, 0.36%)</title><rect x="96.5913%" y="453" width="0.3627%" height="15" fill="rgb(209,217,32)" fg:x="2240761" fg:w="8415"/><text x="96.8413%" y="463.50"></text></g><g><title>native_write_msr (8,356 samples, 0.36%)</title><rect x="96.5939%" y="437" width="0.3602%" height="15" fill="rgb(243,203,50)" fg:x="2240820" fg:w="8356"/><text x="96.8439%" y="447.50"></text></g><g><title>finish_task_switch (8,958 samples, 0.39%)</title><rect x="96.5798%" y="485" width="0.3861%" height="15" fill="rgb(232,152,27)" fg:x="2240495" fg:w="8958"/><text x="96.8298%" y="495.50"></text></g><g><title>futex_wait_queue_me (9,880 samples, 0.43%)</title><rect x="96.5554%" y="533" width="0.4259%" height="15" fill="rgb(240,34,29)" fg:x="2239927" fg:w="9880"/><text x="96.8054%" y="543.50"></text></g><g><title>schedule (9,790 samples, 0.42%)</title><rect x="96.5592%" y="517" width="0.4220%" height="15" fill="rgb(215,185,52)" fg:x="2240017" fg:w="9790"/><text x="96.8092%" y="527.50"></text></g><g><title>__schedule (9,774 samples, 0.42%)</title><rect x="96.5599%" y="501" width="0.4213%" height="15" fill="rgb(240,89,49)" fg:x="2240033" fg:w="9774"/><text x="96.8099%" y="511.50"></text></g><g><title>futex_wait (10,054 samples, 0.43%)</title><rect x="96.5526%" y="549" width="0.4334%" height="15" fill="rgb(225,12,52)" fg:x="2239863" fg:w="10054"/><text x="96.8026%" y="559.50"></text></g><g><title>__x64_sys_futex (10,682 samples, 0.46%)</title><rect x="96.5499%" y="581" width="0.4605%" height="15" fill="rgb(239,128,45)" fg:x="2239800" fg:w="10682"/><text x="96.7999%" y="591.50"></text></g><g><title>do_futex (10,649 samples, 0.46%)</title><rect x="96.5513%" y="565" width="0.4590%" height="15" fill="rgb(211,78,47)" fg:x="2239833" fg:w="10649"/><text x="96.8013%" y="575.50"></text></g><g><title>futex_wake (565 samples, 0.02%)</title><rect x="96.9860%" y="549" width="0.0244%" height="15" fill="rgb(232,31,21)" fg:x="2249917" fg:w="565"/><text x="97.2360%" y="559.50"></text></g><g><title>wake_up_q (495 samples, 0.02%)</title><rect x="96.9890%" y="533" width="0.0213%" height="15" fill="rgb(222,168,14)" fg:x="2249987" fg:w="495"/><text x="97.2390%" y="543.50"></text></g><g><title>try_to_wake_up (489 samples, 0.02%)</title><rect x="96.9893%" y="517" width="0.0211%" height="15" fill="rgb(209,128,24)" fg:x="2249993" fg:w="489"/><text x="97.2393%" y="527.50"></text></g><g><title>tlb_finish_mmu (469 samples, 0.02%)</title><rect x="97.0295%" y="517" width="0.0202%" height="15" fill="rgb(249,35,13)" fg:x="2250927" fg:w="469"/><text x="97.2795%" y="527.50"></text></g><g><title>release_pages (343 samples, 0.01%)</title><rect x="97.0350%" y="501" width="0.0148%" height="15" fill="rgb(218,7,2)" fg:x="2251053" fg:w="343"/><text x="97.2850%" y="511.50"></text></g><g><title>unmap_page_range (285 samples, 0.01%)</title><rect x="97.0504%" y="501" width="0.0123%" height="15" fill="rgb(238,107,27)" fg:x="2251412" fg:w="285"/><text x="97.3004%" y="511.50"></text></g><g><title>unmap_region (906 samples, 0.04%)</title><rect x="97.0239%" y="533" width="0.0391%" height="15" fill="rgb(217,88,38)" fg:x="2250797" fg:w="906"/><text x="97.2739%" y="543.50"></text></g><g><title>unmap_vmas (299 samples, 0.01%)</title><rect x="97.0501%" y="517" width="0.0129%" height="15" fill="rgb(230,207,0)" fg:x="2251404" fg:w="299"/><text x="97.3001%" y="527.50"></text></g><g><title>__do_munmap (1,140 samples, 0.05%)</title><rect x="97.0139%" y="549" width="0.0491%" height="15" fill="rgb(249,64,54)" fg:x="2250565" fg:w="1140"/><text x="97.2639%" y="559.50"></text></g><g><title>__vm_munmap (1,156 samples, 0.05%)</title><rect x="97.0137%" y="565" width="0.0498%" height="15" fill="rgb(231,7,11)" fg:x="2250560" fg:w="1156"/><text x="97.2637%" y="575.50"></text></g><g><title>__x64_sys_munmap (1,163 samples, 0.05%)</title><rect x="97.0137%" y="581" width="0.0501%" height="15" fill="rgb(205,149,21)" fg:x="2250559" fg:w="1163"/><text x="97.2637%" y="591.50"></text></g><g><title>do_filp_open (486 samples, 0.02%)</title><rect x="97.0644%" y="549" width="0.0209%" height="15" fill="rgb(215,126,34)" fg:x="2251737" fg:w="486"/><text x="97.3144%" y="559.50"></text></g><g><title>path_openat (486 samples, 0.02%)</title><rect x="97.0644%" y="533" width="0.0209%" height="15" fill="rgb(241,132,45)" fg:x="2251737" fg:w="486"/><text x="97.3144%" y="543.50"></text></g><g><title>__x64_sys_open (515 samples, 0.02%)</title><rect x="97.0641%" y="581" width="0.0222%" height="15" fill="rgb(252,69,32)" fg:x="2251728" fg:w="515"/><text x="97.3141%" y="591.50"></text></g><g><title>do_sys_openat2 (514 samples, 0.02%)</title><rect x="97.0641%" y="565" width="0.0222%" height="15" fill="rgb(232,204,19)" fg:x="2251729" fg:w="514"/><text x="97.3141%" y="575.50"></text></g><g><title>__alloc_fd (450 samples, 0.02%)</title><rect x="97.0954%" y="549" width="0.0194%" height="15" fill="rgb(249,15,47)" fg:x="2252456" fg:w="450"/><text x="97.3454%" y="559.50"></text></g><g><title>__slab_alloc (368 samples, 0.02%)</title><rect x="97.1829%" y="469" width="0.0159%" height="15" fill="rgb(209,227,23)" fg:x="2254486" fg:w="368"/><text x="97.4329%" y="479.50"></text></g><g><title>___slab_alloc (358 samples, 0.02%)</title><rect x="97.1834%" y="453" width="0.0154%" height="15" fill="rgb(248,92,24)" fg:x="2254496" fg:w="358"/><text x="97.4334%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (835 samples, 0.04%)</title><rect x="97.1989%" y="469" width="0.0360%" height="15" fill="rgb(247,59,2)" fg:x="2254857" fg:w="835"/><text x="97.4489%" y="479.50"></text></g><g><title>get_obj_cgroup_from_current (509 samples, 0.02%)</title><rect x="97.2460%" y="453" width="0.0219%" height="15" fill="rgb(221,30,5)" fg:x="2255948" fg:w="509"/><text x="97.4960%" y="463.50"></text></g><g><title>obj_cgroup_charge (250 samples, 0.01%)</title><rect x="97.2679%" y="453" width="0.0108%" height="15" fill="rgb(208,108,53)" fg:x="2256457" fg:w="250"/><text x="97.5179%" y="463.50"></text></g><g><title>kmem_cache_alloc (2,591 samples, 0.11%)</title><rect x="97.1673%" y="485" width="0.1117%" height="15" fill="rgb(211,183,26)" fg:x="2254123" fg:w="2591"/><text x="97.4173%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (895 samples, 0.04%)</title><rect x="97.2404%" y="469" width="0.0386%" height="15" fill="rgb(232,132,4)" fg:x="2255819" fg:w="895"/><text x="97.4904%" y="479.50"></text></g><g><title>apparmor_file_alloc_security (424 samples, 0.02%)</title><rect x="97.2826%" y="469" width="0.0183%" height="15" fill="rgb(253,128,37)" fg:x="2256798" fg:w="424"/><text x="97.5326%" y="479.50"></text></g><g><title>__alloc_file (3,701 samples, 0.16%)</title><rect x="97.1576%" y="501" width="0.1595%" height="15" fill="rgb(221,58,24)" fg:x="2253899" fg:w="3701"/><text x="97.4076%" y="511.50"></text></g><g><title>security_file_alloc (886 samples, 0.04%)</title><rect x="97.2790%" y="485" width="0.0382%" height="15" fill="rgb(230,54,45)" fg:x="2256714" fg:w="886"/><text x="97.5290%" y="495.50"></text></g><g><title>kmem_cache_alloc (378 samples, 0.02%)</title><rect x="97.3009%" y="469" width="0.0163%" height="15" fill="rgb(254,21,18)" fg:x="2257222" fg:w="378"/><text x="97.5509%" y="479.50"></text></g><g><title>alloc_empty_file (3,787 samples, 0.16%)</title><rect x="97.1557%" y="517" width="0.1632%" height="15" fill="rgb(221,108,0)" fg:x="2253854" fg:w="3787"/><text x="97.4057%" y="527.50"></text></g><g><title>errseq_sample (394 samples, 0.02%)</title><rect x="97.3405%" y="501" width="0.0170%" height="15" fill="rgb(206,95,1)" fg:x="2258142" fg:w="394"/><text x="97.5905%" y="511.50"></text></g><g><title>apparmor_file_open (345 samples, 0.01%)</title><rect x="97.3749%" y="485" width="0.0149%" height="15" fill="rgb(237,52,5)" fg:x="2258939" fg:w="345"/><text x="97.6249%" y="495.50"></text></g><g><title>tomoyo_check_open_permission (654 samples, 0.03%)</title><rect x="97.3898%" y="485" width="0.0282%" height="15" fill="rgb(218,150,34)" fg:x="2259284" fg:w="654"/><text x="97.6398%" y="495.50"></text></g><g><title>security_file_open (1,117 samples, 0.05%)</title><rect x="97.3721%" y="501" width="0.0481%" height="15" fill="rgb(235,194,28)" fg:x="2258875" fg:w="1117"/><text x="97.6221%" y="511.50"></text></g><g><title>do_dentry_open (2,340 samples, 0.10%)</title><rect x="97.3197%" y="517" width="0.1009%" height="15" fill="rgb(245,92,18)" fg:x="2257658" fg:w="2340"/><text x="97.5697%" y="527.50"></text></g><g><title>btrfs_dentry_delete (510 samples, 0.02%)</title><rect x="97.4237%" y="501" width="0.0220%" height="15" fill="rgb(253,203,53)" fg:x="2260070" fg:w="510"/><text x="97.6737%" y="511.50"></text></g><g><title>dput (685 samples, 0.03%)</title><rect x="97.4211%" y="517" width="0.0295%" height="15" fill="rgb(249,185,47)" fg:x="2260010" fg:w="685"/><text x="97.6711%" y="527.50"></text></g><g><title>inode_permission.part.0 (4,497 samples, 0.19%)</title><rect x="97.6547%" y="501" width="0.1938%" height="15" fill="rgb(252,194,52)" fg:x="2265431" fg:w="4497"/><text x="97.9047%" y="511.50"></text></g><g><title>generic_permission (1,459 samples, 0.06%)</title><rect x="97.7857%" y="485" width="0.0629%" height="15" fill="rgb(210,53,36)" fg:x="2268469" fg:w="1459"/><text x="98.0357%" y="495.50"></text></g><g><title>security_inode_permission (453 samples, 0.02%)</title><rect x="97.8486%" y="501" width="0.0195%" height="15" fill="rgb(237,37,25)" fg:x="2269928" fg:w="453"/><text x="98.0986%" y="511.50"></text></g><g><title>dput (386 samples, 0.02%)</title><rect x="97.9284%" y="485" width="0.0166%" height="15" fill="rgb(242,116,27)" fg:x="2271779" fg:w="386"/><text x="98.1784%" y="495.50"></text></g><g><title>_raw_spin_lock (2,691 samples, 0.12%)</title><rect x="98.0782%" y="453" width="0.1160%" height="15" fill="rgb(213,185,26)" fg:x="2275254" fg:w="2691"/><text x="98.3282%" y="463.50"></text></g><g><title>__d_lookup (4,684 samples, 0.20%)</title><rect x="97.9940%" y="469" width="0.2019%" height="15" fill="rgb(225,204,8)" fg:x="2273302" fg:w="4684"/><text x="98.2440%" y="479.50"></text></g><g><title>__d_lookup_rcu (2,821 samples, 0.12%)</title><rect x="98.1960%" y="469" width="0.1216%" height="15" fill="rgb(254,111,37)" fg:x="2277986" fg:w="2821"/><text x="98.4460%" y="479.50"></text></g><g><title>lookup_fast (8,648 samples, 0.37%)</title><rect x="97.9450%" y="485" width="0.3728%" height="15" fill="rgb(242,35,9)" fg:x="2272165" fg:w="8648"/><text x="98.1950%" y="495.50"></text></g><g><title>__traverse_mounts (274 samples, 0.01%)</title><rect x="98.4226%" y="469" width="0.0118%" height="15" fill="rgb(232,138,49)" fg:x="2283243" fg:w="274"/><text x="98.6726%" y="479.50"></text></g><g><title>_cond_resched (293 samples, 0.01%)</title><rect x="98.4583%" y="453" width="0.0126%" height="15" fill="rgb(247,56,4)" fg:x="2284071" fg:w="293"/><text x="98.7083%" y="463.50"></text></g><g><title>dput (2,234 samples, 0.10%)</title><rect x="98.4417%" y="469" width="0.0963%" height="15" fill="rgb(226,179,17)" fg:x="2283687" fg:w="2234"/><text x="98.6917%" y="479.50"></text></g><g><title>lockref_put_or_lock (1,556 samples, 0.07%)</title><rect x="98.4709%" y="453" width="0.0671%" height="15" fill="rgb(216,163,45)" fg:x="2284365" fg:w="1556"/><text x="98.7209%" y="463.50"></text></g><g><title>dput (412 samples, 0.02%)</title><rect x="98.5399%" y="453" width="0.0178%" height="15" fill="rgb(211,157,3)" fg:x="2285964" fg:w="412"/><text x="98.7899%" y="463.50"></text></g><g><title>lockref_put_or_lock (330 samples, 0.01%)</title><rect x="98.5434%" y="437" width="0.0142%" height="15" fill="rgb(234,44,20)" fg:x="2286046" fg:w="330"/><text x="98.7934%" y="447.50"></text></g><g><title>nd_jump_root (705 samples, 0.03%)</title><rect x="98.5380%" y="469" width="0.0304%" height="15" fill="rgb(254,138,23)" fg:x="2285922" fg:w="705"/><text x="98.7880%" y="479.50"></text></g><g><title>do_read_cache_page (673 samples, 0.03%)</title><rect x="98.5720%" y="453" width="0.0290%" height="15" fill="rgb(206,119,39)" fg:x="2286709" fg:w="673"/><text x="98.8220%" y="463.50"></text></g><g><title>pagecache_get_page (562 samples, 0.02%)</title><rect x="98.5768%" y="437" width="0.0242%" height="15" fill="rgb(231,105,52)" fg:x="2286820" fg:w="562"/><text x="98.8268%" y="447.50"></text></g><g><title>find_get_entry (495 samples, 0.02%)</title><rect x="98.5796%" y="421" width="0.0213%" height="15" fill="rgb(250,20,5)" fg:x="2286887" fg:w="495"/><text x="98.8296%" y="431.50"></text></g><g><title>page_get_link (758 samples, 0.03%)</title><rect x="98.5684%" y="469" width="0.0327%" height="15" fill="rgb(215,198,30)" fg:x="2286627" fg:w="758"/><text x="98.8184%" y="479.50"></text></g><g><title>touch_atime (432 samples, 0.02%)</title><rect x="98.6018%" y="469" width="0.0186%" height="15" fill="rgb(246,142,8)" fg:x="2287401" fg:w="432"/><text x="98.8518%" y="479.50"></text></g><g><title>__legitimize_mnt (233 samples, 0.01%)</title><rect x="98.6276%" y="437" width="0.0100%" height="15" fill="rgb(243,26,38)" fg:x="2288000" fg:w="233"/><text x="98.8776%" y="447.50"></text></g><g><title>__legitimize_path (674 samples, 0.03%)</title><rect x="98.6234%" y="453" width="0.0291%" height="15" fill="rgb(205,133,28)" fg:x="2287903" fg:w="674"/><text x="98.8734%" y="463.50"></text></g><g><title>lockref_get_not_dead (344 samples, 0.01%)</title><rect x="98.6377%" y="437" width="0.0148%" height="15" fill="rgb(212,34,0)" fg:x="2288233" fg:w="344"/><text x="98.8877%" y="447.50"></text></g><g><title>__legitimize_mnt (396 samples, 0.02%)</title><rect x="98.6571%" y="421" width="0.0171%" height="15" fill="rgb(251,226,22)" fg:x="2288685" fg:w="396"/><text x="98.9071%" y="431.50"></text></g><g><title>legitimize_links (808 samples, 0.03%)</title><rect x="98.6525%" y="453" width="0.0348%" height="15" fill="rgb(252,119,9)" fg:x="2288578" fg:w="808"/><text x="98.9025%" y="463.50"></text></g><g><title>__legitimize_path (735 samples, 0.03%)</title><rect x="98.6557%" y="437" width="0.0317%" height="15" fill="rgb(213,150,50)" fg:x="2288651" fg:w="735"/><text x="98.9057%" y="447.50"></text></g><g><title>lockref_get_not_dead (304 samples, 0.01%)</title><rect x="98.6743%" y="421" width="0.0131%" height="15" fill="rgb(212,24,39)" fg:x="2289082" fg:w="304"/><text x="98.9243%" y="431.50"></text></g><g><title>link_path_walk.part.0 (28,707 samples, 1.24%)</title><rect x="97.4507%" y="517" width="1.2375%" height="15" fill="rgb(213,46,39)" fg:x="2260697" fg:w="28707"/><text x="97.7007%" y="527.50"></text></g><g><title>walk_component (19,023 samples, 0.82%)</title><rect x="97.8681%" y="501" width="0.8200%" height="15" fill="rgb(239,106,12)" fg:x="2270381" fg:w="19023"/><text x="98.1181%" y="511.50"></text></g><g><title>step_into (8,377 samples, 0.36%)</title><rect x="98.3270%" y="485" width="0.3611%" height="15" fill="rgb(249,229,21)" fg:x="2281027" fg:w="8377"/><text x="98.5770%" y="495.50"></text></g><g><title>try_to_unlazy (1,571 samples, 0.07%)</title><rect x="98.6204%" y="469" width="0.0677%" height="15" fill="rgb(212,158,3)" fg:x="2287833" fg:w="1571"/><text x="98.8704%" y="479.50"></text></g><g><title>__d_lookup (1,369 samples, 0.06%)</title><rect x="98.6916%" y="501" width="0.0590%" height="15" fill="rgb(253,26,48)" fg:x="2289484" fg:w="1369"/><text x="98.9416%" y="511.50"></text></g><g><title>lookup_fast (3,014 samples, 0.13%)</title><rect x="98.6881%" y="517" width="0.1299%" height="15" fill="rgb(238,178,20)" fg:x="2289404" fg:w="3014"/><text x="98.9381%" y="527.50"></text></g><g><title>__d_lookup_rcu (1,565 samples, 0.07%)</title><rect x="98.7506%" y="501" width="0.0675%" height="15" fill="rgb(208,86,15)" fg:x="2290853" fg:w="1565"/><text x="99.0006%" y="511.50"></text></g><g><title>may_open (796 samples, 0.03%)</title><rect x="98.8181%" y="517" width="0.0343%" height="15" fill="rgb(239,42,53)" fg:x="2292418" fg:w="796"/><text x="99.0681%" y="527.50"></text></g><g><title>__fget_light (295 samples, 0.01%)</title><rect x="98.8672%" y="501" width="0.0127%" height="15" fill="rgb(245,226,8)" fg:x="2293557" fg:w="295"/><text x="99.1172%" y="511.50"></text></g><g><title>__fget_files (254 samples, 0.01%)</title><rect x="98.8689%" y="485" width="0.0109%" height="15" fill="rgb(216,176,32)" fg:x="2293598" fg:w="254"/><text x="99.1189%" y="495.50"></text></g><g><title>path_init (625 samples, 0.03%)</title><rect x="98.8571%" y="517" width="0.0269%" height="15" fill="rgb(231,186,21)" fg:x="2293323" fg:w="625"/><text x="99.1071%" y="527.50"></text></g><g><title>atime_needs_update (293 samples, 0.01%)</title><rect x="98.9559%" y="501" width="0.0126%" height="15" fill="rgb(205,95,49)" fg:x="2295616" fg:w="293"/><text x="99.2059%" y="511.50"></text></g><g><title>add_to_page_cache_lru (288 samples, 0.01%)</title><rect x="98.9989%" y="469" width="0.0124%" height="15" fill="rgb(217,145,8)" fg:x="2296614" fg:w="288"/><text x="99.2489%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (263 samples, 0.01%)</title><rect x="99.0477%" y="341" width="0.0113%" height="15" fill="rgb(239,144,48)" fg:x="2297745" fg:w="263"/><text x="99.2977%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (237 samples, 0.01%)</title><rect x="99.0488%" y="325" width="0.0102%" height="15" fill="rgb(214,189,23)" fg:x="2297771" fg:w="237"/><text x="99.2988%" y="335.50"></text></g><g><title>prepare_to_wait_event (295 samples, 0.01%)</title><rect x="99.0465%" y="357" width="0.0127%" height="15" fill="rgb(229,157,17)" fg:x="2297717" fg:w="295"/><text x="99.2965%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (925 samples, 0.04%)</title><rect x="99.0736%" y="309" width="0.0399%" height="15" fill="rgb(230,5,48)" fg:x="2298346" fg:w="925"/><text x="99.3236%" y="319.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (910 samples, 0.04%)</title><rect x="99.0742%" y="293" width="0.0392%" height="15" fill="rgb(224,156,48)" fg:x="2298361" fg:w="910"/><text x="99.3242%" y="303.50"></text></g><g><title>native_write_msr (902 samples, 0.04%)</title><rect x="99.0746%" y="277" width="0.0389%" height="15" fill="rgb(223,14,29)" fg:x="2298369" fg:w="902"/><text x="99.3246%" y="287.50"></text></g><g><title>finish_task_switch (974 samples, 0.04%)</title><rect x="99.0727%" y="325" width="0.0420%" height="15" fill="rgb(229,96,36)" fg:x="2298324" fg:w="974"/><text x="99.3227%" y="335.50"></text></g><g><title>__btrfs_tree_read_lock (1,813 samples, 0.08%)</title><rect x="99.0408%" y="373" width="0.0782%" height="15" fill="rgb(231,102,53)" fg:x="2297585" fg:w="1813"/><text x="99.2908%" y="383.50"></text></g><g><title>schedule (1,169 samples, 0.05%)</title><rect x="99.0686%" y="357" width="0.0504%" height="15" fill="rgb(210,77,38)" fg:x="2298229" fg:w="1169"/><text x="99.3186%" y="367.50"></text></g><g><title>__schedule (1,166 samples, 0.05%)</title><rect x="99.0687%" y="341" width="0.0503%" height="15" fill="rgb(235,131,6)" fg:x="2298232" fg:w="1166"/><text x="99.3187%" y="351.50"></text></g><g><title>__btrfs_read_lock_root_node (1,868 samples, 0.08%)</title><rect x="99.0406%" y="389" width="0.0805%" height="15" fill="rgb(252,55,38)" fg:x="2297580" fg:w="1868"/><text x="99.2906%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (235 samples, 0.01%)</title><rect x="99.1236%" y="325" width="0.0101%" height="15" fill="rgb(246,38,14)" fg:x="2299507" fg:w="235"/><text x="99.3736%" y="335.50"></text></g><g><title>finish_task_switch (248 samples, 0.01%)</title><rect x="99.1235%" y="341" width="0.0107%" height="15" fill="rgb(242,27,5)" fg:x="2299503" fg:w="248"/><text x="99.3735%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (327 samples, 0.01%)</title><rect x="99.1211%" y="389" width="0.0141%" height="15" fill="rgb(228,65,35)" fg:x="2299448" fg:w="327"/><text x="99.3711%" y="399.50"></text></g><g><title>schedule (296 samples, 0.01%)</title><rect x="99.1224%" y="373" width="0.0128%" height="15" fill="rgb(245,93,11)" fg:x="2299479" fg:w="296"/><text x="99.3724%" y="383.50"></text></g><g><title>__schedule (295 samples, 0.01%)</title><rect x="99.1225%" y="357" width="0.0127%" height="15" fill="rgb(213,1,31)" fg:x="2299480" fg:w="295"/><text x="99.3725%" y="367.50"></text></g><g><title>read_block_for_search.isra.0 (338 samples, 0.01%)</title><rect x="99.1531%" y="389" width="0.0146%" height="15" fill="rgb(237,205,14)" fg:x="2300190" fg:w="338"/><text x="99.4031%" y="399.50"></text></g><g><title>btrfs_lookup_file_extent (3,054 samples, 0.13%)</title><rect x="99.0373%" y="421" width="0.1316%" height="15" fill="rgb(232,118,45)" fg:x="2297503" fg:w="3054"/><text x="99.2873%" y="431.50"></text></g><g><title>btrfs_search_slot (3,043 samples, 0.13%)</title><rect x="99.0377%" y="405" width="0.1312%" height="15" fill="rgb(218,5,6)" fg:x="2297514" fg:w="3043"/><text x="99.2877%" y="415.50"></text></g><g><title>btrfs_get_extent (3,744 samples, 0.16%)</title><rect x="99.0220%" y="437" width="0.1614%" height="15" fill="rgb(251,87,51)" fg:x="2297148" fg:w="3744"/><text x="99.2720%" y="447.50"></text></g><g><title>btrfs_do_readpage (4,018 samples, 0.17%)</title><rect x="99.0126%" y="453" width="0.1732%" height="15" fill="rgb(207,225,20)" fg:x="2296930" fg:w="4018"/><text x="99.2626%" y="463.50"></text></g><g><title>btrfs_readpage (4,207 samples, 0.18%)</title><rect x="99.0120%" y="469" width="0.1813%" height="15" fill="rgb(222,78,54)" fg:x="2296918" fg:w="4207"/><text x="99.2620%" y="479.50"></text></g><g><title>do_read_cache_page (4,817 samples, 0.21%)</title><rect x="98.9874%" y="485" width="0.2076%" height="15" fill="rgb(232,85,16)" fg:x="2296346" fg:w="4817"/><text x="99.2374%" y="495.50"></text></g><g><title>pagecache_get_page (649 samples, 0.03%)</title><rect x="99.1950%" y="485" width="0.0280%" height="15" fill="rgb(244,25,33)" fg:x="2301163" fg:w="649"/><text x="99.4450%" y="495.50"></text></g><g><title>find_get_entry (604 samples, 0.03%)</title><rect x="99.1970%" y="469" width="0.0260%" height="15" fill="rgb(233,24,36)" fg:x="2301208" fg:w="604"/><text x="99.4470%" y="479.50"></text></g><g><title>page_get_link (5,545 samples, 0.24%)</title><rect x="98.9841%" y="501" width="0.2390%" height="15" fill="rgb(253,49,54)" fg:x="2296269" fg:w="5545"/><text x="99.2341%" y="511.50"></text></g><g><title>btrfs_delayed_update_inode (378 samples, 0.02%)</title><rect x="99.2307%" y="453" width="0.0163%" height="15" fill="rgb(245,12,22)" fg:x="2301991" fg:w="378"/><text x="99.4807%" y="463.50"></text></g><g><title>btrfs_update_inode (418 samples, 0.02%)</title><rect x="99.2302%" y="469" width="0.0180%" height="15" fill="rgb(253,141,28)" fg:x="2301978" fg:w="418"/><text x="99.4802%" y="479.50"></text></g><g><title>btrfs_dirty_inode (673 samples, 0.03%)</title><rect x="99.2259%" y="485" width="0.0290%" height="15" fill="rgb(225,207,27)" fg:x="2301878" fg:w="673"/><text x="99.4759%" y="495.50"></text></g><g><title>touch_atime (744 samples, 0.03%)</title><rect x="99.2244%" y="501" width="0.0321%" height="15" fill="rgb(220,84,2)" fg:x="2301844" fg:w="744"/><text x="99.4744%" y="511.50"></text></g><g><title>step_into (8,678 samples, 0.37%)</title><rect x="98.8841%" y="517" width="0.3741%" height="15" fill="rgb(224,37,37)" fg:x="2293950" fg:w="8678"/><text x="99.1341%" y="527.50"></text></g><g><title>dput (491 samples, 0.02%)</title><rect x="99.2612%" y="501" width="0.0212%" height="15" fill="rgb(220,143,18)" fg:x="2302699" fg:w="491"/><text x="99.5112%" y="511.50"></text></g><g><title>lockref_put_or_lock (375 samples, 0.02%)</title><rect x="99.2662%" y="485" width="0.0162%" height="15" fill="rgb(210,88,33)" fg:x="2302815" fg:w="375"/><text x="99.5162%" y="495.50"></text></g><g><title>terminate_walk (697 samples, 0.03%)</title><rect x="99.2582%" y="517" width="0.0300%" height="15" fill="rgb(219,87,51)" fg:x="2302628" fg:w="697"/><text x="99.5082%" y="527.50"></text></g><g><title>do_filp_open (50,099 samples, 2.16%)</title><rect x="97.1294%" y="549" width="2.1596%" height="15" fill="rgb(211,7,35)" fg:x="2253243" fg:w="50099"/><text x="97.3794%" y="559.50">d..</text></g><g><title>path_openat (49,919 samples, 2.15%)</title><rect x="97.1371%" y="533" width="2.1518%" height="15" fill="rgb(232,77,2)" fg:x="2253423" fg:w="49919"/><text x="97.3871%" y="543.50">p..</text></g><g><title>memset_erms (1,064 samples, 0.05%)</title><rect x="99.3186%" y="517" width="0.0459%" height="15" fill="rgb(249,94,25)" fg:x="2304030" fg:w="1064"/><text x="99.5686%" y="527.50"></text></g><g><title>kmem_cache_alloc (1,586 samples, 0.07%)</title><rect x="99.3044%" y="533" width="0.0684%" height="15" fill="rgb(215,112,2)" fg:x="2303701" fg:w="1586"/><text x="99.5544%" y="543.50"></text></g><g><title>__check_object_size (516 samples, 0.02%)</title><rect x="99.3910%" y="517" width="0.0222%" height="15" fill="rgb(226,115,48)" fg:x="2305710" fg:w="516"/><text x="99.6410%" y="527.50"></text></g><g><title>getname_flags.part.0 (2,633 samples, 0.11%)</title><rect x="99.2998%" y="549" width="0.1135%" height="15" fill="rgb(249,196,10)" fg:x="2303594" fg:w="2633"/><text x="99.5498%" y="559.50"></text></g><g><title>strncpy_from_user (940 samples, 0.04%)</title><rect x="99.3728%" y="533" width="0.0405%" height="15" fill="rgb(237,109,14)" fg:x="2305287" fg:w="940"/><text x="99.6228%" y="543.50"></text></g><g><title>kmem_cache_free (409 samples, 0.02%)</title><rect x="99.4133%" y="549" width="0.0176%" height="15" fill="rgb(217,103,53)" fg:x="2306227" fg:w="409"/><text x="99.6633%" y="559.50"></text></g><g><title>__x64_sys_openat (54,441 samples, 2.35%)</title><rect x="97.0863%" y="581" width="2.3468%" height="15" fill="rgb(244,137,9)" fg:x="2252243" fg:w="54441"/><text x="97.3363%" y="591.50">_..</text></g><g><title>do_sys_openat2 (54,357 samples, 2.34%)</title><rect x="97.0899%" y="565" width="2.3431%" height="15" fill="rgb(227,201,3)" fg:x="2252327" fg:w="54357"/><text x="97.3399%" y="575.50">d..</text></g><g><title>asm_exc_page_fault (327 samples, 0.01%)</title><rect x="99.4600%" y="485" width="0.0141%" height="15" fill="rgb(243,94,6)" fg:x="2307309" fg:w="327"/><text x="99.7100%" y="495.50"></text></g><g><title>copy_page_to_iter (405 samples, 0.02%)</title><rect x="99.4568%" y="517" width="0.0175%" height="15" fill="rgb(235,118,5)" fg:x="2307236" fg:w="405"/><text x="99.7068%" y="527.50"></text></g><g><title>copy_user_enhanced_fast_string (398 samples, 0.02%)</title><rect x="99.4571%" y="501" width="0.0172%" height="15" fill="rgb(247,10,30)" fg:x="2307243" fg:w="398"/><text x="99.7071%" y="511.50"></text></g><g><title>generic_file_buffered_read (450 samples, 0.02%)</title><rect x="99.4565%" y="533" width="0.0194%" height="15" fill="rgb(205,26,28)" fg:x="2307228" fg:w="450"/><text x="99.7065%" y="543.50"></text></g><g><title>ksys_read (460 samples, 0.02%)</title><rect x="99.4561%" y="581" width="0.0198%" height="15" fill="rgb(206,99,35)" fg:x="2307220" fg:w="460"/><text x="99.7061%" y="591.50"></text></g><g><title>vfs_read (455 samples, 0.02%)</title><rect x="99.4563%" y="565" width="0.0196%" height="15" fill="rgb(238,130,40)" fg:x="2307225" fg:w="455"/><text x="99.7063%" y="575.50"></text></g><g><title>new_sync_read (454 samples, 0.02%)</title><rect x="99.4564%" y="549" width="0.0196%" height="15" fill="rgb(224,126,31)" fg:x="2307226" fg:w="454"/><text x="99.7064%" y="559.50"></text></g><g><title>do_mmap (475 samples, 0.02%)</title><rect x="99.4829%" y="565" width="0.0205%" height="15" fill="rgb(254,105,17)" fg:x="2307842" fg:w="475"/><text x="99.7329%" y="575.50"></text></g><g><title>mmap_region (386 samples, 0.02%)</title><rect x="99.4868%" y="549" width="0.0166%" height="15" fill="rgb(216,87,36)" fg:x="2307931" fg:w="386"/><text x="99.7368%" y="559.50"></text></g><g><title>do_syscall_64 (73,435 samples, 3.17%)</title><rect x="96.3421%" y="597" width="3.1655%" height="15" fill="rgb(240,21,12)" fg:x="2234979" fg:w="73435"/><text x="96.5921%" y="607.50">do_..</text></g><g><title>vm_mmap_pgoff (577 samples, 0.02%)</title><rect x="99.4827%" y="581" width="0.0249%" height="15" fill="rgb(245,192,34)" fg:x="2307837" fg:w="577"/><text x="99.7327%" y="591.50"></text></g><g><title>btrfs_release_file (515 samples, 0.02%)</title><rect x="99.5724%" y="533" width="0.0222%" height="15" fill="rgb(226,100,49)" fg:x="2309918" fg:w="515"/><text x="99.8224%" y="543.50"></text></g><g><title>dput (252 samples, 0.01%)</title><rect x="99.5946%" y="533" width="0.0109%" height="15" fill="rgb(245,188,27)" fg:x="2310433" fg:w="252"/><text x="99.8446%" y="543.50"></text></g><g><title>kmem_cache_free (325 samples, 0.01%)</title><rect x="99.6056%" y="533" width="0.0140%" height="15" fill="rgb(212,170,8)" fg:x="2310687" fg:w="325"/><text x="99.8556%" y="543.50"></text></g><g><title>__fput (2,007 samples, 0.09%)</title><rect x="99.5581%" y="549" width="0.0865%" height="15" fill="rgb(217,113,29)" fg:x="2309586" fg:w="2007"/><text x="99.8081%" y="559.50"></text></g><g><title>security_file_free (295 samples, 0.01%)</title><rect x="99.6319%" y="533" width="0.0127%" height="15" fill="rgb(237,30,3)" fg:x="2311298" fg:w="295"/><text x="99.8819%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77,521 samples, 3.34%)</title><rect x="96.3306%" y="613" width="3.3417%" height="15" fill="rgb(227,19,28)" fg:x="2234714" fg:w="77521"/><text x="96.5806%" y="623.50">ent..</text></g><g><title>syscall_exit_to_user_mode (3,821 samples, 0.16%)</title><rect x="99.5076%" y="597" width="0.1647%" height="15" fill="rgb(239,172,45)" fg:x="2308414" fg:w="3821"/><text x="99.7576%" y="607.50"></text></g><g><title>exit_to_user_mode_prepare (3,680 samples, 0.16%)</title><rect x="99.5137%" y="581" width="0.1586%" height="15" fill="rgb(254,55,39)" fg:x="2308555" fg:w="3680"/><text x="99.7637%" y="591.50"></text></g><g><title>task_work_run (2,818 samples, 0.12%)</title><rect x="99.5508%" y="565" width="0.1215%" height="15" fill="rgb(249,208,12)" fg:x="2309417" fg:w="2818"/><text x="99.8008%" y="575.50"></text></g><g><title>call_rcu (533 samples, 0.02%)</title><rect x="99.6493%" y="549" width="0.0230%" height="15" fill="rgb(240,52,13)" fg:x="2311702" fg:w="533"/><text x="99.8993%" y="559.50"></text></g><g><title>rcu_segcblist_enqueue (281 samples, 0.01%)</title><rect x="99.6602%" y="533" width="0.0121%" height="15" fill="rgb(252,149,13)" fg:x="2311954" fg:w="281"/><text x="99.9102%" y="543.50"></text></g><g><title>error_entry (401 samples, 0.02%)</title><rect x="99.6723%" y="613" width="0.0173%" height="15" fill="rgb(232,81,48)" fg:x="2312235" fg:w="401"/><text x="99.9223%" y="623.50"></text></g><g><title>sync_regs (352 samples, 0.02%)</title><rect x="99.6744%" y="597" width="0.0152%" height="15" fill="rgb(222,144,2)" fg:x="2312284" fg:w="352"/><text x="99.9244%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (3,704 samples, 0.16%)</title><rect x="99.7002%" y="565" width="0.1597%" height="15" fill="rgb(216,81,32)" fg:x="2312883" fg:w="3704"/><text x="99.9502%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,656 samples, 0.16%)</title><rect x="99.7023%" y="549" width="0.1576%" height="15" fill="rgb(244,78,51)" fg:x="2312931" fg:w="3656"/><text x="99.9523%" y="559.50"></text></g><g><title>native_write_msr (3,636 samples, 0.16%)</title><rect x="99.7032%" y="533" width="0.1567%" height="15" fill="rgb(217,66,21)" fg:x="2312951" fg:w="3636"/><text x="99.9532%" y="543.50"></text></g><g><title>schedule_tail (3,920 samples, 0.17%)</title><rect x="99.6961%" y="597" width="0.1690%" height="15" fill="rgb(247,101,42)" fg:x="2312787" fg:w="3920"/><text x="99.9461%" y="607.50"></text></g><g><title>finish_task_switch (3,899 samples, 0.17%)</title><rect x="99.6970%" y="581" width="0.1681%" height="15" fill="rgb(227,81,39)" fg:x="2312808" fg:w="3899"/><text x="99.9470%" y="591.50"></text></g><g><title>ret_from_fork (4,126 samples, 0.18%)</title><rect x="99.6923%" y="613" width="0.1779%" height="15" fill="rgb(220,223,44)" fg:x="2312700" fg:w="4126"/><text x="99.9423%" y="623.50"></text></g><g><title>syscall_return_via_sysret (341 samples, 0.01%)</title><rect x="99.8702%" y="613" width="0.0147%" height="15" fill="rgb(205,218,2)" fg:x="2316826" fg:w="341"/><text x="100.1202%" y="623.50"></text></g><g><title>[zig] (114,738 samples, 4.95%)</title><rect x="94.9391%" y="629" width="4.9460%" height="15" fill="rgb(212,207,28)" fg:x="2202433" fg:w="114738"/><text x="95.1891%" y="639.50">[zig]</text></g><g><title>asm_exc_page_fault (883 samples, 0.04%)</title><rect x="99.8854%" y="629" width="0.0381%" height="15" fill="rgb(224,12,41)" fg:x="2317178" fg:w="883"/><text x="100.1354%" y="639.50"></text></g><g><title>unmap_page_range (249 samples, 0.01%)</title><rect x="99.9306%" y="469" width="0.0107%" height="15" fill="rgb(216,118,12)" fg:x="2318228" fg:w="249"/><text x="100.1806%" y="479.50"></text></g><g><title>mmput (326 samples, 0.01%)</title><rect x="99.9274%" y="517" width="0.0141%" height="15" fill="rgb(252,97,46)" fg:x="2318153" fg:w="326"/><text x="100.1774%" y="527.50"></text></g><g><title>exit_mmap (325 samples, 0.01%)</title><rect x="99.9275%" y="501" width="0.0140%" height="15" fill="rgb(244,206,19)" fg:x="2318154" fg:w="325"/><text x="100.1775%" y="511.50"></text></g><g><title>unmap_vmas (251 samples, 0.01%)</title><rect x="99.9306%" y="485" width="0.0108%" height="15" fill="rgb(231,84,31)" fg:x="2318228" fg:w="251"/><text x="100.1806%" y="495.50"></text></g><g><title>begin_new_exec (335 samples, 0.01%)</title><rect x="99.9272%" y="533" width="0.0144%" height="15" fill="rgb(244,133,0)" fg:x="2318149" fg:w="335"/><text x="100.1772%" y="543.50"></text></g><g><title>__x64_sys_execve (380 samples, 0.02%)</title><rect x="99.9267%" y="597" width="0.0164%" height="15" fill="rgb(223,15,50)" fg:x="2318137" fg:w="380"/><text x="100.1767%" y="607.50"></text></g><g><title>do_execveat_common (380 samples, 0.02%)</title><rect x="99.9267%" y="581" width="0.0164%" height="15" fill="rgb(250,118,49)" fg:x="2318137" fg:w="380"/><text x="100.1767%" y="591.50"></text></g><g><title>bprm_execve (380 samples, 0.02%)</title><rect x="99.9267%" y="565" width="0.0164%" height="15" fill="rgb(248,25,38)" fg:x="2318137" fg:w="380"/><text x="100.1767%" y="575.50"></text></g><g><title>load_elf_binary (380 samples, 0.02%)</title><rect x="99.9267%" y="549" width="0.0164%" height="15" fill="rgb(215,70,14)" fg:x="2318137" fg:w="380"/><text x="100.1767%" y="559.50"></text></g><g><title>unmap_page_range (495 samples, 0.02%)</title><rect x="99.9518%" y="501" width="0.0213%" height="15" fill="rgb(215,28,15)" fg:x="2318719" fg:w="495"/><text x="100.2018%" y="511.50"></text></g><g><title>mmput (649 samples, 0.03%)</title><rect x="99.9453%" y="549" width="0.0280%" height="15" fill="rgb(243,6,28)" fg:x="2318567" fg:w="649"/><text x="100.1953%" y="559.50"></text></g><g><title>exit_mmap (648 samples, 0.03%)</title><rect x="99.9453%" y="533" width="0.0279%" height="15" fill="rgb(222,130,1)" fg:x="2318568" fg:w="648"/><text x="100.1953%" y="543.50"></text></g><g><title>unmap_vmas (498 samples, 0.02%)</title><rect x="99.9518%" y="517" width="0.0215%" height="15" fill="rgb(236,166,44)" fg:x="2318718" fg:w="498"/><text x="100.2018%" y="527.50"></text></g><g><title>__x64_sys_exit_group (671 samples, 0.03%)</title><rect x="99.9445%" y="597" width="0.0289%" height="15" fill="rgb(221,108,14)" fg:x="2318549" fg:w="671"/><text x="100.1945%" y="607.50"></text></g><g><title>do_group_exit (671 samples, 0.03%)</title><rect x="99.9445%" y="581" width="0.0289%" height="15" fill="rgb(252,3,45)" fg:x="2318549" fg:w="671"/><text x="100.1945%" y="591.50"></text></g><g><title>do_exit (671 samples, 0.03%)</title><rect x="99.9445%" y="565" width="0.0289%" height="15" fill="rgb(237,68,30)" fg:x="2318549" fg:w="671"/><text x="100.1945%" y="575.50"></text></g><g><title>do_syscall_64 (1,093 samples, 0.05%)</title><rect x="99.9267%" y="613" width="0.0471%" height="15" fill="rgb(211,79,22)" fg:x="2318137" fg:w="1093"/><text x="100.1767%" y="623.50"></text></g><g><title>mmput (313 samples, 0.01%)</title><rect x="99.9765%" y="517" width="0.0135%" height="15" fill="rgb(252,185,21)" fg:x="2319292" fg:w="313"/><text x="100.2265%" y="527.50"></text></g><g><title>exit_mmap (311 samples, 0.01%)</title><rect x="99.9766%" y="501" width="0.0134%" height="15" fill="rgb(225,189,26)" fg:x="2319294" fg:w="311"/><text x="100.2266%" y="511.50"></text></g><g><title>unmap_vmas (239 samples, 0.01%)</title><rect x="99.9797%" y="485" width="0.0103%" height="15" fill="rgb(241,30,40)" fg:x="2319366" fg:w="239"/><text x="100.2297%" y="495.50"></text></g><g><title>unmap_page_range (238 samples, 0.01%)</title><rect x="99.9797%" y="469" width="0.0103%" height="15" fill="rgb(235,215,44)" fg:x="2319367" fg:w="238"/><text x="100.2297%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,554 samples, 0.07%)</title><rect x="99.9237%" y="629" width="0.0670%" height="15" fill="rgb(205,8,29)" fg:x="2318068" fg:w="1554"/><text x="100.1737%" y="639.50"></text></g><g><title>syscall_exit_to_user_mode (392 samples, 0.02%)</title><rect x="99.9738%" y="613" width="0.0169%" height="15" fill="rgb(241,137,42)" fg:x="2319230" fg:w="392"/><text x="100.2238%" y="623.50"></text></g><g><title>exit_to_user_mode_prepare (392 samples, 0.02%)</title><rect x="99.9738%" y="597" width="0.0169%" height="15" fill="rgb(237,155,2)" fg:x="2319230" fg:w="392"/><text x="100.2238%" y="607.50"></text></g><g><title>arch_do_signal (392 samples, 0.02%)</title><rect x="99.9738%" y="581" width="0.0169%" height="15" fill="rgb(245,29,42)" fg:x="2319230" fg:w="392"/><text x="100.2238%" y="591.50"></text></g><g><title>get_signal (392 samples, 0.02%)</title><rect x="99.9738%" y="565" width="0.0169%" height="15" fill="rgb(234,101,35)" fg:x="2319230" fg:w="392"/><text x="100.2238%" y="575.50"></text></g><g><title>do_group_exit (392 samples, 0.02%)</title><rect x="99.9738%" y="549" width="0.0169%" height="15" fill="rgb(228,64,37)" fg:x="2319230" fg:w="392"/><text x="100.2238%" y="559.50"></text></g><g><title>do_exit (392 samples, 0.02%)</title><rect x="99.9738%" y="533" width="0.0169%" height="15" fill="rgb(217,214,36)" fg:x="2319230" fg:w="392"/><text x="100.2238%" y="543.50"></text></g><g><title>all (2,319,837 samples, 100%)</title><rect x="0.0000%" y="661" width="100.0000%" height="15" fill="rgb(243,70,3)" fg:x="0" fg:w="2319837"/><text x="0.2500%" y="671.50"></text></g><g><title>zig (117,640 samples, 5.07%)</title><rect x="94.9290%" y="645" width="5.0710%" height="15" fill="rgb(253,158,52)" fg:x="2202197" fg:w="117640"/><text x="95.1790%" y="655.50">zig</text></g></svg></svg>