491 lines
702 KiB
XML
491 lines
702 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="662" onload="init(evt)" viewBox="0 0 1200 662" 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="662" 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="645.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="645.00"> </text><svg id="frames" x="10" width="1180" total_samples="2387596"><g><title>[unknown] (358 samples, 0.01%)</title><rect x="0.0012%" y="581" width="0.0150%" height="15" fill="rgb(227,0,7)" fg:x="29" fg:w="358"/><text x="0.2512%" y="591.50"></text></g><g><title>:32343 (396 samples, 0.02%)</title><rect x="0.0000%" y="597" width="0.0166%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="396"/><text x="0.2500%" y="607.50"></text></g><g><title>[unknown] (247 samples, 0.01%)</title><rect x="0.0172%" y="581" width="0.0103%" height="15" fill="rgb(221,193,54)" fg:x="411" fg:w="247"/><text x="0.2672%" y="591.50"></text></g><g><title>:32344 (273 samples, 0.01%)</title><rect x="0.0166%" y="597" width="0.0114%" height="15" fill="rgb(248,212,6)" fg:x="396" fg:w="273"/><text x="0.2666%" y="607.50"></text></g><g><title>[anon] (1,323 samples, 0.06%)</title><rect x="0.0317%" y="581" width="0.0554%" height="15" fill="rgb(208,68,35)" fg:x="757" fg:w="1323"/><text x="0.2817%" y="591.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (411 samples, 0.02%)</title><rect x="0.1105%" y="389" width="0.0172%" height="15" fill="rgb(232,128,0)" fg:x="2638" fg:w="411"/><text x="0.3605%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (323 samples, 0.01%)</title><rect x="0.1881%" y="117" width="0.0135%" height="15" fill="rgb(207,160,47)" fg:x="4490" fg:w="323"/><text x="0.4381%" y="127.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (320 samples, 0.01%)</title><rect x="0.1882%" y="101" width="0.0134%" height="15" fill="rgb(228,23,34)" fg:x="4493" fg:w="320"/><text x="0.4382%" y="111.50"></text></g><g><title>GraphBuilder::try_inline_full (420 samples, 0.02%)</title><rect x="0.1876%" y="133" width="0.0176%" height="15" fill="rgb(218,30,26)" fg:x="4478" fg:w="420"/><text x="0.4376%" y="143.50"></text></g><g><title>GraphBuilder::try_inline (460 samples, 0.02%)</title><rect x="0.1874%" y="149" width="0.0193%" height="15" fill="rgb(220,122,19)" fg:x="4475" fg:w="460"/><text x="0.4374%" y="159.50"></text></g><g><title>GraphBuilder::invoke (588 samples, 0.02%)</title><rect x="0.1869%" y="165" width="0.0246%" height="15" fill="rgb(250,228,42)" fg:x="4462" fg:w="588"/><text x="0.4369%" y="175.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (786 samples, 0.03%)</title><rect x="0.1806%" y="197" width="0.0329%" height="15" fill="rgb(240,193,28)" fg:x="4312" fg:w="786"/><text x="0.4306%" y="207.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (779 samples, 0.03%)</title><rect x="0.1809%" y="181" width="0.0326%" height="15" fill="rgb(216,20,37)" fg:x="4319" fg:w="779"/><text x="0.4309%" y="191.50"></text></g><g><title>GraphBuilder::try_inline_full (1,004 samples, 0.04%)</title><rect x="0.1793%" y="213" width="0.0421%" height="15" fill="rgb(206,188,39)" fg:x="4282" fg:w="1004"/><text x="0.4293%" y="223.50"></text></g><g><title>GraphBuilder::try_inline (1,043 samples, 0.04%)</title><rect x="0.1791%" y="229" width="0.0437%" height="15" fill="rgb(217,207,13)" fg:x="4276" fg:w="1043"/><text x="0.4291%" y="239.50"></text></g><g><title>GraphBuilder::invoke (1,343 samples, 0.06%)</title><rect x="0.1774%" y="245" width="0.0562%" height="15" fill="rgb(231,73,38)" fg:x="4236" fg:w="1343"/><text x="0.4274%" y="255.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,698 samples, 0.07%)</title><rect x="0.1660%" y="277" width="0.0711%" height="15" fill="rgb(225,20,46)" fg:x="3963" fg:w="1698"/><text x="0.4160%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,681 samples, 0.07%)</title><rect x="0.1667%" y="261" width="0.0704%" height="15" fill="rgb(210,31,41)" fg:x="3980" fg:w="1681"/><text x="0.4167%" y="271.50"></text></g><g><title>GraphBuilder::try_inline_full (2,186 samples, 0.09%)</title><rect x="0.1630%" y="293" width="0.0916%" height="15" fill="rgb(221,200,47)" fg:x="3892" fg:w="2186"/><text x="0.4130%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (2,203 samples, 0.09%)</title><rect x="0.1626%" y="309" width="0.0923%" height="15" fill="rgb(226,26,5)" fg:x="3882" fg:w="2203"/><text x="0.4126%" y="319.50"></text></g><g><title>ciEnv::get_method_by_index_impl (345 samples, 0.01%)</title><rect x="0.2581%" y="293" width="0.0144%" height="15" fill="rgb(249,33,26)" fg:x="6163" fg:w="345"/><text x="0.5081%" y="303.50"></text></g><g><title>ciBytecodeStream::get_method (373 samples, 0.02%)</title><rect x="0.2570%" y="309" width="0.0156%" height="15" fill="rgb(235,183,28)" fg:x="6136" fg:w="373"/><text x="0.5070%" y="319.50"></text></g><g><title>GraphBuilder::invoke (2,831 samples, 0.12%)</title><rect x="0.1579%" y="325" width="0.1186%" height="15" fill="rgb(221,5,38)" fg:x="3771" fg:w="2831"/><text x="0.4079%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,315 samples, 0.14%)</title><rect x="0.1411%" y="341" width="0.1388%" height="15" fill="rgb(247,18,42)" fg:x="3370" fg:w="3315"/><text x="0.3911%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,363 samples, 0.14%)</title><rect x="0.1396%" y="357" width="0.1409%" height="15" fill="rgb(241,131,45)" fg:x="3332" fg:w="3363"/><text x="0.3896%" y="367.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,698 samples, 0.15%)</title><rect x="0.1279%" y="373" width="0.1549%" height="15" fill="rgb(249,31,29)" fg:x="3054" fg:w="3698"/><text x="0.3779%" y="383.50"></text></g><g><title>IR::IR (3,724 samples, 0.16%)</title><rect x="0.1277%" y="389" width="0.1560%" height="15" fill="rgb(225,111,53)" fg:x="3049" fg:w="3724"/><text x="0.3777%" y="399.50"></text></g><g><title>Compilation::build_hir (4,694 samples, 0.20%)</title><rect x="0.1102%" y="405" width="0.1966%" height="15" fill="rgb(238,160,17)" fg:x="2631" fg:w="4694"/><text x="0.3602%" y="415.50"></text></g><g><title>LIR_Assembler::emit_code (680 samples, 0.03%)</title><rect x="0.3078%" y="389" width="0.0285%" height="15" fill="rgb(214,148,48)" fg:x="7350" fg:w="680"/><text x="0.5578%" y="399.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (331 samples, 0.01%)</title><rect x="0.3387%" y="389" width="0.0139%" height="15" fill="rgb(232,36,49)" fg:x="8086" fg:w="331"/><text x="0.5887%" y="399.50"></text></g><g><title>Compilation::emit_code_body (1,108 samples, 0.05%)</title><rect x="0.3068%" y="405" width="0.0464%" height="15" fill="rgb(209,103,24)" fg:x="7325" fg:w="1108"/><text x="0.5568%" y="415.50"></text></g><g><title>LIRGenerator::block_do (879 samples, 0.04%)</title><rect x="0.3537%" y="373" width="0.0368%" height="15" fill="rgb(229,88,8)" fg:x="8446" fg:w="879"/><text x="0.6037%" y="383.50"></text></g><g><title>BlockList::iterate_forward (884 samples, 0.04%)</title><rect x="0.3536%" y="389" width="0.0370%" height="15" fill="rgb(213,181,19)" fg:x="8442" fg:w="884"/><text x="0.6036%" y="399.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (481 samples, 0.02%)</title><rect x="0.4035%" y="325" width="0.0201%" height="15" fill="rgb(254,191,54)" fg:x="9635" fg:w="481"/><text x="0.6535%" y="335.50"></text></g><g><title>LinearScanWalker::activate_current (745 samples, 0.03%)</title><rect x="0.4021%" y="341" width="0.0312%" height="15" fill="rgb(241,83,37)" fg:x="9600" fg:w="745"/><text x="0.6521%" y="351.50"></text></g><g><title>IntervalWalker::walk_to (945 samples, 0.04%)</title><rect x="0.3938%" y="357" width="0.0396%" height="15" fill="rgb(233,36,39)" fg:x="9402" fg:w="945"/><text x="0.6438%" y="367.50"></text></g><g><title>LinearScan::allocate_registers (1,046 samples, 0.04%)</title><rect x="0.3930%" y="373" width="0.0438%" height="15" fill="rgb(226,3,54)" fg:x="9383" fg:w="1046"/><text x="0.6430%" y="383.50"></text></g><g><title>LinearScan::assign_reg_num (679 samples, 0.03%)</title><rect x="0.4370%" y="357" width="0.0284%" height="15" fill="rgb(245,192,40)" fg:x="10434" fg:w="679"/><text x="0.6870%" y="367.50"></text></g><g><title>LinearScan::assign_reg_num (712 samples, 0.03%)</title><rect x="0.4368%" y="373" width="0.0298%" height="15" fill="rgb(238,167,29)" fg:x="10429" fg:w="712"/><text x="0.6868%" y="383.50"></text></g><g><title>LinearScan::build_intervals (852 samples, 0.04%)</title><rect x="0.4666%" y="373" width="0.0357%" height="15" fill="rgb(232,182,51)" fg:x="11141" fg:w="852"/><text x="0.7166%" y="383.50"></text></g><g><title>LinearScan::compute_local_live_sets (286 samples, 0.01%)</title><rect x="0.5058%" y="373" width="0.0120%" height="15" fill="rgb(231,60,39)" fg:x="12077" fg:w="286"/><text x="0.7558%" y="383.50"></text></g><g><title>LinearScan::do_linear_scan (3,408 samples, 0.14%)</title><rect x="0.3920%" y="389" width="0.1427%" height="15" fill="rgb(208,69,12)" fg:x="9359" fg:w="3408"/><text x="0.6420%" y="399.50"></text></g><g><title>Compilation::emit_lir (4,337 samples, 0.18%)</title><rect x="0.3532%" y="405" width="0.1816%" height="15" fill="rgb(235,93,37)" fg:x="8433" fg:w="4337"/><text x="0.6032%" y="415.50"></text></g><g><title>Compilation::compile_java_method (10,285 samples, 0.43%)</title><rect x="0.1097%" y="421" width="0.4308%" height="15" fill="rgb(213,116,39)" fg:x="2620" fg:w="10285"/><text x="0.3597%" y="431.50"></text></g><g><title>Compilation::compile_method (10,910 samples, 0.46%)</title><rect x="0.1094%" y="437" width="0.4569%" height="15" fill="rgb(222,207,29)" fg:x="2613" fg:w="10910"/><text x="0.3594%" y="447.50"></text></g><g><title>ciEnv::register_method (563 samples, 0.02%)</title><rect x="0.5428%" y="421" width="0.0236%" height="15" fill="rgb(206,96,30)" fg:x="12960" fg:w="563"/><text x="0.7928%" y="431.50"></text></g><g><title>nmethod::new_nmethod (507 samples, 0.02%)</title><rect x="0.5452%" y="405" width="0.0212%" height="15" fill="rgb(218,138,4)" fg:x="13016" fg:w="507"/><text x="0.7952%" y="415.50"></text></g><g><title>nmethod::nmethod (305 samples, 0.01%)</title><rect x="0.5536%" y="389" width="0.0128%" height="15" fill="rgb(250,191,14)" fg:x="13218" fg:w="305"/><text x="0.8036%" y="399.50"></text></g><g><title>Compiler::compile_method (10,937 samples, 0.46%)</title><rect x="0.1086%" y="469" width="0.4581%" height="15" fill="rgb(239,60,40)" fg:x="2592" fg:w="10937"/><text x="0.3586%" y="479.50"></text></g><g><title>Compilation::Compilation (10,921 samples, 0.46%)</title><rect x="0.1092%" y="453" width="0.4574%" height="15" fill="rgb(206,27,48)" fg:x="2608" fg:w="10921"/><text x="0.3592%" y="463.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,487 samples, 0.48%)</title><rect x="0.0988%" y="485" width="0.4811%" height="15" fill="rgb(225,35,8)" fg:x="2360" fg:w="11487"/><text x="0.3488%" y="495.50"></text></g><g><title>__GI___clone (11,723 samples, 0.49%)</title><rect x="0.0986%" y="581" width="0.4910%" height="15" fill="rgb(250,213,24)" fg:x="2353" fg:w="11723"/><text x="0.3486%" y="591.50"></text></g><g><title>start_thread (11,722 samples, 0.49%)</title><rect x="0.0986%" y="565" width="0.4910%" height="15" fill="rgb(247,123,22)" fg:x="2354" fg:w="11722"/><text x="0.3486%" y="575.50"></text></g><g><title>thread_native_entry (11,722 samples, 0.49%)</title><rect x="0.0986%" y="549" width="0.4910%" height="15" fill="rgb(231,138,38)" fg:x="2354" fg:w="11722"/><text x="0.3486%" y="559.50"></text></g><g><title>Thread::call_run (11,722 samples, 0.49%)</title><rect x="0.0986%" y="533" width="0.4910%" height="15" fill="rgb(231,145,46)" fg:x="2354" fg:w="11722"/><text x="0.3486%" y="543.50"></text></g><g><title>JavaThread::thread_main_inner (11,722 samples, 0.49%)</title><rect x="0.0986%" y="517" width="0.4910%" height="15" fill="rgb(251,118,11)" fg:x="2354" fg:w="11722"/><text x="0.3486%" y="527.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,722 samples, 0.49%)</title><rect x="0.0986%" y="501" width="0.4910%" height="15" fill="rgb(217,147,25)" fg:x="2354" fg:w="11722"/><text x="0.3486%" y="511.50"></text></g><g><title>C1_CompilerThre (13,431 samples, 0.56%)</title><rect x="0.0288%" y="597" width="0.5625%" height="15" fill="rgb(247,81,37)" fg:x="688" fg:w="13431"/><text x="0.2788%" y="607.50"></text></g><g><title>[anon] (3,724 samples, 0.16%)</title><rect x="0.6069%" y="581" width="0.1560%" height="15" fill="rgb(209,12,38)" fg:x="14491" fg:w="3724"/><text x="0.8569%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (350 samples, 0.01%)</title><rect x="0.7998%" y="181" width="0.0147%" height="15" fill="rgb(227,1,9)" fg:x="19095" fg:w="350"/><text x="1.0498%" y="191.50"></text></g><g><title>Parse::do_one_block (357 samples, 0.01%)</title><rect x="0.7995%" y="197" width="0.0150%" height="15" fill="rgb(248,47,43)" fg:x="19089" fg:w="357"/><text x="1.0495%" y="207.50"></text></g><g><title>Parse::do_all_blocks (366 samples, 0.02%)</title><rect x="0.7993%" y="213" width="0.0153%" height="15" fill="rgb(221,10,30)" fg:x="19085" fg:w="366"/><text x="1.0493%" y="223.50"></text></g><g><title>ParseGenerator::generate (423 samples, 0.02%)</title><rect x="0.7979%" y="245" width="0.0177%" height="15" fill="rgb(210,229,1)" fg:x="19051" fg:w="423"/><text x="1.0479%" y="255.50"></text></g><g><title>Parse::Parse (423 samples, 0.02%)</title><rect x="0.7979%" y="229" width="0.0177%" height="15" fill="rgb(222,148,37)" fg:x="19051" fg:w="423"/><text x="1.0479%" y="239.50"></text></g><g><title>Parse::do_call (668 samples, 0.03%)</title><rect x="0.7921%" y="261" width="0.0280%" height="15" fill="rgb(234,67,33)" fg:x="18912" fg:w="668"/><text x="1.0421%" y="271.50"></text></g><g><title>Parse::do_one_block (927 samples, 0.04%)</title><rect x="0.7903%" y="293" width="0.0388%" height="15" fill="rgb(247,98,35)" fg:x="18869" fg:w="927"/><text x="1.0403%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (914 samples, 0.04%)</title><rect x="0.7908%" y="277" width="0.0383%" height="15" fill="rgb(247,138,52)" fg:x="18882" fg:w="914"/><text x="1.0408%" y="287.50"></text></g><g><title>Parse::do_all_blocks (938 samples, 0.04%)</title><rect x="0.7903%" y="309" width="0.0393%" height="15" fill="rgb(213,79,30)" fg:x="18868" fg:w="938"/><text x="1.0403%" y="319.50"></text></g><g><title>ParseGenerator::generate (1,032 samples, 0.04%)</title><rect x="0.7882%" y="341" width="0.0432%" height="15" fill="rgb(246,177,23)" fg:x="18819" fg:w="1032"/><text x="1.0382%" y="351.50"></text></g><g><title>Parse::Parse (1,029 samples, 0.04%)</title><rect x="0.7883%" y="325" width="0.0431%" height="15" fill="rgb(230,62,27)" fg:x="18822" fg:w="1029"/><text x="1.0383%" y="335.50"></text></g><g><title>Parse::do_call (1,473 samples, 0.06%)</title><rect x="0.7781%" y="357" width="0.0617%" height="15" fill="rgb(216,154,8)" fg:x="18577" fg:w="1473"/><text x="1.0281%" y="367.50"></text></g><g><title>Parse::do_one_block (1,720 samples, 0.07%)</title><rect x="0.7766%" y="389" width="0.0720%" height="15" fill="rgb(244,35,45)" fg:x="18541" fg:w="1720"/><text x="1.0266%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (1,714 samples, 0.07%)</title><rect x="0.7768%" y="373" width="0.0718%" height="15" fill="rgb(251,115,12)" fg:x="18547" fg:w="1714"/><text x="1.0268%" y="383.50"></text></g><g><title>Parse::do_all_blocks (1,723 samples, 0.07%)</title><rect x="0.7765%" y="405" width="0.0722%" height="15" fill="rgb(240,54,50)" fg:x="18540" fg:w="1723"/><text x="1.0265%" y="415.50"></text></g><g><title>ParseGenerator::generate (1,741 samples, 0.07%)</title><rect x="0.7758%" y="437" width="0.0729%" height="15" fill="rgb(233,84,52)" fg:x="18523" fg:w="1741"/><text x="1.0258%" y="447.50"></text></g><g><title>Parse::Parse (1,741 samples, 0.07%)</title><rect x="0.7758%" y="421" width="0.0729%" height="15" fill="rgb(207,117,47)" fg:x="18523" fg:w="1741"/><text x="1.0258%" y="431.50"></text></g><g><title>Parse::do_call (284 samples, 0.01%)</title><rect x="0.8494%" y="341" width="0.0119%" height="15" fill="rgb(249,43,39)" fg:x="20280" fg:w="284"/><text x="1.0994%" y="351.50"></text></g><g><title>Parse::do_one_block (344 samples, 0.01%)</title><rect x="0.8491%" y="373" width="0.0144%" height="15" fill="rgb(209,38,44)" fg:x="20272" fg:w="344"/><text x="1.0991%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (343 samples, 0.01%)</title><rect x="0.8491%" y="357" width="0.0144%" height="15" fill="rgb(236,212,23)" fg:x="20273" fg:w="343"/><text x="1.0991%" y="367.50"></text></g><g><title>Parse::do_all_blocks (347 samples, 0.01%)</title><rect x="0.8490%" y="389" width="0.0145%" height="15" fill="rgb(242,79,21)" fg:x="20271" fg:w="347"/><text x="1.0990%" y="399.50"></text></g><g><title>ParseGenerator::generate (356 samples, 0.01%)</title><rect x="0.8488%" y="421" width="0.0149%" height="15" fill="rgb(211,96,35)" fg:x="20266" fg:w="356"/><text x="1.0988%" y="431.50"></text></g><g><title>Parse::Parse (356 samples, 0.01%)</title><rect x="0.8488%" y="405" width="0.0149%" height="15" fill="rgb(253,215,40)" fg:x="20266" fg:w="356"/><text x="1.0988%" y="415.50"></text></g><g><title>PredictedCallGenerator::generate (419 samples, 0.02%)</title><rect x="0.8487%" y="437" width="0.0175%" height="15" fill="rgb(211,81,21)" fg:x="20264" fg:w="419"/><text x="1.0987%" y="447.50"></text></g><g><title>Parse::do_call (2,388 samples, 0.10%)</title><rect x="0.7671%" y="453" width="0.1000%" height="15" fill="rgb(208,190,38)" fg:x="18316" fg:w="2388"/><text x="1.0171%" y="463.50"></text></g><g><title>Parse::do_all_blocks (2,399 samples, 0.10%)</title><rect x="0.7670%" y="501" width="0.1005%" height="15" fill="rgb(235,213,38)" fg:x="18314" fg:w="2399"/><text x="1.0170%" y="511.50"></text></g><g><title>Parse::do_one_block (2,399 samples, 0.10%)</title><rect x="0.7670%" y="485" width="0.1005%" height="15" fill="rgb(237,122,38)" fg:x="18314" fg:w="2399"/><text x="1.0170%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (2,399 samples, 0.10%)</title><rect x="0.7670%" y="469" width="0.1005%" height="15" fill="rgb(244,218,35)" fg:x="18314" fg:w="2399"/><text x="1.0170%" y="479.50"></text></g><g><title>C2Compiler::compile_method (2,463 samples, 0.10%)</title><rect x="0.7645%" y="565" width="0.1032%" height="15" fill="rgb(240,68,47)" fg:x="18252" fg:w="2463"/><text x="1.0145%" y="575.50"></text></g><g><title>Compile::Compile (2,463 samples, 0.10%)</title><rect x="0.7645%" y="549" width="0.1032%" height="15" fill="rgb(210,16,53)" fg:x="18252" fg:w="2463"/><text x="1.0145%" y="559.50"></text></g><g><title>ParseGenerator::generate (2,401 samples, 0.10%)</title><rect x="0.7670%" y="533" width="0.1006%" height="15" fill="rgb(235,124,12)" fg:x="18314" fg:w="2401"/><text x="1.0170%" y="543.50"></text></g><g><title>Parse::Parse (2,401 samples, 0.10%)</title><rect x="0.7670%" y="517" width="0.1006%" height="15" fill="rgb(224,169,11)" fg:x="18314" fg:w="2401"/><text x="1.0170%" y="527.50"></text></g><g><title>PhaseCFG::do_global_code_motion (271 samples, 0.01%)</title><rect x="0.8710%" y="549" width="0.0114%" height="15" fill="rgb(250,166,2)" fg:x="20795" fg:w="271"/><text x="1.1210%" y="559.50"></text></g><g><title>PhaseCFG::global_code_motion (271 samples, 0.01%)</title><rect x="0.8710%" y="533" width="0.0114%" height="15" fill="rgb(242,216,29)" fg:x="20795" fg:w="271"/><text x="1.1210%" y="543.50"></text></g><g><title>Compile::Code_Gen (399 samples, 0.02%)</title><rect x="0.8678%" y="565" width="0.0167%" height="15" fill="rgb(230,116,27)" fg:x="20720" fg:w="399"/><text x="1.1178%" y="575.50"></text></g><g><title>Compile::BuildOopMaps (866 samples, 0.04%)</title><rect x="0.8852%" y="517" width="0.0363%" height="15" fill="rgb(228,99,48)" fg:x="21136" fg:w="866"/><text x="1.1352%" y="527.50"></text></g><g><title>Compile::shorten_branches (388 samples, 0.02%)</title><rect x="0.9242%" y="501" width="0.0163%" height="15" fill="rgb(253,11,6)" fg:x="22067" fg:w="388"/><text x="1.1742%" y="511.50"></text></g><g><title>Compile::init_buffer (454 samples, 0.02%)</title><rect x="0.9215%" y="517" width="0.0190%" height="15" fill="rgb(247,143,39)" fg:x="22002" fg:w="454"/><text x="1.1715%" y="527.50"></text></g><g><title>Compile::Output (1,337 samples, 0.06%)</title><rect x="0.8846%" y="533" width="0.0560%" height="15" fill="rgb(236,97,10)" fg:x="21120" fg:w="1337"/><text x="1.1346%" y="543.50"></text></g><g><title>Compile::Process_OopMap_Node (239 samples, 0.01%)</title><rect x="0.9474%" y="517" width="0.0100%" height="15" fill="rgb(233,208,19)" fg:x="22620" fg:w="239"/><text x="1.1974%" y="527.50"></text></g><g><title>Compile::fill_buffer (578 samples, 0.02%)</title><rect x="0.9407%" y="533" width="0.0242%" height="15" fill="rgb(216,164,2)" fg:x="22460" fg:w="578"/><text x="1.1907%" y="543.50"></text></g><g><title>Matcher::find_shared (407 samples, 0.02%)</title><rect x="0.9682%" y="517" width="0.0170%" height="15" fill="rgb(220,129,5)" fg:x="23117" fg:w="407"/><text x="1.2182%" y="527.50"></text></g><g><title>Arena::contains (551 samples, 0.02%)</title><rect x="1.0014%" y="501" width="0.0231%" height="15" fill="rgb(242,17,10)" fg:x="23910" fg:w="551"/><text x="1.2514%" y="511.50"></text></g><g><title>Matcher::Label_Root (349 samples, 0.01%)</title><rect x="1.0485%" y="469" width="0.0146%" height="15" fill="rgb(242,107,0)" fg:x="25033" fg:w="349"/><text x="1.2985%" y="479.50"></text></g><g><title>Matcher::Label_Root (551 samples, 0.02%)</title><rect x="1.0442%" y="485" width="0.0231%" height="15" fill="rgb(251,28,31)" fg:x="24932" fg:w="551"/><text x="1.2942%" y="495.50"></text></g><g><title>Matcher::ReduceInst (372 samples, 0.02%)</title><rect x="1.0673%" y="485" width="0.0156%" height="15" fill="rgb(233,223,10)" fg:x="25483" fg:w="372"/><text x="1.3173%" y="495.50"></text></g><g><title>Matcher::match_tree (1,181 samples, 0.05%)</title><rect x="1.0341%" y="501" width="0.0495%" height="15" fill="rgb(215,21,27)" fg:x="24689" fg:w="1181"/><text x="1.2841%" y="511.50"></text></g><g><title>Matcher::xform (2,497 samples, 0.10%)</title><rect x="0.9858%" y="517" width="0.1046%" height="15" fill="rgb(232,23,21)" fg:x="23538" fg:w="2497"/><text x="1.2358%" y="527.50"></text></g><g><title>Matcher::match (2,999 samples, 0.13%)</title><rect x="0.9653%" y="533" width="0.1256%" height="15" fill="rgb(244,5,23)" fg:x="23048" fg:w="2999"/><text x="1.2153%" y="543.50"></text></g><g><title>Node_Backward_Iterator::next (290 samples, 0.01%)</title><rect x="1.1387%" y="485" width="0.0121%" height="15" fill="rgb(226,81,46)" fg:x="27188" fg:w="290"/><text x="1.3887%" y="495.50"></text></g><g><title>PhaseCFG::schedule_late (811 samples, 0.03%)</title><rect x="1.1335%" y="501" width="0.0340%" height="15" fill="rgb(247,70,30)" fg:x="27064" fg:w="811"/><text x="1.3835%" y="511.50"></text></g><g><title>PhaseCFG::schedule_local (676 samples, 0.03%)</title><rect x="1.1675%" y="501" width="0.0283%" height="15" fill="rgb(212,68,19)" fg:x="27875" fg:w="676"/><text x="1.4175%" y="511.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (513 samples, 0.02%)</title><rect x="1.1982%" y="501" width="0.0215%" height="15" fill="rgb(240,187,13)" fg:x="28607" fg:w="513"/><text x="1.4482%" y="511.50"></text></g><g><title>PhaseLive::add_liveout (358 samples, 0.01%)</title><rect x="1.2553%" y="485" width="0.0150%" height="15" fill="rgb(223,113,26)" fg:x="29972" fg:w="358"/><text x="1.5053%" y="495.50"></text></g><g><title>PhaseLive::compute (893 samples, 0.04%)</title><rect x="1.2331%" y="501" width="0.0374%" height="15" fill="rgb(206,192,2)" fg:x="29441" fg:w="893"/><text x="1.4831%" y="511.50"></text></g><g><title>PhaseCFG::global_code_motion (3,811 samples, 0.16%)</title><rect x="1.1118%" y="517" width="0.1596%" height="15" fill="rgb(241,108,4)" fg:x="26546" fg:w="3811"/><text x="1.3618%" y="527.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,976 samples, 0.17%)</title><rect x="1.1050%" y="533" width="0.1665%" height="15" fill="rgb(247,173,49)" fg:x="26382" fg:w="3976"/><text x="1.3550%" y="543.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,119 samples, 0.05%)</title><rect x="1.2823%" y="517" width="0.0469%" height="15" fill="rgb(224,114,35)" fg:x="30616" fg:w="1119"/><text x="1.5323%" y="527.50"></text></g><g><title>IndexSetIterator::advance_and_next (312 samples, 0.01%)</title><rect x="1.3550%" y="501" width="0.0131%" height="15" fill="rgb(245,159,27)" fg:x="32352" fg:w="312"/><text x="1.6050%" y="511.50"></text></g><g><title>IndexSetIterator::advance_and_next (369 samples, 0.02%)</title><rect x="1.3946%" y="485" width="0.0155%" height="15" fill="rgb(245,172,44)" fg:x="33298" fg:w="369"/><text x="1.6446%" y="495.50"></text></g><g><title>PhaseIFG::re_insert (814 samples, 0.03%)</title><rect x="1.3767%" y="501" width="0.0341%" height="15" fill="rgb(236,23,11)" fg:x="32869" fg:w="814"/><text x="1.6267%" y="511.50"></text></g><g><title>PhaseChaitin::Select (2,124 samples, 0.09%)</title><rect x="1.3292%" y="517" width="0.0890%" height="15" fill="rgb(205,117,38)" fg:x="31735" fg:w="2124"/><text x="1.5792%" y="527.50"></text></g><g><title>IndexSetIterator::advance_and_next (331 samples, 0.01%)</title><rect x="1.4294%" y="501" width="0.0139%" height="15" fill="rgb(237,72,25)" fg:x="34129" fg:w="331"/><text x="1.6794%" y="511.50"></text></g><g><title>IndexSetIterator::advance_and_next (390 samples, 0.02%)</title><rect x="1.4647%" y="485" width="0.0163%" height="15" fill="rgb(244,70,9)" fg:x="34972" fg:w="390"/><text x="1.7147%" y="495.50"></text></g><g><title>PhaseIFG::remove_node (904 samples, 0.04%)</title><rect x="1.4433%" y="501" width="0.0379%" height="15" fill="rgb(217,125,39)" fg:x="34460" fg:w="904"/><text x="1.6933%" y="511.50"></text></g><g><title>PhaseChaitin::Simplify (1,506 samples, 0.06%)</title><rect x="1.4181%" y="517" width="0.0631%" height="15" fill="rgb(235,36,10)" fg:x="33859" fg:w="1506"/><text x="1.6681%" y="527.50"></text></g><g><title>PhaseChaitin::Split (3,634 samples, 0.15%)</title><rect x="1.4812%" y="517" width="0.1522%" height="15" fill="rgb(251,123,47)" fg:x="35365" fg:w="3634"/><text x="1.7312%" y="527.50"></text></g><g><title>IndexSet::IndexSet (273 samples, 0.01%)</title><rect x="1.6732%" y="501" width="0.0114%" height="15" fill="rgb(221,13,13)" fg:x="39950" fg:w="273"/><text x="1.9232%" y="511.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (776 samples, 0.03%)</title><rect x="1.6888%" y="501" width="0.0325%" height="15" fill="rgb(238,131,9)" fg:x="40321" fg:w="776"/><text x="1.9388%" y="511.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (574 samples, 0.02%)</title><rect x="1.7259%" y="501" width="0.0240%" height="15" fill="rgb(211,50,8)" fg:x="41208" fg:w="574"/><text x="1.9759%" y="511.50"></text></g><g><title>IndexSetIterator::advance_and_next (847 samples, 0.04%)</title><rect x="1.8370%" y="485" width="0.0355%" height="15" fill="rgb(245,182,24)" fg:x="43861" fg:w="847"/><text x="2.0870%" y="495.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,932 samples, 0.12%)</title><rect x="1.7500%" y="501" width="0.1228%" height="15" fill="rgb(242,14,37)" fg:x="41782" fg:w="2932"/><text x="2.0000%" y="511.50"></text></g><g><title>IndexSetIterator::advance_and_next (244 samples, 0.01%)</title><rect x="1.9004%" y="485" width="0.0102%" height="15" fill="rgb(246,228,12)" fg:x="45373" fg:w="244"/><text x="2.1504%" y="495.50"></text></g><g><title>RegMask::Size (357 samples, 0.01%)</title><rect x="1.9106%" y="485" width="0.0150%" height="15" fill="rgb(213,55,15)" fg:x="45617" fg:w="357"/><text x="2.1606%" y="495.50"></text></g><g><title>RegMask::smear_to_sets (767 samples, 0.03%)</title><rect x="1.9255%" y="485" width="0.0321%" height="15" fill="rgb(209,9,3)" fg:x="45974" fg:w="767"/><text x="2.1755%" y="495.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,924 samples, 0.08%)</title><rect x="1.8774%" y="501" width="0.0806%" height="15" fill="rgb(230,59,30)" fg:x="44825" fg:w="1924"/><text x="2.1274%" y="511.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,861 samples, 0.33%)</title><rect x="1.6335%" y="517" width="0.3292%" height="15" fill="rgb(209,121,21)" fg:x="39002" fg:w="7861"/><text x="1.8835%" y="527.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (521 samples, 0.02%)</title><rect x="1.9628%" y="517" width="0.0218%" height="15" fill="rgb(220,109,13)" fg:x="46863" fg:w="521"/><text x="2.2128%" y="527.50"></text></g><g><title>PhaseChaitin::interfere_with_live (383 samples, 0.02%)</title><rect x="1.9685%" y="501" width="0.0160%" height="15" fill="rgb(232,18,1)" fg:x="47001" fg:w="383"/><text x="2.2185%" y="511.50"></text></g><g><title>RegMask::Size (1,327 samples, 0.06%)</title><rect x="2.0948%" y="501" width="0.0556%" height="15" fill="rgb(215,41,42)" fg:x="50016" fg:w="1327"/><text x="2.3448%" y="511.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,356 samples, 0.18%)</title><rect x="1.9992%" y="517" width="0.1824%" height="15" fill="rgb(224,123,36)" fg:x="47732" fg:w="4356"/><text x="2.2492%" y="527.50"></text></g><g><title>PhaseChaitin::merge_multidefs (550 samples, 0.02%)</title><rect x="2.1817%" y="517" width="0.0230%" height="15" fill="rgb(240,125,3)" fg:x="52089" fg:w="550"/><text x="2.4317%" y="527.50"></text></g><g><title>PhaseChaitin::elide_copy (2,204 samples, 0.09%)</title><rect x="2.2900%" y="501" width="0.0923%" height="15" fill="rgb(205,98,50)" fg:x="54676" fg:w="2204"/><text x="2.5400%" y="511.50"></text></g><g><title>find_lowest_bit (364 samples, 0.02%)</title><rect x="2.3889%" y="501" width="0.0152%" height="15" fill="rgb(205,185,37)" fg:x="57037" fg:w="364"/><text x="2.6389%" y="511.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,766 samples, 0.20%)</title><rect x="2.2047%" y="517" width="0.1996%" height="15" fill="rgb(238,207,15)" fg:x="52639" fg:w="4766"/><text x="2.4547%" y="527.50"></text></g><g><title>IndexSet::lrg_union (285 samples, 0.01%)</title><rect x="2.4317%" y="469" width="0.0119%" height="15" fill="rgb(213,199,42)" fg:x="58058" fg:w="285"/><text x="2.6817%" y="479.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (263 samples, 0.01%)</title><rect x="2.4444%" y="469" width="0.0110%" height="15" fill="rgb(235,201,11)" fg:x="58362" fg:w="263"/><text x="2.6944%" y="479.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (711 samples, 0.03%)</title><rect x="2.4300%" y="485" width="0.0298%" height="15" fill="rgb(207,46,11)" fg:x="58019" fg:w="711"/><text x="2.6800%" y="495.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,093 samples, 0.05%)</title><rect x="2.4141%" y="517" width="0.0458%" height="15" fill="rgb(241,35,35)" fg:x="57638" fg:w="1093"/><text x="2.6641%" y="527.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (919 samples, 0.04%)</title><rect x="2.4213%" y="501" width="0.0385%" height="15" fill="rgb(243,32,47)" fg:x="57812" fg:w="919"/><text x="2.6713%" y="511.50"></text></g><g><title>IndexSetIterator::advance_and_next (539 samples, 0.02%)</title><rect x="2.4771%" y="501" width="0.0226%" height="15" fill="rgb(247,202,23)" fg:x="59143" fg:w="539"/><text x="2.7271%" y="511.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (950 samples, 0.04%)</title><rect x="2.4599%" y="517" width="0.0398%" height="15" fill="rgb(219,102,11)" fg:x="58733" fg:w="950"/><text x="2.7099%" y="527.50"></text></g><g><title>IndexSetIterator::advance_and_next (376 samples, 0.02%)</title><rect x="2.5212%" y="501" width="0.0157%" height="15" fill="rgb(243,110,44)" fg:x="60196" fg:w="376"/><text x="2.7712%" y="511.50"></text></g><g><title>PhaseIFG::SquareUp (892 samples, 0.04%)</title><rect x="2.4997%" y="517" width="0.0374%" height="15" fill="rgb(222,74,54)" fg:x="59683" fg:w="892"/><text x="2.7497%" y="527.50"></text></g><g><title>PhaseIFG::init (394 samples, 0.02%)</title><rect x="2.5371%" y="517" width="0.0165%" height="15" fill="rgb(216,99,12)" fg:x="60575" fg:w="394"/><text x="2.7871%" y="527.50"></text></g><g><title>IndexSetIterator::advance_and_next (335 samples, 0.01%)</title><rect x="2.6579%" y="485" width="0.0140%" height="15" fill="rgb(226,22,26)" fg:x="63459" fg:w="335"/><text x="2.9079%" y="495.50"></text></g><g><title>PhaseLive::add_liveout (1,351 samples, 0.06%)</title><rect x="2.6159%" y="501" width="0.0566%" height="15" fill="rgb(217,163,10)" fg:x="62458" fg:w="1351"/><text x="2.8659%" y="511.50"></text></g><g><title>PhaseLive::compute (2,857 samples, 0.12%)</title><rect x="2.5537%" y="517" width="0.1197%" height="15" fill="rgb(213,25,53)" fg:x="60971" fg:w="2857"/><text x="2.8037%" y="527.50"></text></g><g><title>PhaseChaitin::Register_Allocate (33,511 samples, 1.40%)</title><rect x="1.2766%" y="533" width="1.4035%" height="15" fill="rgb(252,105,26)" fg:x="30480" fg:w="33511"/><text x="1.5266%" y="543.50"></text></g><g><title>Compile::Code_Gen (42,926 samples, 1.80%)</title><rect x="0.8845%" y="549" width="1.7979%" height="15" fill="rgb(220,39,43)" fg:x="21119" fg:w="42926"/><text x="1.1345%" y="559.50">C..</text></g><g><title>Parse::do_all_blocks (239 samples, 0.01%)</title><rect x="2.6885%" y="37" width="0.0100%" height="15" fill="rgb(229,68,48)" fg:x="64190" fg:w="239"/><text x="2.9385%" y="47.50"></text></g><g><title>ParseGenerator::generate (268 samples, 0.01%)</title><rect x="2.6879%" y="69" width="0.0112%" height="15" fill="rgb(252,8,32)" fg:x="64175" fg:w="268"/><text x="2.9379%" y="79.50"></text></g><g><title>Parse::Parse (268 samples, 0.01%)</title><rect x="2.6879%" y="53" width="0.0112%" height="15" fill="rgb(223,20,43)" fg:x="64175" fg:w="268"/><text x="2.9379%" y="63.50"></text></g><g><title>Parse::do_call (376 samples, 0.02%)</title><rect x="2.6853%" y="85" width="0.0157%" height="15" fill="rgb(229,81,49)" fg:x="64114" fg:w="376"/><text x="2.9353%" y="95.50"></text></g><g><title>ParseGenerator::generate (446 samples, 0.02%)</title><rect x="2.6850%" y="165" width="0.0187%" height="15" fill="rgb(236,28,36)" fg:x="64107" fg:w="446"/><text x="2.9350%" y="175.50"></text></g><g><title>Parse::Parse (446 samples, 0.02%)</title><rect x="2.6850%" y="149" width="0.0187%" height="15" fill="rgb(249,185,26)" fg:x="64107" fg:w="446"/><text x="2.9350%" y="159.50"></text></g><g><title>Parse::do_all_blocks (444 samples, 0.02%)</title><rect x="2.6851%" y="133" width="0.0186%" height="15" fill="rgb(249,174,33)" fg:x="64109" fg:w="444"/><text x="2.9351%" y="143.50"></text></g><g><title>Parse::do_one_block (444 samples, 0.02%)</title><rect x="2.6851%" y="117" width="0.0186%" height="15" fill="rgb(233,201,37)" fg:x="64109" fg:w="444"/><text x="2.9351%" y="127.50"></text></g><g><title>Parse::do_one_bytecode (441 samples, 0.02%)</title><rect x="2.6852%" y="101" width="0.0185%" height="15" fill="rgb(221,78,26)" fg:x="64112" fg:w="441"/><text x="2.9352%" y="111.50"></text></g><g><title>Parse::do_call (559 samples, 0.02%)</title><rect x="2.6839%" y="181" width="0.0234%" height="15" fill="rgb(250,127,30)" fg:x="64080" fg:w="559"/><text x="2.9339%" y="191.50"></text></g><g><title>ParseGenerator::generate (567 samples, 0.02%)</title><rect x="2.6838%" y="261" width="0.0237%" height="15" fill="rgb(230,49,44)" fg:x="64079" fg:w="567"/><text x="2.9338%" y="271.50"></text></g><g><title>Parse::Parse (567 samples, 0.02%)</title><rect x="2.6838%" y="245" width="0.0237%" height="15" fill="rgb(229,67,23)" fg:x="64079" fg:w="567"/><text x="2.9338%" y="255.50"></text></g><g><title>Parse::do_all_blocks (566 samples, 0.02%)</title><rect x="2.6839%" y="229" width="0.0237%" height="15" fill="rgb(249,83,47)" fg:x="64080" fg:w="566"/><text x="2.9339%" y="239.50"></text></g><g><title>Parse::do_one_block (566 samples, 0.02%)</title><rect x="2.6839%" y="213" width="0.0237%" height="15" fill="rgb(215,43,3)" fg:x="64080" fg:w="566"/><text x="2.9339%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (566 samples, 0.02%)</title><rect x="2.6839%" y="197" width="0.0237%" height="15" fill="rgb(238,154,13)" fg:x="64080" fg:w="566"/><text x="2.9339%" y="207.50"></text></g><g><title>ParseGenerator::generate (712 samples, 0.03%)</title><rect x="2.6830%" y="357" width="0.0298%" height="15" fill="rgb(219,56,2)" fg:x="64060" fg:w="712"/><text x="2.9330%" y="367.50"></text></g><g><title>Parse::Parse (712 samples, 0.03%)</title><rect x="2.6830%" y="341" width="0.0298%" height="15" fill="rgb(233,0,4)" fg:x="64060" fg:w="712"/><text x="2.9330%" y="351.50"></text></g><g><title>Parse::do_all_blocks (712 samples, 0.03%)</title><rect x="2.6830%" y="325" width="0.0298%" height="15" fill="rgb(235,30,7)" fg:x="64060" fg:w="712"/><text x="2.9330%" y="335.50"></text></g><g><title>Parse::do_one_block (712 samples, 0.03%)</title><rect x="2.6830%" y="309" width="0.0298%" height="15" fill="rgb(250,79,13)" fg:x="64060" fg:w="712"/><text x="2.9330%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (712 samples, 0.03%)</title><rect x="2.6830%" y="293" width="0.0298%" height="15" fill="rgb(211,146,34)" fg:x="64060" fg:w="712"/><text x="2.9330%" y="303.50"></text></g><g><title>Parse::do_call (712 samples, 0.03%)</title><rect x="2.6830%" y="277" width="0.0298%" height="15" fill="rgb(228,22,38)" fg:x="64060" fg:w="712"/><text x="2.9330%" y="287.50"></text></g><g><title>Parse::do_all_blocks (870 samples, 0.04%)</title><rect x="2.6830%" y="421" width="0.0364%" height="15" fill="rgb(235,168,5)" fg:x="64059" fg:w="870"/><text x="2.9330%" y="431.50"></text></g><g><title>Parse::do_one_block (870 samples, 0.04%)</title><rect x="2.6830%" y="405" width="0.0364%" height="15" fill="rgb(221,155,16)" fg:x="64059" fg:w="870"/><text x="2.9330%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (870 samples, 0.04%)</title><rect x="2.6830%" y="389" width="0.0364%" height="15" fill="rgb(215,215,53)" fg:x="64059" fg:w="870"/><text x="2.9330%" y="399.50"></text></g><g><title>Parse::do_call (870 samples, 0.04%)</title><rect x="2.6830%" y="373" width="0.0364%" height="15" fill="rgb(223,4,10)" fg:x="64059" fg:w="870"/><text x="2.9330%" y="383.50"></text></g><g><title>ParseGenerator::generate (877 samples, 0.04%)</title><rect x="2.6830%" y="453" width="0.0367%" height="15" fill="rgb(234,103,6)" fg:x="64059" fg:w="877"/><text x="2.9330%" y="463.50"></text></g><g><title>Parse::Parse (877 samples, 0.04%)</title><rect x="2.6830%" y="437" width="0.0367%" height="15" fill="rgb(227,97,0)" fg:x="64059" fg:w="877"/><text x="2.9330%" y="447.50"></text></g><g><title>Parse::do_call (1,127 samples, 0.05%)</title><rect x="2.6829%" y="469" width="0.0472%" height="15" fill="rgb(234,150,53)" fg:x="64058" fg:w="1127"/><text x="2.9329%" y="479.50"></text></g><g><title>PredictedCallGenerator::generate (249 samples, 0.01%)</title><rect x="2.7197%" y="453" width="0.0104%" height="15" fill="rgb(228,201,54)" fg:x="64936" fg:w="249"/><text x="2.9697%" y="463.50"></text></g><g><title>Compile::Compile (44,073 samples, 1.85%)</title><rect x="0.8845%" y="565" width="1.8459%" height="15" fill="rgb(222,22,37)" fg:x="21119" fg:w="44073"/><text x="1.1345%" y="575.50">C..</text></g><g><title>ParseGenerator::generate (1,134 samples, 0.05%)</title><rect x="2.6829%" y="549" width="0.0475%" height="15" fill="rgb(237,53,32)" fg:x="64058" fg:w="1134"/><text x="2.9329%" y="559.50"></text></g><g><title>Parse::Parse (1,134 samples, 0.05%)</title><rect x="2.6829%" y="533" width="0.0475%" height="15" fill="rgb(233,25,53)" fg:x="64058" fg:w="1134"/><text x="2.9329%" y="543.50"></text></g><g><title>Parse::do_all_blocks (1,134 samples, 0.05%)</title><rect x="2.6829%" y="517" width="0.0475%" height="15" fill="rgb(210,40,34)" fg:x="64058" fg:w="1134"/><text x="2.9329%" y="527.50"></text></g><g><title>Parse::do_one_block (1,134 samples, 0.05%)</title><rect x="2.6829%" y="501" width="0.0475%" height="15" fill="rgb(241,220,44)" fg:x="64058" fg:w="1134"/><text x="2.9329%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (1,134 samples, 0.05%)</title><rect x="2.6829%" y="485" width="0.0475%" height="15" fill="rgb(235,28,35)" fg:x="64058" fg:w="1134"/><text x="2.9329%" y="495.50"></text></g><g><title>Compile::final_graph_reshaping_walk (330 samples, 0.01%)</title><rect x="2.7308%" y="533" width="0.0138%" height="15" fill="rgb(210,56,17)" fg:x="65200" fg:w="330"/><text x="2.9808%" y="543.50"></text></g><g><title>Compile::final_graph_reshaping (337 samples, 0.01%)</title><rect x="2.7305%" y="549" width="0.0141%" height="15" fill="rgb(224,130,29)" fg:x="65194" fg:w="337"/><text x="2.9805%" y="559.50"></text></g><g><title>Compile::remove_speculative_types (271 samples, 0.01%)</title><rect x="2.7471%" y="549" width="0.0114%" height="15" fill="rgb(235,212,8)" fg:x="65590" fg:w="271"/><text x="2.9971%" y="559.50"></text></g><g><title>ConnectionGraph::compute_escape (519 samples, 0.02%)</title><rect x="2.7587%" y="533" width="0.0217%" height="15" fill="rgb(223,33,50)" fg:x="65866" fg:w="519"/><text x="3.0087%" y="543.50"></text></g><g><title>ConnectionGraph::do_analysis (524 samples, 0.02%)</title><rect x="2.7585%" y="549" width="0.0219%" height="15" fill="rgb(219,149,13)" fg:x="65862" fg:w="524"/><text x="3.0085%" y="559.50"></text></g><g><title>PhaseCCP::analyze (809 samples, 0.03%)</title><rect x="2.7806%" y="549" width="0.0339%" height="15" fill="rgb(250,156,29)" fg:x="66389" fg:w="809"/><text x="3.0306%" y="559.50"></text></g><g><title>PhaseCCP::do_transform (249 samples, 0.01%)</title><rect x="2.8145%" y="549" width="0.0104%" height="15" fill="rgb(216,193,19)" fg:x="67198" fg:w="249"/><text x="3.0645%" y="559.50"></text></g><g><title>PhaseCCP::transform (249 samples, 0.01%)</title><rect x="2.8145%" y="533" width="0.0104%" height="15" fill="rgb(216,135,14)" fg:x="67198" fg:w="249"/><text x="3.0645%" y="543.50"></text></g><g><title>IdealLoopTree::iteration_split (262 samples, 0.01%)</title><rect x="2.8298%" y="533" width="0.0110%" height="15" fill="rgb(241,47,5)" fg:x="67563" fg:w="262"/><text x="3.0798%" y="543.50"></text></g><g><title>IdealLoopTree::loop_predication (284 samples, 0.01%)</title><rect x="2.8407%" y="533" width="0.0119%" height="15" fill="rgb(233,42,35)" fg:x="67825" fg:w="284"/><text x="3.0907%" y="543.50"></text></g><g><title>NTarjan::DFS (342 samples, 0.01%)</title><rect x="2.8894%" y="517" width="0.0143%" height="15" fill="rgb(231,13,6)" fg:x="68988" fg:w="342"/><text x="3.1394%" y="527.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,242 samples, 0.05%)</title><rect x="2.8549%" y="533" width="0.0520%" height="15" fill="rgb(207,181,40)" fg:x="68163" fg:w="1242"/><text x="3.1049%" y="543.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (501 samples, 0.02%)</title><rect x="2.9590%" y="517" width="0.0210%" height="15" fill="rgb(254,173,49)" fg:x="70650" fg:w="501"/><text x="3.2090%" y="527.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (468 samples, 0.02%)</title><rect x="2.9604%" y="501" width="0.0196%" height="15" fill="rgb(221,1,38)" fg:x="70683" fg:w="468"/><text x="3.2104%" y="511.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,822 samples, 0.08%)</title><rect x="2.9069%" y="533" width="0.0763%" height="15" fill="rgb(206,124,46)" fg:x="69405" fg:w="1822"/><text x="3.1569%" y="543.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (307 samples, 0.01%)</title><rect x="3.1074%" y="469" width="0.0129%" height="15" fill="rgb(249,21,11)" fg:x="74191" fg:w="307"/><text x="3.3574%" y="479.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (472 samples, 0.02%)</title><rect x="3.1025%" y="485" width="0.0198%" height="15" fill="rgb(222,201,40)" fg:x="74075" fg:w="472"/><text x="3.3525%" y="495.50"></text></g><g><title>PhaseIdealLoop::dom_depth (890 samples, 0.04%)</title><rect x="3.2771%" y="469" width="0.0373%" height="15" fill="rgb(235,61,29)" fg:x="78243" fg:w="890"/><text x="3.5271%" y="479.50"></text></g><g><title>PhaseIdealLoop::is_dominator (4,396 samples, 0.18%)</title><rect x="3.1306%" y="485" width="0.1841%" height="15" fill="rgb(219,207,3)" fg:x="74747" fg:w="4396"/><text x="3.3806%" y="495.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (5,741 samples, 0.24%)</title><rect x="3.0756%" y="501" width="0.2405%" height="15" fill="rgb(222,56,46)" fg:x="73433" fg:w="5741"/><text x="3.3256%" y="511.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (6,675 samples, 0.28%)</title><rect x="3.0401%" y="517" width="0.2796%" height="15" fill="rgb(239,76,54)" fg:x="72585" fg:w="6675"/><text x="3.2901%" y="527.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (8,055 samples, 0.34%)</title><rect x="2.9832%" y="533" width="0.3374%" height="15" fill="rgb(231,124,27)" fg:x="71227" fg:w="8055"/><text x="3.2332%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (251 samples, 0.01%)</title><rect x="3.3492%" y="517" width="0.0105%" height="15" fill="rgb(249,195,6)" fg:x="79965" fg:w="251"/><text x="3.5992%" y="527.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (946 samples, 0.04%)</title><rect x="3.3206%" y="533" width="0.0396%" height="15" fill="rgb(237,174,47)" fg:x="79282" fg:w="946"/><text x="3.5706%" y="543.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (280 samples, 0.01%)</title><rect x="3.3899%" y="517" width="0.0117%" height="15" fill="rgb(206,201,31)" fg:x="80936" fg:w="280"/><text x="3.6399%" y="527.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (785 samples, 0.03%)</title><rect x="3.4016%" y="517" width="0.0329%" height="15" fill="rgb(231,57,52)" fg:x="81216" fg:w="785"/><text x="3.6516%" y="527.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,715 samples, 0.07%)</title><rect x="3.3630%" y="533" width="0.0718%" height="15" fill="rgb(248,177,22)" fg:x="80294" fg:w="1715"/><text x="3.6130%" y="543.50"></text></g><g><title>RegionNode::Ideal (260 samples, 0.01%)</title><rect x="3.4798%" y="501" width="0.0109%" height="15" fill="rgb(215,211,37)" fg:x="83084" fg:w="260"/><text x="3.7298%" y="511.50"></text></g><g><title>PhaseIterGVN::transform_old (1,407 samples, 0.06%)</title><rect x="3.4368%" y="517" width="0.0589%" height="15" fill="rgb(241,128,51)" fg:x="82056" fg:w="1407"/><text x="3.6868%" y="527.50"></text></g><g><title>PhaseIterGVN::optimize (1,460 samples, 0.06%)</title><rect x="3.4349%" y="533" width="0.0611%" height="15" fill="rgb(227,165,31)" fg:x="82011" fg:w="1460"/><text x="3.6849%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (16,146 samples, 0.68%)</title><rect x="2.8259%" y="549" width="0.6762%" height="15" fill="rgb(228,167,24)" fg:x="67472" fg:w="16146"/><text x="3.0759%" y="559.50"></text></g><g><title>IfNode::Ideal (305 samples, 0.01%)</title><rect x="3.5231%" y="517" width="0.0128%" height="15" fill="rgb(228,143,12)" fg:x="84117" fg:w="305"/><text x="3.7731%" y="527.50"></text></g><g><title>RegionNode::Ideal (329 samples, 0.01%)</title><rect x="3.5811%" y="517" width="0.0138%" height="15" fill="rgb(249,149,8)" fg:x="85502" fg:w="329"/><text x="3.8311%" y="527.50"></text></g><g><title>StoreNode::Ideal (241 samples, 0.01%)</title><rect x="3.5955%" y="517" width="0.0101%" height="15" fill="rgb(243,35,44)" fg:x="85847" fg:w="241"/><text x="3.8455%" y="527.50"></text></g><g><title>PhaseIterGVN::transform_old (2,336 samples, 0.10%)</title><rect x="3.5104%" y="533" width="0.0978%" height="15" fill="rgb(246,89,9)" fg:x="83813" fg:w="2336"/><text x="3.7604%" y="543.50"></text></g><g><title>PhaseIterGVN::optimize (2,427 samples, 0.10%)</title><rect x="3.5073%" y="549" width="0.1017%" height="15" fill="rgb(233,213,13)" fg:x="83740" fg:w="2427"/><text x="3.7573%" y="559.50"></text></g><g><title>PhaseIterGVN::transform_old (277 samples, 0.01%)</title><rect x="3.6108%" y="517" width="0.0116%" height="15" fill="rgb(233,141,41)" fg:x="86211" fg:w="277"/><text x="3.8608%" y="527.50"></text></g><g><title>PhaseIterGVN::optimize (290 samples, 0.01%)</title><rect x="3.6104%" y="533" width="0.0121%" height="15" fill="rgb(239,167,4)" fg:x="86201" fg:w="290"/><text x="3.8604%" y="543.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (435 samples, 0.02%)</title><rect x="3.6099%" y="549" width="0.0182%" height="15" fill="rgb(209,217,16)" fg:x="86190" fg:w="435"/><text x="3.8599%" y="559.50"></text></g><g><title>Compile::Optimize (21,621 samples, 0.91%)</title><rect x="2.7305%" y="565" width="0.9056%" height="15" fill="rgb(219,88,35)" fg:x="65193" fg:w="21621"/><text x="2.9805%" y="575.50"></text></g><g><title>Parse::do_call (495 samples, 0.02%)</title><rect x="3.6513%" y="437" width="0.0207%" height="15" fill="rgb(220,193,23)" fg:x="87179" fg:w="495"/><text x="3.9013%" y="447.50"></text></g><g><title>Parse::do_one_block (717 samples, 0.03%)</title><rect x="3.6497%" y="469" width="0.0300%" height="15" fill="rgb(230,90,52)" fg:x="87139" fg:w="717"/><text x="3.8997%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (713 samples, 0.03%)</title><rect x="3.6498%" y="453" width="0.0299%" height="15" fill="rgb(252,106,19)" fg:x="87143" fg:w="713"/><text x="3.8998%" y="463.50"></text></g><g><title>Parse::do_all_blocks (719 samples, 0.03%)</title><rect x="3.6496%" y="485" width="0.0301%" height="15" fill="rgb(206,74,20)" fg:x="87138" fg:w="719"/><text x="3.8996%" y="495.50"></text></g><g><title>ParseGenerator::generate (730 samples, 0.03%)</title><rect x="3.6496%" y="517" width="0.0306%" height="15" fill="rgb(230,138,44)" fg:x="87138" fg:w="730"/><text x="3.8996%" y="527.50"></text></g><g><title>Parse::Parse (730 samples, 0.03%)</title><rect x="3.6496%" y="501" width="0.0306%" height="15" fill="rgb(235,182,43)" fg:x="87138" fg:w="730"/><text x="3.8996%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (857 samples, 0.04%)</title><rect x="3.6454%" y="565" width="0.0359%" height="15" fill="rgb(242,16,51)" fg:x="87038" fg:w="857"/><text x="3.8954%" y="575.50"></text></g><g><title>C2Compiler::compile_method (857 samples, 0.04%)</title><rect x="3.6454%" y="549" width="0.0359%" height="15" fill="rgb(248,9,4)" fg:x="87038" fg:w="857"/><text x="3.8954%" y="559.50"></text></g><g><title>Compile::Compile (857 samples, 0.04%)</title><rect x="3.6454%" y="533" width="0.0359%" height="15" fill="rgb(210,31,22)" fg:x="87038" fg:w="857"/><text x="3.8954%" y="543.50"></text></g><g><title>ParseGenerator::generate (240 samples, 0.01%)</title><rect x="3.7000%" y="565" width="0.0101%" height="15" fill="rgb(239,54,39)" fg:x="88340" fg:w="240"/><text x="3.9500%" y="575.50"></text></g><g><title>Parse::Parse (240 samples, 0.01%)</title><rect x="3.7000%" y="549" width="0.0101%" height="15" fill="rgb(230,99,41)" fg:x="88340" fg:w="240"/><text x="3.9500%" y="559.50"></text></g><g><title>Parse::do_all_blocks (240 samples, 0.01%)</title><rect x="3.7000%" y="533" width="0.0101%" height="15" fill="rgb(253,106,12)" fg:x="88340" fg:w="240"/><text x="3.9500%" y="543.50"></text></g><g><title>Parse::do_one_block (240 samples, 0.01%)</title><rect x="3.7000%" y="517" width="0.0101%" height="15" fill="rgb(213,46,41)" fg:x="88340" fg:w="240"/><text x="3.9500%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (240 samples, 0.01%)</title><rect x="3.7000%" y="501" width="0.0101%" height="15" fill="rgb(215,133,35)" fg:x="88340" fg:w="240"/><text x="3.9500%" y="511.50"></text></g><g><title>Parse::do_call (240 samples, 0.01%)</title><rect x="3.7000%" y="485" width="0.0101%" height="15" fill="rgb(213,28,5)" fg:x="88340" fg:w="240"/><text x="3.9500%" y="495.50"></text></g><g><title>[unknown] (70,639 samples, 2.96%)</title><rect x="0.7644%" y="581" width="2.9586%" height="15" fill="rgb(215,77,49)" fg:x="18250" fg:w="70639"/><text x="1.0144%" y="591.50">[un..</text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (484 samples, 0.02%)</title><rect x="3.7315%" y="437" width="0.0203%" height="15" fill="rgb(248,100,22)" fg:x="89094" fg:w="484"/><text x="3.9815%" y="447.50"></text></g><g><title>C2Compiler::compile_method (741 samples, 0.03%)</title><rect x="3.7236%" y="469" width="0.0310%" height="15" fill="rgb(208,67,9)" fg:x="88904" fg:w="741"/><text x="3.9736%" y="479.50"></text></g><g><title>Compile::Compile (732 samples, 0.03%)</title><rect x="3.7240%" y="453" width="0.0307%" height="15" fill="rgb(219,133,21)" fg:x="88913" fg:w="732"/><text x="3.9740%" y="463.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (908 samples, 0.04%)</title><rect x="3.7234%" y="485" width="0.0380%" height="15" fill="rgb(246,46,29)" fg:x="88899" fg:w="908"/><text x="3.9734%" y="495.50"></text></g><g><title>__GI___clone (1,065 samples, 0.04%)</title><rect x="3.7232%" y="581" width="0.0446%" height="15" fill="rgb(246,185,52)" fg:x="88895" fg:w="1065"/><text x="3.9732%" y="591.50"></text></g><g><title>start_thread (1,064 samples, 0.04%)</title><rect x="3.7232%" y="565" width="0.0446%" height="15" fill="rgb(252,136,11)" fg:x="88896" fg:w="1064"/><text x="3.9732%" y="575.50"></text></g><g><title>thread_native_entry (1,063 samples, 0.04%)</title><rect x="3.7233%" y="549" width="0.0445%" height="15" fill="rgb(219,138,53)" fg:x="88897" fg:w="1063"/><text x="3.9733%" y="559.50"></text></g><g><title>Thread::call_run (1,063 samples, 0.04%)</title><rect x="3.7233%" y="533" width="0.0445%" height="15" fill="rgb(211,51,23)" fg:x="88897" fg:w="1063"/><text x="3.9733%" y="543.50"></text></g><g><title>JavaThread::thread_main_inner (1,063 samples, 0.04%)</title><rect x="3.7233%" y="517" width="0.0445%" height="15" fill="rgb(247,221,28)" fg:x="88897" fg:w="1063"/><text x="3.9733%" y="527.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,063 samples, 0.04%)</title><rect x="3.7233%" y="501" width="0.0445%" height="15" fill="rgb(251,222,45)" fg:x="88897" fg:w="1063"/><text x="3.9733%" y="511.50"></text></g><g><title>C2_CompilerThre (75,968 samples, 3.18%)</title><rect x="0.5913%" y="597" width="3.1818%" height="15" fill="rgb(217,162,53)" fg:x="14119" fg:w="75968"/><text x="0.8413%" y="607.50">C2_..</text></g><g><title>Parker::park (283 samples, 0.01%)</title><rect x="3.8016%" y="549" width="0.0119%" height="15" fill="rgb(229,93,14)" fg:x="90766" fg:w="283"/><text x="4.0516%" y="559.50"></text></g><g><title>Unsafe_Park (296 samples, 0.01%)</title><rect x="3.8012%" y="565" width="0.0124%" height="15" fill="rgb(209,67,49)" fg:x="90757" fg:w="296"/><text x="4.0512%" y="575.50"></text></g><g><title>[perf-31879.map] (862 samples, 0.04%)</title><rect x="3.7781%" y="581" width="0.0361%" height="15" fill="rgb(213,87,29)" fg:x="90206" fg:w="862"/><text x="4.0281%" y="591.50"></text></g><g><title>ForkJoinPool.co (888 samples, 0.04%)</title><rect x="3.7776%" y="597" width="0.0372%" height="15" fill="rgb(205,151,52)" fg:x="90194" fg:w="888"/><text x="4.0276%" y="607.50"></text></g><g><title>G1RemSet::refine_card_concurrently (240 samples, 0.01%)</title><rect x="3.8189%" y="469" width="0.0101%" height="15" fill="rgb(253,215,39)" fg:x="91181" fg:w="240"/><text x="4.0689%" y="479.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (242 samples, 0.01%)</title><rect x="3.8189%" y="485" width="0.0101%" height="15" fill="rgb(221,220,41)" fg:x="91180" fg:w="242"/><text x="4.0689%" y="495.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (253 samples, 0.01%)</title><rect x="3.8189%" y="501" width="0.0106%" height="15" fill="rgb(218,133,21)" fg:x="91180" fg:w="253"/><text x="4.0689%" y="511.50"></text></g><g><title>__GI___clone (262 samples, 0.01%)</title><rect x="3.8189%" y="581" width="0.0110%" height="15" fill="rgb(221,193,43)" fg:x="91179" fg:w="262"/><text x="4.0689%" y="591.50"></text></g><g><title>start_thread (261 samples, 0.01%)</title><rect x="3.8189%" y="565" width="0.0109%" height="15" fill="rgb(240,128,52)" fg:x="91180" fg:w="261"/><text x="4.0689%" y="575.50"></text></g><g><title>thread_native_entry (261 samples, 0.01%)</title><rect x="3.8189%" y="549" width="0.0109%" height="15" fill="rgb(253,114,12)" fg:x="91180" fg:w="261"/><text x="4.0689%" y="559.50"></text></g><g><title>Thread::call_run (261 samples, 0.01%)</title><rect x="3.8189%" y="533" width="0.0109%" height="15" fill="rgb(215,223,47)" fg:x="91180" fg:w="261"/><text x="4.0689%" y="543.50"></text></g><g><title>ConcurrentGCThread::run (261 samples, 0.01%)</title><rect x="3.8189%" y="517" width="0.0109%" height="15" fill="rgb(248,225,23)" fg:x="91180" fg:w="261"/><text x="4.0689%" y="527.50"></text></g><g><title>G1_Refine#0 (279 samples, 0.01%)</title><rect x="3.8182%" y="597" width="0.0117%" height="15" fill="rgb(250,108,0)" fg:x="91163" fg:w="279"/><text x="4.0682%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (248 samples, 0.01%)</title><rect x="3.8570%" y="453" width="0.0104%" height="15" fill="rgb(228,208,7)" fg:x="92090" fg:w="248"/><text x="4.1070%" y="463.50"></text></g><g><title>G1ParScanThreadState::trim_queue (402 samples, 0.02%)</title><rect x="3.8511%" y="469" width="0.0168%" height="15" fill="rgb(244,45,10)" fg:x="91948" fg:w="402"/><text x="4.1011%" y="479.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (496 samples, 0.02%)</title><rect x="3.8508%" y="485" width="0.0208%" height="15" fill="rgb(207,125,25)" fg:x="91941" fg:w="496"/><text x="4.1008%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (280 samples, 0.01%)</title><rect x="3.8916%" y="373" width="0.0117%" height="15" fill="rgb(210,195,18)" fg:x="92915" fg:w="280"/><text x="4.1416%" y="383.50"></text></g><g><title>InterpreterOopMap::iterate_oop (290 samples, 0.01%)</title><rect x="3.8912%" y="389" width="0.0121%" height="15" fill="rgb(249,80,12)" fg:x="92906" fg:w="290"/><text x="4.1412%" y="399.50"></text></g><g><title>frame::oops_interpreted_do (313 samples, 0.01%)</title><rect x="3.8905%" y="405" width="0.0131%" height="15" fill="rgb(221,65,9)" fg:x="92890" fg:w="313"/><text x="4.1405%" y="415.50"></text></g><g><title>G1RootProcessor::process_java_roots (396 samples, 0.02%)</title><rect x="3.8871%" y="469" width="0.0166%" height="15" fill="rgb(235,49,36)" fg:x="92808" fg:w="396"/><text x="4.1371%" y="479.50"></text></g><g><title>Threads::possibly_parallel_oops_do (392 samples, 0.02%)</title><rect x="3.8873%" y="453" width="0.0164%" height="15" fill="rgb(225,32,20)" fg:x="92812" fg:w="392"/><text x="4.1373%" y="463.50"></text></g><g><title>Threads::possibly_parallel_threads_do (392 samples, 0.02%)</title><rect x="3.8873%" y="437" width="0.0164%" height="15" fill="rgb(215,141,46)" fg:x="92812" fg:w="392"/><text x="4.1373%" y="447.50"></text></g><g><title>JavaThread::oops_do (390 samples, 0.02%)</title><rect x="3.8873%" y="421" width="0.0163%" height="15" fill="rgb(250,160,47)" fg:x="92814" fg:w="390"/><text x="4.1373%" y="431.50"></text></g><g><title>G1RootProcessor::evacuate_roots (434 samples, 0.02%)</title><rect x="3.8871%" y="485" width="0.0182%" height="15" fill="rgb(216,222,40)" fg:x="92808" fg:w="434"/><text x="4.1371%" y="495.50"></text></g><g><title>G1ParTask::work (1,302 samples, 0.05%)</title><rect x="3.8508%" y="501" width="0.0545%" height="15" fill="rgb(234,217,39)" fg:x="91941" fg:w="1302"/><text x="4.1008%" y="511.50"></text></g><g><title>__GI___clone (1,486 samples, 0.06%)</title><rect x="3.8491%" y="581" width="0.0622%" height="15" fill="rgb(207,178,40)" fg:x="91902" fg:w="1486"/><text x="4.0991%" y="591.50"></text></g><g><title>start_thread (1,486 samples, 0.06%)</title><rect x="3.8491%" y="565" width="0.0622%" height="15" fill="rgb(221,136,13)" fg:x="91902" fg:w="1486"/><text x="4.0991%" y="575.50"></text></g><g><title>thread_native_entry (1,486 samples, 0.06%)</title><rect x="3.8491%" y="549" width="0.0622%" height="15" fill="rgb(249,199,10)" fg:x="91902" fg:w="1486"/><text x="4.0991%" y="559.50"></text></g><g><title>Thread::call_run (1,486 samples, 0.06%)</title><rect x="3.8491%" y="533" width="0.0622%" height="15" fill="rgb(249,222,13)" fg:x="91902" fg:w="1486"/><text x="4.0991%" y="543.50"></text></g><g><title>GangWorker::loop (1,486 samples, 0.06%)</title><rect x="3.8491%" y="517" width="0.0622%" height="15" fill="rgb(244,185,38)" fg:x="91902" fg:w="1486"/><text x="4.0991%" y="527.50"></text></g><g><title>GC_Thread#0 (1,524 samples, 0.06%)</title><rect x="3.8477%" y="597" width="0.0638%" height="15" fill="rgb(236,202,9)" fg:x="91867" fg:w="1524"/><text x="4.0977%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (245 samples, 0.01%)</title><rect x="3.9210%" y="453" width="0.0103%" height="15" fill="rgb(250,229,37)" fg:x="93618" fg:w="245"/><text x="4.1710%" y="463.50"></text></g><g><title>G1ParScanThreadState::trim_queue (409 samples, 0.02%)</title><rect x="3.9148%" y="469" width="0.0171%" height="15" fill="rgb(206,174,23)" fg:x="93470" fg:w="409"/><text x="4.1648%" y="479.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (473 samples, 0.02%)</title><rect x="3.9147%" y="485" width="0.0198%" height="15" fill="rgb(211,33,43)" fg:x="93467" fg:w="473"/><text x="4.1647%" y="495.50"></text></g><g><title>G1RootProcessor::process_java_roots (294 samples, 0.01%)</title><rect x="3.9474%" y="469" width="0.0123%" height="15" fill="rgb(245,58,50)" fg:x="94247" fg:w="294"/><text x="4.1974%" y="479.50"></text></g><g><title>G1ParTask::work (1,081 samples, 0.05%)</title><rect x="3.9147%" y="501" width="0.0453%" height="15" fill="rgb(244,68,36)" fg:x="93467" fg:w="1081"/><text x="4.1647%" y="511.50"></text></g><g><title>G1RootProcessor::evacuate_roots (301 samples, 0.01%)</title><rect x="3.9474%" y="485" width="0.0126%" height="15" fill="rgb(232,229,15)" fg:x="94247" fg:w="301"/><text x="4.1974%" y="495.50"></text></g><g><title>__GI___clone (1,241 samples, 0.05%)</title><rect x="3.9126%" y="581" width="0.0520%" height="15" fill="rgb(254,30,23)" fg:x="93416" fg:w="1241"/><text x="4.1626%" y="591.50"></text></g><g><title>start_thread (1,241 samples, 0.05%)</title><rect x="3.9126%" y="565" width="0.0520%" height="15" fill="rgb(235,160,14)" fg:x="93416" fg:w="1241"/><text x="4.1626%" y="575.50"></text></g><g><title>thread_native_entry (1,241 samples, 0.05%)</title><rect x="3.9126%" y="549" width="0.0520%" height="15" fill="rgb(212,155,44)" fg:x="93416" fg:w="1241"/><text x="4.1626%" y="559.50"></text></g><g><title>Thread::call_run (1,241 samples, 0.05%)</title><rect x="3.9126%" y="533" width="0.0520%" height="15" fill="rgb(226,2,50)" fg:x="93416" fg:w="1241"/><text x="4.1626%" y="543.50"></text></g><g><title>GangWorker::loop (1,241 samples, 0.05%)</title><rect x="3.9126%" y="517" width="0.0520%" height="15" fill="rgb(234,177,6)" fg:x="93416" fg:w="1241"/><text x="4.1626%" y="527.50"></text></g><g><title>GC_Thread#1 (1,268 samples, 0.05%)</title><rect x="3.9115%" y="597" width="0.0531%" height="15" fill="rgb(217,24,9)" fg:x="93391" fg:w="1268"/><text x="4.1615%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (279 samples, 0.01%)</title><rect x="3.9762%" y="453" width="0.0117%" height="15" fill="rgb(220,13,46)" fg:x="94936" fg:w="279"/><text x="4.2262%" y="463.50"></text></g><g><title>G1ParScanThreadState::trim_queue (500 samples, 0.02%)</title><rect x="3.9678%" y="469" width="0.0209%" height="15" fill="rgb(239,221,27)" fg:x="94734" fg:w="500"/><text x="4.2178%" y="479.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (633 samples, 0.03%)</title><rect x="3.9673%" y="485" width="0.0265%" height="15" fill="rgb(222,198,25)" fg:x="94724" fg:w="633"/><text x="4.2173%" y="495.50"></text></g><g><title>G1ParTask::work (1,166 samples, 0.05%)</title><rect x="3.9673%" y="501" width="0.0488%" height="15" fill="rgb(211,99,13)" fg:x="94724" fg:w="1166"/><text x="4.2173%" y="511.50"></text></g><g><title>__GI___clone (1,368 samples, 0.06%)</title><rect x="3.9654%" y="581" width="0.0573%" height="15" fill="rgb(232,111,31)" fg:x="94678" fg:w="1368"/><text x="4.2154%" y="591.50"></text></g><g><title>start_thread (1,368 samples, 0.06%)</title><rect x="3.9654%" y="565" width="0.0573%" height="15" fill="rgb(245,82,37)" fg:x="94678" fg:w="1368"/><text x="4.2154%" y="575.50"></text></g><g><title>thread_native_entry (1,368 samples, 0.06%)</title><rect x="3.9654%" y="549" width="0.0573%" height="15" fill="rgb(227,149,46)" fg:x="94678" fg:w="1368"/><text x="4.2154%" y="559.50"></text></g><g><title>Thread::call_run (1,368 samples, 0.06%)</title><rect x="3.9654%" y="533" width="0.0573%" height="15" fill="rgb(218,36,50)" fg:x="94678" fg:w="1368"/><text x="4.2154%" y="543.50"></text></g><g><title>GangWorker::loop (1,368 samples, 0.06%)</title><rect x="3.9654%" y="517" width="0.0573%" height="15" fill="rgb(226,80,48)" fg:x="94678" fg:w="1368"/><text x="4.2154%" y="527.50"></text></g><g><title>GC_Thread#2 (1,389 samples, 0.06%)</title><rect x="3.9646%" y="597" width="0.0582%" height="15" fill="rgb(238,224,15)" fg:x="94659" fg:w="1389"/><text x="4.2146%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue (375 samples, 0.02%)</title><rect x="4.0258%" y="469" width="0.0157%" height="15" fill="rgb(241,136,10)" fg:x="96119" fg:w="375"/><text x="4.2758%" y="479.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (505 samples, 0.02%)</title><rect x="4.0254%" y="485" width="0.0212%" height="15" fill="rgb(208,32,45)" fg:x="96111" fg:w="505"/><text x="4.2754%" y="495.50"></text></g><g><title>InterpreterOopMap::iterate_oop (284 samples, 0.01%)</title><rect x="4.0694%" y="389" width="0.0119%" height="15" fill="rgb(207,135,9)" fg:x="97162" fg:w="284"/><text x="4.3194%" y="399.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (284 samples, 0.01%)</title><rect x="4.0694%" y="373" width="0.0119%" height="15" fill="rgb(206,86,44)" fg:x="97162" fg:w="284"/><text x="4.3194%" y="383.50"></text></g><g><title>frame::oops_interpreted_do (291 samples, 0.01%)</title><rect x="4.0694%" y="405" width="0.0122%" height="15" fill="rgb(245,177,15)" fg:x="97162" fg:w="291"/><text x="4.3194%" y="415.50"></text></g><g><title>G1RootProcessor::process_java_roots (462 samples, 0.02%)</title><rect x="4.0623%" y="469" width="0.0194%" height="15" fill="rgb(206,64,50)" fg:x="96992" fg:w="462"/><text x="4.3123%" y="479.50"></text></g><g><title>Threads::possibly_parallel_oops_do (331 samples, 0.01%)</title><rect x="4.0678%" y="453" width="0.0139%" height="15" fill="rgb(234,36,40)" fg:x="97123" fg:w="331"/><text x="4.3178%" y="463.50"></text></g><g><title>Threads::possibly_parallel_threads_do (331 samples, 0.01%)</title><rect x="4.0678%" y="437" width="0.0139%" height="15" fill="rgb(213,64,8)" fg:x="97123" fg:w="331"/><text x="4.3178%" y="447.50"></text></g><g><title>JavaThread::oops_do (330 samples, 0.01%)</title><rect x="4.0679%" y="421" width="0.0138%" height="15" fill="rgb(210,75,36)" fg:x="97124" fg:w="330"/><text x="4.3179%" y="431.50"></text></g><g><title>G1ParTask::work (1,347 samples, 0.06%)</title><rect x="4.0254%" y="501" width="0.0564%" height="15" fill="rgb(229,88,21)" fg:x="96111" fg:w="1347"/><text x="4.2754%" y="511.50"></text></g><g><title>G1RootProcessor::evacuate_roots (469 samples, 0.02%)</title><rect x="4.0622%" y="485" width="0.0196%" height="15" fill="rgb(252,204,47)" fg:x="96989" fg:w="469"/><text x="4.3122%" y="495.50"></text></g><g><title>__GI___clone (1,537 samples, 0.06%)</title><rect x="4.0240%" y="581" width="0.0644%" height="15" fill="rgb(208,77,27)" fg:x="96076" fg:w="1537"/><text x="4.2740%" y="591.50"></text></g><g><title>start_thread (1,537 samples, 0.06%)</title><rect x="4.0240%" y="565" width="0.0644%" height="15" fill="rgb(221,76,26)" fg:x="96076" fg:w="1537"/><text x="4.2740%" y="575.50"></text></g><g><title>thread_native_entry (1,537 samples, 0.06%)</title><rect x="4.0240%" y="549" width="0.0644%" height="15" fill="rgb(225,139,18)" fg:x="96076" fg:w="1537"/><text x="4.2740%" y="559.50"></text></g><g><title>Thread::call_run (1,537 samples, 0.06%)</title><rect x="4.0240%" y="533" width="0.0644%" height="15" fill="rgb(230,137,11)" fg:x="96076" fg:w="1537"/><text x="4.2740%" y="543.50"></text></g><g><title>GangWorker::loop (1,537 samples, 0.06%)</title><rect x="4.0240%" y="517" width="0.0644%" height="15" fill="rgb(212,28,1)" fg:x="96076" fg:w="1537"/><text x="4.2740%" y="527.50"></text></g><g><title>GC_Thread#3 (1,567 samples, 0.07%)</title><rect x="4.0228%" y="597" width="0.0656%" height="15" fill="rgb(248,164,17)" fg:x="96048" fg:w="1567"/><text x="4.2728%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (309 samples, 0.01%)</title><rect x="4.0985%" y="453" width="0.0129%" height="15" fill="rgb(222,171,42)" fg:x="97856" fg:w="309"/><text x="4.3485%" y="463.50"></text></g><g><title>G1ParScanThreadState::trim_queue (507 samples, 0.02%)</title><rect x="4.0908%" y="469" width="0.0212%" height="15" fill="rgb(243,84,45)" fg:x="97671" fg:w="507"/><text x="4.3408%" y="479.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (633 samples, 0.03%)</title><rect x="4.0905%" y="485" width="0.0265%" height="15" fill="rgb(252,49,23)" fg:x="97665" fg:w="633"/><text x="4.3405%" y="495.50"></text></g><g><title>G1ParTask::work (1,200 samples, 0.05%)</title><rect x="4.0905%" y="501" width="0.0503%" height="15" fill="rgb(215,19,7)" fg:x="97665" fg:w="1200"/><text x="4.3405%" y="511.50"></text></g><g><title>__GI___clone (1,407 samples, 0.06%)</title><rect x="4.0891%" y="581" width="0.0589%" height="15" fill="rgb(238,81,41)" fg:x="97630" fg:w="1407"/><text x="4.3391%" y="591.50"></text></g><g><title>start_thread (1,407 samples, 0.06%)</title><rect x="4.0891%" y="565" width="0.0589%" height="15" fill="rgb(210,199,37)" fg:x="97630" fg:w="1407"/><text x="4.3391%" y="575.50"></text></g><g><title>thread_native_entry (1,407 samples, 0.06%)</title><rect x="4.0891%" y="549" width="0.0589%" height="15" fill="rgb(244,192,49)" fg:x="97630" fg:w="1407"/><text x="4.3391%" y="559.50"></text></g><g><title>Thread::call_run (1,407 samples, 0.06%)</title><rect x="4.0891%" y="533" width="0.0589%" height="15" fill="rgb(226,211,11)" fg:x="97630" fg:w="1407"/><text x="4.3391%" y="543.50"></text></g><g><title>GangWorker::loop (1,407 samples, 0.06%)</title><rect x="4.0891%" y="517" width="0.0589%" height="15" fill="rgb(236,162,54)" fg:x="97630" fg:w="1407"/><text x="4.3391%" y="527.50"></text></g><g><title>GC_Thread#4 (1,424 samples, 0.06%)</title><rect x="4.0884%" y="597" width="0.0596%" height="15" fill="rgb(220,229,9)" fg:x="97615" fg:w="1424"/><text x="4.3384%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (358 samples, 0.01%)</title><rect x="4.1593%" y="453" width="0.0150%" height="15" fill="rgb(250,87,22)" fg:x="99308" fg:w="358"/><text x="4.4093%" y="463.50"></text></g><g><title>G1ParScanThreadState::trim_queue (565 samples, 0.02%)</title><rect x="4.1514%" y="469" width="0.0237%" height="15" fill="rgb(239,43,17)" fg:x="99119" fg:w="565"/><text x="4.4014%" y="479.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (697 samples, 0.03%)</title><rect x="4.1511%" y="485" width="0.0292%" height="15" fill="rgb(231,177,25)" fg:x="99111" fg:w="697"/><text x="4.4011%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (252 samples, 0.01%)</title><rect x="4.1803%" y="405" width="0.0106%" height="15" fill="rgb(219,179,1)" fg:x="99809" fg:w="252"/><text x="4.4303%" y="415.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (295 samples, 0.01%)</title><rect x="4.1803%" y="485" width="0.0124%" height="15" fill="rgb(238,219,53)" fg:x="99808" fg:w="295"/><text x="4.4303%" y="495.50"></text></g><g><title>G1RemSet::update_rem_set (295 samples, 0.01%)</title><rect x="4.1803%" y="469" width="0.0124%" height="15" fill="rgb(232,167,36)" fg:x="99808" fg:w="295"/><text x="4.4303%" y="479.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (295 samples, 0.01%)</title><rect x="4.1803%" y="453" width="0.0124%" height="15" fill="rgb(244,19,51)" fg:x="99808" fg:w="295"/><text x="4.4303%" y="463.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (295 samples, 0.01%)</title><rect x="4.1803%" y="437" width="0.0124%" height="15" fill="rgb(224,6,22)" fg:x="99808" fg:w="295"/><text x="4.4303%" y="447.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (294 samples, 0.01%)</title><rect x="4.1803%" y="421" width="0.0123%" height="15" fill="rgb(224,145,5)" fg:x="99809" fg:w="294"/><text x="4.4303%" y="431.50"></text></g><g><title>G1RemSet::scan_rem_set (257 samples, 0.01%)</title><rect x="4.1926%" y="485" width="0.0108%" height="15" fill="rgb(234,130,49)" fg:x="100103" fg:w="257"/><text x="4.4426%" y="495.50"></text></g><g><title>G1CollectionSet::iterate_from (257 samples, 0.01%)</title><rect x="4.1926%" y="469" width="0.0108%" height="15" fill="rgb(254,6,2)" fg:x="100103" fg:w="257"/><text x="4.4426%" y="479.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (257 samples, 0.01%)</title><rect x="4.1926%" y="453" width="0.0108%" height="15" fill="rgb(208,96,46)" fg:x="100103" fg:w="257"/><text x="4.4426%" y="463.50"></text></g><g><title>G1ParTask::work (1,466 samples, 0.06%)</title><rect x="4.1511%" y="501" width="0.0614%" height="15" fill="rgb(239,3,39)" fg:x="99111" fg:w="1466"/><text x="4.4011%" y="511.50"></text></g><g><title>__GI___clone (1,653 samples, 0.07%)</title><rect x="4.1493%" y="581" width="0.0692%" height="15" fill="rgb(233,210,1)" fg:x="99068" fg:w="1653"/><text x="4.3993%" y="591.50"></text></g><g><title>start_thread (1,653 samples, 0.07%)</title><rect x="4.1493%" y="565" width="0.0692%" height="15" fill="rgb(244,137,37)" fg:x="99068" fg:w="1653"/><text x="4.3993%" y="575.50"></text></g><g><title>thread_native_entry (1,653 samples, 0.07%)</title><rect x="4.1493%" y="549" width="0.0692%" height="15" fill="rgb(240,136,2)" fg:x="99068" fg:w="1653"/><text x="4.3993%" y="559.50"></text></g><g><title>Thread::call_run (1,653 samples, 0.07%)</title><rect x="4.1493%" y="533" width="0.0692%" height="15" fill="rgb(239,18,37)" fg:x="99068" fg:w="1653"/><text x="4.3993%" y="543.50"></text></g><g><title>GangWorker::loop (1,653 samples, 0.07%)</title><rect x="4.1493%" y="517" width="0.0692%" height="15" fill="rgb(218,185,22)" fg:x="99068" fg:w="1653"/><text x="4.3993%" y="527.50"></text></g><g><title>GC_Thread#5 (1,685 samples, 0.07%)</title><rect x="4.1481%" y="597" width="0.0706%" height="15" fill="rgb(225,218,4)" fg:x="99039" fg:w="1685"/><text x="4.3981%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue (407 samples, 0.02%)</title><rect x="4.2204%" y="469" width="0.0170%" height="15" fill="rgb(230,182,32)" fg:x="100767" fg:w="407"/><text x="4.4704%" y="479.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (534 samples, 0.02%)</title><rect x="4.2202%" y="485" width="0.0224%" height="15" fill="rgb(242,56,43)" fg:x="100762" fg:w="534"/><text x="4.4702%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (264 samples, 0.01%)</title><rect x="4.2427%" y="405" width="0.0111%" height="15" fill="rgb(233,99,24)" fg:x="101298" fg:w="264"/><text x="4.4927%" y="415.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (290 samples, 0.01%)</title><rect x="4.2427%" y="421" width="0.0121%" height="15" fill="rgb(234,209,42)" fg:x="101298" fg:w="290"/><text x="4.4927%" y="431.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (291 samples, 0.01%)</title><rect x="4.2427%" y="453" width="0.0122%" height="15" fill="rgb(227,7,12)" fg:x="101298" fg:w="291"/><text x="4.4927%" y="463.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (291 samples, 0.01%)</title><rect x="4.2427%" y="437" width="0.0122%" height="15" fill="rgb(245,203,43)" fg:x="101298" fg:w="291"/><text x="4.4927%" y="447.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (292 samples, 0.01%)</title><rect x="4.2427%" y="485" width="0.0122%" height="15" fill="rgb(238,205,33)" fg:x="101298" fg:w="292"/><text x="4.4927%" y="495.50"></text></g><g><title>G1RemSet::update_rem_set (292 samples, 0.01%)</title><rect x="4.2427%" y="469" width="0.0122%" height="15" fill="rgb(231,56,7)" fg:x="101298" fg:w="292"/><text x="4.4927%" y="479.50"></text></g><g><title>G1RootProcessor::process_java_roots (266 samples, 0.01%)</title><rect x="4.2627%" y="469" width="0.0111%" height="15" fill="rgb(244,186,29)" fg:x="101776" fg:w="266"/><text x="4.5127%" y="479.50"></text></g><g><title>Threads::possibly_parallel_oops_do (261 samples, 0.01%)</title><rect x="4.2629%" y="453" width="0.0109%" height="15" fill="rgb(234,111,31)" fg:x="101781" fg:w="261"/><text x="4.5129%" y="463.50"></text></g><g><title>Threads::possibly_parallel_threads_do (261 samples, 0.01%)</title><rect x="4.2629%" y="437" width="0.0109%" height="15" fill="rgb(241,149,10)" fg:x="101781" fg:w="261"/><text x="4.5129%" y="447.50"></text></g><g><title>JavaThread::oops_do (261 samples, 0.01%)</title><rect x="4.2629%" y="421" width="0.0109%" height="15" fill="rgb(249,206,44)" fg:x="101781" fg:w="261"/><text x="4.5129%" y="431.50"></text></g><g><title>G1ParTask::work (1,294 samples, 0.05%)</title><rect x="4.2202%" y="501" width="0.0542%" height="15" fill="rgb(251,153,30)" fg:x="100762" fg:w="1294"/><text x="4.4702%" y="511.50"></text></g><g><title>G1RootProcessor::evacuate_roots (280 samples, 0.01%)</title><rect x="4.2627%" y="485" width="0.0117%" height="15" fill="rgb(239,152,38)" fg:x="101776" fg:w="280"/><text x="4.5127%" y="495.50"></text></g><g><title>__GI___clone (1,505 samples, 0.06%)</title><rect x="4.2199%" y="581" width="0.0630%" height="15" fill="rgb(249,139,47)" fg:x="100754" fg:w="1505"/><text x="4.4699%" y="591.50"></text></g><g><title>start_thread (1,505 samples, 0.06%)</title><rect x="4.2199%" y="565" width="0.0630%" height="15" fill="rgb(244,64,35)" fg:x="100754" fg:w="1505"/><text x="4.4699%" y="575.50"></text></g><g><title>thread_native_entry (1,505 samples, 0.06%)</title><rect x="4.2199%" y="549" width="0.0630%" height="15" fill="rgb(216,46,15)" fg:x="100754" fg:w="1505"/><text x="4.4699%" y="559.50"></text></g><g><title>Thread::call_run (1,505 samples, 0.06%)</title><rect x="4.2199%" y="533" width="0.0630%" height="15" fill="rgb(250,74,19)" fg:x="100754" fg:w="1505"/><text x="4.4699%" y="543.50"></text></g><g><title>GangWorker::loop (1,505 samples, 0.06%)</title><rect x="4.2199%" y="517" width="0.0630%" height="15" fill="rgb(249,42,33)" fg:x="100754" fg:w="1505"/><text x="4.4699%" y="527.50"></text></g><g><title>GC_Thread#6 (1,538 samples, 0.06%)</title><rect x="4.2186%" y="597" width="0.0644%" height="15" fill="rgb(242,149,17)" fg:x="100724" fg:w="1538"/><text x="4.4686%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (321 samples, 0.01%)</title><rect x="4.2935%" y="453" width="0.0134%" height="15" fill="rgb(244,29,21)" fg:x="102512" fg:w="321"/><text x="4.5435%" y="463.50"></text></g><g><title>G1ParScanThreadState::trim_queue (505 samples, 0.02%)</title><rect x="4.2867%" y="469" width="0.0212%" height="15" fill="rgb(220,130,37)" fg:x="102349" fg:w="505"/><text x="4.5367%" y="479.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (618 samples, 0.03%)</title><rect x="4.2864%" y="485" width="0.0259%" height="15" fill="rgb(211,67,2)" fg:x="102341" fg:w="618"/><text x="4.5364%" y="495.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (250 samples, 0.01%)</title><rect x="4.3320%" y="341" width="0.0105%" height="15" fill="rgb(235,68,52)" fg:x="103430" fg:w="250"/><text x="4.5820%" y="351.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (335 samples, 0.01%)</title><rect x="4.3290%" y="357" width="0.0140%" height="15" fill="rgb(246,142,3)" fg:x="103358" fg:w="335"/><text x="4.5790%" y="367.50"></text></g><g><title>InterpreterOopMap::iterate_oop (453 samples, 0.02%)</title><rect x="4.3254%" y="389" width="0.0190%" height="15" fill="rgb(241,25,7)" fg:x="103272" fg:w="453"/><text x="4.5754%" y="399.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (451 samples, 0.02%)</title><rect x="4.3254%" y="373" width="0.0189%" height="15" fill="rgb(242,119,39)" fg:x="103274" fg:w="451"/><text x="4.5754%" y="383.50"></text></g><g><title>frame::oops_interpreted_do (461 samples, 0.02%)</title><rect x="4.3253%" y="405" width="0.0193%" height="15" fill="rgb(241,98,45)" fg:x="103270" fg:w="461"/><text x="4.5753%" y="415.50"></text></g><g><title>G1RootProcessor::process_java_roots (497 samples, 0.02%)</title><rect x="4.3239%" y="469" width="0.0208%" height="15" fill="rgb(254,28,30)" fg:x="103237" fg:w="497"/><text x="4.5739%" y="479.50"></text></g><g><title>Threads::possibly_parallel_oops_do (496 samples, 0.02%)</title><rect x="4.3239%" y="453" width="0.0208%" height="15" fill="rgb(241,142,54)" fg:x="103238" fg:w="496"/><text x="4.5739%" y="463.50"></text></g><g><title>Threads::possibly_parallel_threads_do (496 samples, 0.02%)</title><rect x="4.3239%" y="437" width="0.0208%" height="15" fill="rgb(222,85,15)" fg:x="103238" fg:w="496"/><text x="4.5739%" y="447.50"></text></g><g><title>JavaThread::oops_do (496 samples, 0.02%)</title><rect x="4.3239%" y="421" width="0.0208%" height="15" fill="rgb(210,85,47)" fg:x="103238" fg:w="496"/><text x="4.5739%" y="431.50"></text></g><g><title>G1ParTask::work (1,401 samples, 0.06%)</title><rect x="4.2864%" y="501" width="0.0587%" height="15" fill="rgb(224,206,25)" fg:x="102341" fg:w="1401"/><text x="4.5364%" y="511.50"></text></g><g><title>G1RootProcessor::evacuate_roots (516 samples, 0.02%)</title><rect x="4.3234%" y="485" width="0.0216%" height="15" fill="rgb(243,201,19)" fg:x="103226" fg:w="516"/><text x="4.5734%" y="495.50"></text></g><g><title>__GI___clone (1,640 samples, 0.07%)</title><rect x="4.2843%" y="581" width="0.0687%" height="15" fill="rgb(236,59,4)" fg:x="102292" fg:w="1640"/><text x="4.5343%" y="591.50"></text></g><g><title>start_thread (1,640 samples, 0.07%)</title><rect x="4.2843%" y="565" width="0.0687%" height="15" fill="rgb(254,179,45)" fg:x="102292" fg:w="1640"/><text x="4.5343%" y="575.50"></text></g><g><title>thread_native_entry (1,640 samples, 0.07%)</title><rect x="4.2843%" y="549" width="0.0687%" height="15" fill="rgb(226,14,10)" fg:x="102292" fg:w="1640"/><text x="4.5343%" y="559.50"></text></g><g><title>Thread::call_run (1,640 samples, 0.07%)</title><rect x="4.2843%" y="533" width="0.0687%" height="15" fill="rgb(244,27,41)" fg:x="102292" fg:w="1640"/><text x="4.5343%" y="543.50"></text></g><g><title>GangWorker::loop (1,640 samples, 0.07%)</title><rect x="4.2843%" y="517" width="0.0687%" height="15" fill="rgb(235,35,32)" fg:x="102292" fg:w="1640"/><text x="4.5343%" y="527.50"></text></g><g><title>GC_Thread#7 (1,672 samples, 0.07%)</title><rect x="4.2831%" y="597" width="0.0700%" height="15" fill="rgb(218,68,31)" fg:x="102262" fg:w="1672"/><text x="4.5331%" y="607.50"></text></g><g><title>NMethodSweeper::sweeper_loop (285 samples, 0.01%)</title><rect x="4.3602%" y="501" width="0.0119%" height="15" fill="rgb(207,120,37)" fg:x="104104" fg:w="285"/><text x="4.6102%" y="511.50"></text></g><g><title>__GI___clone (287 samples, 0.01%)</title><rect x="4.3602%" y="581" width="0.0120%" height="15" fill="rgb(227,98,0)" fg:x="104103" fg:w="287"/><text x="4.6102%" y="591.50"></text></g><g><title>start_thread (287 samples, 0.01%)</title><rect x="4.3602%" y="565" width="0.0120%" height="15" fill="rgb(207,7,3)" fg:x="104103" fg:w="287"/><text x="4.6102%" y="575.50"></text></g><g><title>thread_native_entry (287 samples, 0.01%)</title><rect x="4.3602%" y="549" width="0.0120%" height="15" fill="rgb(206,98,19)" fg:x="104103" fg:w="287"/><text x="4.6102%" y="559.50"></text></g><g><title>Thread::call_run (287 samples, 0.01%)</title><rect x="4.3602%" y="533" width="0.0120%" height="15" fill="rgb(217,5,26)" fg:x="104103" fg:w="287"/><text x="4.6102%" y="543.50"></text></g><g><title>JavaThread::thread_main_inner (287 samples, 0.01%)</title><rect x="4.3602%" y="517" width="0.0120%" height="15" fill="rgb(235,190,38)" fg:x="104103" fg:w="287"/><text x="4.6102%" y="527.50"></text></g><g><title>Sweeper_thread (301 samples, 0.01%)</title><rect x="4.3597%" y="597" width="0.0126%" height="15" fill="rgb(247,86,24)" fg:x="104091" fg:w="301"/><text x="4.6097%" y="607.50"></text></g><g><title>[perf-31879.map] (921 samples, 0.04%)</title><rect x="4.3751%" y="581" width="0.0386%" height="15" fill="rgb(205,101,16)" fg:x="104460" fg:w="921"/><text x="4.6251%" y="591.50"></text></g><g><title>Thread-0 (1,057 samples, 0.04%)</title><rect x="4.3723%" y="597" width="0.0443%" height="15" fill="rgb(246,168,33)" fg:x="104392" fg:w="1057"/><text x="4.6223%" y="607.50"></text></g><g><title>VM_Periodic_Tas (243 samples, 0.01%)</title><rect x="4.4165%" y="597" width="0.0102%" height="15" fill="rgb(231,114,1)" fg:x="105449" fg:w="243"/><text x="4.6665%" y="607.50"></text></g><g><title>SafepointSynchronize::begin (383 samples, 0.02%)</title><rect x="4.4330%" y="485" width="0.0160%" height="15" fill="rgb(207,184,53)" fg:x="105842" fg:w="383"/><text x="4.6830%" y="495.50"></text></g><g><title>__GI___clone (629 samples, 0.03%)</title><rect x="4.4308%" y="581" width="0.0263%" height="15" fill="rgb(224,95,51)" fg:x="105789" fg:w="629"/><text x="4.6808%" y="591.50"></text></g><g><title>start_thread (629 samples, 0.03%)</title><rect x="4.4308%" y="565" width="0.0263%" height="15" fill="rgb(212,188,45)" fg:x="105789" fg:w="629"/><text x="4.6808%" y="575.50"></text></g><g><title>thread_native_entry (629 samples, 0.03%)</title><rect x="4.4308%" y="549" width="0.0263%" height="15" fill="rgb(223,154,38)" fg:x="105789" fg:w="629"/><text x="4.6808%" y="559.50"></text></g><g><title>Thread::call_run (629 samples, 0.03%)</title><rect x="4.4308%" y="533" width="0.0263%" height="15" fill="rgb(251,22,52)" fg:x="105789" fg:w="629"/><text x="4.6808%" y="543.50"></text></g><g><title>VMThread::run (629 samples, 0.03%)</title><rect x="4.4308%" y="517" width="0.0263%" height="15" fill="rgb(229,209,22)" fg:x="105789" fg:w="629"/><text x="4.6808%" y="527.50"></text></g><g><title>VMThread::loop (629 samples, 0.03%)</title><rect x="4.4308%" y="501" width="0.0263%" height="15" fill="rgb(234,138,34)" fg:x="105789" fg:w="629"/><text x="4.6808%" y="511.50"></text></g><g><title>VM_Thread (738 samples, 0.03%)</title><rect x="4.4267%" y="597" width="0.0309%" height="15" fill="rgb(212,95,11)" fg:x="105692" fg:w="738"/><text x="4.6767%" y="607.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (360 samples, 0.02%)</title><rect x="4.4584%" y="581" width="0.0151%" height="15" fill="rgb(240,179,47)" fg:x="106449" fg:w="360"/><text x="4.7084%" y="591.50"></text></g><g><title>bazel (413 samples, 0.02%)</title><rect x="4.4584%" y="597" width="0.0173%" height="15" fill="rgb(240,163,11)" fg:x="106448" fg:w="413"/><text x="4.7084%" y="607.50"></text></g><g><title>__libc_start_main (381 samples, 0.02%)</title><rect x="4.4801%" y="565" width="0.0160%" height="15" fill="rgb(236,37,12)" fg:x="106967" fg:w="381"/><text x="4.7301%" y="575.50"></text></g><g><title>main (378 samples, 0.02%)</title><rect x="4.4802%" y="549" width="0.0158%" height="15" fill="rgb(232,164,16)" fg:x="106970" fg:w="378"/><text x="4.7302%" y="559.50"></text></g><g><title>_start (600 samples, 0.03%)</title><rect x="4.4801%" y="581" width="0.0251%" height="15" fill="rgb(244,205,15)" fg:x="106966" fg:w="600"/><text x="4.7301%" y="591.50"></text></g><g><title>cc_wrapper.sh (757 samples, 0.03%)</title><rect x="4.4783%" y="597" width="0.0317%" height="15" fill="rgb(223,117,47)" fg:x="106924" fg:w="757"/><text x="4.7283%" y="607.50"></text></g><g><title>[[heap]] (330 samples, 0.01%)</title><rect x="4.5101%" y="581" width="0.0138%" height="15" fill="rgb(244,107,35)" fg:x="107684" fg:w="330"/><text x="4.7601%" y="591.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (407 samples, 0.02%)</title><rect x="4.5530%" y="405" width="0.0170%" height="15" fill="rgb(205,140,8)" fg:x="108707" fg:w="407"/><text x="4.8030%" y="415.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (418 samples, 0.02%)</title><rect x="4.5527%" y="485" width="0.0175%" height="15" fill="rgb(228,84,46)" fg:x="108701" fg:w="418"/><text x="4.8027%" y="495.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (418 samples, 0.02%)</title><rect x="4.5527%" y="469" width="0.0175%" height="15" fill="rgb(254,188,9)" fg:x="108701" fg:w="418"/><text x="4.8027%" y="479.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (418 samples, 0.02%)</title><rect x="4.5527%" y="453" width="0.0175%" height="15" fill="rgb(206,112,54)" fg:x="108701" fg:w="418"/><text x="4.8027%" y="463.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (418 samples, 0.02%)</title><rect x="4.5527%" y="437" width="0.0175%" height="15" fill="rgb(216,84,49)" fg:x="108701" fg:w="418"/><text x="4.8027%" y="447.50"></text></g><g><title>clang::Parser::ParseLinkage (412 samples, 0.02%)</title><rect x="4.5530%" y="421" width="0.0173%" height="15" fill="rgb(214,194,35)" fg:x="108707" fg:w="412"/><text x="4.8030%" y="431.50"></text></g><g><title>cc1_main (659 samples, 0.03%)</title><rect x="4.5429%" y="565" width="0.0276%" height="15" fill="rgb(249,28,3)" fg:x="108465" fg:w="659"/><text x="4.7929%" y="575.50"></text></g><g><title>clang::ExecuteCompilerInvocation (618 samples, 0.03%)</title><rect x="4.5446%" y="549" width="0.0259%" height="15" fill="rgb(222,56,52)" fg:x="108506" fg:w="618"/><text x="4.7946%" y="559.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (618 samples, 0.03%)</title><rect x="4.5446%" y="533" width="0.0259%" height="15" fill="rgb(245,217,50)" fg:x="108506" fg:w="618"/><text x="4.7946%" y="543.50"></text></g><g><title>clang::FrontendAction::Execute (615 samples, 0.03%)</title><rect x="4.5447%" y="517" width="0.0258%" height="15" fill="rgb(213,201,24)" fg:x="108509" fg:w="615"/><text x="4.7947%" y="527.50"></text></g><g><title>clang::ParseAST (615 samples, 0.03%)</title><rect x="4.5447%" y="501" width="0.0258%" height="15" fill="rgb(248,116,28)" fg:x="108509" fg:w="615"/><text x="4.7947%" y="511.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (280 samples, 0.01%)</title><rect x="4.5795%" y="565" width="0.0117%" height="15" fill="rgb(219,72,43)" fg:x="109341" fg:w="280"/><text x="4.8295%" y="575.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (280 samples, 0.01%)</title><rect x="4.5795%" y="549" width="0.0117%" height="15" fill="rgb(209,138,14)" fg:x="109341" fg:w="280"/><text x="4.8295%" y="559.50"></text></g><g><title>clang::FileManager::getFileRef (280 samples, 0.01%)</title><rect x="4.5795%" y="533" width="0.0117%" height="15" fill="rgb(222,18,33)" fg:x="109341" fg:w="280"/><text x="4.8295%" y="543.50"></text></g><g><title>clang::FileManager::getStatValue (280 samples, 0.01%)</title><rect x="4.5795%" y="517" width="0.0117%" height="15" fill="rgb(213,199,7)" fg:x="109341" fg:w="280"/><text x="4.8295%" y="527.50"></text></g><g><title>clang::FileSystemStatCache::get (280 samples, 0.01%)</title><rect x="4.5795%" y="501" width="0.0117%" height="15" fill="rgb(250,110,10)" fg:x="109341" fg:w="280"/><text x="4.8295%" y="511.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (280 samples, 0.01%)</title><rect x="4.5795%" y="485" width="0.0117%" height="15" fill="rgb(248,123,6)" fg:x="109341" fg:w="280"/><text x="4.8295%" y="495.50"></text></g><g><title>llvm::sys::fs::openFileForRead (280 samples, 0.01%)</title><rect x="4.5795%" y="469" width="0.0117%" height="15" fill="rgb(206,91,31)" fg:x="109341" fg:w="280"/><text x="4.8295%" y="479.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (258 samples, 0.01%)</title><rect x="4.6498%" y="501" width="0.0108%" height="15" fill="rgb(211,154,13)" fg:x="111018" fg:w="258"/><text x="4.8998%" y="511.50"></text></g><g><title>clang::driver::Driver::getToolChain (342 samples, 0.01%)</title><rect x="4.6494%" y="533" width="0.0143%" height="15" fill="rgb(225,148,7)" fg:x="111009" fg:w="342"/><text x="4.8994%" y="543.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (342 samples, 0.01%)</title><rect x="4.6494%" y="517" width="0.0143%" height="15" fill="rgb(220,160,43)" fg:x="111009" fg:w="342"/><text x="4.8994%" y="527.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (569 samples, 0.02%)</title><rect x="4.6399%" y="549" width="0.0238%" height="15" fill="rgb(213,52,39)" fg:x="110783" fg:w="569"/><text x="4.8899%" y="559.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (275 samples, 0.01%)</title><rect x="4.6654%" y="389" width="0.0115%" height="15" fill="rgb(243,137,7)" fg:x="111392" fg:w="275"/><text x="4.9154%" y="399.50"></text></g><g><title>clang::Preprocessor::Lex (349 samples, 0.01%)</title><rect x="4.6874%" y="357" width="0.0146%" height="15" fill="rgb(230,79,13)" fg:x="111915" fg:w="349"/><text x="4.9374%" y="367.50"></text></g><g><title>clang::Lexer::LexTokenInternal (347 samples, 0.01%)</title><rect x="4.6874%" y="341" width="0.0145%" height="15" fill="rgb(247,105,23)" fg:x="111917" fg:w="347"/><text x="4.9374%" y="351.50"></text></g><g><title>clang::Preprocessor::HandleDirective (325 samples, 0.01%)</title><rect x="4.6884%" y="325" width="0.0136%" height="15" fill="rgb(223,179,41)" fg:x="111939" fg:w="325"/><text x="4.9384%" y="335.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (891 samples, 0.04%)</title><rect x="4.6647%" y="405" width="0.0373%" height="15" fill="rgb(218,9,34)" fg:x="111374" fg:w="891"/><text x="4.9147%" y="415.50"></text></g><g><title>clang::FrontendAction::Execute (549 samples, 0.02%)</title><rect x="4.6790%" y="389" width="0.0230%" height="15" fill="rgb(222,106,8)" fg:x="111716" fg:w="549"/><text x="4.9290%" y="399.50"></text></g><g><title>clang::ParseAST (544 samples, 0.02%)</title><rect x="4.6792%" y="373" width="0.0228%" height="15" fill="rgb(211,220,0)" fg:x="111721" fg:w="544"/><text x="4.9292%" y="383.50"></text></g><g><title>clang::ExecuteCompilerInvocation (917 samples, 0.04%)</title><rect x="4.6646%" y="421" width="0.0384%" height="15" fill="rgb(229,52,16)" fg:x="111371" fg:w="917"/><text x="4.9146%" y="431.50"></text></g><g><title>clang::driver::CC1Command::Execute (960 samples, 0.04%)</title><rect x="4.6638%" y="501" width="0.0402%" height="15" fill="rgb(212,155,18)" fg:x="111352" fg:w="960"/><text x="4.9138%" y="511.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (960 samples, 0.04%)</title><rect x="4.6638%" y="485" width="0.0402%" height="15" fill="rgb(242,21,14)" fg:x="111352" fg:w="960"/><text x="4.9138%" y="495.50"></text></g><g><title>llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<llvm::Optional<llvm::StringRef> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, bool*) const::$_1> (960 samples, 0.04%)</title><rect x="4.6638%" y="469" width="0.0402%" height="15" fill="rgb(222,19,48)" fg:x="111352" fg:w="960"/><text x="4.9138%" y="479.50"></text></g><g><title>ExecuteCC1Tool (960 samples, 0.04%)</title><rect x="4.6638%" y="453" width="0.0402%" height="15" fill="rgb(232,45,27)" fg:x="111352" fg:w="960"/><text x="4.9138%" y="463.50"></text></g><g><title>cc1_main (960 samples, 0.04%)</title><rect x="4.6638%" y="437" width="0.0402%" height="15" fill="rgb(249,103,42)" fg:x="111352" fg:w="960"/><text x="4.9138%" y="447.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (968 samples, 0.04%)</title><rect x="4.6638%" y="549" width="0.0405%" height="15" fill="rgb(246,81,33)" fg:x="111352" fg:w="968"/><text x="4.9138%" y="559.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (968 samples, 0.04%)</title><rect x="4.6638%" y="533" width="0.0405%" height="15" fill="rgb(252,33,42)" fg:x="111352" fg:w="968"/><text x="4.9138%" y="543.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (968 samples, 0.04%)</title><rect x="4.6638%" y="517" width="0.0405%" height="15" fill="rgb(209,212,41)" fg:x="111352" fg:w="968"/><text x="4.9138%" y="527.50"></text></g><g><title>main (1,556 samples, 0.07%)</title><rect x="4.6398%" y="565" width="0.0652%" height="15" fill="rgb(207,154,6)" fg:x="110780" fg:w="1556"/><text x="4.8898%" y="575.50"></text></g><g><title>[unknown] (4,039 samples, 0.17%)</title><rect x="4.5363%" y="581" width="0.1692%" height="15" fill="rgb(223,64,47)" fg:x="108309" fg:w="4039"/><text x="4.7863%" y="591.50"></text></g><g><title>__libc_csu_init (1,146 samples, 0.05%)</title><rect x="4.7176%" y="549" width="0.0480%" height="15" fill="rgb(211,161,38)" fg:x="112638" fg:w="1146"/><text x="4.9676%" y="559.50"></text></g><g><title>__libc_start_main (1,941 samples, 0.08%)</title><rect x="4.7122%" y="565" width="0.0813%" height="15" fill="rgb(219,138,40)" fg:x="112508" fg:w="1941"/><text x="4.9622%" y="575.50"></text></g><g><title>main (665 samples, 0.03%)</title><rect x="4.7656%" y="549" width="0.0279%" height="15" fill="rgb(241,228,46)" fg:x="113784" fg:w="665"/><text x="5.0156%" y="559.50"></text></g><g><title>_dl_lookup_symbol_x (293 samples, 0.01%)</title><rect x="4.8078%" y="453" width="0.0123%" height="15" fill="rgb(223,209,38)" fg:x="114790" fg:w="293"/><text x="5.0578%" y="463.50"></text></g><g><title>handle_mm_fault (246 samples, 0.01%)</title><rect x="4.8205%" y="405" width="0.0103%" height="15" fill="rgb(236,164,45)" fg:x="115095" fg:w="246"/><text x="5.0705%" y="415.50"></text></g><g><title>do_user_addr_fault (256 samples, 0.01%)</title><rect x="4.8202%" y="421" width="0.0107%" height="15" fill="rgb(231,15,5)" fg:x="115086" fg:w="256"/><text x="5.0702%" y="431.50"></text></g><g><title>exc_page_fault (257 samples, 0.01%)</title><rect x="4.8202%" y="437" width="0.0108%" height="15" fill="rgb(252,35,15)" fg:x="115086" fg:w="257"/><text x="5.0702%" y="447.50"></text></g><g><title>asm_exc_page_fault (261 samples, 0.01%)</title><rect x="4.8200%" y="453" width="0.0109%" height="15" fill="rgb(248,181,18)" fg:x="115083" fg:w="261"/><text x="5.0700%" y="463.50"></text></g><g><title>elf_machine_rela (671 samples, 0.03%)</title><rect x="4.8040%" y="469" width="0.0281%" height="15" fill="rgb(233,39,42)" fg:x="114699" fg:w="671"/><text x="5.0540%" y="479.50"></text></g><g><title>elf_dynamic_do_Rela (726 samples, 0.03%)</title><rect x="4.8025%" y="485" width="0.0304%" height="15" fill="rgb(238,110,33)" fg:x="114665" fg:w="726"/><text x="5.0525%" y="495.50"></text></g><g><title>_dl_relocate_object (750 samples, 0.03%)</title><rect x="4.8017%" y="501" width="0.0314%" height="15" fill="rgb(233,195,10)" fg:x="114645" fg:w="750"/><text x="5.0517%" y="511.50"></text></g><g><title>[ld-2.31.so] (959 samples, 0.04%)</title><rect x="4.7935%" y="517" width="0.0402%" height="15" fill="rgb(254,105,3)" fg:x="114449" fg:w="959"/><text x="5.0435%" y="527.50"></text></g><g><title>_dl_start_final (967 samples, 0.04%)</title><rect x="4.7935%" y="549" width="0.0405%" height="15" fill="rgb(221,225,9)" fg:x="114449" fg:w="967"/><text x="5.0435%" y="559.50"></text></g><g><title>_dl_sysdep_start (967 samples, 0.04%)</title><rect x="4.7935%" y="533" width="0.0405%" height="15" fill="rgb(224,227,45)" fg:x="114449" fg:w="967"/><text x="5.0435%" y="543.50"></text></g><g><title>_dl_start (972 samples, 0.04%)</title><rect x="4.7935%" y="565" width="0.0407%" height="15" fill="rgb(229,198,43)" fg:x="114449" fg:w="972"/><text x="5.0435%" y="575.50"></text></g><g><title>_start (2,918 samples, 0.12%)</title><rect x="4.7122%" y="581" width="0.1222%" height="15" fill="rgb(206,209,35)" fg:x="112508" fg:w="2918"/><text x="4.9622%" y="591.50"></text></g><g><title>asm_exc_page_fault (286 samples, 0.01%)</title><rect x="4.8344%" y="581" width="0.0120%" height="15" fill="rgb(245,195,53)" fg:x="115426" fg:w="286"/><text x="5.0844%" y="591.50"></text></g><g><title>page_remove_rmap (240 samples, 0.01%)</title><rect x="4.8637%" y="437" width="0.0101%" height="15" fill="rgb(240,92,26)" fg:x="116125" fg:w="240"/><text x="5.1137%" y="447.50"></text></g><g><title>mmput (789 samples, 0.03%)</title><rect x="4.8479%" y="501" width="0.0330%" height="15" fill="rgb(207,40,23)" fg:x="115748" fg:w="789"/><text x="5.0979%" y="511.50"></text></g><g><title>exit_mmap (789 samples, 0.03%)</title><rect x="4.8479%" y="485" width="0.0330%" height="15" fill="rgb(223,111,35)" fg:x="115748" fg:w="789"/><text x="5.0979%" y="495.50"></text></g><g><title>unmap_vmas (664 samples, 0.03%)</title><rect x="4.8531%" y="469" width="0.0278%" height="15" fill="rgb(229,147,28)" fg:x="115873" fg:w="664"/><text x="5.1031%" y="479.50"></text></g><g><title>unmap_page_range (663 samples, 0.03%)</title><rect x="4.8532%" y="453" width="0.0278%" height="15" fill="rgb(211,29,28)" fg:x="115874" fg:w="663"/><text x="5.1032%" y="463.50"></text></g><g><title>__x64_sys_exit_group (794 samples, 0.03%)</title><rect x="4.8479%" y="549" width="0.0333%" height="15" fill="rgb(228,72,33)" fg:x="115748" fg:w="794"/><text x="5.0979%" y="559.50"></text></g><g><title>do_group_exit (794 samples, 0.03%)</title><rect x="4.8479%" y="533" width="0.0333%" height="15" fill="rgb(205,214,31)" fg:x="115748" fg:w="794"/><text x="5.0979%" y="543.50"></text></g><g><title>do_exit (794 samples, 0.03%)</title><rect x="4.8479%" y="517" width="0.0333%" height="15" fill="rgb(224,111,15)" fg:x="115748" fg:w="794"/><text x="5.0979%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (822 samples, 0.03%)</title><rect x="4.8469%" y="581" width="0.0344%" height="15" fill="rgb(253,21,26)" fg:x="115724" fg:w="822"/><text x="5.0969%" y="591.50"></text></g><g><title>do_syscall_64 (821 samples, 0.03%)</title><rect x="4.8469%" y="565" width="0.0344%" height="15" fill="rgb(245,139,43)" fg:x="115725" fg:w="821"/><text x="5.0969%" y="575.50"></text></g><g><title>clang (8,888 samples, 0.37%)</title><rect x="4.5100%" y="597" width="0.3723%" height="15" fill="rgb(252,170,7)" fg:x="107681" fg:w="8888"/><text x="4.7600%" y="607.50"></text></g><g><title>[perf-31879.map] (518 samples, 0.02%)</title><rect x="4.8837%" y="581" width="0.0217%" height="15" fill="rgb(231,118,14)" fg:x="116603" fg:w="518"/><text x="5.1337%" y="591.50"></text></g><g><title>find-action-loo (531 samples, 0.02%)</title><rect x="4.8836%" y="597" width="0.0222%" height="15" fill="rgb(238,83,0)" fg:x="116601" fg:w="531"/><text x="5.1336%" y="607.50"></text></g><g><title>globbing_pool-7 (301 samples, 0.01%)</title><rect x="4.9461%" y="597" width="0.0126%" height="15" fill="rgb(221,39,39)" fg:x="118094" fg:w="301"/><text x="5.1961%" y="607.50"></text></g><g><title>InterpreterRuntime::_new (288 samples, 0.01%)</title><rect x="5.0643%" y="565" width="0.0121%" height="15" fill="rgb(222,119,46)" fg:x="120914" fg:w="288"/><text x="5.3143%" y="575.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (277 samples, 0.01%)</title><rect x="5.0867%" y="549" width="0.0116%" height="15" fill="rgb(222,165,49)" fg:x="121450" fg:w="277"/><text x="5.3367%" y="559.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (430 samples, 0.02%)</title><rect x="5.0826%" y="565" width="0.0180%" height="15" fill="rgb(219,113,52)" fg:x="121352" fg:w="430"/><text x="5.3326%" y="575.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (481 samples, 0.02%)</title><rect x="5.1146%" y="437" width="0.0201%" height="15" fill="rgb(214,7,15)" fg:x="122115" fg:w="481"/><text x="5.3646%" y="447.50"></text></g><g><title>SymbolTable::lookup_only (403 samples, 0.02%)</title><rect x="5.1178%" y="421" width="0.0169%" height="15" fill="rgb(235,32,4)" fg:x="122193" fg:w="403"/><text x="5.3678%" y="431.50"></text></g><g><title>ClassFileParser::parse_constant_pool (496 samples, 0.02%)</title><rect x="5.1141%" y="453" width="0.0208%" height="15" fill="rgb(238,90,54)" fg:x="122104" fg:w="496"/><text x="5.3641%" y="463.50"></text></g><g><title>ClassFileParser::ClassFileParser (694 samples, 0.03%)</title><rect x="5.1138%" y="485" width="0.0291%" height="15" fill="rgb(213,208,19)" fg:x="122098" fg:w="694"/><text x="5.3638%" y="495.50"></text></g><g><title>ClassFileParser::parse_stream (691 samples, 0.03%)</title><rect x="5.1140%" y="469" width="0.0289%" height="15" fill="rgb(233,156,4)" fg:x="122101" fg:w="691"/><text x="5.3640%" y="479.50"></text></g><g><title>KlassFactory::create_from_stream (926 samples, 0.04%)</title><rect x="5.1138%" y="501" width="0.0388%" height="15" fill="rgb(207,194,5)" fg:x="122098" fg:w="926"/><text x="5.3638%" y="511.50"></text></g><g><title>SystemDictionary::resolve_from_stream (958 samples, 0.04%)</title><rect x="5.1138%" y="517" width="0.0401%" height="15" fill="rgb(206,111,30)" fg:x="122097" fg:w="958"/><text x="5.3638%" y="527.50"></text></g><g><title>JVM_DefineClassWithSource (965 samples, 0.04%)</title><rect x="5.1136%" y="549" width="0.0404%" height="15" fill="rgb(243,70,54)" fg:x="122091" fg:w="965"/><text x="5.3636%" y="559.50"></text></g><g><title>jvm_define_class_common (963 samples, 0.04%)</title><rect x="5.1136%" y="533" width="0.0403%" height="15" fill="rgb(242,28,8)" fg:x="122093" fg:w="963"/><text x="5.3636%" y="543.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,005 samples, 0.04%)</title><rect x="5.1135%" y="565" width="0.0421%" height="15" fill="rgb(219,106,18)" fg:x="122089" fg:w="1005"/><text x="5.3635%" y="575.50"></text></g><g><title>[perf-31879.map] (4,506 samples, 0.19%)</title><rect x="4.9786%" y="581" width="0.1887%" height="15" fill="rgb(244,222,10)" fg:x="118868" fg:w="4506"/><text x="5.2286%" y="591.50"></text></g><g><title>java (5,123 samples, 0.21%)</title><rect x="4.9688%" y="597" width="0.2146%" height="15" fill="rgb(236,179,52)" fg:x="118635" fg:w="5123"/><text x="5.2188%" y="607.50"></text></g><g><title>[unknown] (316 samples, 0.01%)</title><rect x="5.1924%" y="581" width="0.0132%" height="15" fill="rgb(213,23,39)" fg:x="123973" fg:w="316"/><text x="5.4424%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (1,208 samples, 0.05%)</title><rect x="5.2649%" y="309" width="0.0506%" height="15" fill="rgb(238,48,10)" fg:x="125704" fg:w="1208"/><text x="5.5149%" y="319.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,185 samples, 0.05%)</title><rect x="5.2658%" y="293" width="0.0496%" height="15" fill="rgb(251,196,23)" fg:x="125727" fg:w="1185"/><text x="5.5158%" y="303.50"></text></g><g><title>native_write_msr (1,178 samples, 0.05%)</title><rect x="5.2661%" y="277" width="0.0493%" height="15" fill="rgb(250,152,24)" fg:x="125734" fg:w="1178"/><text x="5.5161%" y="287.50"></text></g><g><title>finish_task_switch (1,261 samples, 0.05%)</title><rect x="5.2638%" y="325" width="0.0528%" height="15" fill="rgb(209,150,17)" fg:x="125678" fg:w="1261"/><text x="5.5138%" y="335.50"></text></g><g><title>futex_wait_queue_me (1,759 samples, 0.07%)</title><rect x="5.2517%" y="373" width="0.0737%" height="15" fill="rgb(234,202,34)" fg:x="125389" fg:w="1759"/><text x="5.5017%" y="383.50"></text></g><g><title>schedule (1,715 samples, 0.07%)</title><rect x="5.2535%" y="357" width="0.0718%" height="15" fill="rgb(253,148,53)" fg:x="125433" fg:w="1715"/><text x="5.5035%" y="367.50"></text></g><g><title>__schedule (1,704 samples, 0.07%)</title><rect x="5.2540%" y="341" width="0.0714%" height="15" fill="rgb(218,129,16)" fg:x="125444" fg:w="1704"/><text x="5.5040%" y="351.50"></text></g><g><title>__x64_sys_futex (1,849 samples, 0.08%)</title><rect x="5.2500%" y="421" width="0.0774%" height="15" fill="rgb(216,85,19)" fg:x="125348" fg:w="1849"/><text x="5.5000%" y="431.50"></text></g><g><title>do_futex (1,845 samples, 0.08%)</title><rect x="5.2501%" y="405" width="0.0773%" height="15" fill="rgb(235,228,7)" fg:x="125352" fg:w="1845"/><text x="5.5001%" y="415.50"></text></g><g><title>futex_wait (1,833 samples, 0.08%)</title><rect x="5.2506%" y="389" width="0.0768%" height="15" fill="rgb(245,175,0)" fg:x="125364" fg:w="1833"/><text x="5.5006%" y="399.50"></text></g><g><title>do_syscall_64 (1,856 samples, 0.08%)</title><rect x="5.2497%" y="437" width="0.0777%" height="15" fill="rgb(208,168,36)" fg:x="125342" fg:w="1856"/><text x="5.4997%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,916 samples, 0.08%)</title><rect x="5.2493%" y="453" width="0.0802%" height="15" fill="rgb(246,171,24)" fg:x="125333" fg:w="1916"/><text x="5.4993%" y="463.50"></text></g><g><title>__pthread_cond_wait (2,244 samples, 0.09%)</title><rect x="5.2360%" y="501" width="0.0940%" height="15" fill="rgb(215,142,24)" fg:x="125015" fg:w="2244"/><text x="5.4860%" y="511.50"></text></g><g><title>__pthread_cond_wait_common (2,243 samples, 0.09%)</title><rect x="5.2361%" y="485" width="0.0939%" height="15" fill="rgb(250,187,7)" fg:x="125016" fg:w="2243"/><text x="5.4861%" y="495.50"></text></g><g><title>futex_wait_cancelable (1,982 samples, 0.08%)</title><rect x="5.2470%" y="469" width="0.0830%" height="15" fill="rgb(228,66,33)" fg:x="125277" fg:w="1982"/><text x="5.4970%" y="479.50"></text></g><g><title>std::condition_variable::wait (2,387 samples, 0.10%)</title><rect x="5.2358%" y="517" width="0.1000%" height="15" fill="rgb(234,215,21)" fg:x="125010" fg:w="2387"/><text x="5.4858%" y="527.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (2,964 samples, 0.12%)</title><rect x="5.2117%" y="533" width="0.1241%" height="15" fill="rgb(222,191,20)" fg:x="124434" fg:w="2964"/><text x="5.4617%" y="543.50"></text></g><g><title>futex_wait_queue_me (260 samples, 0.01%)</title><rect x="5.3414%" y="357" width="0.0109%" height="15" fill="rgb(245,79,54)" fg:x="127531" fg:w="260"/><text x="5.5914%" y="367.50"></text></g><g><title>schedule (251 samples, 0.01%)</title><rect x="5.3418%" y="341" width="0.0105%" height="15" fill="rgb(240,10,37)" fg:x="127540" fg:w="251"/><text x="5.5918%" y="351.50"></text></g><g><title>__schedule (250 samples, 0.01%)</title><rect x="5.3418%" y="325" width="0.0105%" height="15" fill="rgb(214,192,32)" fg:x="127541" fg:w="250"/><text x="5.5918%" y="335.50"></text></g><g><title>do_syscall_64 (269 samples, 0.01%)</title><rect x="5.3412%" y="421" width="0.0113%" height="15" fill="rgb(209,36,54)" fg:x="127526" fg:w="269"/><text x="5.5912%" y="431.50"></text></g><g><title>__x64_sys_futex (268 samples, 0.01%)</title><rect x="5.3412%" y="405" width="0.0112%" height="15" fill="rgb(220,10,11)" fg:x="127527" fg:w="268"/><text x="5.5912%" y="415.50"></text></g><g><title>do_futex (268 samples, 0.01%)</title><rect x="5.3412%" y="389" width="0.0112%" height="15" fill="rgb(221,106,17)" fg:x="127527" fg:w="268"/><text x="5.5912%" y="399.50"></text></g><g><title>futex_wait (268 samples, 0.01%)</title><rect x="5.3412%" y="373" width="0.0112%" height="15" fill="rgb(251,142,44)" fg:x="127527" fg:w="268"/><text x="5.5912%" y="383.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (282 samples, 0.01%)</title><rect x="5.3411%" y="437" width="0.0118%" height="15" fill="rgb(238,13,15)" fg:x="127524" fg:w="282"/><text x="5.5911%" y="447.50"></text></g><g><title>__pthread_cond_wait (317 samples, 0.01%)</title><rect x="5.3398%" y="485" width="0.0133%" height="15" fill="rgb(208,107,27)" fg:x="127492" fg:w="317"/><text x="5.5898%" y="495.50"></text></g><g><title>__pthread_cond_wait_common (317 samples, 0.01%)</title><rect x="5.3398%" y="469" width="0.0133%" height="15" fill="rgb(205,136,37)" fg:x="127492" fg:w="317"/><text x="5.5898%" y="479.50"></text></g><g><title>futex_wait_cancelable (293 samples, 0.01%)</title><rect x="5.3408%" y="453" width="0.0123%" height="15" fill="rgb(250,205,27)" fg:x="127516" fg:w="293"/><text x="5.5908%" y="463.50"></text></g><g><title>std::condition_variable::wait (344 samples, 0.01%)</title><rect x="5.3397%" y="501" width="0.0144%" height="15" fill="rgb(210,80,43)" fg:x="127490" fg:w="344"/><text x="5.5897%" y="511.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (432 samples, 0.02%)</title><rect x="5.3360%" y="517" width="0.0181%" height="15" fill="rgb(247,160,36)" fg:x="127403" fg:w="432"/><text x="5.5860%" y="527.50"></text></g><g><title>std::thread::_State_impl<std::thread::_Invoker<std::tuple<llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}> > >::_M_run (522 samples, 0.02%)</title><rect x="5.3360%" y="533" width="0.0219%" height="15" fill="rgb(234,13,49)" fg:x="127403" fg:w="522"/><text x="5.5860%" y="543.50"></text></g><g><title>[libstdc++.so.6.0.28] (3,493 samples, 0.15%)</title><rect x="5.2116%" y="549" width="0.1463%" height="15" fill="rgb(234,122,0)" fg:x="124433" fg:w="3493"/><text x="5.4616%" y="559.50"></text></g><g><title>__GI___clone (3,691 samples, 0.15%)</title><rect x="5.2056%" y="581" width="0.1546%" height="15" fill="rgb(207,146,38)" fg:x="124289" fg:w="3691"/><text x="5.4556%" y="591.50"></text></g><g><title>start_thread (3,547 samples, 0.15%)</title><rect x="5.2116%" y="565" width="0.1486%" height="15" fill="rgb(207,177,25)" fg:x="124433" fg:w="3547"/><text x="5.4616%" y="575.50"></text></g><g><title>__libc_csu_init (547 samples, 0.02%)</title><rect x="5.3618%" y="549" width="0.0229%" height="15" fill="rgb(211,178,42)" fg:x="128018" fg:w="547"/><text x="5.6118%" y="559.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (315 samples, 0.01%)</title><rect x="5.3852%" y="485" width="0.0132%" height="15" fill="rgb(230,69,54)" fg:x="128577" fg:w="315"/><text x="5.6352%" y="495.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (291 samples, 0.01%)</title><rect x="5.3862%" y="469" width="0.0122%" height="15" fill="rgb(214,135,41)" fg:x="128601" fg:w="291"/><text x="5.6362%" y="479.50"></text></g><g><title>lld::elf::ArchiveFile::parse (249 samples, 0.01%)</title><rect x="5.3995%" y="469" width="0.0104%" height="15" fill="rgb(237,67,25)" fg:x="128918" fg:w="249"/><text x="5.6495%" y="479.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (340 samples, 0.01%)</title><rect x="5.4214%" y="437" width="0.0142%" height="15" fill="rgb(222,189,50)" fg:x="129441" fg:w="340"/><text x="5.6714%" y="447.50"></text></g><g><title>lld::elf::SymbolTable::insert (298 samples, 0.01%)</title><rect x="5.4232%" y="421" width="0.0125%" height="15" fill="rgb(245,148,34)" fg:x="129483" fg:w="298"/><text x="5.6732%" y="431.50"></text></g><g><title>lld::elf::SharedFile::parse<llvm::object::ELFType<(llvm::support::endianness)1, true> > (473 samples, 0.02%)</title><rect x="5.4197%" y="453" width="0.0198%" height="15" fill="rgb(222,29,6)" fg:x="129400" fg:w="473"/><text x="5.6697%" y="463.50"></text></g><g><title>lld::elf::parseFile (491 samples, 0.02%)</title><rect x="5.4190%" y="469" width="0.0206%" height="15" fill="rgb(221,189,43)" fg:x="129384" fg:w="491"/><text x="5.6690%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (249 samples, 0.01%)</title><rect x="5.4634%" y="197" width="0.0104%" height="15" fill="rgb(207,36,27)" fg:x="130445" fg:w="249"/><text x="5.7134%" y="207.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (243 samples, 0.01%)</title><rect x="5.4637%" y="181" width="0.0102%" height="15" fill="rgb(217,90,24)" fg:x="130451" fg:w="243"/><text x="5.7137%" y="191.50"></text></g><g><title>native_write_msr (242 samples, 0.01%)</title><rect x="5.4637%" y="165" width="0.0101%" height="15" fill="rgb(224,66,35)" fg:x="130452" fg:w="242"/><text x="5.7137%" y="175.50"></text></g><g><title>finish_task_switch (262 samples, 0.01%)</title><rect x="5.4631%" y="213" width="0.0110%" height="15" fill="rgb(221,13,50)" fg:x="130436" fg:w="262"/><text x="5.7131%" y="223.50"></text></g><g><title>futex_wait_queue_me (312 samples, 0.01%)</title><rect x="5.4619%" y="261" width="0.0131%" height="15" fill="rgb(236,68,49)" fg:x="130407" fg:w="312"/><text x="5.7119%" y="271.50"></text></g><g><title>schedule (311 samples, 0.01%)</title><rect x="5.4619%" y="245" width="0.0130%" height="15" fill="rgb(229,146,28)" fg:x="130408" fg:w="311"/><text x="5.7119%" y="255.50"></text></g><g><title>__schedule (309 samples, 0.01%)</title><rect x="5.4620%" y="229" width="0.0129%" height="15" fill="rgb(225,31,38)" fg:x="130410" fg:w="309"/><text x="5.7120%" y="239.50"></text></g><g><title>do_syscall_64 (321 samples, 0.01%)</title><rect x="5.4615%" y="325" width="0.0134%" height="15" fill="rgb(250,208,3)" fg:x="130399" fg:w="321"/><text x="5.7115%" y="335.50"></text></g><g><title>__x64_sys_futex (321 samples, 0.01%)</title><rect x="5.4615%" y="309" width="0.0134%" height="15" fill="rgb(246,54,23)" fg:x="130399" fg:w="321"/><text x="5.7115%" y="319.50"></text></g><g><title>do_futex (319 samples, 0.01%)</title><rect x="5.4616%" y="293" width="0.0134%" height="15" fill="rgb(243,76,11)" fg:x="130401" fg:w="319"/><text x="5.7116%" y="303.50"></text></g><g><title>futex_wait (317 samples, 0.01%)</title><rect x="5.4617%" y="277" width="0.0133%" height="15" fill="rgb(245,21,50)" fg:x="130403" fg:w="317"/><text x="5.7117%" y="287.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (330 samples, 0.01%)</title><rect x="5.4615%" y="341" width="0.0138%" height="15" fill="rgb(228,9,43)" fg:x="130398" fg:w="330"/><text x="5.7115%" y="351.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (345 samples, 0.01%)</title><rect x="5.4609%" y="389" width="0.0144%" height="15" fill="rgb(208,100,47)" fg:x="130384" fg:w="345"/><text x="5.7109%" y="399.50"></text></g><g><title>futex_wait_simple (337 samples, 0.01%)</title><rect x="5.4612%" y="373" width="0.0141%" height="15" fill="rgb(232,26,8)" fg:x="130392" fg:w="337"/><text x="5.7112%" y="383.50"></text></g><g><title>futex_wait (337 samples, 0.01%)</title><rect x="5.4612%" y="357" width="0.0141%" height="15" fill="rgb(216,166,38)" fg:x="130392" fg:w="337"/><text x="5.7112%" y="367.50"></text></g><g><title>ttwu_do_activate (243 samples, 0.01%)</title><rect x="5.4895%" y="261" width="0.0102%" height="15" fill="rgb(251,202,51)" fg:x="131067" fg:w="243"/><text x="5.7395%" y="271.50"></text></g><g><title>do_syscall_64 (613 samples, 0.03%)</title><rect x="5.4760%" y="357" width="0.0257%" height="15" fill="rgb(254,216,34)" fg:x="130744" fg:w="613"/><text x="5.7260%" y="367.50"></text></g><g><title>__x64_sys_futex (609 samples, 0.03%)</title><rect x="5.4761%" y="341" width="0.0255%" height="15" fill="rgb(251,32,27)" fg:x="130748" fg:w="609"/><text x="5.7261%" y="351.50"></text></g><g><title>do_futex (608 samples, 0.03%)</title><rect x="5.4762%" y="325" width="0.0255%" height="15" fill="rgb(208,127,28)" fg:x="130749" fg:w="608"/><text x="5.7262%" y="335.50"></text></g><g><title>futex_wake (605 samples, 0.03%)</title><rect x="5.4763%" y="309" width="0.0253%" height="15" fill="rgb(224,137,22)" fg:x="130752" fg:w="605"/><text x="5.7263%" y="319.50"></text></g><g><title>wake_up_q (559 samples, 0.02%)</title><rect x="5.4782%" y="293" width="0.0234%" height="15" fill="rgb(254,70,32)" fg:x="130798" fg:w="559"/><text x="5.7282%" y="303.50"></text></g><g><title>try_to_wake_up (552 samples, 0.02%)</title><rect x="5.4785%" y="277" width="0.0231%" height="15" fill="rgb(229,75,37)" fg:x="130805" fg:w="552"/><text x="5.7285%" y="287.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (631 samples, 0.03%)</title><rect x="5.4759%" y="373" width="0.0264%" height="15" fill="rgb(252,64,23)" fg:x="130742" fg:w="631"/><text x="5.7259%" y="383.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (1,272 samples, 0.05%)</title><rect x="5.4492%" y="437" width="0.0533%" height="15" fill="rgb(232,162,48)" fg:x="130104" fg:w="1272"/><text x="5.6992%" y="447.50"></text></g><g><title>std::condition_variable::notify_one (999 samples, 0.04%)</title><rect x="5.4606%" y="421" width="0.0418%" height="15" fill="rgb(246,160,12)" fg:x="130377" fg:w="999"/><text x="5.7106%" y="431.50"></text></g><g><title>__pthread_cond_signal (998 samples, 0.04%)</title><rect x="5.4606%" y="405" width="0.0418%" height="15" fill="rgb(247,166,0)" fg:x="130378" fg:w="998"/><text x="5.7106%" y="415.50"></text></g><g><title>futex_wake (644 samples, 0.03%)</title><rect x="5.4755%" y="389" width="0.0270%" height="15" fill="rgb(249,219,21)" fg:x="130732" fg:w="644"/><text x="5.7255%" y="399.50"></text></g><g><title>llvm::parallelForEachN (1,294 samples, 0.05%)</title><rect x="5.4490%" y="453" width="0.0542%" height="15" fill="rgb(205,209,3)" fg:x="130101" fg:w="1294"/><text x="5.6990%" y="463.50"></text></g><g><title>lld::elf::writeResult<llvm::object::ELFType<(llvm::support::endianness)1, true> > (1,531 samples, 0.06%)</title><rect x="5.4405%" y="469" width="0.0641%" height="15" fill="rgb(243,44,1)" fg:x="129898" fg:w="1531"/><text x="5.6905%" y="479.50"></text></g><g><title>lld::elf::LinkerDriver::link (2,639 samples, 0.11%)</title><rect x="5.3984%" y="485" width="0.1105%" height="15" fill="rgb(206,159,16)" fg:x="128892" fg:w="2639"/><text x="5.6484%" y="495.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (3,090 samples, 0.13%)</title><rect x="5.3851%" y="501" width="0.1294%" height="15" fill="rgb(244,77,30)" fg:x="128575" fg:w="3090"/><text x="5.6351%" y="511.50"></text></g><g><title>lld::elf::link (3,100 samples, 0.13%)</title><rect x="5.3847%" y="517" width="0.1298%" height="15" fill="rgb(218,69,12)" fg:x="128566" fg:w="3100"/><text x="5.6347%" y="527.50"></text></g><g><title>lldMain (3,172 samples, 0.13%)</title><rect x="5.3847%" y="533" width="0.1329%" height="15" fill="rgb(212,87,7)" fg:x="128566" fg:w="3172"/><text x="5.6347%" y="543.50"></text></g><g><title>__libc_start_main (3,724 samples, 0.16%)</title><rect x="5.3618%" y="565" width="0.1560%" height="15" fill="rgb(245,114,25)" fg:x="128018" fg:w="3724"/><text x="5.6118%" y="575.50"></text></g><g><title>main (3,177 samples, 0.13%)</title><rect x="5.3847%" y="549" width="0.1331%" height="15" fill="rgb(210,61,42)" fg:x="128565" fg:w="3177"/><text x="5.6347%" y="559.50"></text></g><g><title>elf_dynamic_do_Rela (264 samples, 0.01%)</title><rect x="5.5234%" y="485" width="0.0111%" height="15" fill="rgb(211,52,33)" fg:x="131876" fg:w="264"/><text x="5.7734%" y="495.50"></text></g><g><title>_dl_relocate_object (281 samples, 0.01%)</title><rect x="5.5227%" y="501" width="0.0118%" height="15" fill="rgb(234,58,33)" fg:x="131860" fg:w="281"/><text x="5.7727%" y="511.50"></text></g><g><title>[ld-2.31.so] (403 samples, 0.02%)</title><rect x="5.5179%" y="517" width="0.0169%" height="15" fill="rgb(220,115,36)" fg:x="131744" fg:w="403"/><text x="5.7679%" y="527.50"></text></g><g><title>_dl_start_final (410 samples, 0.02%)</title><rect x="5.5178%" y="549" width="0.0172%" height="15" fill="rgb(243,153,54)" fg:x="131742" fg:w="410"/><text x="5.7678%" y="559.50"></text></g><g><title>_dl_sysdep_start (409 samples, 0.02%)</title><rect x="5.5178%" y="533" width="0.0171%" height="15" fill="rgb(251,47,18)" fg:x="131743" fg:w="409"/><text x="5.7678%" y="543.50"></text></g><g><title>_dl_start (411 samples, 0.02%)</title><rect x="5.5178%" y="565" width="0.0172%" height="15" fill="rgb(242,102,42)" fg:x="131742" fg:w="411"/><text x="5.7678%" y="575.50"></text></g><g><title>_start (4,138 samples, 0.17%)</title><rect x="5.3618%" y="581" width="0.1733%" height="15" fill="rgb(234,31,38)" fg:x="128018" fg:w="4138"/><text x="5.6118%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (419 samples, 0.02%)</title><rect x="5.5412%" y="581" width="0.0175%" height="15" fill="rgb(221,117,51)" fg:x="132301" fg:w="419"/><text x="5.7912%" y="591.50"></text></g><g><title>ld.lld (9,005 samples, 0.38%)</title><rect x="5.1834%" y="597" width="0.3772%" height="15" fill="rgb(212,20,18)" fg:x="123758" fg:w="9005"/><text x="5.4334%" y="607.50"></text></g><g><title>execute_command_internal (386 samples, 0.02%)</title><rect x="5.5715%" y="501" width="0.0162%" height="15" fill="rgb(245,133,36)" fg:x="133026" fg:w="386"/><text x="5.8215%" y="511.50"></text></g><g><title>execute_command (390 samples, 0.02%)</title><rect x="5.5715%" y="517" width="0.0163%" height="15" fill="rgb(212,6,19)" fg:x="133024" fg:w="390"/><text x="5.8215%" y="527.50"></text></g><g><title>[bash] (316 samples, 0.01%)</title><rect x="5.5896%" y="469" width="0.0132%" height="15" fill="rgb(218,1,36)" fg:x="133458" fg:w="316"/><text x="5.8396%" y="479.50"></text></g><g><title>reader_loop (804 samples, 0.03%)</title><rect x="5.5705%" y="533" width="0.0337%" height="15" fill="rgb(246,84,54)" fg:x="133002" fg:w="804"/><text x="5.8205%" y="543.50"></text></g><g><title>read_command (392 samples, 0.02%)</title><rect x="5.5878%" y="517" width="0.0164%" height="15" fill="rgb(242,110,6)" fg:x="133414" fg:w="392"/><text x="5.8378%" y="527.50"></text></g><g><title>parse_command (392 samples, 0.02%)</title><rect x="5.5878%" y="501" width="0.0164%" height="15" fill="rgb(214,47,5)" fg:x="133414" fg:w="392"/><text x="5.8378%" y="511.50"></text></g><g><title>yyparse (392 samples, 0.02%)</title><rect x="5.5878%" y="485" width="0.0164%" height="15" fill="rgb(218,159,25)" fg:x="133414" fg:w="392"/><text x="5.8378%" y="495.50"></text></g><g><title>__libc_start_main (817 samples, 0.03%)</title><rect x="5.5703%" y="565" width="0.0342%" height="15" fill="rgb(215,211,28)" fg:x="132996" fg:w="817"/><text x="5.8203%" y="575.50"></text></g><g><title>main (817 samples, 0.03%)</title><rect x="5.5703%" y="549" width="0.0342%" height="15" fill="rgb(238,59,32)" fg:x="132996" fg:w="817"/><text x="5.8203%" y="559.50"></text></g><g><title>_start (830 samples, 0.03%)</title><rect x="5.5703%" y="581" width="0.0348%" height="15" fill="rgb(226,82,3)" fg:x="132996" fg:w="830"/><text x="5.8203%" y="591.50"></text></g><g><title>libtool (1,112 samples, 0.05%)</title><rect x="5.5605%" y="597" width="0.0466%" height="15" fill="rgb(240,164,32)" fg:x="132763" fg:w="1112"/><text x="5.8105%" y="607.50"></text></g><g><title>Pid1Main (481 samples, 0.02%)</title><rect x="5.6140%" y="565" width="0.0201%" height="15" fill="rgb(232,46,7)" fg:x="134039" fg:w="481"/><text x="5.8640%" y="575.50"></text></g><g><title>__GI___clone (512 samples, 0.02%)</title><rect x="5.6139%" y="581" width="0.0214%" height="15" fill="rgb(229,129,53)" fg:x="134038" fg:w="512"/><text x="5.8639%" y="591.50"></text></g><g><title>__libc_start_main (356 samples, 0.01%)</title><rect x="5.6373%" y="565" width="0.0149%" height="15" fill="rgb(234,188,29)" fg:x="134595" fg:w="356"/><text x="5.8873%" y="575.50"></text></g><g><title>main (273 samples, 0.01%)</title><rect x="5.6407%" y="549" width="0.0114%" height="15" fill="rgb(246,141,4)" fg:x="134678" fg:w="273"/><text x="5.8907%" y="559.50"></text></g><g><title>_dl_lookup_symbol_x (284 samples, 0.01%)</title><rect x="5.6653%" y="453" width="0.0119%" height="15" fill="rgb(229,23,39)" fg:x="135265" fg:w="284"/><text x="5.9153%" y="463.50"></text></g><g><title>elf_machine_rela (352 samples, 0.01%)</title><rect x="5.6626%" y="469" width="0.0147%" height="15" fill="rgb(206,12,3)" fg:x="135200" fg:w="352"/><text x="5.9126%" y="479.50"></text></g><g><title>elf_dynamic_do_Rela (403 samples, 0.02%)</title><rect x="5.6612%" y="485" width="0.0169%" height="15" fill="rgb(252,226,20)" fg:x="135166" fg:w="403"/><text x="5.9112%" y="495.50"></text></g><g><title>_dl_relocate_object (428 samples, 0.02%)</title><rect x="5.6603%" y="501" width="0.0179%" height="15" fill="rgb(216,123,35)" fg:x="135145" fg:w="428"/><text x="5.9103%" y="511.50"></text></g><g><title>[ld-2.31.so] (637 samples, 0.03%)</title><rect x="5.6523%" y="517" width="0.0267%" height="15" fill="rgb(212,68,40)" fg:x="134954" fg:w="637"/><text x="5.9023%" y="527.50"></text></g><g><title>_dl_start_final (647 samples, 0.03%)</title><rect x="5.6522%" y="549" width="0.0271%" height="15" fill="rgb(254,125,32)" fg:x="134951" fg:w="647"/><text x="5.9022%" y="559.50"></text></g><g><title>_dl_sysdep_start (647 samples, 0.03%)</title><rect x="5.6522%" y="533" width="0.0271%" height="15" fill="rgb(253,97,22)" fg:x="134951" fg:w="647"/><text x="5.9022%" y="543.50"></text></g><g><title>_dl_start (655 samples, 0.03%)</title><rect x="5.6522%" y="565" width="0.0274%" height="15" fill="rgb(241,101,14)" fg:x="134951" fg:w="655"/><text x="5.9022%" y="575.50"></text></g><g><title>_start (1,018 samples, 0.04%)</title><rect x="5.6372%" y="581" width="0.0426%" height="15" fill="rgb(238,103,29)" fg:x="134594" fg:w="1018"/><text x="5.8872%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (344 samples, 0.01%)</title><rect x="5.6847%" y="581" width="0.0144%" height="15" fill="rgb(233,195,47)" fg:x="135728" fg:w="344"/><text x="5.9347%" y="591.50"></text></g><g><title>do_syscall_64 (341 samples, 0.01%)</title><rect x="5.6848%" y="565" width="0.0143%" height="15" fill="rgb(246,218,30)" fg:x="135731" fg:w="341"/><text x="5.9348%" y="575.50"></text></g><g><title>linux-sandbox (2,199 samples, 0.09%)</title><rect x="5.6071%" y="597" width="0.0921%" height="15" fill="rgb(219,145,47)" fg:x="133875" fg:w="2199"/><text x="5.8571%" y="607.50"></text></g><g><title>[perf-31879.map] (552 samples, 0.02%)</title><rect x="5.7105%" y="581" width="0.0231%" height="15" fill="rgb(243,12,26)" fg:x="136344" fg:w="552"/><text x="5.9605%" y="591.50"></text></g><g><title>profile-writer- (587 samples, 0.02%)</title><rect x="5.7099%" y="597" width="0.0246%" height="15" fill="rgb(214,87,16)" fg:x="136329" fg:w="587"/><text x="5.9599%" y="607.50"></text></g><g><title>[unknown] (322 samples, 0.01%)</title><rect x="5.7363%" y="581" width="0.0135%" height="15" fill="rgb(208,99,42)" fg:x="136959" fg:w="322"/><text x="5.9863%" y="591.50"></text></g><g><title>python3 (534 samples, 0.02%)</title><rect x="5.7347%" y="597" width="0.0224%" height="15" fill="rgb(253,99,2)" fg:x="136922" fg:w="534"/><text x="5.9847%" y="607.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (269 samples, 0.01%)</title><rect x="5.7946%" y="565" width="0.0113%" height="15" fill="rgb(220,168,23)" fg:x="138351" fg:w="269"/><text x="6.0446%" y="575.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<5292148ul, G1BarrierSet>, (AccessInternal::BarrierType)0, 5292148ul>::oop_access_barrier (262 samples, 0.01%)</title><rect x="5.8155%" y="565" width="0.0110%" height="15" fill="rgb(242,38,24)" fg:x="138851" fg:w="262"/><text x="6.0655%" y="575.50"></text></g><g><title>HandleMark::pop_and_restore (255 samples, 0.01%)</title><rect x="5.8402%" y="565" width="0.0107%" height="15" fill="rgb(225,182,9)" fg:x="139441" fg:w="255"/><text x="6.0902%" y="575.50"></text></g><g><title>JNIHandles::make_local (264 samples, 0.01%)</title><rect x="5.8530%" y="565" width="0.0111%" height="15" fill="rgb(243,178,37)" fg:x="139747" fg:w="264"/><text x="6.1030%" y="575.50"></text></g><g><title>JavaThread::is_Java_thread (263 samples, 0.01%)</title><rect x="5.8672%" y="565" width="0.0110%" height="15" fill="rgb(232,139,19)" fg:x="140085" fg:w="263"/><text x="6.1172%" y="575.50"></text></g><g><title>ThreadStateTransition::transition_from_native (326 samples, 0.01%)</title><rect x="5.8886%" y="565" width="0.0137%" height="15" fill="rgb(225,201,24)" fg:x="140596" fg:w="326"/><text x="6.1386%" y="575.50"></text></g><g><title>__GI_unlinkat (473 samples, 0.02%)</title><rect x="5.9149%" y="565" width="0.0198%" height="15" fill="rgb(221,47,46)" fg:x="141225" fg:w="473"/><text x="6.1649%" y="575.50"></text></g><g><title>__symlink (299 samples, 0.01%)</title><rect x="5.9371%" y="565" width="0.0125%" height="15" fill="rgb(249,23,13)" fg:x="141754" fg:w="299"/><text x="6.1871%" y="575.50"></text></g><g><title>check_bounds (398 samples, 0.02%)</title><rect x="5.9573%" y="565" width="0.0167%" height="15" fill="rgb(219,9,5)" fg:x="142236" fg:w="398"/><text x="6.2073%" y="575.50"></text></g><g><title>[anon] (5,582 samples, 0.23%)</title><rect x="5.7615%" y="581" width="0.2338%" height="15" fill="rgb(254,171,16)" fg:x="137561" fg:w="5582"/><text x="6.0115%" y="591.50"></text></g><g><title>__x64_sys_close (345 samples, 0.01%)</title><rect x="6.2912%" y="517" width="0.0144%" height="15" fill="rgb(230,171,20)" fg:x="150208" fg:w="345"/><text x="6.5412%" y="527.50"></text></g><g><title>do_syscall_64 (397 samples, 0.02%)</title><rect x="6.2896%" y="533" width="0.0166%" height="15" fill="rgb(210,71,41)" fg:x="150171" fg:w="397"/><text x="6.5396%" y="543.50"></text></g><g><title>btrfs_release_file (441 samples, 0.02%)</title><rect x="6.3151%" y="469" width="0.0185%" height="15" fill="rgb(206,173,20)" fg:x="150780" fg:w="441"/><text x="6.5651%" y="479.50"></text></g><g><title>kfree (362 samples, 0.02%)</title><rect x="6.3184%" y="453" width="0.0152%" height="15" fill="rgb(233,88,34)" fg:x="150859" fg:w="362"/><text x="6.5684%" y="463.50"></text></g><g><title>__fput (839 samples, 0.04%)</title><rect x="6.3117%" y="485" width="0.0351%" height="15" fill="rgb(223,209,46)" fg:x="150698" fg:w="839"/><text x="6.5617%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,443 samples, 0.06%)</title><rect x="6.2890%" y="549" width="0.0604%" height="15" fill="rgb(250,43,18)" fg:x="150155" fg:w="1443"/><text x="6.5390%" y="559.50"></text></g><g><title>syscall_exit_to_user_mode (1,030 samples, 0.04%)</title><rect x="6.3063%" y="533" width="0.0431%" height="15" fill="rgb(208,13,10)" fg:x="150568" fg:w="1030"/><text x="6.5563%" y="543.50"></text></g><g><title>exit_to_user_mode_prepare (1,026 samples, 0.04%)</title><rect x="6.3064%" y="517" width="0.0430%" height="15" fill="rgb(212,200,36)" fg:x="150572" fg:w="1026"/><text x="6.5564%" y="527.50"></text></g><g><title>task_work_run (941 samples, 0.04%)</title><rect x="6.3100%" y="501" width="0.0394%" height="15" fill="rgb(225,90,30)" fg:x="150657" fg:w="941"/><text x="6.5600%" y="511.50"></text></g><g><title>__GI___close_nocancel (1,516 samples, 0.06%)</title><rect x="6.2867%" y="565" width="0.0635%" height="15" fill="rgb(236,182,39)" fg:x="150102" fg:w="1516"/><text x="6.5367%" y="575.50"></text></g><g><title>__GI___libc_free (831 samples, 0.03%)</title><rect x="6.3502%" y="565" width="0.0348%" height="15" fill="rgb(212,144,35)" fg:x="151618" fg:w="831"/><text x="6.6002%" y="575.50"></text></g><g><title>__do_sys_newlstat (332 samples, 0.01%)</title><rect x="6.3855%" y="517" width="0.0139%" height="15" fill="rgb(228,63,44)" fg:x="152461" fg:w="332"/><text x="6.6355%" y="527.50"></text></g><g><title>vfs_statx (315 samples, 0.01%)</title><rect x="6.3863%" y="501" width="0.0132%" height="15" fill="rgb(228,109,6)" fg:x="152478" fg:w="315"/><text x="6.6363%" y="511.50"></text></g><g><title>do_syscall_64 (337 samples, 0.01%)</title><rect x="6.3855%" y="533" width="0.0141%" height="15" fill="rgb(238,117,24)" fg:x="152461" fg:w="337"/><text x="6.6355%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (347 samples, 0.01%)</title><rect x="6.3854%" y="549" width="0.0145%" height="15" fill="rgb(242,26,26)" fg:x="152458" fg:w="347"/><text x="6.6354%" y="559.50"></text></g><g><title>__GI___lxstat (358 samples, 0.01%)</title><rect x="6.3850%" y="565" width="0.0150%" height="15" fill="rgb(221,92,48)" fg:x="152449" fg:w="358"/><text x="6.6350%" y="575.50"></text></g><g><title>dput (249 samples, 0.01%)</title><rect x="6.4083%" y="501" width="0.0104%" height="15" fill="rgb(209,209,32)" fg:x="153005" fg:w="249"/><text x="6.6583%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (440 samples, 0.02%)</title><rect x="6.4466%" y="357" width="0.0184%" height="15" fill="rgb(221,70,22)" fg:x="153919" fg:w="440"/><text x="6.6966%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (415 samples, 0.02%)</title><rect x="6.4477%" y="341" width="0.0174%" height="15" fill="rgb(248,145,5)" fg:x="153944" fg:w="415"/><text x="6.6977%" y="351.50"></text></g><g><title>prepare_to_wait_event (481 samples, 0.02%)</title><rect x="6.4452%" y="373" width="0.0201%" height="15" fill="rgb(226,116,26)" fg:x="153886" fg:w="481"/><text x="6.6952%" y="383.50"></text></g><g><title>queued_read_lock_slowpath (474 samples, 0.02%)</title><rect x="6.4654%" y="373" width="0.0199%" height="15" fill="rgb(244,5,17)" fg:x="154367" fg:w="474"/><text x="6.7154%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (350 samples, 0.01%)</title><rect x="6.4706%" y="357" width="0.0147%" height="15" fill="rgb(252,159,33)" fg:x="154491" fg:w="350"/><text x="6.7206%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (1,479 samples, 0.06%)</title><rect x="6.4348%" y="389" width="0.0619%" height="15" fill="rgb(206,71,0)" fg:x="153637" fg:w="1479"/><text x="6.6848%" y="399.50"></text></g><g><title>schedule (275 samples, 0.01%)</title><rect x="6.4852%" y="373" width="0.0115%" height="15" fill="rgb(233,118,54)" fg:x="154841" fg:w="275"/><text x="6.7352%" y="383.50"></text></g><g><title>__schedule (270 samples, 0.01%)</title><rect x="6.4854%" y="357" width="0.0113%" height="15" fill="rgb(234,83,48)" fg:x="154846" fg:w="270"/><text x="6.7354%" y="367.50"></text></g><g><title>__btrfs_read_lock_root_node (1,554 samples, 0.07%)</title><rect x="6.4344%" y="405" width="0.0651%" height="15" fill="rgb(228,3,54)" fg:x="153628" fg:w="1554"/><text x="6.6844%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (733 samples, 0.03%)</title><rect x="6.4995%" y="405" width="0.0307%" height="15" fill="rgb(226,155,13)" fg:x="155182" fg:w="733"/><text x="6.7495%" y="415.50"></text></g><g><title>schedule (317 samples, 0.01%)</title><rect x="6.5169%" y="389" width="0.0133%" height="15" fill="rgb(241,28,37)" fg:x="155598" fg:w="317"/><text x="6.7669%" y="399.50"></text></g><g><title>__schedule (310 samples, 0.01%)</title><rect x="6.5172%" y="373" width="0.0130%" height="15" fill="rgb(233,93,10)" fg:x="155605" fg:w="310"/><text x="6.7672%" y="383.50"></text></g><g><title>__wake_up_common (355 samples, 0.01%)</title><rect x="6.5302%" y="389" width="0.0149%" height="15" fill="rgb(225,113,19)" fg:x="155915" fg:w="355"/><text x="6.7802%" y="399.50"></text></g><g><title>autoremove_wake_function (350 samples, 0.01%)</title><rect x="6.5304%" y="373" width="0.0147%" height="15" fill="rgb(241,2,18)" fg:x="155920" fg:w="350"/><text x="6.7804%" y="383.50"></text></g><g><title>try_to_wake_up (335 samples, 0.01%)</title><rect x="6.5310%" y="357" width="0.0140%" height="15" fill="rgb(228,207,21)" fg:x="155935" fg:w="335"/><text x="6.7810%" y="367.50"></text></g><g><title>__wake_up_common_lock (360 samples, 0.02%)</title><rect x="6.5302%" y="405" width="0.0151%" height="15" fill="rgb(213,211,35)" fg:x="155915" fg:w="360"/><text x="6.7802%" y="415.50"></text></g><g><title>btrfs_tree_read_lock_atomic (589 samples, 0.02%)</title><rect x="6.5496%" y="405" width="0.0247%" height="15" fill="rgb(209,83,10)" fg:x="156377" fg:w="589"/><text x="6.7996%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (542 samples, 0.02%)</title><rect x="6.5515%" y="389" width="0.0227%" height="15" fill="rgb(209,164,1)" fg:x="156424" fg:w="542"/><text x="6.8015%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (268 samples, 0.01%)</title><rect x="6.5778%" y="405" width="0.0112%" height="15" fill="rgb(213,184,43)" fg:x="157051" fg:w="268"/><text x="6.8278%" y="415.50"></text></g><g><title>find_extent_buffer (318 samples, 0.01%)</title><rect x="6.5960%" y="389" width="0.0133%" height="15" fill="rgb(231,61,34)" fg:x="157486" fg:w="318"/><text x="6.8460%" y="399.50"></text></g><g><title>read_block_for_search.isra.0 (541 samples, 0.02%)</title><rect x="6.5890%" y="405" width="0.0227%" height="15" fill="rgb(235,75,3)" fg:x="157319" fg:w="541"/><text x="6.8390%" y="415.50"></text></g><g><title>btrfs_search_slot (4,395 samples, 0.18%)</title><rect x="6.4291%" y="421" width="0.1841%" height="15" fill="rgb(220,106,47)" fg:x="153500" fg:w="4395"/><text x="6.6791%" y="431.50"></text></g><g><title>btrfs_lookup_dir_item (4,459 samples, 0.19%)</title><rect x="6.4284%" y="437" width="0.1868%" height="15" fill="rgb(210,196,33)" fg:x="153485" fg:w="4459"/><text x="6.6784%" y="447.50"></text></g><g><title>btrfs_lookup (4,757 samples, 0.20%)</title><rect x="6.4198%" y="469" width="0.1992%" height="15" fill="rgb(229,154,42)" fg:x="153279" fg:w="4757"/><text x="6.6698%" y="479.50"></text></g><g><title>btrfs_lookup_dentry (4,752 samples, 0.20%)</title><rect x="6.4200%" y="453" width="0.1990%" height="15" fill="rgb(228,114,26)" fg:x="153284" fg:w="4752"/><text x="6.6700%" y="463.50"></text></g><g><title>kmem_cache_alloc (280 samples, 0.01%)</title><rect x="6.6203%" y="437" width="0.0117%" height="15" fill="rgb(208,144,1)" fg:x="158067" fg:w="280"/><text x="6.8703%" y="447.50"></text></g><g><title>__d_alloc (313 samples, 0.01%)</title><rect x="6.6193%" y="453" width="0.0131%" height="15" fill="rgb(239,112,37)" fg:x="158042" fg:w="313"/><text x="6.8693%" y="463.50"></text></g><g><title>d_alloc (337 samples, 0.01%)</title><rect x="6.6190%" y="469" width="0.0141%" height="15" fill="rgb(210,96,50)" fg:x="158036" fg:w="337"/><text x="6.8690%" y="479.50"></text></g><g><title>__lookup_hash (5,250 samples, 0.22%)</title><rect x="6.4196%" y="485" width="0.2199%" height="15" fill="rgb(222,178,2)" fg:x="153275" fg:w="5250"/><text x="6.6696%" y="495.50"></text></g><g><title>inode_permission.part.0 (316 samples, 0.01%)</title><rect x="6.6571%" y="437" width="0.0132%" height="15" fill="rgb(226,74,18)" fg:x="158945" fg:w="316"/><text x="6.9071%" y="447.50"></text></g><g><title>__d_lookup_rcu (496 samples, 0.02%)</title><rect x="6.6783%" y="405" width="0.0208%" height="15" fill="rgb(225,67,54)" fg:x="159451" fg:w="496"/><text x="6.9283%" y="415.50"></text></g><g><title>lookup_fast (585 samples, 0.02%)</title><rect x="6.6746%" y="421" width="0.0245%" height="15" fill="rgb(251,92,32)" fg:x="159363" fg:w="585"/><text x="6.9246%" y="431.50"></text></g><g><title>link_path_walk.part.0 (1,361 samples, 0.06%)</title><rect x="6.6466%" y="453" width="0.0570%" height="15" fill="rgb(228,149,22)" fg:x="158695" fg:w="1361"/><text x="6.8966%" y="463.50"></text></g><g><title>walk_component (780 samples, 0.03%)</title><rect x="6.6710%" y="437" width="0.0327%" height="15" fill="rgb(243,54,13)" fg:x="159276" fg:w="780"/><text x="6.9210%" y="447.50"></text></g><g><title>filename_parentat (1,640 samples, 0.07%)</title><rect x="6.6407%" y="485" width="0.0687%" height="15" fill="rgb(243,180,28)" fg:x="158552" fg:w="1640"/><text x="6.8907%" y="495.50"></text></g><g><title>path_parentat (1,605 samples, 0.07%)</title><rect x="6.6421%" y="469" width="0.0672%" height="15" fill="rgb(208,167,24)" fg:x="158587" fg:w="1605"/><text x="6.8921%" y="479.50"></text></g><g><title>filename_create (7,034 samples, 0.29%)</title><rect x="6.4188%" y="501" width="0.2946%" height="15" fill="rgb(245,73,45)" fg:x="153254" fg:w="7034"/><text x="6.6688%" y="511.50"></text></g><g><title>getname_flags.part.0 (352 samples, 0.01%)</title><rect x="6.7137%" y="501" width="0.0147%" height="15" fill="rgb(237,203,48)" fg:x="160295" fg:w="352"/><text x="6.9637%" y="511.50"></text></g><g><title>__btrfs_end_transaction (310 samples, 0.01%)</title><rect x="6.7392%" y="469" width="0.0130%" height="15" fill="rgb(211,197,16)" fg:x="160905" fg:w="310"/><text x="6.9892%" y="479.50"></text></g><g><title>btrfs_insert_delayed_dir_index (551 samples, 0.02%)</title><rect x="6.7576%" y="437" width="0.0231%" height="15" fill="rgb(243,99,51)" fg:x="161345" fg:w="551"/><text x="7.0076%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (326 samples, 0.01%)</title><rect x="6.8076%" y="341" width="0.0137%" height="15" fill="rgb(215,123,29)" fg:x="162539" fg:w="326"/><text x="7.0576%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (315 samples, 0.01%)</title><rect x="6.8081%" y="325" width="0.0132%" height="15" fill="rgb(239,186,37)" fg:x="162550" fg:w="315"/><text x="7.0581%" y="335.50"></text></g><g><title>prepare_to_wait_event (369 samples, 0.02%)</title><rect x="6.8060%" y="357" width="0.0155%" height="15" fill="rgb(252,136,39)" fg:x="162500" fg:w="369"/><text x="7.0560%" y="367.50"></text></g><g><title>queued_read_lock_slowpath (439 samples, 0.02%)</title><rect x="6.8215%" y="357" width="0.0184%" height="15" fill="rgb(223,213,32)" fg:x="162869" fg:w="439"/><text x="7.0715%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (347 samples, 0.01%)</title><rect x="6.8253%" y="341" width="0.0145%" height="15" fill="rgb(233,115,5)" fg:x="162961" fg:w="347"/><text x="7.0753%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (1,227 samples, 0.05%)</title><rect x="6.7977%" y="373" width="0.0514%" height="15" fill="rgb(207,226,44)" fg:x="162302" fg:w="1227"/><text x="7.0477%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (1,303 samples, 0.05%)</title><rect x="6.7975%" y="389" width="0.0546%" height="15" fill="rgb(208,126,0)" fg:x="162296" fg:w="1303"/><text x="7.0475%" y="399.50"></text></g><g><title>__btrfs_tree_lock (828 samples, 0.03%)</title><rect x="6.8520%" y="389" width="0.0347%" height="15" fill="rgb(244,66,21)" fg:x="163599" fg:w="828"/><text x="7.1020%" y="399.50"></text></g><g><title>schedule (361 samples, 0.02%)</title><rect x="6.8716%" y="373" width="0.0151%" height="15" fill="rgb(222,97,12)" fg:x="164066" fg:w="361"/><text x="7.1216%" y="383.50"></text></g><g><title>__schedule (351 samples, 0.01%)</title><rect x="6.8720%" y="357" width="0.0147%" height="15" fill="rgb(219,213,19)" fg:x="164076" fg:w="351"/><text x="7.1220%" y="367.50"></text></g><g><title>btrfs_try_tree_write_lock (1,047 samples, 0.04%)</title><rect x="6.8911%" y="389" width="0.0439%" height="15" fill="rgb(252,169,30)" fg:x="164531" fg:w="1047"/><text x="7.1411%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,015 samples, 0.04%)</title><rect x="6.8924%" y="373" width="0.0425%" height="15" fill="rgb(206,32,51)" fg:x="164563" fg:w="1015"/><text x="7.1424%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (372 samples, 0.02%)</title><rect x="6.9193%" y="357" width="0.0156%" height="15" fill="rgb(250,172,42)" fg:x="165206" fg:w="372"/><text x="7.1693%" y="367.50"></text></g><g><title>generic_bin_search.constprop.0 (245 samples, 0.01%)</title><rect x="6.9349%" y="389" width="0.0103%" height="15" fill="rgb(209,34,43)" fg:x="165578" fg:w="245"/><text x="7.1849%" y="399.50"></text></g><g><title>find_extent_buffer (262 samples, 0.01%)</title><rect x="6.9515%" y="373" width="0.0110%" height="15" fill="rgb(223,11,35)" fg:x="165974" fg:w="262"/><text x="7.2015%" y="383.50"></text></g><g><title>read_block_for_search.isra.0 (456 samples, 0.02%)</title><rect x="6.9452%" y="389" width="0.0191%" height="15" fill="rgb(251,219,26)" fg:x="165823" fg:w="456"/><text x="7.1952%" y="399.50"></text></g><g><title>ttwu_do_activate (240 samples, 0.01%)</title><rect x="6.9836%" y="309" width="0.0101%" height="15" fill="rgb(231,119,3)" fg:x="166741" fg:w="240"/><text x="7.2336%" y="319.50"></text></g><g><title>__wake_up_common (500 samples, 0.02%)</title><rect x="6.9747%" y="357" width="0.0209%" height="15" fill="rgb(216,97,11)" fg:x="166528" fg:w="500"/><text x="7.2247%" y="367.50"></text></g><g><title>autoremove_wake_function (495 samples, 0.02%)</title><rect x="6.9749%" y="341" width="0.0207%" height="15" fill="rgb(223,59,9)" fg:x="166533" fg:w="495"/><text x="7.2249%" y="351.50"></text></g><g><title>try_to_wake_up (484 samples, 0.02%)</title><rect x="6.9754%" y="325" width="0.0203%" height="15" fill="rgb(233,93,31)" fg:x="166544" fg:w="484"/><text x="7.2254%" y="335.50"></text></g><g><title>__wake_up_common_lock (510 samples, 0.02%)</title><rect x="6.9746%" y="373" width="0.0214%" height="15" fill="rgb(239,81,33)" fg:x="166526" fg:w="510"/><text x="7.2246%" y="383.50"></text></g><g><title>btrfs_search_slot (4,925 samples, 0.21%)</title><rect x="6.7928%" y="405" width="0.2063%" height="15" fill="rgb(213,120,34)" fg:x="162184" fg:w="4925"/><text x="7.0428%" y="415.50"></text></g><g><title>unlock_up (624 samples, 0.03%)</title><rect x="6.9729%" y="389" width="0.0261%" height="15" fill="rgb(243,49,53)" fg:x="166485" fg:w="624"/><text x="7.2229%" y="399.50"></text></g><g><title>btrfs_get_token_32 (456 samples, 0.02%)</title><rect x="7.0053%" y="389" width="0.0191%" height="15" fill="rgb(247,216,33)" fg:x="167259" fg:w="456"/><text x="7.2553%" y="399.50"></text></g><g><title>btrfs_set_token_32 (371 samples, 0.02%)</title><rect x="7.0289%" y="389" width="0.0155%" height="15" fill="rgb(226,26,14)" fg:x="167822" fg:w="371"/><text x="7.2789%" y="399.50"></text></g><g><title>insert_with_overflow (6,409 samples, 0.27%)</title><rect x="6.7904%" y="437" width="0.2684%" height="15" fill="rgb(215,49,53)" fg:x="162128" fg:w="6409"/><text x="7.0404%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (6,364 samples, 0.27%)</title><rect x="6.7923%" y="421" width="0.2665%" height="15" fill="rgb(245,162,40)" fg:x="162173" fg:w="6364"/><text x="7.0423%" y="431.50"></text></g><g><title>setup_items_for_insert (1,428 samples, 0.06%)</title><rect x="6.9990%" y="405" width="0.0598%" height="15" fill="rgb(229,68,17)" fg:x="167109" fg:w="1428"/><text x="7.2490%" y="415.50"></text></g><g><title>btrfs_insert_dir_item (7,362 samples, 0.31%)</title><rect x="6.7555%" y="453" width="0.3083%" height="15" fill="rgb(213,182,10)" fg:x="161295" fg:w="7362"/><text x="7.0055%" y="463.50"></text></g><g><title>btrfs_update_inode (247 samples, 0.01%)</title><rect x="7.0639%" y="453" width="0.0103%" height="15" fill="rgb(245,125,30)" fg:x="168657" fg:w="247"/><text x="7.3139%" y="463.50"></text></g><g><title>btrfs_add_link (7,674 samples, 0.32%)</title><rect x="6.7534%" y="469" width="0.3214%" height="15" fill="rgb(232,202,2)" fg:x="161244" fg:w="7674"/><text x="7.0034%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (331 samples, 0.01%)</title><rect x="7.0748%" y="469" width="0.0139%" height="15" fill="rgb(237,140,51)" fg:x="168918" fg:w="331"/><text x="7.3248%" y="479.50"></text></g><g><title>queue_work_on (239 samples, 0.01%)</title><rect x="7.0787%" y="453" width="0.0100%" height="15" fill="rgb(236,157,25)" fg:x="169010" fg:w="239"/><text x="7.3287%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (321 samples, 0.01%)</title><rect x="7.1216%" y="373" width="0.0134%" height="15" fill="rgb(219,209,0)" fg:x="170036" fg:w="321"/><text x="7.3716%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (310 samples, 0.01%)</title><rect x="7.1221%" y="357" width="0.0130%" height="15" fill="rgb(240,116,54)" fg:x="170047" fg:w="310"/><text x="7.3721%" y="367.50"></text></g><g><title>prepare_to_wait_event (351 samples, 0.01%)</title><rect x="7.1205%" y="389" width="0.0147%" height="15" fill="rgb(216,10,36)" fg:x="170009" fg:w="351"/><text x="7.3705%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (424 samples, 0.02%)</title><rect x="7.1352%" y="389" width="0.0178%" height="15" fill="rgb(222,72,44)" fg:x="170360" fg:w="424"/><text x="7.3852%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (317 samples, 0.01%)</title><rect x="7.1397%" y="373" width="0.0133%" height="15" fill="rgb(232,159,9)" fg:x="170467" fg:w="317"/><text x="7.3897%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (1,151 samples, 0.05%)</title><rect x="7.1131%" y="405" width="0.0482%" height="15" fill="rgb(210,39,32)" fg:x="169832" fg:w="1151"/><text x="7.3631%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (1,206 samples, 0.05%)</title><rect x="7.1130%" y="421" width="0.0505%" height="15" fill="rgb(216,194,45)" fg:x="169830" fg:w="1206"/><text x="7.3630%" y="431.50"></text></g><g><title>__btrfs_tree_lock (792 samples, 0.03%)</title><rect x="7.1635%" y="421" width="0.0332%" height="15" fill="rgb(218,18,35)" fg:x="171036" fg:w="792"/><text x="7.4135%" y="431.50"></text></g><g><title>schedule (341 samples, 0.01%)</title><rect x="7.1824%" y="405" width="0.0143%" height="15" fill="rgb(207,83,51)" fg:x="171487" fg:w="341"/><text x="7.4324%" y="415.50"></text></g><g><title>__schedule (338 samples, 0.01%)</title><rect x="7.1825%" y="389" width="0.0142%" height="15" fill="rgb(225,63,43)" fg:x="171490" fg:w="338"/><text x="7.4325%" y="399.50"></text></g><g><title>btrfs_try_tree_write_lock (926 samples, 0.04%)</title><rect x="7.2003%" y="421" width="0.0388%" height="15" fill="rgb(207,57,36)" fg:x="171913" fg:w="926"/><text x="7.4503%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (877 samples, 0.04%)</title><rect x="7.2023%" y="405" width="0.0367%" height="15" fill="rgb(216,99,33)" fg:x="171962" fg:w="877"/><text x="7.4523%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (297 samples, 0.01%)</title><rect x="7.2266%" y="389" width="0.0124%" height="15" fill="rgb(225,42,16)" fg:x="172542" fg:w="297"/><text x="7.4766%" y="399.50"></text></g><g><title>find_extent_buffer (266 samples, 0.01%)</title><rect x="7.2523%" y="405" width="0.0111%" height="15" fill="rgb(220,201,45)" fg:x="173155" fg:w="266"/><text x="7.5023%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (428 samples, 0.02%)</title><rect x="7.2467%" y="421" width="0.0179%" height="15" fill="rgb(225,33,4)" fg:x="173023" fg:w="428"/><text x="7.4967%" y="431.50"></text></g><g><title>split_leaf (253 samples, 0.01%)</title><rect x="7.2647%" y="421" width="0.0106%" height="15" fill="rgb(224,33,50)" fg:x="173451" fg:w="253"/><text x="7.5147%" y="431.50"></text></g><g><title>ttwu_do_activate (246 samples, 0.01%)</title><rect x="7.2890%" y="341" width="0.0103%" height="15" fill="rgb(246,198,51)" fg:x="174032" fg:w="246"/><text x="7.5390%" y="351.50"></text></g><g><title>__wake_up_common (600 samples, 0.03%)</title><rect x="7.2767%" y="389" width="0.0251%" height="15" fill="rgb(205,22,4)" fg:x="173739" fg:w="600"/><text x="7.5267%" y="399.50"></text></g><g><title>autoremove_wake_function (586 samples, 0.02%)</title><rect x="7.2773%" y="373" width="0.0245%" height="15" fill="rgb(206,3,8)" fg:x="173753" fg:w="586"/><text x="7.5273%" y="383.50"></text></g><g><title>try_to_wake_up (573 samples, 0.02%)</title><rect x="7.2779%" y="357" width="0.0240%" height="15" fill="rgb(251,23,15)" fg:x="173766" fg:w="573"/><text x="7.5279%" y="367.50"></text></g><g><title>__wake_up_common_lock (610 samples, 0.03%)</title><rect x="7.2766%" y="405" width="0.0255%" height="15" fill="rgb(252,88,28)" fg:x="173737" fg:w="610"/><text x="7.5266%" y="415.50"></text></g><g><title>btrfs_search_slot (4,678 samples, 0.20%)</title><rect x="7.1086%" y="437" width="0.1959%" height="15" fill="rgb(212,127,14)" fg:x="169725" fg:w="4678"/><text x="7.3586%" y="447.50"></text></g><g><title>unlock_up (699 samples, 0.03%)</title><rect x="7.2753%" y="421" width="0.0293%" height="15" fill="rgb(247,145,37)" fg:x="173704" fg:w="699"/><text x="7.5253%" y="431.50"></text></g><g><title>btrfs_insert_empty_items (5,192 samples, 0.22%)</title><rect x="7.1083%" y="453" width="0.2175%" height="15" fill="rgb(209,117,53)" fg:x="169718" fg:w="5192"/><text x="7.3583%" y="463.50"></text></g><g><title>setup_items_for_insert (507 samples, 0.02%)</title><rect x="7.3045%" y="437" width="0.0212%" height="15" fill="rgb(212,90,42)" fg:x="174403" fg:w="507"/><text x="7.5545%" y="447.50"></text></g><g><title>fill_inode_item (270 samples, 0.01%)</title><rect x="7.3323%" y="453" width="0.0113%" height="15" fill="rgb(218,164,37)" fg:x="175066" fg:w="270"/><text x="7.5823%" y="463.50"></text></g><g><title>inode_tree_add (536 samples, 0.02%)</title><rect x="7.3454%" y="453" width="0.0224%" height="15" fill="rgb(246,65,34)" fg:x="175378" fg:w="536"/><text x="7.5954%" y="463.50"></text></g><g><title>btrfs_alloc_inode (394 samples, 0.02%)</title><rect x="7.3786%" y="421" width="0.0165%" height="15" fill="rgb(231,100,33)" fg:x="176170" fg:w="394"/><text x="7.6286%" y="431.50"></text></g><g><title>kmem_cache_alloc (254 samples, 0.01%)</title><rect x="7.3844%" y="405" width="0.0106%" height="15" fill="rgb(228,126,14)" fg:x="176310" fg:w="254"/><text x="7.6344%" y="415.50"></text></g><g><title>alloc_inode (527 samples, 0.02%)</title><rect x="7.3774%" y="437" width="0.0221%" height="15" fill="rgb(215,173,21)" fg:x="176143" fg:w="527"/><text x="7.6274%" y="447.50"></text></g><g><title>new_inode (584 samples, 0.02%)</title><rect x="7.3764%" y="453" width="0.0245%" height="15" fill="rgb(210,6,40)" fg:x="176118" fg:w="584"/><text x="7.6264%" y="463.50"></text></g><g><title>btrfs_new_inode (7,333 samples, 0.31%)</title><rect x="7.0950%" y="469" width="0.3071%" height="15" fill="rgb(212,48,18)" fg:x="169399" fg:w="7333"/><text x="7.3450%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (429 samples, 0.02%)</title><rect x="7.4156%" y="437" width="0.0180%" height="15" fill="rgb(230,214,11)" fg:x="177054" fg:w="429"/><text x="7.6656%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (777 samples, 0.03%)</title><rect x="7.4040%" y="453" width="0.0325%" height="15" fill="rgb(254,105,39)" fg:x="176778" fg:w="777"/><text x="7.6540%" y="463.50"></text></g><g><title>btrfs_update_inode (847 samples, 0.04%)</title><rect x="7.4024%" y="469" width="0.0355%" height="15" fill="rgb(245,158,5)" fg:x="176739" fg:w="847"/><text x="7.6524%" y="479.50"></text></g><g><title>btrfs_block_rsv_add (338 samples, 0.01%)</title><rect x="7.4478%" y="453" width="0.0142%" height="15" fill="rgb(249,208,11)" fg:x="177823" fg:w="338"/><text x="7.6978%" y="463.50"></text></g><g><title>btrfs_reserve_metadata_bytes (300 samples, 0.01%)</title><rect x="7.4494%" y="437" width="0.0126%" height="15" fill="rgb(210,39,28)" fg:x="177861" fg:w="300"/><text x="7.6994%" y="447.50"></text></g><g><title>__reserve_bytes (282 samples, 0.01%)</title><rect x="7.4501%" y="421" width="0.0118%" height="15" fill="rgb(211,56,53)" fg:x="177879" fg:w="282"/><text x="7.7001%" y="431.50"></text></g><g><title>btrfs_mkdir (17,464 samples, 0.73%)</title><rect x="6.7377%" y="485" width="0.7314%" height="15" fill="rgb(226,201,30)" fg:x="160870" fg:w="17464"/><text x="6.9877%" y="495.50"></text></g><g><title>start_transaction (624 samples, 0.03%)</title><rect x="7.4431%" y="469" width="0.0261%" height="15" fill="rgb(239,101,34)" fg:x="177710" fg:w="624"/><text x="7.6931%" y="479.50"></text></g><g><title>do_mkdirat (25,468 samples, 1.07%)</title><rect x="6.4065%" y="517" width="1.0667%" height="15" fill="rgb(226,209,5)" fg:x="152961" fg:w="25468"/><text x="6.6565%" y="527.50"></text></g><g><title>vfs_mkdir (17,602 samples, 0.74%)</title><rect x="6.7359%" y="501" width="0.7372%" height="15" fill="rgb(250,105,47)" fg:x="160827" fg:w="17602"/><text x="6.9859%" y="511.50"></text></g><g><title>do_syscall_64 (25,517 samples, 1.07%)</title><rect x="6.4051%" y="533" width="1.0687%" height="15" fill="rgb(230,72,3)" fg:x="152927" fg:w="25517"/><text x="6.6551%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25,625 samples, 1.07%)</title><rect x="6.4039%" y="549" width="1.0733%" height="15" fill="rgb(232,218,39)" fg:x="152899" fg:w="25625"/><text x="6.6539%" y="559.50"></text></g><g><title>__GI___mkdir (25,753 samples, 1.08%)</title><rect x="6.4000%" y="565" width="1.0786%" height="15" fill="rgb(248,166,6)" fg:x="152807" fg:w="25753"/><text x="6.6500%" y="575.50"></text></g><g><title>btrfs_filldir (988 samples, 0.04%)</title><rect x="7.5429%" y="453" width="0.0414%" height="15" fill="rgb(247,89,20)" fg:x="180094" fg:w="988"/><text x="7.7929%" y="463.50"></text></g><g><title>filldir64 (897 samples, 0.04%)</title><rect x="7.5467%" y="437" width="0.0376%" height="15" fill="rgb(248,130,54)" fg:x="180185" fg:w="897"/><text x="7.7967%" y="447.50"></text></g><g><title>verify_dirent_name (250 samples, 0.01%)</title><rect x="7.5738%" y="421" width="0.0105%" height="15" fill="rgb(234,196,4)" fg:x="180832" fg:w="250"/><text x="7.8238%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (339 samples, 0.01%)</title><rect x="7.6080%" y="405" width="0.0142%" height="15" fill="rgb(250,143,31)" fg:x="181649" fg:w="339"/><text x="7.8580%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (343 samples, 0.01%)</title><rect x="7.6080%" y="421" width="0.0144%" height="15" fill="rgb(211,110,34)" fg:x="181649" fg:w="343"/><text x="7.8580%" y="431.50"></text></g><g><title>btrfs_search_slot (531 samples, 0.02%)</title><rect x="7.6073%" y="437" width="0.0222%" height="15" fill="rgb(215,124,48)" fg:x="181631" fg:w="531"/><text x="7.8573%" y="447.50"></text></g><g><title>btrfs_next_old_leaf (654 samples, 0.03%)</title><rect x="7.6055%" y="453" width="0.0274%" height="15" fill="rgb(216,46,13)" fg:x="181588" fg:w="654"/><text x="7.8555%" y="463.50"></text></g><g><title>btrfs_readdir_get_delayed_items (269 samples, 0.01%)</title><rect x="7.6334%" y="453" width="0.0113%" height="15" fill="rgb(205,184,25)" fg:x="182254" fg:w="269"/><text x="7.8834%" y="463.50"></text></g><g><title>btrfs_release_path (327 samples, 0.01%)</title><rect x="7.6459%" y="453" width="0.0137%" height="15" fill="rgb(228,1,10)" fg:x="182553" fg:w="327"/><text x="7.8959%" y="463.50"></text></g><g><title>finish_wait (614 samples, 0.03%)</title><rect x="7.6796%" y="405" width="0.0257%" height="15" fill="rgb(213,116,27)" fg:x="183358" fg:w="614"/><text x="7.9296%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (592 samples, 0.02%)</title><rect x="7.6805%" y="389" width="0.0248%" height="15" fill="rgb(241,95,50)" fg:x="183380" fg:w="592"/><text x="7.9305%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (558 samples, 0.02%)</title><rect x="7.6820%" y="373" width="0.0234%" height="15" fill="rgb(238,48,32)" fg:x="183414" fg:w="558"/><text x="7.9320%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,386 samples, 0.06%)</title><rect x="7.7116%" y="389" width="0.0581%" height="15" fill="rgb(235,113,49)" fg:x="184121" fg:w="1386"/><text x="7.9616%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,327 samples, 0.06%)</title><rect x="7.7140%" y="373" width="0.0556%" height="15" fill="rgb(205,127,43)" fg:x="184180" fg:w="1327"/><text x="7.9640%" y="383.50"></text></g><g><title>prepare_to_wait_event (1,551 samples, 0.06%)</title><rect x="7.7054%" y="405" width="0.0650%" height="15" fill="rgb(250,162,2)" fg:x="183974" fg:w="1551"/><text x="7.9554%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (1,601 samples, 0.07%)</title><rect x="7.7704%" y="405" width="0.0671%" height="15" fill="rgb(220,13,41)" fg:x="185525" fg:w="1601"/><text x="8.0204%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,144 samples, 0.05%)</title><rect x="7.7895%" y="389" width="0.0479%" height="15" fill="rgb(249,221,25)" fg:x="185982" fg:w="1144"/><text x="8.0395%" y="399.50"></text></g><g><title>dequeue_entity (242 samples, 0.01%)</title><rect x="7.8450%" y="357" width="0.0101%" height="15" fill="rgb(215,208,19)" fg:x="187306" fg:w="242"/><text x="8.0950%" y="367.50"></text></g><g><title>dequeue_task_fair (303 samples, 0.01%)</title><rect x="7.8432%" y="373" width="0.0127%" height="15" fill="rgb(236,175,2)" fg:x="187263" fg:w="303"/><text x="8.0932%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (4,897 samples, 0.21%)</title><rect x="7.6712%" y="421" width="0.2051%" height="15" fill="rgb(241,52,2)" fg:x="183158" fg:w="4897"/><text x="7.9212%" y="431.50"></text></g><g><title>schedule (929 samples, 0.04%)</title><rect x="7.8374%" y="405" width="0.0389%" height="15" fill="rgb(248,140,14)" fg:x="187126" fg:w="929"/><text x="8.0874%" y="415.50"></text></g><g><title>__schedule (922 samples, 0.04%)</title><rect x="7.8377%" y="389" width="0.0386%" height="15" fill="rgb(253,22,42)" fg:x="187133" fg:w="922"/><text x="8.0877%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (5,068 samples, 0.21%)</title><rect x="7.6706%" y="437" width="0.2123%" height="15" fill="rgb(234,61,47)" fg:x="183142" fg:w="5068"/><text x="7.9206%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (244 samples, 0.01%)</title><rect x="7.8828%" y="437" width="0.0102%" height="15" fill="rgb(208,226,15)" fg:x="188210" fg:w="244"/><text x="8.1328%" y="447.50"></text></g><g><title>ttwu_do_activate (316 samples, 0.01%)</title><rect x="7.9038%" y="373" width="0.0132%" height="15" fill="rgb(217,221,4)" fg:x="188711" fg:w="316"/><text x="8.1538%" y="383.50"></text></g><g><title>__wake_up_common (653 samples, 0.03%)</title><rect x="7.8931%" y="421" width="0.0273%" height="15" fill="rgb(212,174,34)" fg:x="188455" fg:w="653"/><text x="8.1431%" y="431.50"></text></g><g><title>autoremove_wake_function (644 samples, 0.03%)</title><rect x="7.8935%" y="405" width="0.0270%" height="15" fill="rgb(253,83,4)" fg:x="188464" fg:w="644"/><text x="8.1435%" y="415.50"></text></g><g><title>try_to_wake_up (626 samples, 0.03%)</title><rect x="7.8942%" y="389" width="0.0262%" height="15" fill="rgb(250,195,49)" fg:x="188482" fg:w="626"/><text x="8.1442%" y="399.50"></text></g><g><title>__wake_up_common_lock (667 samples, 0.03%)</title><rect x="7.8930%" y="437" width="0.0279%" height="15" fill="rgb(241,192,25)" fg:x="188454" fg:w="667"/><text x="8.1430%" y="447.50"></text></g><g><title>btrfs_tree_read_lock_atomic (343 samples, 0.01%)</title><rect x="7.9282%" y="437" width="0.0144%" height="15" fill="rgb(208,124,10)" fg:x="189293" fg:w="343"/><text x="8.1782%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (256 samples, 0.01%)</title><rect x="7.9318%" y="421" width="0.0107%" height="15" fill="rgb(222,33,0)" fg:x="189380" fg:w="256"/><text x="8.1818%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (625 samples, 0.03%)</title><rect x="7.9477%" y="437" width="0.0262%" height="15" fill="rgb(234,209,28)" fg:x="189760" fg:w="625"/><text x="8.1977%" y="447.50"></text></g><g><title>__radix_tree_lookup (310 samples, 0.01%)</title><rect x="7.9936%" y="405" width="0.0130%" height="15" fill="rgb(224,11,23)" fg:x="190856" fg:w="310"/><text x="8.2436%" y="415.50"></text></g><g><title>find_extent_buffer (595 samples, 0.02%)</title><rect x="7.9879%" y="421" width="0.0249%" height="15" fill="rgb(232,99,1)" fg:x="190718" fg:w="595"/><text x="8.2379%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (1,022 samples, 0.04%)</title><rect x="7.9739%" y="437" width="0.0428%" height="15" fill="rgb(237,95,45)" fg:x="190385" fg:w="1022"/><text x="8.2239%" y="447.50"></text></g><g><title>btrfs_search_slot (8,626 samples, 0.36%)</title><rect x="7.6596%" y="453" width="0.3613%" height="15" fill="rgb(208,109,11)" fg:x="182880" fg:w="8626"/><text x="7.9096%" y="463.50"></text></g><g><title>btrfs_real_readdir (13,632 samples, 0.57%)</title><rect x="7.5179%" y="469" width="0.5710%" height="15" fill="rgb(216,190,48)" fg:x="179498" fg:w="13632"/><text x="7.7679%" y="479.50"></text></g><g><title>read_extent_buffer (1,168 samples, 0.05%)</title><rect x="8.0400%" y="453" width="0.0489%" height="15" fill="rgb(251,171,36)" fg:x="191962" fg:w="1168"/><text x="8.2900%" y="463.50"></text></g><g><title>btrfs_block_rsv_add (413 samples, 0.02%)</title><rect x="8.1239%" y="405" width="0.0173%" height="15" fill="rgb(230,62,22)" fg:x="193966" fg:w="413"/><text x="8.3739%" y="415.50"></text></g><g><title>btrfs_reserve_metadata_bytes (368 samples, 0.02%)</title><rect x="8.1258%" y="389" width="0.0154%" height="15" fill="rgb(225,114,35)" fg:x="194011" fg:w="368"/><text x="8.3758%" y="399.50"></text></g><g><title>__reserve_bytes (341 samples, 0.01%)</title><rect x="8.1269%" y="373" width="0.0143%" height="15" fill="rgb(215,118,42)" fg:x="194038" fg:w="341"/><text x="8.3769%" y="383.50"></text></g><g><title>btrfs_delayed_update_inode (736 samples, 0.03%)</title><rect x="8.1156%" y="421" width="0.0308%" height="15" fill="rgb(243,119,21)" fg:x="193768" fg:w="736"/><text x="8.3656%" y="431.50"></text></g><g><title>btrfs_update_inode (841 samples, 0.04%)</title><rect x="8.1147%" y="437" width="0.0352%" height="15" fill="rgb(252,177,53)" fg:x="193747" fg:w="841"/><text x="8.3647%" y="447.50"></text></g><g><title>btrfs_dirty_inode (1,335 samples, 0.06%)</title><rect x="8.1075%" y="453" width="0.0559%" height="15" fill="rgb(237,209,29)" fg:x="193574" fg:w="1335"/><text x="8.3575%" y="463.50"></text></g><g><title>start_transaction (254 samples, 0.01%)</title><rect x="8.1528%" y="437" width="0.0106%" height="15" fill="rgb(212,65,23)" fg:x="194655" fg:w="254"/><text x="8.4028%" y="447.50"></text></g><g><title>touch_atime (1,596 samples, 0.07%)</title><rect x="8.0984%" y="469" width="0.0668%" height="15" fill="rgb(230,222,46)" fg:x="193357" fg:w="1596"/><text x="8.3484%" y="479.50"></text></g><g><title>iterate_dir (15,561 samples, 0.65%)</title><rect x="7.5146%" y="485" width="0.6517%" height="15" fill="rgb(215,135,32)" fg:x="179419" fg:w="15561"/><text x="7.7646%" y="495.50"></text></g><g><title>__x64_sys_getdents64 (15,801 samples, 0.66%)</title><rect x="7.5054%" y="501" width="0.6618%" height="15" fill="rgb(246,101,22)" fg:x="179198" fg:w="15801"/><text x="7.7554%" y="511.50"></text></g><g><title>do_syscall_64 (15,842 samples, 0.66%)</title><rect x="7.5042%" y="517" width="0.6635%" height="15" fill="rgb(206,107,13)" fg:x="179169" fg:w="15842"/><text x="7.7542%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15,952 samples, 0.67%)</title><rect x="7.5030%" y="533" width="0.6681%" height="15" fill="rgb(250,100,44)" fg:x="179141" fg:w="15952"/><text x="7.7530%" y="543.50"></text></g><g><title>__GI___getdents64 (16,071 samples, 0.67%)</title><rect x="7.4994%" y="549" width="0.6731%" height="15" fill="rgb(231,147,38)" fg:x="179055" fg:w="16071"/><text x="7.7494%" y="559.50"></text></g><g><title>__GI___readdir64 (16,569 samples, 0.69%)</title><rect x="7.4787%" y="565" width="0.6940%" height="15" fill="rgb(229,8,40)" fg:x="178560" fg:w="16569"/><text x="7.7287%" y="575.50"></text></g><g><title>__GI___xstat (240 samples, 0.01%)</title><rect x="8.1730%" y="565" width="0.0101%" height="15" fill="rgb(221,135,30)" fg:x="195139" fg:w="240"/><text x="8.4230%" y="575.50"></text></g><g><title>__switch_to_asm (361 samples, 0.02%)</title><rect x="8.2285%" y="549" width="0.0151%" height="15" fill="rgb(249,193,18)" fg:x="196464" fg:w="361"/><text x="8.4785%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (443 samples, 0.02%)</title><rect x="8.2504%" y="549" width="0.0186%" height="15" fill="rgb(209,133,39)" fg:x="196986" fg:w="443"/><text x="8.5004%" y="559.50"></text></g><g><title>crc32c_pcl_intel_update (616 samples, 0.03%)</title><rect x="8.2806%" y="549" width="0.0258%" height="15" fill="rgb(232,100,14)" fg:x="197708" fg:w="616"/><text x="8.5306%" y="559.50"></text></g><g><title>entry_SYSCALL_64 (557 samples, 0.02%)</title><rect x="8.3064%" y="549" width="0.0233%" height="15" fill="rgb(224,185,1)" fg:x="198324" fg:w="557"/><text x="8.5564%" y="559.50"></text></g><g><title>getname_flags (501 samples, 0.02%)</title><rect x="8.3982%" y="501" width="0.0210%" height="15" fill="rgb(223,139,8)" fg:x="200514" fg:w="501"/><text x="8.6482%" y="511.50"></text></g><g><title>memset_erms (2,244 samples, 0.09%)</title><rect x="8.4665%" y="469" width="0.0940%" height="15" fill="rgb(232,213,38)" fg:x="202146" fg:w="2244"/><text x="8.7165%" y="479.50"></text></g><g><title>kmem_cache_alloc (3,254 samples, 0.14%)</title><rect x="8.4309%" y="485" width="0.1363%" height="15" fill="rgb(207,94,22)" fg:x="201297" fg:w="3254"/><text x="8.6809%" y="495.50"></text></g><g><title>__check_heap_object (316 samples, 0.01%)</title><rect x="8.6425%" y="453" width="0.0132%" height="15" fill="rgb(219,183,54)" fg:x="206348" fg:w="316"/><text x="8.8925%" y="463.50"></text></g><g><title>__virt_addr_valid (1,191 samples, 0.05%)</title><rect x="8.6557%" y="453" width="0.0499%" height="15" fill="rgb(216,185,54)" fg:x="206664" fg:w="1191"/><text x="8.9057%" y="463.50"></text></g><g><title>__check_object_size (2,279 samples, 0.10%)</title><rect x="8.6223%" y="469" width="0.0955%" height="15" fill="rgb(254,217,39)" fg:x="205866" fg:w="2279"/><text x="8.8723%" y="479.50"></text></g><g><title>check_stack_object (289 samples, 0.01%)</title><rect x="8.7057%" y="453" width="0.0121%" height="15" fill="rgb(240,178,23)" fg:x="207856" fg:w="289"/><text x="8.9557%" y="463.50"></text></g><g><title>getname_flags.part.0 (7,143 samples, 0.30%)</title><rect x="8.4191%" y="501" width="0.2992%" height="15" fill="rgb(218,11,47)" fg:x="201015" fg:w="7143"/><text x="8.6691%" y="511.50"></text></g><g><title>strncpy_from_user (3,607 samples, 0.15%)</title><rect x="8.5672%" y="485" width="0.1511%" height="15" fill="rgb(218,51,51)" fg:x="204551" fg:w="3607"/><text x="8.8172%" y="495.50"></text></g><g><title>__x64_sys_unlinkat (7,708 samples, 0.32%)</title><rect x="8.3956%" y="517" width="0.3228%" height="15" fill="rgb(238,126,27)" fg:x="200454" fg:w="7708"/><text x="8.6456%" y="527.50"></text></g><g><title>dput (344 samples, 0.01%)</title><rect x="8.7275%" y="501" width="0.0144%" height="15" fill="rgb(249,202,22)" fg:x="208378" fg:w="344"/><text x="8.9775%" y="511.50"></text></g><g><title>filename_parentat (498 samples, 0.02%)</title><rect x="8.7419%" y="501" width="0.0209%" height="15" fill="rgb(254,195,49)" fg:x="208722" fg:w="498"/><text x="8.9919%" y="511.50"></text></g><g><title>path_parentat (454 samples, 0.02%)</title><rect x="8.7438%" y="485" width="0.0190%" height="15" fill="rgb(208,123,14)" fg:x="208766" fg:w="454"/><text x="8.9938%" y="495.50"></text></g><g><title>__btrfs_end_transaction (323 samples, 0.01%)</title><rect x="8.7893%" y="469" width="0.0135%" height="15" fill="rgb(224,200,8)" fg:x="209852" fg:w="323"/><text x="9.0393%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (680 samples, 0.03%)</title><rect x="8.8068%" y="453" width="0.0285%" height="15" fill="rgb(217,61,36)" fg:x="210271" fg:w="680"/><text x="9.0568%" y="463.50"></text></g><g><title>btrfs_search_slot (409 samples, 0.02%)</title><rect x="8.8418%" y="421" width="0.0171%" height="15" fill="rgb(206,35,45)" fg:x="211107" fg:w="409"/><text x="9.0918%" y="431.50"></text></g><g><title>btrfs_del_inode_ref (716 samples, 0.03%)</title><rect x="8.8365%" y="437" width="0.0300%" height="15" fill="rgb(217,65,33)" fg:x="210980" fg:w="716"/><text x="9.0865%" y="447.50"></text></g><g><title>btrfs_del_inode_ref_in_log (815 samples, 0.03%)</title><rect x="8.8353%" y="453" width="0.0341%" height="15" fill="rgb(222,158,48)" fg:x="210951" fg:w="815"/><text x="9.0853%" y="463.50"></text></g><g><title>btrfs_get_token_32 (602 samples, 0.03%)</title><rect x="8.8786%" y="437" width="0.0252%" height="15" fill="rgb(254,2,54)" fg:x="211984" fg:w="602"/><text x="9.1286%" y="447.50"></text></g><g><title>btrfs_set_token_32 (429 samples, 0.02%)</title><rect x="8.9059%" y="437" width="0.0180%" height="15" fill="rgb(250,143,38)" fg:x="212636" fg:w="429"/><text x="9.1559%" y="447.50"></text></g><g><title>memmove_extent_buffer (438 samples, 0.02%)</title><rect x="8.9298%" y="437" width="0.0183%" height="15" fill="rgb(248,25,0)" fg:x="213207" fg:w="438"/><text x="9.1798%" y="447.50"></text></g><g><title>memmove (374 samples, 0.02%)</title><rect x="8.9325%" y="421" width="0.0157%" height="15" fill="rgb(206,152,27)" fg:x="213271" fg:w="374"/><text x="9.1825%" y="431.50"></text></g><g><title>btrfs_del_items (1,952 samples, 0.08%)</title><rect x="8.8694%" y="453" width="0.0818%" height="15" fill="rgb(240,77,30)" fg:x="211766" fg:w="1952"/><text x="9.1194%" y="463.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (439 samples, 0.02%)</title><rect x="8.9512%" y="453" width="0.0184%" height="15" fill="rgb(231,5,3)" fg:x="213718" fg:w="439"/><text x="9.2012%" y="463.50"></text></g><g><title>btrfs_delete_delayed_dir_index (506 samples, 0.02%)</title><rect x="8.9696%" y="453" width="0.0212%" height="15" fill="rgb(207,226,32)" fg:x="214157" fg:w="506"/><text x="9.2196%" y="463.50"></text></g><g><title>finish_wait (286 samples, 0.01%)</title><rect x="9.0160%" y="389" width="0.0120%" height="15" fill="rgb(222,207,47)" fg:x="215266" fg:w="286"/><text x="9.2660%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (275 samples, 0.01%)</title><rect x="9.0165%" y="373" width="0.0115%" height="15" fill="rgb(229,115,45)" fg:x="215277" fg:w="275"/><text x="9.2665%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (264 samples, 0.01%)</title><rect x="9.0169%" y="357" width="0.0111%" height="15" fill="rgb(224,191,6)" fg:x="215288" fg:w="264"/><text x="9.2669%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (549 samples, 0.02%)</title><rect x="9.0302%" y="373" width="0.0230%" height="15" fill="rgb(230,227,24)" fg:x="215605" fg:w="549"/><text x="9.2802%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (527 samples, 0.02%)</title><rect x="9.0311%" y="357" width="0.0221%" height="15" fill="rgb(228,80,19)" fg:x="215627" fg:w="527"/><text x="9.2811%" y="367.50"></text></g><g><title>prepare_to_wait_event (611 samples, 0.03%)</title><rect x="9.0281%" y="389" width="0.0256%" height="15" fill="rgb(247,229,0)" fg:x="215554" fg:w="611"/><text x="9.2781%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (850 samples, 0.04%)</title><rect x="9.0537%" y="389" width="0.0356%" height="15" fill="rgb(237,194,15)" fg:x="216165" fg:w="850"/><text x="9.3037%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (617 samples, 0.03%)</title><rect x="9.0634%" y="373" width="0.0258%" height="15" fill="rgb(219,203,20)" fg:x="216398" fg:w="617"/><text x="9.3134%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (2,226 samples, 0.09%)</title><rect x="9.0112%" y="405" width="0.0932%" height="15" fill="rgb(234,128,8)" fg:x="215152" fg:w="2226"/><text x="9.2612%" y="415.50"></text></g><g><title>schedule (363 samples, 0.02%)</title><rect x="9.0893%" y="389" width="0.0152%" height="15" fill="rgb(248,202,8)" fg:x="217015" fg:w="363"/><text x="9.3393%" y="399.50"></text></g><g><title>__schedule (357 samples, 0.01%)</title><rect x="9.0895%" y="373" width="0.0150%" height="15" fill="rgb(206,104,37)" fg:x="217021" fg:w="357"/><text x="9.3395%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (2,284 samples, 0.10%)</title><rect x="9.0108%" y="421" width="0.0957%" height="15" fill="rgb(223,8,27)" fg:x="215141" fg:w="2284"/><text x="9.2608%" y="431.50"></text></g><g><title>finish_wait (354 samples, 0.01%)</title><rect x="9.1201%" y="389" width="0.0148%" height="15" fill="rgb(216,217,28)" fg:x="217752" fg:w="354"/><text x="9.3701%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (332 samples, 0.01%)</title><rect x="9.1211%" y="373" width="0.0139%" height="15" fill="rgb(249,199,1)" fg:x="217774" fg:w="332"/><text x="9.3711%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (316 samples, 0.01%)</title><rect x="9.1217%" y="357" width="0.0132%" height="15" fill="rgb(240,85,17)" fg:x="217790" fg:w="316"/><text x="9.3717%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (914 samples, 0.04%)</title><rect x="9.1392%" y="373" width="0.0383%" height="15" fill="rgb(206,108,45)" fg:x="218208" fg:w="914"/><text x="9.3892%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (860 samples, 0.04%)</title><rect x="9.1415%" y="357" width="0.0360%" height="15" fill="rgb(245,210,41)" fg:x="218262" fg:w="860"/><text x="9.3915%" y="367.50"></text></g><g><title>prepare_to_wait_event (1,040 samples, 0.04%)</title><rect x="9.1351%" y="389" width="0.0436%" height="15" fill="rgb(206,13,37)" fg:x="218109" fg:w="1040"/><text x="9.3851%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,383 samples, 0.06%)</title><rect x="9.1786%" y="389" width="0.0579%" height="15" fill="rgb(250,61,18)" fg:x="219149" fg:w="1383"/><text x="9.4286%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (704 samples, 0.03%)</title><rect x="9.2071%" y="373" width="0.0295%" height="15" fill="rgb(235,172,48)" fg:x="219828" fg:w="704"/><text x="9.4571%" y="383.50"></text></g><g><title>__btrfs_tree_lock (3,715 samples, 0.16%)</title><rect x="9.1139%" y="405" width="0.1556%" height="15" fill="rgb(249,201,17)" fg:x="217604" fg:w="3715"/><text x="9.3639%" y="415.50"></text></g><g><title>schedule (787 samples, 0.03%)</title><rect x="9.2366%" y="389" width="0.0330%" height="15" fill="rgb(219,208,6)" fg:x="220532" fg:w="787"/><text x="9.4866%" y="399.50"></text></g><g><title>__schedule (764 samples, 0.03%)</title><rect x="9.2375%" y="373" width="0.0320%" height="15" fill="rgb(248,31,23)" fg:x="220555" fg:w="764"/><text x="9.4875%" y="383.50"></text></g><g><title>btrfs_lock_root_node (3,757 samples, 0.16%)</title><rect x="9.1137%" y="421" width="0.1574%" height="15" fill="rgb(245,15,42)" fg:x="217599" fg:w="3757"/><text x="9.3637%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (350 samples, 0.01%)</title><rect x="9.2834%" y="421" width="0.0147%" height="15" fill="rgb(222,217,39)" fg:x="221650" fg:w="350"/><text x="9.5334%" y="431.50"></text></g><g><title>find_extent_buffer (305 samples, 0.01%)</title><rect x="9.3039%" y="405" width="0.0128%" height="15" fill="rgb(210,219,27)" fg:x="222139" fg:w="305"/><text x="9.5539%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (491 samples, 0.02%)</title><rect x="9.2981%" y="421" width="0.0206%" height="15" fill="rgb(252,166,36)" fg:x="222000" fg:w="491"/><text x="9.5481%" y="431.50"></text></g><g><title>ttwu_do_activate (467 samples, 0.02%)</title><rect x="9.3590%" y="341" width="0.0196%" height="15" fill="rgb(245,132,34)" fg:x="223455" fg:w="467"/><text x="9.6090%" y="351.50"></text></g><g><title>__wake_up_common (1,304 samples, 0.05%)</title><rect x="9.3292%" y="389" width="0.0546%" height="15" fill="rgb(236,54,3)" fg:x="222743" fg:w="1304"/><text x="9.5792%" y="399.50"></text></g><g><title>autoremove_wake_function (1,281 samples, 0.05%)</title><rect x="9.3301%" y="373" width="0.0537%" height="15" fill="rgb(241,173,43)" fg:x="222766" fg:w="1281"/><text x="9.5801%" y="383.50"></text></g><g><title>try_to_wake_up (1,246 samples, 0.05%)</title><rect x="9.3316%" y="357" width="0.0522%" height="15" fill="rgb(215,190,9)" fg:x="222801" fg:w="1246"/><text x="9.5816%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (243 samples, 0.01%)</title><rect x="9.3838%" y="389" width="0.0102%" height="15" fill="rgb(242,101,16)" fg:x="224047" fg:w="243"/><text x="9.6338%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,562 samples, 0.07%)</title><rect x="9.3290%" y="405" width="0.0654%" height="15" fill="rgb(223,190,21)" fg:x="222740" fg:w="1562"/><text x="9.5790%" y="415.50"></text></g><g><title>btrfs_search_slot (9,386 samples, 0.39%)</title><rect x="9.0030%" y="437" width="0.3931%" height="15" fill="rgb(215,228,25)" fg:x="214956" fg:w="9386"/><text x="9.2530%" y="447.50"></text></g><g><title>unlock_up (1,670 samples, 0.07%)</title><rect x="9.3262%" y="421" width="0.0699%" height="15" fill="rgb(225,36,22)" fg:x="222672" fg:w="1670"/><text x="9.5762%" y="431.50"></text></g><g><title>btrfs_lookup_dir_item (9,707 samples, 0.41%)</title><rect x="8.9934%" y="453" width="0.4066%" height="15" fill="rgb(251,106,46)" fg:x="214726" fg:w="9707"/><text x="9.2434%" y="463.50"></text></g><g><title>btrfs_release_path (368 samples, 0.02%)</title><rect x="9.4000%" y="453" width="0.0154%" height="15" fill="rgb(208,90,1)" fg:x="224433" fg:w="368"/><text x="9.6500%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (273 samples, 0.01%)</title><rect x="9.4166%" y="437" width="0.0114%" height="15" fill="rgb(243,10,4)" fg:x="224830" fg:w="273"/><text x="9.6666%" y="447.50"></text></g><g><title>btrfs_update_inode (369 samples, 0.02%)</title><rect x="9.4154%" y="453" width="0.0155%" height="15" fill="rgb(212,137,27)" fg:x="224801" fg:w="369"/><text x="9.6654%" y="463.50"></text></g><g><title>__btrfs_unlink_inode (15,101 samples, 0.63%)</title><rect x="8.8028%" y="469" width="0.6325%" height="15" fill="rgb(231,220,49)" fg:x="210175" fg:w="15101"/><text x="9.0528%" y="479.50"></text></g><g><title>btrfs_free_path (362 samples, 0.02%)</title><rect x="9.4462%" y="437" width="0.0152%" height="15" fill="rgb(237,96,20)" fg:x="225536" fg:w="362"/><text x="9.6962%" y="447.50"></text></g><g><title>btrfs_release_path (350 samples, 0.01%)</title><rect x="9.4467%" y="421" width="0.0147%" height="15" fill="rgb(239,229,30)" fg:x="225548" fg:w="350"/><text x="9.6967%" y="431.50"></text></g><g><title>finish_wait (323 samples, 0.01%)</title><rect x="9.4746%" y="373" width="0.0135%" height="15" fill="rgb(219,65,33)" fg:x="226215" fg:w="323"/><text x="9.7246%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (310 samples, 0.01%)</title><rect x="9.4751%" y="357" width="0.0130%" height="15" fill="rgb(243,134,7)" fg:x="226228" fg:w="310"/><text x="9.7251%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (289 samples, 0.01%)</title><rect x="9.4760%" y="341" width="0.0121%" height="15" fill="rgb(216,177,54)" fg:x="226249" fg:w="289"/><text x="9.7260%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (755 samples, 0.03%)</title><rect x="9.4903%" y="357" width="0.0316%" height="15" fill="rgb(211,160,20)" fg:x="226589" fg:w="755"/><text x="9.7403%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (710 samples, 0.03%)</title><rect x="9.4921%" y="341" width="0.0297%" height="15" fill="rgb(239,85,39)" fg:x="226634" fg:w="710"/><text x="9.7421%" y="351.50"></text></g><g><title>prepare_to_wait_event (818 samples, 0.03%)</title><rect x="9.4882%" y="373" width="0.0343%" height="15" fill="rgb(232,125,22)" fg:x="226540" fg:w="818"/><text x="9.7382%" y="383.50"></text></g><g><title>queued_read_lock_slowpath (776 samples, 0.03%)</title><rect x="9.5225%" y="373" width="0.0325%" height="15" fill="rgb(244,57,34)" fg:x="227358" fg:w="776"/><text x="9.7725%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (564 samples, 0.02%)</title><rect x="9.5313%" y="357" width="0.0236%" height="15" fill="rgb(214,203,32)" fg:x="227570" fg:w="564"/><text x="9.7813%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (2,459 samples, 0.10%)</title><rect x="9.4699%" y="389" width="0.1030%" height="15" fill="rgb(207,58,43)" fg:x="226104" fg:w="2459"/><text x="9.7199%" y="399.50"></text></g><g><title>schedule (429 samples, 0.02%)</title><rect x="9.5550%" y="373" width="0.0180%" height="15" fill="rgb(215,193,15)" fg:x="228134" fg:w="429"/><text x="9.8050%" y="383.50"></text></g><g><title>__schedule (422 samples, 0.02%)</title><rect x="9.5553%" y="357" width="0.0177%" height="15" fill="rgb(232,15,44)" fg:x="228141" fg:w="422"/><text x="9.8053%" y="367.50"></text></g><g><title>__btrfs_read_lock_root_node (2,562 samples, 0.11%)</title><rect x="9.4695%" y="405" width="0.1073%" height="15" fill="rgb(212,3,48)" fg:x="226094" fg:w="2562"/><text x="9.7195%" y="415.50"></text></g><g><title>__btrfs_tree_lock (465 samples, 0.02%)</title><rect x="9.5768%" y="405" width="0.0195%" height="15" fill="rgb(218,128,7)" fg:x="228656" fg:w="465"/><text x="9.8268%" y="415.50"></text></g><g><title>schedule (285 samples, 0.01%)</title><rect x="9.5844%" y="389" width="0.0119%" height="15" fill="rgb(226,216,39)" fg:x="228836" fg:w="285"/><text x="9.8344%" y="399.50"></text></g><g><title>__schedule (284 samples, 0.01%)</title><rect x="9.5844%" y="373" width="0.0119%" height="15" fill="rgb(243,47,51)" fg:x="228837" fg:w="284"/><text x="9.8344%" y="383.50"></text></g><g><title>btrfs_try_tree_write_lock (563 samples, 0.02%)</title><rect x="9.6023%" y="405" width="0.0236%" height="15" fill="rgb(241,183,40)" fg:x="229264" fg:w="563"/><text x="9.8523%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (523 samples, 0.02%)</title><rect x="9.6040%" y="389" width="0.0219%" height="15" fill="rgb(231,217,32)" fg:x="229304" fg:w="523"/><text x="9.8540%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (248 samples, 0.01%)</title><rect x="9.6259%" y="405" width="0.0104%" height="15" fill="rgb(229,61,38)" fg:x="229827" fg:w="248"/><text x="9.8759%" y="415.50"></text></g><g><title>find_extent_buffer (369 samples, 0.02%)</title><rect x="9.6443%" y="389" width="0.0155%" height="15" fill="rgb(225,210,5)" fg:x="230266" fg:w="369"/><text x="9.8943%" y="399.50"></text></g><g><title>read_block_for_search.isra.0 (598 samples, 0.03%)</title><rect x="9.6363%" y="405" width="0.0250%" height="15" fill="rgb(231,79,45)" fg:x="230075" fg:w="598"/><text x="9.8863%" y="415.50"></text></g><g><title>ttwu_do_activate (271 samples, 0.01%)</title><rect x="9.6748%" y="325" width="0.0114%" height="15" fill="rgb(224,100,7)" fg:x="230994" fg:w="271"/><text x="9.9248%" y="335.50"></text></g><g><title>__wake_up_common (581 samples, 0.02%)</title><rect x="9.6643%" y="373" width="0.0243%" height="15" fill="rgb(241,198,18)" fg:x="230745" fg:w="581"/><text x="9.9143%" y="383.50"></text></g><g><title>autoremove_wake_function (573 samples, 0.02%)</title><rect x="9.6647%" y="357" width="0.0240%" height="15" fill="rgb(252,97,53)" fg:x="230753" fg:w="573"/><text x="9.9147%" y="367.50"></text></g><g><title>try_to_wake_up (557 samples, 0.02%)</title><rect x="9.6653%" y="341" width="0.0233%" height="15" fill="rgb(220,88,7)" fg:x="230769" fg:w="557"/><text x="9.9153%" y="351.50"></text></g><g><title>__wake_up_common_lock (600 samples, 0.03%)</title><rect x="9.6642%" y="389" width="0.0251%" height="15" fill="rgb(213,176,14)" fg:x="230743" fg:w="600"/><text x="9.9142%" y="399.50"></text></g><g><title>btrfs_search_slot (5,489 samples, 0.23%)</title><rect x="9.4621%" y="421" width="0.2299%" height="15" fill="rgb(246,73,7)" fg:x="225917" fg:w="5489"/><text x="9.7121%" y="431.50"></text></g><g><title>unlock_up (721 samples, 0.03%)</title><rect x="9.6618%" y="405" width="0.0302%" height="15" fill="rgb(245,64,36)" fg:x="230685" fg:w="721"/><text x="9.9118%" y="415.50"></text></g><g><title>btrfs_insert_empty_items (5,945 samples, 0.25%)</title><rect x="9.4613%" y="437" width="0.2490%" height="15" fill="rgb(245,80,10)" fg:x="225898" fg:w="5945"/><text x="9.7113%" y="447.50"></text></g><g><title>setup_items_for_insert (437 samples, 0.02%)</title><rect x="9.6920%" y="421" width="0.0183%" height="15" fill="rgb(232,107,50)" fg:x="231406" fg:w="437"/><text x="9.9420%" y="431.50"></text></g><g><title>btrfs_orphan_add (6,446 samples, 0.27%)</title><rect x="9.4445%" y="469" width="0.2700%" height="15" fill="rgb(253,3,0)" fg:x="225496" fg:w="6446"/><text x="9.6945%" y="479.50"></text></g><g><title>btrfs_insert_orphan_item (6,430 samples, 0.27%)</title><rect x="9.4451%" y="453" width="0.2693%" height="15" fill="rgb(212,99,53)" fg:x="225512" fg:w="6430"/><text x="9.6951%" y="463.50"></text></g><g><title>btrfs_block_rsv_add (368 samples, 0.02%)</title><rect x="9.7304%" y="453" width="0.0154%" height="15" fill="rgb(249,111,54)" fg:x="232323" fg:w="368"/><text x="9.9804%" y="463.50"></text></g><g><title>btrfs_reserve_metadata_bytes (307 samples, 0.01%)</title><rect x="9.7330%" y="437" width="0.0129%" height="15" fill="rgb(249,55,30)" fg:x="232384" fg:w="307"/><text x="9.9830%" y="447.50"></text></g><g><title>__reserve_bytes (267 samples, 0.01%)</title><rect x="9.7346%" y="421" width="0.0112%" height="15" fill="rgb(237,47,42)" fg:x="232424" fg:w="267"/><text x="9.9846%" y="431.50"></text></g><g><title>btrfs_rmdir (23,095 samples, 0.97%)</title><rect x="8.7857%" y="485" width="0.9673%" height="15" fill="rgb(211,20,18)" fg:x="209767" fg:w="23095"/><text x="9.0357%" y="495.50"></text></g><g><title>start_transaction (648 samples, 0.03%)</title><rect x="9.7258%" y="469" width="0.0271%" height="15" fill="rgb(231,203,46)" fg:x="232214" fg:w="648"/><text x="9.9758%" y="479.50"></text></g><g><title>btrfs_drop_extent_cache (266 samples, 0.01%)</title><rect x="9.7739%" y="453" width="0.0111%" height="15" fill="rgb(237,142,3)" fg:x="233362" fg:w="266"/><text x="10.0239%" y="463.50"></text></g><g><title>btrfs_destroy_inode (928 samples, 0.04%)</title><rect x="9.7721%" y="469" width="0.0389%" height="15" fill="rgb(241,107,1)" fg:x="233318" fg:w="928"/><text x="10.0221%" y="479.50"></text></g><g><title>destroy_inode (1,142 samples, 0.05%)</title><rect x="9.7638%" y="485" width="0.0478%" height="15" fill="rgb(229,83,13)" fg:x="233119" fg:w="1142"/><text x="10.0138%" y="495.50"></text></g><g><title>btrfs_trans_release_metadata (291 samples, 0.01%)</title><rect x="9.8333%" y="437" width="0.0122%" height="15" fill="rgb(241,91,40)" fg:x="234779" fg:w="291"/><text x="10.0833%" y="447.50"></text></g><g><title>btrfs_block_rsv_release (271 samples, 0.01%)</title><rect x="9.8341%" y="421" width="0.0114%" height="15" fill="rgb(225,3,45)" fg:x="234799" fg:w="271"/><text x="10.0841%" y="431.50"></text></g><g><title>__btrfs_end_transaction (585 samples, 0.02%)</title><rect x="9.8239%" y="453" width="0.0245%" height="15" fill="rgb(244,223,14)" fg:x="234555" fg:w="585"/><text x="10.0739%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (383 samples, 0.02%)</title><rect x="9.8484%" y="453" width="0.0160%" height="15" fill="rgb(224,124,37)" fg:x="235140" fg:w="383"/><text x="10.0984%" y="463.50"></text></g><g><title>btrfs_get_token_32 (572 samples, 0.02%)</title><rect x="9.9036%" y="405" width="0.0240%" height="15" fill="rgb(251,171,30)" fg:x="236458" fg:w="572"/><text x="10.1536%" y="415.50"></text></g><g><title>btrfs_set_token_32 (411 samples, 0.02%)</title><rect x="9.9287%" y="405" width="0.0172%" height="15" fill="rgb(236,46,54)" fg:x="237057" fg:w="411"/><text x="10.1787%" y="415.50"></text></g><g><title>memmove_extent_buffer (397 samples, 0.02%)</title><rect x="9.9506%" y="405" width="0.0166%" height="15" fill="rgb(245,213,5)" fg:x="237579" fg:w="397"/><text x="10.2006%" y="415.50"></text></g><g><title>memmove (330 samples, 0.01%)</title><rect x="9.9534%" y="389" width="0.0138%" height="15" fill="rgb(230,144,27)" fg:x="237646" fg:w="330"/><text x="10.2034%" y="399.50"></text></g><g><title>btrfs_del_items (1,765 samples, 0.07%)</title><rect x="9.8945%" y="421" width="0.0739%" height="15" fill="rgb(220,86,6)" fg:x="236241" fg:w="1765"/><text x="10.1445%" y="431.50"></text></g><g><title>finish_wait (321 samples, 0.01%)</title><rect x="9.9877%" y="357" width="0.0134%" height="15" fill="rgb(240,20,13)" fg:x="238467" fg:w="321"/><text x="10.2377%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (301 samples, 0.01%)</title><rect x="9.9886%" y="341" width="0.0126%" height="15" fill="rgb(217,89,34)" fg:x="238487" fg:w="301"/><text x="10.2386%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (292 samples, 0.01%)</title><rect x="9.9890%" y="325" width="0.0122%" height="15" fill="rgb(229,13,5)" fg:x="238496" fg:w="292"/><text x="10.2390%" y="335.50"></text></g><g><title>_raw_spin_lock_irqsave (780 samples, 0.03%)</title><rect x="10.0041%" y="341" width="0.0327%" height="15" fill="rgb(244,67,35)" fg:x="238857" fg:w="780"/><text x="10.2541%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (747 samples, 0.03%)</title><rect x="10.0055%" y="325" width="0.0313%" height="15" fill="rgb(221,40,2)" fg:x="238890" fg:w="747"/><text x="10.2555%" y="335.50"></text></g><g><title>prepare_to_wait_event (858 samples, 0.04%)</title><rect x="10.0012%" y="357" width="0.0359%" height="15" fill="rgb(237,157,21)" fg:x="238789" fg:w="858"/><text x="10.2512%" y="367.50"></text></g><g><title>queued_read_lock_slowpath (735 samples, 0.03%)</title><rect x="10.0372%" y="357" width="0.0308%" height="15" fill="rgb(222,94,11)" fg:x="239647" fg:w="735"/><text x="10.2872%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (533 samples, 0.02%)</title><rect x="10.0456%" y="341" width="0.0223%" height="15" fill="rgb(249,113,6)" fg:x="239849" fg:w="533"/><text x="10.2956%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (2,489 samples, 0.10%)</title><rect x="9.9838%" y="373" width="0.1042%" height="15" fill="rgb(238,137,36)" fg:x="238373" fg:w="2489"/><text x="10.2338%" y="383.50"></text></g><g><title>schedule (480 samples, 0.02%)</title><rect x="10.0680%" y="357" width="0.0201%" height="15" fill="rgb(210,102,26)" fg:x="240382" fg:w="480"/><text x="10.3180%" y="367.50"></text></g><g><title>__schedule (471 samples, 0.02%)</title><rect x="10.0683%" y="341" width="0.0197%" height="15" fill="rgb(218,30,30)" fg:x="240391" fg:w="471"/><text x="10.3183%" y="351.50"></text></g><g><title>__btrfs_read_lock_root_node (2,583 samples, 0.11%)</title><rect x="9.9833%" y="389" width="0.1082%" height="15" fill="rgb(214,67,26)" fg:x="238362" fg:w="2583"/><text x="10.2333%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (711 samples, 0.03%)</title><rect x="10.1185%" y="341" width="0.0298%" height="15" fill="rgb(251,9,53)" fg:x="241590" fg:w="711"/><text x="10.3685%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (661 samples, 0.03%)</title><rect x="10.1206%" y="325" width="0.0277%" height="15" fill="rgb(228,204,25)" fg:x="241640" fg:w="661"/><text x="10.3706%" y="335.50"></text></g><g><title>prepare_to_wait_event (826 samples, 0.03%)</title><rect x="10.1147%" y="357" width="0.0346%" height="15" fill="rgb(207,153,8)" fg:x="241497" fg:w="826"/><text x="10.3647%" y="367.50"></text></g><g><title>queued_write_lock_slowpath (1,212 samples, 0.05%)</title><rect x="10.1492%" y="357" width="0.0508%" height="15" fill="rgb(242,9,16)" fg:x="242323" fg:w="1212"/><text x="10.3992%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (617 samples, 0.03%)</title><rect x="10.1742%" y="341" width="0.0258%" height="15" fill="rgb(217,211,10)" fg:x="242918" fg:w="617"/><text x="10.4242%" y="351.50"></text></g><g><title>__btrfs_tree_lock (3,053 samples, 0.13%)</title><rect x="10.0993%" y="373" width="0.1279%" height="15" fill="rgb(219,228,52)" fg:x="241130" fg:w="3053"/><text x="10.3493%" y="383.50"></text></g><g><title>schedule (648 samples, 0.03%)</title><rect x="10.2000%" y="357" width="0.0271%" height="15" fill="rgb(231,92,29)" fg:x="243535" fg:w="648"/><text x="10.4500%" y="367.50"></text></g><g><title>__schedule (636 samples, 0.03%)</title><rect x="10.2005%" y="341" width="0.0266%" height="15" fill="rgb(232,8,23)" fg:x="243547" fg:w="636"/><text x="10.4505%" y="351.50"></text></g><g><title>btrfs_lock_root_node (3,080 samples, 0.13%)</title><rect x="10.0992%" y="389" width="0.1290%" height="15" fill="rgb(216,211,34)" fg:x="241129" fg:w="3080"/><text x="10.3492%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (284 samples, 0.01%)</title><rect x="10.2411%" y="389" width="0.0119%" height="15" fill="rgb(236,151,0)" fg:x="244515" fg:w="284"/><text x="10.4911%" y="399.50"></text></g><g><title>find_extent_buffer (312 samples, 0.01%)</title><rect x="10.2586%" y="373" width="0.0131%" height="15" fill="rgb(209,168,3)" fg:x="244935" fg:w="312"/><text x="10.5086%" y="383.50"></text></g><g><title>read_block_for_search.isra.0 (484 samples, 0.02%)</title><rect x="10.2529%" y="389" width="0.0203%" height="15" fill="rgb(208,129,28)" fg:x="244799" fg:w="484"/><text x="10.5029%" y="399.50"></text></g><g><title>ttwu_do_activate (481 samples, 0.02%)</title><rect x="10.3091%" y="309" width="0.0201%" height="15" fill="rgb(229,78,22)" fg:x="246140" fg:w="481"/><text x="10.5591%" y="319.50"></text></g><g><title>__wake_up_common (1,245 samples, 0.05%)</title><rect x="10.2823%" y="357" width="0.0521%" height="15" fill="rgb(228,187,13)" fg:x="245500" fg:w="1245"/><text x="10.5323%" y="367.50"></text></g><g><title>autoremove_wake_function (1,217 samples, 0.05%)</title><rect x="10.2835%" y="341" width="0.0510%" height="15" fill="rgb(240,119,24)" fg:x="245528" fg:w="1217"/><text x="10.5335%" y="351.50"></text></g><g><title>try_to_wake_up (1,188 samples, 0.05%)</title><rect x="10.2847%" y="325" width="0.0498%" height="15" fill="rgb(209,194,42)" fg:x="245557" fg:w="1188"/><text x="10.5347%" y="335.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.01%)</title><rect x="10.3345%" y="357" width="0.0108%" height="15" fill="rgb(247,200,46)" fg:x="246745" fg:w="258"/><text x="10.5845%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (241 samples, 0.01%)</title><rect x="10.3352%" y="341" width="0.0101%" height="15" fill="rgb(218,76,16)" fg:x="246762" fg:w="241"/><text x="10.5852%" y="351.50"></text></g><g><title>__wake_up_common_lock (1,526 samples, 0.06%)</title><rect x="10.2820%" y="373" width="0.0639%" height="15" fill="rgb(225,21,48)" fg:x="245492" fg:w="1526"/><text x="10.5320%" y="383.50"></text></g><g><title>btrfs_lookup_inode (8,888 samples, 0.37%)</title><rect x="9.9751%" y="421" width="0.3723%" height="15" fill="rgb(239,223,50)" fg:x="238166" fg:w="8888"/><text x="10.2251%" y="431.50"></text></g><g><title>btrfs_search_slot (8,862 samples, 0.37%)</title><rect x="9.9762%" y="405" width="0.3712%" height="15" fill="rgb(244,45,21)" fg:x="238192" fg:w="8862"/><text x="10.2262%" y="415.50"></text></g><g><title>unlock_up (1,621 samples, 0.07%)</title><rect x="10.2795%" y="389" width="0.0679%" height="15" fill="rgb(232,33,43)" fg:x="245433" fg:w="1621"/><text x="10.5295%" y="399.50"></text></g><g><title>btrfs_release_path (316 samples, 0.01%)</title><rect x="10.3499%" y="421" width="0.0132%" height="15" fill="rgb(209,8,3)" fg:x="247114" fg:w="316"/><text x="10.5999%" y="431.50"></text></g><g><title>__btrfs_update_delayed_inode (11,444 samples, 0.48%)</title><rect x="9.8915%" y="437" width="0.4793%" height="15" fill="rgb(214,25,53)" fg:x="236169" fg:w="11444"/><text x="10.1415%" y="447.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (12,344 samples, 0.52%)</title><rect x="9.8764%" y="453" width="0.5170%" height="15" fill="rgb(254,186,54)" fg:x="235809" fg:w="12344"/><text x="10.1264%" y="463.50"></text></g><g><title>btrfs_del_items (249 samples, 0.01%)</title><rect x="10.3941%" y="437" width="0.0104%" height="15" fill="rgb(208,174,49)" fg:x="248169" fg:w="249"/><text x="10.6441%" y="447.50"></text></g><g><title>__wake_up_common (511 samples, 0.02%)</title><rect x="10.4051%" y="389" width="0.0214%" height="15" fill="rgb(233,191,51)" fg:x="248432" fg:w="511"/><text x="10.6551%" y="399.50"></text></g><g><title>autoremove_wake_function (497 samples, 0.02%)</title><rect x="10.4057%" y="373" width="0.0208%" height="15" fill="rgb(222,134,10)" fg:x="248446" fg:w="497"/><text x="10.6557%" y="383.50"></text></g><g><title>try_to_wake_up (491 samples, 0.02%)</title><rect x="10.4059%" y="357" width="0.0206%" height="15" fill="rgb(230,226,20)" fg:x="248452" fg:w="491"/><text x="10.6559%" y="367.50"></text></g><g><title>__wake_up_common_lock (522 samples, 0.02%)</title><rect x="10.4051%" y="405" width="0.0219%" height="15" fill="rgb(251,111,25)" fg:x="248431" fg:w="522"/><text x="10.6551%" y="415.50"></text></g><g><title>btrfs_free_path (679 samples, 0.03%)</title><rect x="10.4045%" y="437" width="0.0284%" height="15" fill="rgb(224,40,46)" fg:x="248418" fg:w="679"/><text x="10.6545%" y="447.50"></text></g><g><title>btrfs_release_path (677 samples, 0.03%)</title><rect x="10.4046%" y="421" width="0.0284%" height="15" fill="rgb(236,108,47)" fg:x="248420" fg:w="677"/><text x="10.6546%" y="431.50"></text></g><g><title>finish_wait (397 samples, 0.02%)</title><rect x="10.4461%" y="389" width="0.0166%" height="15" fill="rgb(234,93,0)" fg:x="249411" fg:w="397"/><text x="10.6961%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (383 samples, 0.02%)</title><rect x="10.4467%" y="373" width="0.0160%" height="15" fill="rgb(224,213,32)" fg:x="249425" fg:w="383"/><text x="10.6967%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (369 samples, 0.02%)</title><rect x="10.4473%" y="357" width="0.0155%" height="15" fill="rgb(251,11,48)" fg:x="249439" fg:w="369"/><text x="10.6973%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (1,063 samples, 0.04%)</title><rect x="10.4663%" y="373" width="0.0445%" height="15" fill="rgb(236,173,5)" fg:x="249892" fg:w="1063"/><text x="10.7163%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,025 samples, 0.04%)</title><rect x="10.4679%" y="357" width="0.0429%" height="15" fill="rgb(230,95,12)" fg:x="249930" fg:w="1025"/><text x="10.7179%" y="367.50"></text></g><g><title>prepare_to_wait_event (1,162 samples, 0.05%)</title><rect x="10.4628%" y="389" width="0.0487%" height="15" fill="rgb(232,209,1)" fg:x="249810" fg:w="1162"/><text x="10.7128%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (740 samples, 0.03%)</title><rect x="10.5115%" y="389" width="0.0310%" height="15" fill="rgb(232,6,1)" fg:x="250972" fg:w="740"/><text x="10.7615%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (526 samples, 0.02%)</title><rect x="10.5205%" y="373" width="0.0220%" height="15" fill="rgb(210,224,50)" fg:x="251186" fg:w="526"/><text x="10.7705%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (2,993 samples, 0.13%)</title><rect x="10.4405%" y="405" width="0.1254%" height="15" fill="rgb(228,127,35)" fg:x="249278" fg:w="2993"/><text x="10.6905%" y="415.50"></text></g><g><title>schedule (559 samples, 0.02%)</title><rect x="10.5425%" y="389" width="0.0234%" height="15" fill="rgb(245,102,45)" fg:x="251712" fg:w="559"/><text x="10.7925%" y="399.50"></text></g><g><title>__schedule (552 samples, 0.02%)</title><rect x="10.5428%" y="373" width="0.0231%" height="15" fill="rgb(214,1,49)" fg:x="251719" fg:w="552"/><text x="10.7928%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (3,057 samples, 0.13%)</title><rect x="10.4400%" y="421" width="0.1280%" height="15" fill="rgb(226,163,40)" fg:x="249264" fg:w="3057"/><text x="10.6900%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (325 samples, 0.01%)</title><rect x="10.5847%" y="373" width="0.0136%" height="15" fill="rgb(239,212,28)" fg:x="252720" fg:w="325"/><text x="10.8347%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (301 samples, 0.01%)</title><rect x="10.5857%" y="357" width="0.0126%" height="15" fill="rgb(220,20,13)" fg:x="252744" fg:w="301"/><text x="10.8357%" y="367.50"></text></g><g><title>finish_wait (344 samples, 0.01%)</title><rect x="10.5840%" y="389" width="0.0144%" height="15" fill="rgb(210,164,35)" fg:x="252702" fg:w="344"/><text x="10.8340%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (772 samples, 0.03%)</title><rect x="10.6020%" y="373" width="0.0323%" height="15" fill="rgb(248,109,41)" fg:x="253134" fg:w="772"/><text x="10.8520%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (710 samples, 0.03%)</title><rect x="10.6046%" y="357" width="0.0297%" height="15" fill="rgb(238,23,50)" fg:x="253196" fg:w="710"/><text x="10.8546%" y="367.50"></text></g><g><title>prepare_to_wait_event (874 samples, 0.04%)</title><rect x="10.5985%" y="389" width="0.0366%" height="15" fill="rgb(211,48,49)" fg:x="253049" fg:w="874"/><text x="10.8485%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,308 samples, 0.05%)</title><rect x="10.6351%" y="389" width="0.0548%" height="15" fill="rgb(223,36,21)" fg:x="253923" fg:w="1308"/><text x="10.8851%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (691 samples, 0.03%)</title><rect x="10.6609%" y="373" width="0.0289%" height="15" fill="rgb(207,123,46)" fg:x="254540" fg:w="691"/><text x="10.9109%" y="383.50"></text></g><g><title>__btrfs_tree_lock (3,370 samples, 0.14%)</title><rect x="10.5781%" y="405" width="0.1411%" height="15" fill="rgb(240,218,32)" fg:x="252563" fg:w="3370"/><text x="10.8281%" y="415.50"></text></g><g><title>schedule (702 samples, 0.03%)</title><rect x="10.6899%" y="389" width="0.0294%" height="15" fill="rgb(252,5,43)" fg:x="255231" fg:w="702"/><text x="10.9399%" y="399.50"></text></g><g><title>__schedule (692 samples, 0.03%)</title><rect x="10.6903%" y="373" width="0.0290%" height="15" fill="rgb(252,84,19)" fg:x="255241" fg:w="692"/><text x="10.9403%" y="383.50"></text></g><g><title>btrfs_lock_root_node (3,405 samples, 0.14%)</title><rect x="10.5780%" y="421" width="0.1426%" height="15" fill="rgb(243,152,39)" fg:x="252560" fg:w="3405"/><text x="10.8280%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (247 samples, 0.01%)</title><rect x="10.7349%" y="421" width="0.0103%" height="15" fill="rgb(234,160,15)" fg:x="256306" fg:w="247"/><text x="10.9849%" y="431.50"></text></g><g><title>find_extent_buffer (348 samples, 0.01%)</title><rect x="10.7518%" y="405" width="0.0146%" height="15" fill="rgb(237,34,20)" fg:x="256710" fg:w="348"/><text x="11.0018%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (557 samples, 0.02%)</title><rect x="10.7452%" y="421" width="0.0233%" height="15" fill="rgb(229,97,13)" fg:x="256553" fg:w="557"/><text x="10.9952%" y="431.50"></text></g><g><title>ttwu_do_activate (354 samples, 0.01%)</title><rect x="10.7843%" y="341" width="0.0148%" height="15" fill="rgb(234,71,50)" fg:x="257485" fg:w="354"/><text x="11.0343%" y="351.50"></text></g><g><title>__wake_up_common (754 samples, 0.03%)</title><rect x="10.7705%" y="389" width="0.0316%" height="15" fill="rgb(253,155,4)" fg:x="257157" fg:w="754"/><text x="11.0205%" y="399.50"></text></g><g><title>autoremove_wake_function (740 samples, 0.03%)</title><rect x="10.7711%" y="373" width="0.0310%" height="15" fill="rgb(222,185,37)" fg:x="257171" fg:w="740"/><text x="11.0211%" y="383.50"></text></g><g><title>try_to_wake_up (708 samples, 0.03%)</title><rect x="10.7725%" y="357" width="0.0297%" height="15" fill="rgb(251,177,13)" fg:x="257203" fg:w="708"/><text x="11.0225%" y="367.50"></text></g><g><title>__wake_up_common_lock (787 samples, 0.03%)</title><rect x="10.7705%" y="405" width="0.0330%" height="15" fill="rgb(250,179,40)" fg:x="257155" fg:w="787"/><text x="11.0205%" y="415.50"></text></g><g><title>btrfs_search_slot (8,871 samples, 0.37%)</title><rect x="10.4330%" y="437" width="0.3715%" height="15" fill="rgb(242,44,2)" fg:x="249097" fg:w="8871"/><text x="10.6830%" y="447.50"></text></g><g><title>unlock_up (853 samples, 0.04%)</title><rect x="10.7688%" y="421" width="0.0357%" height="15" fill="rgb(216,177,13)" fg:x="257115" fg:w="853"/><text x="11.0188%" y="431.50"></text></g><g><title>btrfs_del_orphan_item (9,902 samples, 0.41%)</title><rect x="10.3934%" y="453" width="0.4147%" height="15" fill="rgb(216,106,43)" fg:x="248153" fg:w="9902"/><text x="10.6434%" y="463.50"></text></g><g><title>__clear_extent_bit (399 samples, 0.02%)</title><rect x="10.8261%" y="437" width="0.0167%" height="15" fill="rgb(216,183,2)" fg:x="258483" fg:w="399"/><text x="11.0761%" y="447.50"></text></g><g><title>btrfs_get_token_32 (622 samples, 0.03%)</title><rect x="10.8612%" y="421" width="0.0261%" height="15" fill="rgb(249,75,3)" fg:x="259322" fg:w="622"/><text x="11.1112%" y="431.50"></text></g><g><title>btrfs_set_token_32 (496 samples, 0.02%)</title><rect x="10.8892%" y="421" width="0.0208%" height="15" fill="rgb(219,67,39)" fg:x="259989" fg:w="496"/><text x="11.1392%" y="431.50"></text></g><g><title>memmove_extent_buffer (386 samples, 0.02%)</title><rect x="10.9154%" y="421" width="0.0162%" height="15" fill="rgb(253,228,2)" fg:x="260615" fg:w="386"/><text x="11.1654%" y="431.50"></text></g><g><title>memmove (302 samples, 0.01%)</title><rect x="10.9189%" y="405" width="0.0126%" height="15" fill="rgb(235,138,27)" fg:x="260699" fg:w="302"/><text x="11.1689%" y="415.50"></text></g><g><title>btrfs_del_items (2,311 samples, 0.10%)</title><rect x="10.8428%" y="437" width="0.0968%" height="15" fill="rgb(236,97,51)" fg:x="258883" fg:w="2311"/><text x="11.0928%" y="447.50"></text></g><g><title>btrfs_drop_extent_cache (360 samples, 0.02%)</title><rect x="10.9396%" y="437" width="0.0151%" height="15" fill="rgb(240,80,30)" fg:x="261194" fg:w="360"/><text x="11.1896%" y="447.50"></text></g><g><title>__wake_up_common (350 samples, 0.01%)</title><rect x="10.9556%" y="389" width="0.0147%" height="15" fill="rgb(230,178,19)" fg:x="261575" fg:w="350"/><text x="11.2056%" y="399.50"></text></g><g><title>autoremove_wake_function (338 samples, 0.01%)</title><rect x="10.9561%" y="373" width="0.0142%" height="15" fill="rgb(210,190,27)" fg:x="261587" fg:w="338"/><text x="11.2061%" y="383.50"></text></g><g><title>try_to_wake_up (331 samples, 0.01%)</title><rect x="10.9564%" y="357" width="0.0139%" height="15" fill="rgb(222,107,31)" fg:x="261594" fg:w="331"/><text x="11.2064%" y="367.50"></text></g><g><title>__wake_up_common_lock (374 samples, 0.02%)</title><rect x="10.9556%" y="405" width="0.0157%" height="15" fill="rgb(216,127,34)" fg:x="261575" fg:w="374"/><text x="11.2056%" y="415.50"></text></g><g><title>btrfs_free_path (545 samples, 0.02%)</title><rect x="10.9547%" y="437" width="0.0228%" height="15" fill="rgb(234,116,52)" fg:x="261554" fg:w="545"/><text x="11.2047%" y="447.50"></text></g><g><title>btrfs_release_path (543 samples, 0.02%)</title><rect x="10.9548%" y="421" width="0.0227%" height="15" fill="rgb(222,124,15)" fg:x="261556" fg:w="543"/><text x="11.2048%" y="431.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (253 samples, 0.01%)</title><rect x="10.9921%" y="405" width="0.0106%" height="15" fill="rgb(231,179,28)" fg:x="262446" fg:w="253"/><text x="11.2421%" y="415.50"></text></g><g><title>__btrfs_kill_delayed_node (669 samples, 0.03%)</title><rect x="10.9813%" y="421" width="0.0280%" height="15" fill="rgb(226,93,45)" fg:x="262190" fg:w="669"/><text x="11.2313%" y="431.50"></text></g><g><title>btrfs_kill_delayed_inode_items (724 samples, 0.03%)</title><rect x="10.9810%" y="437" width="0.0303%" height="15" fill="rgb(215,8,51)" fg:x="262181" fg:w="724"/><text x="11.2310%" y="447.50"></text></g><g><title>finish_wait (342 samples, 0.01%)</title><rect x="11.0254%" y="389" width="0.0143%" height="15" fill="rgb(223,106,5)" fg:x="263242" fg:w="342"/><text x="11.2754%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (330 samples, 0.01%)</title><rect x="11.0259%" y="373" width="0.0138%" height="15" fill="rgb(250,191,5)" fg:x="263254" fg:w="330"/><text x="11.2759%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (310 samples, 0.01%)</title><rect x="11.0267%" y="357" width="0.0130%" height="15" fill="rgb(242,132,44)" fg:x="263274" fg:w="310"/><text x="11.2767%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (890 samples, 0.04%)</title><rect x="11.0434%" y="373" width="0.0373%" height="15" fill="rgb(251,152,29)" fg:x="263671" fg:w="890"/><text x="11.2934%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (858 samples, 0.04%)</title><rect x="11.0447%" y="357" width="0.0359%" height="15" fill="rgb(218,179,5)" fg:x="263703" fg:w="858"/><text x="11.2947%" y="367.50"></text></g><g><title>prepare_to_wait_event (987 samples, 0.04%)</title><rect x="11.0398%" y="389" width="0.0413%" height="15" fill="rgb(227,67,19)" fg:x="263585" fg:w="987"/><text x="11.2898%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (883 samples, 0.04%)</title><rect x="11.0811%" y="389" width="0.0370%" height="15" fill="rgb(233,119,31)" fg:x="264572" fg:w="883"/><text x="11.3311%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (675 samples, 0.03%)</title><rect x="11.0898%" y="373" width="0.0283%" height="15" fill="rgb(241,120,22)" fg:x="264780" fg:w="675"/><text x="11.3398%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (2,824 samples, 0.12%)</title><rect x="11.0198%" y="405" width="0.1183%" height="15" fill="rgb(224,102,30)" fg:x="263108" fg:w="2824"/><text x="11.2698%" y="415.50"></text></g><g><title>schedule (477 samples, 0.02%)</title><rect x="11.1181%" y="389" width="0.0200%" height="15" fill="rgb(210,164,37)" fg:x="265455" fg:w="477"/><text x="11.3681%" y="399.50"></text></g><g><title>__schedule (467 samples, 0.02%)</title><rect x="11.1185%" y="373" width="0.0196%" height="15" fill="rgb(226,191,16)" fg:x="265465" fg:w="467"/><text x="11.3685%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (2,903 samples, 0.12%)</title><rect x="11.0193%" y="421" width="0.1216%" height="15" fill="rgb(214,40,45)" fg:x="263097" fg:w="2903"/><text x="11.2693%" y="431.50"></text></g><g><title>finish_wait (311 samples, 0.01%)</title><rect x="11.1559%" y="389" width="0.0130%" height="15" fill="rgb(244,29,26)" fg:x="266359" fg:w="311"/><text x="11.4059%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (288 samples, 0.01%)</title><rect x="11.1569%" y="373" width="0.0121%" height="15" fill="rgb(216,16,5)" fg:x="266382" fg:w="288"/><text x="11.4069%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (273 samples, 0.01%)</title><rect x="11.1575%" y="357" width="0.0114%" height="15" fill="rgb(249,76,35)" fg:x="266397" fg:w="273"/><text x="11.4075%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (738 samples, 0.03%)</title><rect x="11.1735%" y="373" width="0.0309%" height="15" fill="rgb(207,11,44)" fg:x="266777" fg:w="738"/><text x="11.4235%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (699 samples, 0.03%)</title><rect x="11.1751%" y="357" width="0.0293%" height="15" fill="rgb(228,190,49)" fg:x="266816" fg:w="699"/><text x="11.4251%" y="367.50"></text></g><g><title>prepare_to_wait_event (850 samples, 0.04%)</title><rect x="11.1693%" y="389" width="0.0356%" height="15" fill="rgb(214,173,12)" fg:x="266677" fg:w="850"/><text x="11.4193%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,285 samples, 0.05%)</title><rect x="11.2049%" y="389" width="0.0538%" height="15" fill="rgb(218,26,35)" fg:x="267527" fg:w="1285"/><text x="11.4549%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (680 samples, 0.03%)</title><rect x="11.2302%" y="373" width="0.0285%" height="15" fill="rgb(220,200,19)" fg:x="268132" fg:w="680"/><text x="11.4802%" y="383.50"></text></g><g><title>__btrfs_tree_lock (3,224 samples, 0.14%)</title><rect x="11.1498%" y="405" width="0.1350%" height="15" fill="rgb(239,95,49)" fg:x="266211" fg:w="3224"/><text x="11.3998%" y="415.50"></text></g><g><title>schedule (623 samples, 0.03%)</title><rect x="11.2587%" y="389" width="0.0261%" height="15" fill="rgb(235,85,53)" fg:x="268812" fg:w="623"/><text x="11.5087%" y="399.50"></text></g><g><title>__schedule (608 samples, 0.03%)</title><rect x="11.2593%" y="373" width="0.0255%" height="15" fill="rgb(233,133,31)" fg:x="268827" fg:w="608"/><text x="11.5093%" y="383.50"></text></g><g><title>btrfs_lock_root_node (3,257 samples, 0.14%)</title><rect x="11.1496%" y="421" width="0.1364%" height="15" fill="rgb(218,25,20)" fg:x="266208" fg:w="3257"/><text x="11.3996%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (293 samples, 0.01%)</title><rect x="11.3019%" y="421" width="0.0123%" height="15" fill="rgb(252,210,38)" fg:x="269843" fg:w="293"/><text x="11.5519%" y="431.50"></text></g><g><title>find_extent_buffer (289 samples, 0.01%)</title><rect x="11.3208%" y="405" width="0.0121%" height="15" fill="rgb(242,134,21)" fg:x="270295" fg:w="289"/><text x="11.5708%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (494 samples, 0.02%)</title><rect x="11.3141%" y="421" width="0.0207%" height="15" fill="rgb(213,28,48)" fg:x="270136" fg:w="494"/><text x="11.5641%" y="431.50"></text></g><g><title>ttwu_do_activate (473 samples, 0.02%)</title><rect x="11.3732%" y="341" width="0.0198%" height="15" fill="rgb(250,196,2)" fg:x="271546" fg:w="473"/><text x="11.6232%" y="351.50"></text></g><g><title>__wake_up_common (1,282 samples, 0.05%)</title><rect x="11.3442%" y="389" width="0.0537%" height="15" fill="rgb(227,5,17)" fg:x="270854" fg:w="1282"/><text x="11.5942%" y="399.50"></text></g><g><title>autoremove_wake_function (1,245 samples, 0.05%)</title><rect x="11.3458%" y="373" width="0.0521%" height="15" fill="rgb(221,226,24)" fg:x="270891" fg:w="1245"/><text x="11.5958%" y="383.50"></text></g><g><title>try_to_wake_up (1,217 samples, 0.05%)</title><rect x="11.3469%" y="357" width="0.0510%" height="15" fill="rgb(211,5,48)" fg:x="270919" fg:w="1217"/><text x="11.5969%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (269 samples, 0.01%)</title><rect x="11.3979%" y="389" width="0.0113%" height="15" fill="rgb(219,150,6)" fg:x="272136" fg:w="269"/><text x="11.6479%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (247 samples, 0.01%)</title><rect x="11.3988%" y="373" width="0.0103%" height="15" fill="rgb(251,46,16)" fg:x="272158" fg:w="247"/><text x="11.6488%" y="383.50"></text></g><g><title>__wake_up_common_lock (1,566 samples, 0.07%)</title><rect x="11.3440%" y="405" width="0.0656%" height="15" fill="rgb(220,204,40)" fg:x="270850" fg:w="1566"/><text x="11.5940%" y="415.50"></text></g><g><title>btrfs_search_slot (9,519 samples, 0.40%)</title><rect x="11.0126%" y="437" width="0.3987%" height="15" fill="rgb(211,85,2)" fg:x="262936" fg:w="9519"/><text x="11.2626%" y="447.50"></text></g><g><title>unlock_up (1,659 samples, 0.07%)</title><rect x="11.3418%" y="421" width="0.0695%" height="15" fill="rgb(229,17,7)" fg:x="270796" fg:w="1659"/><text x="11.5918%" y="431.50"></text></g><g><title>lock_extent_bits (317 samples, 0.01%)</title><rect x="11.4151%" y="437" width="0.0133%" height="15" fill="rgb(239,72,28)" fg:x="272546" fg:w="317"/><text x="11.6651%" y="447.50"></text></g><g><title>__set_extent_bit (302 samples, 0.01%)</title><rect x="11.4157%" y="421" width="0.0126%" height="15" fill="rgb(230,47,54)" fg:x="272561" fg:w="302"/><text x="11.6657%" y="431.50"></text></g><g><title>btrfs_truncate_inode_items (14,767 samples, 0.62%)</title><rect x="10.8132%" y="453" width="0.6185%" height="15" fill="rgb(214,50,8)" fg:x="258175" fg:w="14767"/><text x="11.0632%" y="463.50"></text></g><g><title>btrfs_block_rsv_refill (645 samples, 0.03%)</title><rect x="11.4363%" y="437" width="0.0270%" height="15" fill="rgb(216,198,43)" fg:x="273053" fg:w="645"/><text x="11.6863%" y="447.50"></text></g><g><title>btrfs_reserve_metadata_bytes (550 samples, 0.02%)</title><rect x="11.4403%" y="421" width="0.0230%" height="15" fill="rgb(234,20,35)" fg:x="273148" fg:w="550"/><text x="11.6903%" y="431.50"></text></g><g><title>__reserve_bytes (528 samples, 0.02%)</title><rect x="11.4412%" y="405" width="0.0221%" height="15" fill="rgb(254,45,19)" fg:x="273170" fg:w="528"/><text x="11.6912%" y="415.50"></text></g><g><title>evict_refill_and_join (1,115 samples, 0.05%)</title><rect x="11.4317%" y="453" width="0.0467%" height="15" fill="rgb(219,14,44)" fg:x="272942" fg:w="1115"/><text x="11.6817%" y="463.50"></text></g><g><title>start_transaction (338 samples, 0.01%)</title><rect x="11.4642%" y="437" width="0.0142%" height="15" fill="rgb(217,220,26)" fg:x="273719" fg:w="338"/><text x="11.7142%" y="447.50"></text></g><g><title>btrfs_evict_inode (39,827 samples, 1.67%)</title><rect x="9.8213%" y="469" width="1.6681%" height="15" fill="rgb(213,158,28)" fg:x="234494" fg:w="39827"/><text x="10.0713%" y="479.50"></text></g><g><title>evict (40,073 samples, 1.68%)</title><rect x="9.8138%" y="485" width="1.6784%" height="15" fill="rgb(252,51,52)" fg:x="234315" fg:w="40073"/><text x="10.0638%" y="495.50"></text></g><g><title>_raw_spin_lock (297 samples, 0.01%)</title><rect x="11.5224%" y="453" width="0.0124%" height="15" fill="rgb(246,89,16)" fg:x="275108" fg:w="297"/><text x="11.7724%" y="463.50"></text></g><g><title>__list_del_entry_valid (570 samples, 0.02%)</title><rect x="11.5522%" y="405" width="0.0239%" height="15" fill="rgb(216,158,49)" fg:x="275820" fg:w="570"/><text x="11.8022%" y="415.50"></text></g><g><title>_raw_spin_lock (269 samples, 0.01%)</title><rect x="11.5761%" y="405" width="0.0113%" height="15" fill="rgb(236,107,19)" fg:x="276390" fg:w="269"/><text x="11.8261%" y="415.50"></text></g><g><title>d_lru_del (1,634 samples, 0.07%)</title><rect x="11.5384%" y="437" width="0.0684%" height="15" fill="rgb(228,185,30)" fg:x="275490" fg:w="1634"/><text x="11.7884%" y="447.50"></text></g><g><title>list_lru_del (1,586 samples, 0.07%)</title><rect x="11.5404%" y="421" width="0.0664%" height="15" fill="rgb(246,134,8)" fg:x="275538" fg:w="1586"/><text x="11.7904%" y="431.50"></text></g><g><title>mem_cgroup_from_obj (463 samples, 0.02%)</title><rect x="11.5874%" y="405" width="0.0194%" height="15" fill="rgb(214,143,50)" fg:x="276661" fg:w="463"/><text x="11.8374%" y="415.50"></text></g><g><title>d_walk (2,576 samples, 0.11%)</title><rect x="11.5012%" y="469" width="0.1079%" height="15" fill="rgb(228,75,8)" fg:x="274602" fg:w="2576"/><text x="11.7512%" y="479.50"></text></g><g><title>select_collect (1,770 samples, 0.07%)</title><rect x="11.5349%" y="453" width="0.0741%" height="15" fill="rgb(207,175,4)" fg:x="275408" fg:w="1770"/><text x="11.7849%" y="463.50"></text></g><g><title>___d_drop (1,137 samples, 0.05%)</title><rect x="11.6176%" y="437" width="0.0476%" height="15" fill="rgb(205,108,24)" fg:x="277381" fg:w="1137"/><text x="11.8676%" y="447.50"></text></g><g><title>call_rcu (706 samples, 0.03%)</title><rect x="11.6725%" y="437" width="0.0296%" height="15" fill="rgb(244,120,49)" fg:x="278692" fg:w="706"/><text x="11.9225%" y="447.50"></text></g><g><title>rcu_segcblist_enqueue (376 samples, 0.02%)</title><rect x="11.6863%" y="421" width="0.0157%" height="15" fill="rgb(223,47,38)" fg:x="279022" fg:w="376"/><text x="11.9363%" y="431.50"></text></g><g><title>__dentry_kill (2,193 samples, 0.09%)</title><rect x="11.6116%" y="453" width="0.0918%" height="15" fill="rgb(229,179,11)" fg:x="277237" fg:w="2193"/><text x="11.8616%" y="463.50"></text></g><g><title>shrink_dcache_parent (5,714 samples, 0.24%)</title><rect x="11.4995%" y="485" width="0.2393%" height="15" fill="rgb(231,122,1)" fg:x="274562" fg:w="5714"/><text x="11.7495%" y="495.50"></text></g><g><title>shrink_dentry_list (3,098 samples, 0.13%)</title><rect x="11.6091%" y="469" width="0.1298%" height="15" fill="rgb(245,119,9)" fg:x="277178" fg:w="3098"/><text x="11.8591%" y="479.50"></text></g><g><title>do_rmdir (72,128 samples, 3.02%)</title><rect x="8.7187%" y="517" width="3.0209%" height="15" fill="rgb(241,163,25)" fg:x="208167" fg:w="72128"/><text x="8.9687%" y="527.50">do_..</text></g><g><title>vfs_rmdir.part.0 (70,592 samples, 2.96%)</title><rect x="8.7830%" y="501" width="2.9566%" height="15" fill="rgb(217,214,3)" fg:x="209703" fg:w="70592"/><text x="9.0330%" y="511.50">vfs..</text></g><g><title>_raw_spin_lock (377 samples, 0.02%)</title><rect x="11.9476%" y="437" width="0.0158%" height="15" fill="rgb(240,86,28)" fg:x="285260" fg:w="377"/><text x="12.1976%" y="447.50"></text></g><g><title>__d_lookup (3,584 samples, 0.15%)</title><rect x="11.8145%" y="453" width="0.1501%" height="15" fill="rgb(215,47,9)" fg:x="282082" fg:w="3584"/><text x="12.0645%" y="463.50"></text></g><g><title>__lookup_hash (4,148 samples, 0.17%)</title><rect x="11.7909%" y="501" width="0.1737%" height="15" fill="rgb(252,25,45)" fg:x="281520" fg:w="4148"/><text x="12.0409%" y="511.50"></text></g><g><title>lookup_dcache (4,036 samples, 0.17%)</title><rect x="11.7956%" y="485" width="0.1690%" height="15" fill="rgb(251,164,9)" fg:x="281632" fg:w="4036"/><text x="12.0456%" y="495.50"></text></g><g><title>d_lookup (3,918 samples, 0.16%)</title><rect x="11.8006%" y="469" width="0.1641%" height="15" fill="rgb(233,194,0)" fg:x="281750" fg:w="3918"/><text x="12.0506%" y="479.50"></text></g><g><title>call_rcu (1,467 samples, 0.06%)</title><rect x="11.9649%" y="501" width="0.0614%" height="15" fill="rgb(249,111,24)" fg:x="285674" fg:w="1467"/><text x="12.2149%" y="511.50"></text></g><g><title>rcu_segcblist_enqueue (529 samples, 0.02%)</title><rect x="12.0042%" y="485" width="0.0222%" height="15" fill="rgb(250,223,3)" fg:x="286612" fg:w="529"/><text x="12.2542%" y="495.50"></text></g><g><title>__srcu_read_lock (904 samples, 0.04%)</title><rect x="12.1081%" y="437" width="0.0379%" height="15" fill="rgb(236,178,37)" fg:x="289092" fg:w="904"/><text x="12.3581%" y="447.50"></text></g><g><title>fsnotify_destroy_marks (1,761 samples, 0.07%)</title><rect x="12.0820%" y="469" width="0.0738%" height="15" fill="rgb(241,158,50)" fg:x="288470" fg:w="1761"/><text x="12.3320%" y="479.50"></text></g><g><title>fsnotify_grab_connector (1,380 samples, 0.06%)</title><rect x="12.0980%" y="453" width="0.0578%" height="15" fill="rgb(213,121,41)" fg:x="288851" fg:w="1380"/><text x="12.3480%" y="463.50"></text></g><g><title>__destroy_inode (3,892 samples, 0.16%)</title><rect x="12.0317%" y="485" width="0.1630%" height="15" fill="rgb(240,92,3)" fg:x="287269" fg:w="3892"/><text x="12.2817%" y="495.50"></text></g><g><title>security_inode_free (717 samples, 0.03%)</title><rect x="12.1647%" y="469" width="0.0300%" height="15" fill="rgb(205,123,3)" fg:x="290444" fg:w="717"/><text x="12.4147%" y="479.50"></text></g><g><title>_raw_spin_lock (378 samples, 0.02%)</title><rect x="12.2101%" y="469" width="0.0158%" height="15" fill="rgb(205,97,47)" fg:x="291528" fg:w="378"/><text x="12.4601%" y="479.50"></text></g><g><title>_raw_write_lock (240 samples, 0.01%)</title><rect x="12.2508%" y="453" width="0.0101%" height="15" fill="rgb(247,152,14)" fg:x="292499" fg:w="240"/><text x="12.5008%" y="463.50"></text></g><g><title>__slab_alloc (240 samples, 0.01%)</title><rect x="12.3159%" y="421" width="0.0101%" height="15" fill="rgb(248,195,53)" fg:x="294054" fg:w="240"/><text x="12.5659%" y="431.50"></text></g><g><title>memset_erms (498 samples, 0.02%)</title><rect x="12.3319%" y="421" width="0.0209%" height="15" fill="rgb(226,201,16)" fg:x="294436" fg:w="498"/><text x="12.5819%" y="431.50"></text></g><g><title>alloc_extent_map (2,705 samples, 0.11%)</title><rect x="12.2608%" y="453" width="0.1133%" height="15" fill="rgb(205,98,0)" fg:x="292739" fg:w="2705"/><text x="12.5108%" y="463.50"></text></g><g><title>kmem_cache_alloc (2,383 samples, 0.10%)</title><rect x="12.2743%" y="437" width="0.0998%" height="15" fill="rgb(214,191,48)" fg:x="293061" fg:w="2383"/><text x="12.5243%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (510 samples, 0.02%)</title><rect x="12.3528%" y="421" width="0.0214%" height="15" fill="rgb(237,112,39)" fg:x="294934" fg:w="510"/><text x="12.6028%" y="431.50"></text></g><g><title>free_extent_map (388 samples, 0.02%)</title><rect x="12.3743%" y="453" width="0.0163%" height="15" fill="rgb(247,203,27)" fg:x="295448" fg:w="388"/><text x="12.6243%" y="463.50"></text></g><g><title>kmem_cache_free (1,402 samples, 0.06%)</title><rect x="12.3905%" y="453" width="0.0587%" height="15" fill="rgb(235,124,28)" fg:x="295836" fg:w="1402"/><text x="12.6405%" y="463.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (242 samples, 0.01%)</title><rect x="12.4391%" y="437" width="0.0101%" height="15" fill="rgb(208,207,46)" fg:x="296996" fg:w="242"/><text x="12.6891%" y="447.50"></text></g><g><title>btrfs_drop_extent_cache (5,431 samples, 0.23%)</title><rect x="12.2261%" y="469" width="0.2275%" height="15" fill="rgb(234,176,4)" fg:x="291909" fg:w="5431"/><text x="12.4761%" y="479.50"></text></g><g><title>alloc_extent_state (961 samples, 0.04%)</title><rect x="12.4931%" y="421" width="0.0402%" height="15" fill="rgb(230,133,28)" fg:x="298284" fg:w="961"/><text x="12.7431%" y="431.50"></text></g><g><title>kmem_cache_alloc (842 samples, 0.04%)</title><rect x="12.4981%" y="405" width="0.0353%" height="15" fill="rgb(211,137,40)" fg:x="298403" fg:w="842"/><text x="12.7481%" y="415.50"></text></g><g><title>__clear_extent_bit (1,999 samples, 0.08%)</title><rect x="12.4779%" y="437" width="0.0837%" height="15" fill="rgb(254,35,13)" fg:x="297921" fg:w="1999"/><text x="12.7279%" y="447.50"></text></g><g><title>kmem_cache_free (490 samples, 0.02%)</title><rect x="12.5411%" y="421" width="0.0205%" height="15" fill="rgb(225,49,51)" fg:x="299430" fg:w="490"/><text x="12.7911%" y="431.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (2,581 samples, 0.11%)</title><rect x="12.4535%" y="469" width="0.1081%" height="15" fill="rgb(251,10,15)" fg:x="297340" fg:w="2581"/><text x="12.7035%" y="479.50"></text></g><g><title>clear_extent_bit (2,040 samples, 0.09%)</title><rect x="12.4762%" y="453" width="0.0854%" height="15" fill="rgb(228,207,15)" fg:x="297881" fg:w="2040"/><text x="12.7262%" y="463.50"></text></g><g><title>_raw_spin_lock_irq (287 samples, 0.01%)</title><rect x="12.5753%" y="453" width="0.0120%" height="15" fill="rgb(241,99,19)" fg:x="300248" fg:w="287"/><text x="12.8253%" y="463.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (619 samples, 0.03%)</title><rect x="12.5616%" y="469" width="0.0259%" height="15" fill="rgb(207,104,49)" fg:x="299921" fg:w="619"/><text x="12.8116%" y="479.50"></text></g><g><title>_raw_spin_lock (296 samples, 0.01%)</title><rect x="12.6360%" y="421" width="0.0124%" height="15" fill="rgb(234,99,18)" fg:x="301696" fg:w="296"/><text x="12.8860%" y="431.50"></text></g><g><title>alloc_extent_state (1,615 samples, 0.07%)</title><rect x="12.6484%" y="421" width="0.0676%" height="15" fill="rgb(213,191,49)" fg:x="301992" fg:w="1615"/><text x="12.8984%" y="431.50"></text></g><g><title>kmem_cache_alloc (1,266 samples, 0.05%)</title><rect x="12.6630%" y="405" width="0.0530%" height="15" fill="rgb(210,226,19)" fg:x="302341" fg:w="1266"/><text x="12.9130%" y="415.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (397 samples, 0.02%)</title><rect x="12.6994%" y="389" width="0.0166%" height="15" fill="rgb(229,97,18)" fg:x="303210" fg:w="397"/><text x="12.9494%" y="399.50"></text></g><g><title>clear_record_extent_bits (3,609 samples, 0.15%)</title><rect x="12.6025%" y="453" width="0.1512%" height="15" fill="rgb(211,167,15)" fg:x="300897" fg:w="3609"/><text x="12.8525%" y="463.50"></text></g><g><title>__clear_extent_bit (3,382 samples, 0.14%)</title><rect x="12.6120%" y="437" width="0.1416%" height="15" fill="rgb(210,169,34)" fg:x="301124" fg:w="3382"/><text x="12.8620%" y="447.50"></text></g><g><title>kmem_cache_free (669 samples, 0.03%)</title><rect x="12.7256%" y="421" width="0.0280%" height="15" fill="rgb(241,121,31)" fg:x="303837" fg:w="669"/><text x="12.9756%" y="431.50"></text></g><g><title>ulist_init (314 samples, 0.01%)</title><rect x="12.7537%" y="453" width="0.0132%" height="15" fill="rgb(232,40,11)" fg:x="304506" fg:w="314"/><text x="13.0037%" y="463.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (4,550 samples, 0.19%)</title><rect x="12.5876%" y="469" width="0.1906%" height="15" fill="rgb(205,86,26)" fg:x="300540" fg:w="4550"/><text x="12.8376%" y="479.50"></text></g><g><title>ulist_release (270 samples, 0.01%)</title><rect x="12.7668%" y="453" width="0.0113%" height="15" fill="rgb(231,126,28)" fg:x="304820" fg:w="270"/><text x="13.0168%" y="463.50"></text></g><g><title>btrfs_destroy_inode (17,851 samples, 0.75%)</title><rect x="12.1948%" y="485" width="0.7477%" height="15" fill="rgb(219,221,18)" fg:x="291162" fg:w="17851"/><text x="12.4448%" y="495.50"></text></g><g><title>rb_erase (3,923 samples, 0.16%)</title><rect x="12.7781%" y="469" width="0.1643%" height="15" fill="rgb(211,40,0)" fg:x="305090" fg:w="3923"/><text x="13.0281%" y="479.50"></text></g><g><title>destroy_inode (22,387 samples, 0.94%)</title><rect x="12.0264%" y="501" width="0.9376%" height="15" fill="rgb(239,85,43)" fg:x="287141" fg:w="22387"/><text x="12.2764%" y="511.50"></text></g><g><title>btrfs_put_root (515 samples, 0.02%)</title><rect x="12.9424%" y="485" width="0.0216%" height="15" fill="rgb(231,55,21)" fg:x="309013" fg:w="515"/><text x="13.1924%" y="495.50"></text></g><g><title>down_write (580 samples, 0.02%)</title><rect x="12.9640%" y="501" width="0.0243%" height="15" fill="rgb(225,184,43)" fg:x="309528" fg:w="580"/><text x="13.2140%" y="511.50"></text></g><g><title>_cond_resched (363 samples, 0.02%)</title><rect x="13.0213%" y="485" width="0.0152%" height="15" fill="rgb(251,158,41)" fg:x="310895" fg:w="363"/><text x="13.2713%" y="495.50"></text></g><g><title>btrfs_dentry_delete (865 samples, 0.04%)</title><rect x="13.0367%" y="485" width="0.0362%" height="15" fill="rgb(234,159,37)" fg:x="311264" fg:w="865"/><text x="13.2867%" y="495.50"></text></g><g><title>lockref_put_or_lock (901 samples, 0.04%)</title><rect x="13.0729%" y="485" width="0.0377%" height="15" fill="rgb(216,204,22)" fg:x="312129" fg:w="901"/><text x="13.3229%" y="495.50"></text></g><g><title>dput (2,975 samples, 0.12%)</title><rect x="12.9883%" y="501" width="0.1246%" height="15" fill="rgb(214,17,3)" fg:x="310108" fg:w="2975"/><text x="13.2383%" y="511.50"></text></g><g><title>__list_del_entry_valid (822 samples, 0.03%)</title><rect x="13.1423%" y="485" width="0.0344%" height="15" fill="rgb(212,111,17)" fg:x="313785" fg:w="822"/><text x="13.3923%" y="495.50"></text></g><g><title>_raw_spin_lock (850 samples, 0.04%)</title><rect x="13.1844%" y="469" width="0.0356%" height="15" fill="rgb(221,157,24)" fg:x="314791" fg:w="850"/><text x="13.4344%" y="479.50"></text></g><g><title>__remove_inode_hash (1,044 samples, 0.04%)</title><rect x="13.1767%" y="485" width="0.0437%" height="15" fill="rgb(252,16,13)" fg:x="314607" fg:w="1044"/><text x="13.4267%" y="495.50"></text></g><g><title>_raw_spin_lock (1,005 samples, 0.04%)</title><rect x="13.2205%" y="485" width="0.0421%" height="15" fill="rgb(221,62,2)" fg:x="315651" fg:w="1005"/><text x="13.4705%" y="495.50"></text></g><g><title>btrfs_create_pending_block_groups (241 samples, 0.01%)</title><rect x="13.4623%" y="453" width="0.0101%" height="15" fill="rgb(247,87,22)" fg:x="321425" fg:w="241"/><text x="13.7123%" y="463.50"></text></g><g><title>btrfs_put_transaction (518 samples, 0.02%)</title><rect x="13.4724%" y="453" width="0.0217%" height="15" fill="rgb(215,73,9)" fg:x="321666" fg:w="518"/><text x="13.7224%" y="463.50"></text></g><g><title>_raw_spin_lock (3,529 samples, 0.15%)</title><rect x="13.5823%" y="421" width="0.1478%" height="15" fill="rgb(207,175,33)" fg:x="324290" fg:w="3529"/><text x="13.8323%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,289 samples, 0.05%)</title><rect x="13.6761%" y="405" width="0.0540%" height="15" fill="rgb(243,129,54)" fg:x="326530" fg:w="1289"/><text x="13.9261%" y="415.50"></text></g><g><title>btrfs_trans_release_metadata (5,714 samples, 0.24%)</title><rect x="13.5021%" y="453" width="0.2393%" height="15" fill="rgb(227,119,45)" fg:x="322375" fg:w="5714"/><text x="13.7521%" y="463.50"></text></g><g><title>btrfs_block_rsv_release (5,385 samples, 0.23%)</title><rect x="13.5159%" y="437" width="0.2255%" height="15" fill="rgb(205,109,36)" fg:x="322704" fg:w="5385"/><text x="13.7659%" y="447.50"></text></g><g><title>__btrfs_end_transaction (11,895 samples, 0.50%)</title><rect x="13.3157%" y="469" width="0.4982%" height="15" fill="rgb(205,6,39)" fg:x="317924" fg:w="11895"/><text x="13.5657%" y="479.50"></text></g><g><title>kmem_cache_free (1,730 samples, 0.07%)</title><rect x="13.7414%" y="453" width="0.0725%" height="15" fill="rgb(221,32,16)" fg:x="328089" fg:w="1730"/><text x="13.9914%" y="463.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (283 samples, 0.01%)</title><rect x="13.8020%" y="437" width="0.0119%" height="15" fill="rgb(228,144,50)" fg:x="329536" fg:w="283"/><text x="14.0520%" y="447.50"></text></g><g><title>_raw_spin_lock (1,279 samples, 0.05%)</title><rect x="13.8427%" y="453" width="0.0536%" height="15" fill="rgb(229,201,53)" fg:x="330508" fg:w="1279"/><text x="14.0927%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (645 samples, 0.03%)</title><rect x="13.8693%" y="437" width="0.0270%" height="15" fill="rgb(249,153,27)" fg:x="331142" fg:w="645"/><text x="14.1193%" y="447.50"></text></g><g><title>_cond_resched (265 samples, 0.01%)</title><rect x="13.9303%" y="437" width="0.0111%" height="15" fill="rgb(227,106,25)" fg:x="332599" fg:w="265"/><text x="14.1803%" y="447.50"></text></g><g><title>mutex_lock (1,077 samples, 0.05%)</title><rect x="13.8967%" y="453" width="0.0451%" height="15" fill="rgb(230,65,29)" fg:x="331797" fg:w="1077"/><text x="14.1467%" y="463.50"></text></g><g><title>__radix_tree_delete (405 samples, 0.02%)</title><rect x="13.9549%" y="437" width="0.0170%" height="15" fill="rgb(221,57,46)" fg:x="333186" fg:w="405"/><text x="14.2049%" y="447.50"></text></g><g><title>__radix_tree_lookup (2,470 samples, 0.10%)</title><rect x="13.9718%" y="437" width="0.1035%" height="15" fill="rgb(229,161,17)" fg:x="333591" fg:w="2470"/><text x="14.2218%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (6,340 samples, 0.27%)</title><rect x="13.8139%" y="469" width="0.2655%" height="15" fill="rgb(222,213,11)" fg:x="329819" fg:w="6340"/><text x="14.0639%" y="479.50"></text></g><g><title>radix_tree_delete_item (3,058 samples, 0.13%)</title><rect x="13.9513%" y="453" width="0.1281%" height="15" fill="rgb(235,35,13)" fg:x="333101" fg:w="3058"/><text x="14.2013%" y="463.50"></text></g><g><title>_raw_spin_lock (258 samples, 0.01%)</title><rect x="14.0794%" y="469" width="0.0108%" height="15" fill="rgb(233,158,34)" fg:x="336159" fg:w="258"/><text x="14.3294%" y="479.50"></text></g><g><title>_raw_write_lock (321 samples, 0.01%)</title><rect x="14.0902%" y="469" width="0.0134%" height="15" fill="rgb(215,151,48)" fg:x="336417" fg:w="321"/><text x="14.3402%" y="479.50"></text></g><g><title>__radix_tree_lookup (321 samples, 0.01%)</title><rect x="14.1245%" y="453" width="0.0134%" height="15" fill="rgb(229,84,14)" fg:x="337237" fg:w="321"/><text x="14.3745%" y="463.50"></text></g><g><title>balance_dirty_pages_ratelimited (824 samples, 0.03%)</title><rect x="14.1040%" y="469" width="0.0345%" height="15" fill="rgb(229,68,14)" fg:x="336746" fg:w="824"/><text x="14.3540%" y="479.50"></text></g><g><title>btrfs_find_space_info (722 samples, 0.03%)</title><rect x="14.1503%" y="453" width="0.0302%" height="15" fill="rgb(243,106,26)" fg:x="337851" fg:w="722"/><text x="14.4003%" y="463.50"></text></g><g><title>btrfs_alloc_block_rsv (2,316 samples, 0.10%)</title><rect x="14.1385%" y="469" width="0.0970%" height="15" fill="rgb(206,45,38)" fg:x="337570" fg:w="2316"/><text x="14.3885%" y="479.50"></text></g><g><title>kmem_cache_alloc_trace (1,313 samples, 0.05%)</title><rect x="14.1805%" y="453" width="0.0550%" height="15" fill="rgb(226,6,15)" fg:x="338573" fg:w="1313"/><text x="14.4305%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (254 samples, 0.01%)</title><rect x="14.2249%" y="437" width="0.0106%" height="15" fill="rgb(232,22,54)" fg:x="339632" fg:w="254"/><text x="14.4749%" y="447.50"></text></g><g><title>btrfs_balance_delayed_items (660 samples, 0.03%)</title><rect x="14.2499%" y="453" width="0.0276%" height="15" fill="rgb(229,222,32)" fg:x="340231" fg:w="660"/><text x="14.4999%" y="463.50"></text></g><g><title>_raw_spin_lock (247 samples, 0.01%)</title><rect x="14.2827%" y="421" width="0.0103%" height="15" fill="rgb(228,62,29)" fg:x="341012" fg:w="247"/><text x="14.5327%" y="431.50"></text></g><g><title>try_to_wake_up (742 samples, 0.03%)</title><rect x="14.2944%" y="421" width="0.0311%" height="15" fill="rgb(251,103,34)" fg:x="341293" fg:w="742"/><text x="14.5444%" y="431.50"></text></g><g><title>__queue_work (1,079 samples, 0.05%)</title><rect x="14.2803%" y="437" width="0.0452%" height="15" fill="rgb(233,12,30)" fg:x="340957" fg:w="1079"/><text x="14.5303%" y="447.50"></text></g><g><title>btrfs_btree_balance_dirty (2,157 samples, 0.09%)</title><rect x="14.2355%" y="469" width="0.0903%" height="15" fill="rgb(238,52,0)" fg:x="339886" fg:w="2157"/><text x="14.4855%" y="479.50"></text></g><g><title>queue_work_on (1,114 samples, 0.05%)</title><rect x="14.2792%" y="453" width="0.0467%" height="15" fill="rgb(223,98,5)" fg:x="340929" fg:w="1114"/><text x="14.5292%" y="463.50"></text></g><g><title>btrfs_create_pending_block_groups (341 samples, 0.01%)</title><rect x="14.4300%" y="437" width="0.0143%" height="15" fill="rgb(228,75,37)" fg:x="344530" fg:w="341"/><text x="14.6800%" y="447.50"></text></g><g><title>btrfs_trans_release_chunk_metadata (239 samples, 0.01%)</title><rect x="14.4542%" y="437" width="0.0100%" height="15" fill="rgb(205,115,49)" fg:x="345109" fg:w="239"/><text x="14.7042%" y="447.50"></text></g><g><title>__btrfs_end_transaction (3,703 samples, 0.16%)</title><rect x="14.3456%" y="453" width="0.1551%" height="15" fill="rgb(250,154,43)" fg:x="342516" fg:w="3703"/><text x="14.5956%" y="463.50"></text></g><g><title>kmem_cache_free (810 samples, 0.03%)</title><rect x="14.4668%" y="437" width="0.0339%" height="15" fill="rgb(226,43,29)" fg:x="345409" fg:w="810"/><text x="14.7168%" y="447.50"></text></g><g><title>__list_del_entry_valid (470 samples, 0.02%)</title><rect x="14.5601%" y="437" width="0.0197%" height="15" fill="rgb(249,228,39)" fg:x="347637" fg:w="470"/><text x="14.8101%" y="447.50"></text></g><g><title>_raw_spin_lock (476 samples, 0.02%)</title><rect x="14.5808%" y="437" width="0.0199%" height="15" fill="rgb(216,79,43)" fg:x="348130" fg:w="476"/><text x="14.8308%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (265 samples, 0.01%)</title><rect x="14.5896%" y="421" width="0.0111%" height="15" fill="rgb(228,95,12)" fg:x="348341" fg:w="265"/><text x="14.8396%" y="431.50"></text></g><g><title>_cond_resched (328 samples, 0.01%)</title><rect x="14.6135%" y="421" width="0.0137%" height="15" fill="rgb(249,221,15)" fg:x="348912" fg:w="328"/><text x="14.8635%" y="431.50"></text></g><g><title>mutex_lock (631 samples, 0.03%)</title><rect x="14.6011%" y="437" width="0.0264%" height="15" fill="rgb(233,34,13)" fg:x="348616" fg:w="631"/><text x="14.8511%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (3,245 samples, 0.14%)</title><rect x="14.5007%" y="453" width="0.1359%" height="15" fill="rgb(214,103,39)" fg:x="346219" fg:w="3245"/><text x="14.7507%" y="463.50"></text></g><g><title>__btrfs_add_free_space (283 samples, 0.01%)</title><rect x="14.7966%" y="389" width="0.0119%" height="15" fill="rgb(251,126,39)" fg:x="353283" fg:w="283"/><text x="15.0466%" y="399.50"></text></g><g><title>btrfs_free_tree_block (679 samples, 0.03%)</title><rect x="14.7963%" y="405" width="0.0284%" height="15" fill="rgb(214,216,36)" fg:x="353276" fg:w="679"/><text x="15.0463%" y="415.50"></text></g><g><title>btrfs_del_leaf (897 samples, 0.04%)</title><rect x="14.7958%" y="421" width="0.0376%" height="15" fill="rgb(220,221,8)" fg:x="353264" fg:w="897"/><text x="15.0458%" y="431.50"></text></g><g><title>btrfs_get_32 (650 samples, 0.03%)</title><rect x="14.8334%" y="421" width="0.0272%" height="15" fill="rgb(240,216,3)" fg:x="354161" fg:w="650"/><text x="15.0834%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,225 samples, 0.05%)</title><rect x="15.1761%" y="405" width="0.0513%" height="15" fill="rgb(232,218,17)" fg:x="362344" fg:w="1225"/><text x="15.4261%" y="415.50"></text></g><g><title>btrfs_get_token_32 (8,759 samples, 0.37%)</title><rect x="14.8606%" y="421" width="0.3669%" height="15" fill="rgb(229,163,45)" fg:x="354811" fg:w="8759"/><text x="15.1106%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (740 samples, 0.03%)</title><rect x="15.2275%" y="421" width="0.0310%" height="15" fill="rgb(231,110,42)" fg:x="363570" fg:w="740"/><text x="15.4775%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (387 samples, 0.02%)</title><rect x="15.2422%" y="405" width="0.0162%" height="15" fill="rgb(208,170,48)" fg:x="363923" fg:w="387"/><text x="15.4922%" y="415.50"></text></g><g><title>btrfs_set_token_32 (6,299 samples, 0.26%)</title><rect x="15.2598%" y="421" width="0.2638%" height="15" fill="rgb(239,116,25)" fg:x="364342" fg:w="6299"/><text x="15.5098%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (980 samples, 0.04%)</title><rect x="15.4826%" y="405" width="0.0410%" height="15" fill="rgb(219,200,50)" fg:x="369661" fg:w="980"/><text x="15.7326%" y="415.50"></text></g><g><title>leaf_space_used (668 samples, 0.03%)</title><rect x="15.5247%" y="421" width="0.0280%" height="15" fill="rgb(245,200,0)" fg:x="370666" fg:w="668"/><text x="15.7747%" y="431.50"></text></g><g><title>btrfs_get_32 (480 samples, 0.02%)</title><rect x="15.5325%" y="405" width="0.0201%" height="15" fill="rgb(245,119,33)" fg:x="370854" fg:w="480"/><text x="15.7825%" y="415.50"></text></g><g><title>memcpy_extent_buffer (1,262 samples, 0.05%)</title><rect x="15.5526%" y="421" width="0.0529%" height="15" fill="rgb(231,125,12)" fg:x="371334" fg:w="1262"/><text x="15.8026%" y="431.50"></text></g><g><title>memmove (931 samples, 0.04%)</title><rect x="15.5665%" y="405" width="0.0390%" height="15" fill="rgb(216,96,41)" fg:x="371665" fg:w="931"/><text x="15.8165%" y="415.50"></text></g><g><title>copy_pages (1,329 samples, 0.06%)</title><rect x="15.6386%" y="405" width="0.0557%" height="15" fill="rgb(248,43,45)" fg:x="373387" fg:w="1329"/><text x="15.8886%" y="415.50"></text></g><g><title>memmove_extent_buffer (11,507 samples, 0.48%)</title><rect x="15.6055%" y="421" width="0.4819%" height="15" fill="rgb(217,222,7)" fg:x="372596" fg:w="11507"/><text x="15.8555%" y="431.50"></text></g><g><title>memmove (9,387 samples, 0.39%)</title><rect x="15.6943%" y="405" width="0.3932%" height="15" fill="rgb(233,28,6)" fg:x="374716" fg:w="9387"/><text x="15.9443%" y="415.50"></text></g><g><title>__push_leaf_left (415 samples, 0.02%)</title><rect x="16.0892%" y="405" width="0.0174%" height="15" fill="rgb(231,218,15)" fg:x="384146" fg:w="415"/><text x="16.3392%" y="415.50"></text></g><g><title>push_leaf_left (643 samples, 0.03%)</title><rect x="16.0874%" y="421" width="0.0269%" height="15" fill="rgb(226,171,48)" fg:x="384103" fg:w="643"/><text x="16.3374%" y="431.50"></text></g><g><title>__push_leaf_right (284 samples, 0.01%)</title><rect x="16.1158%" y="405" width="0.0119%" height="15" fill="rgb(235,201,9)" fg:x="384781" fg:w="284"/><text x="16.3658%" y="415.50"></text></g><g><title>push_leaf_right (529 samples, 0.02%)</title><rect x="16.1144%" y="421" width="0.0222%" height="15" fill="rgb(217,80,15)" fg:x="384746" fg:w="529"/><text x="16.3644%" y="431.50"></text></g><g><title>btrfs_del_items (34,613 samples, 1.45%)</title><rect x="14.6903%" y="437" width="1.4497%" height="15" fill="rgb(219,152,8)" fg:x="350745" fg:w="34613"/><text x="14.9403%" y="447.50"></text></g><g><title>_raw_spin_lock (1,826 samples, 0.08%)</title><rect x="16.1593%" y="405" width="0.0765%" height="15" fill="rgb(243,107,38)" fg:x="385818" fg:w="1826"/><text x="16.4093%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (681 samples, 0.03%)</title><rect x="16.2072%" y="389" width="0.0285%" height="15" fill="rgb(231,17,5)" fg:x="386963" fg:w="681"/><text x="16.4572%" y="399.50"></text></g><g><title>btrfs_block_rsv_release (2,319 samples, 0.10%)</title><rect x="16.1446%" y="421" width="0.0971%" height="15" fill="rgb(209,25,54)" fg:x="385468" fg:w="2319"/><text x="16.3946%" y="431.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (2,650 samples, 0.11%)</title><rect x="16.1400%" y="437" width="0.1110%" height="15" fill="rgb(219,0,2)" fg:x="385358" fg:w="2650"/><text x="16.3900%" y="447.50"></text></g><g><title>btrfs_get_32 (331 samples, 0.01%)</title><rect x="16.2510%" y="437" width="0.0139%" height="15" fill="rgb(246,9,5)" fg:x="388008" fg:w="331"/><text x="16.5010%" y="447.50"></text></g><g><title>_raw_read_lock (952 samples, 0.04%)</title><rect x="16.4777%" y="373" width="0.0399%" height="15" fill="rgb(226,159,4)" fg:x="393421" fg:w="952"/><text x="16.7277%" y="383.50"></text></g><g><title>finish_wait (6,016 samples, 0.25%)</title><rect x="16.5208%" y="373" width="0.2520%" height="15" fill="rgb(219,175,34)" fg:x="394451" fg:w="6016"/><text x="16.7708%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (5,768 samples, 0.24%)</title><rect x="16.5312%" y="357" width="0.2416%" height="15" fill="rgb(236,10,46)" fg:x="394699" fg:w="5768"/><text x="16.7812%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,515 samples, 0.23%)</title><rect x="16.5418%" y="341" width="0.2310%" height="15" fill="rgb(240,211,16)" fg:x="394952" fg:w="5515"/><text x="16.7918%" y="351.50"></text></g><g><title>__list_add_valid (342 samples, 0.01%)</title><rect x="16.8114%" y="357" width="0.0143%" height="15" fill="rgb(205,3,43)" fg:x="401389" fg:w="342"/><text x="17.0614%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (14,213 samples, 0.60%)</title><rect x="16.8258%" y="357" width="0.5953%" height="15" fill="rgb(245,7,22)" fg:x="401731" fg:w="14213"/><text x="17.0758%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (13,622 samples, 0.57%)</title><rect x="16.8505%" y="341" width="0.5705%" height="15" fill="rgb(239,132,32)" fg:x="402322" fg:w="13622"/><text x="17.1005%" y="351.50"></text></g><g><title>prepare_to_wait_event (15,685 samples, 0.66%)</title><rect x="16.7731%" y="373" width="0.6569%" height="15" fill="rgb(228,202,34)" fg:x="400475" fg:w="15685"/><text x="17.0231%" y="383.50"></text></g><g><title>queued_read_lock_slowpath (17,532 samples, 0.73%)</title><rect x="17.4301%" y="373" width="0.7343%" height="15" fill="rgb(254,200,22)" fg:x="416160" fg:w="17532"/><text x="17.6801%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (13,052 samples, 0.55%)</title><rect x="17.6177%" y="357" width="0.5467%" height="15" fill="rgb(219,10,39)" fg:x="420640" fg:w="13052"/><text x="17.8677%" y="367.50"></text></g><g><title>__perf_event_task_sched_out (425 samples, 0.02%)</title><rect x="18.1947%" y="341" width="0.0178%" height="15" fill="rgb(226,210,39)" fg:x="434417" fg:w="425"/><text x="18.4447%" y="351.50"></text></g><g><title>update_curr (835 samples, 0.03%)</title><rect x="18.2568%" y="309" width="0.0350%" height="15" fill="rgb(208,219,16)" fg:x="435899" fg:w="835"/><text x="18.5068%" y="319.50"></text></g><g><title>dequeue_entity (2,154 samples, 0.09%)</title><rect x="18.2298%" y="325" width="0.0902%" height="15" fill="rgb(216,158,51)" fg:x="435254" fg:w="2154"/><text x="18.4798%" y="335.50"></text></g><g><title>update_load_avg (674 samples, 0.03%)</title><rect x="18.2918%" y="309" width="0.0282%" height="15" fill="rgb(233,14,44)" fg:x="436734" fg:w="674"/><text x="18.5418%" y="319.50"></text></g><g><title>dequeue_task_fair (2,627 samples, 0.11%)</title><rect x="18.2168%" y="341" width="0.1100%" height="15" fill="rgb(237,97,39)" fg:x="434944" fg:w="2627"/><text x="18.4668%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (500 samples, 0.02%)</title><rect x="18.3413%" y="325" width="0.0209%" height="15" fill="rgb(218,198,43)" fg:x="437917" fg:w="500"/><text x="18.5913%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (435 samples, 0.02%)</title><rect x="18.3441%" y="309" width="0.0182%" height="15" fill="rgb(231,104,20)" fg:x="437982" fg:w="435"/><text x="18.5941%" y="319.50"></text></g><g><title>native_write_msr (402 samples, 0.02%)</title><rect x="18.3454%" y="293" width="0.0168%" height="15" fill="rgb(254,36,13)" fg:x="438015" fg:w="402"/><text x="18.5954%" y="303.50"></text></g><g><title>finish_task_switch (888 samples, 0.04%)</title><rect x="18.3268%" y="341" width="0.0372%" height="15" fill="rgb(248,14,50)" fg:x="437571" fg:w="888"/><text x="18.5768%" y="351.50"></text></g><g><title>pick_next_task_fair (464 samples, 0.02%)</title><rect x="18.3642%" y="341" width="0.0194%" height="15" fill="rgb(217,107,29)" fg:x="438462" fg:w="464"/><text x="18.6142%" y="351.50"></text></g><g><title>__update_idle_core (383 samples, 0.02%)</title><rect x="18.3863%" y="325" width="0.0160%" height="15" fill="rgb(251,169,33)" fg:x="438990" fg:w="383"/><text x="18.6363%" y="335.50"></text></g><g><title>pick_next_task_idle (450 samples, 0.02%)</title><rect x="18.3836%" y="341" width="0.0188%" height="15" fill="rgb(217,108,32)" fg:x="438926" fg:w="450"/><text x="18.6336%" y="351.50"></text></g><g><title>psi_task_change (1,934 samples, 0.08%)</title><rect x="18.4024%" y="341" width="0.0810%" height="15" fill="rgb(219,66,42)" fg:x="439376" fg:w="1934"/><text x="18.6524%" y="351.50"></text></g><g><title>psi_group_change (1,671 samples, 0.07%)</title><rect x="18.4135%" y="325" width="0.0700%" height="15" fill="rgb(206,180,7)" fg:x="439639" fg:w="1671"/><text x="18.6635%" y="335.50"></text></g><g><title>record_times (417 samples, 0.02%)</title><rect x="18.4660%" y="309" width="0.0175%" height="15" fill="rgb(208,226,31)" fg:x="440893" fg:w="417"/><text x="18.7160%" y="319.50"></text></g><g><title>sched_clock_cpu (280 samples, 0.01%)</title><rect x="18.4717%" y="293" width="0.0117%" height="15" fill="rgb(218,26,49)" fg:x="441030" fg:w="280"/><text x="18.7217%" y="303.50"></text></g><g><title>__btrfs_tree_read_lock (49,532 samples, 2.07%)</title><rect x="16.4329%" y="389" width="2.0746%" height="15" fill="rgb(233,197,48)" fg:x="392352" fg:w="49532"/><text x="16.6829%" y="399.50">_..</text></g><g><title>schedule (8,192 samples, 0.34%)</title><rect x="18.1644%" y="373" width="0.3431%" height="15" fill="rgb(252,181,51)" fg:x="433692" fg:w="8192"/><text x="18.4144%" y="383.50"></text></g><g><title>__schedule (8,057 samples, 0.34%)</title><rect x="18.1700%" y="357" width="0.3375%" height="15" fill="rgb(253,90,19)" fg:x="433827" fg:w="8057"/><text x="18.4200%" y="367.50"></text></g><g><title>__btrfs_read_lock_root_node (50,979 samples, 2.14%)</title><rect x="16.4249%" y="405" width="2.1352%" height="15" fill="rgb(215,171,30)" fg:x="392160" fg:w="50979"/><text x="16.6749%" y="415.50">_..</text></g><g><title>btrfs_root_node (1,255 samples, 0.05%)</title><rect x="18.5075%" y="389" width="0.0526%" height="15" fill="rgb(214,222,9)" fg:x="441884" fg:w="1255"/><text x="18.7575%" y="399.50"></text></g><g><title>prepare_to_wait_event (331 samples, 0.01%)</title><rect x="18.5693%" y="389" width="0.0139%" height="15" fill="rgb(223,3,22)" fg:x="443359" fg:w="331"/><text x="18.8193%" y="399.50"></text></g><g><title>update_curr (256 samples, 0.01%)</title><rect x="18.6162%" y="325" width="0.0107%" height="15" fill="rgb(225,196,46)" fg:x="444480" fg:w="256"/><text x="18.8662%" y="335.50"></text></g><g><title>dequeue_entity (713 samples, 0.03%)</title><rect x="18.6061%" y="341" width="0.0299%" height="15" fill="rgb(209,110,37)" fg:x="444238" fg:w="713"/><text x="18.8561%" y="351.50"></text></g><g><title>dequeue_task_fair (878 samples, 0.04%)</title><rect x="18.6014%" y="357" width="0.0368%" height="15" fill="rgb(249,89,12)" fg:x="444127" fg:w="878"/><text x="18.8514%" y="367.50"></text></g><g><title>finish_task_switch (330 samples, 0.01%)</title><rect x="18.6382%" y="357" width="0.0138%" height="15" fill="rgb(226,27,33)" fg:x="445005" fg:w="330"/><text x="18.8882%" y="367.50"></text></g><g><title>psi_task_change (651 samples, 0.03%)</title><rect x="18.6646%" y="357" width="0.0273%" height="15" fill="rgb(213,82,22)" fg:x="445636" fg:w="651"/><text x="18.9146%" y="367.50"></text></g><g><title>psi_group_change (563 samples, 0.02%)</title><rect x="18.6683%" y="341" width="0.0236%" height="15" fill="rgb(248,140,0)" fg:x="445724" fg:w="563"/><text x="18.9183%" y="351.50"></text></g><g><title>__btrfs_tree_lock (3,341 samples, 0.14%)</title><rect x="18.5600%" y="405" width="0.1399%" height="15" fill="rgb(228,106,3)" fg:x="443139" fg:w="3341"/><text x="18.8100%" y="415.50"></text></g><g><title>schedule (2,790 samples, 0.12%)</title><rect x="18.5831%" y="389" width="0.1169%" height="15" fill="rgb(209,23,37)" fg:x="443690" fg:w="2790"/><text x="18.8331%" y="399.50"></text></g><g><title>__schedule (2,756 samples, 0.12%)</title><rect x="18.5846%" y="373" width="0.1154%" height="15" fill="rgb(241,93,50)" fg:x="443724" fg:w="2756"/><text x="18.8346%" y="383.50"></text></g><g><title>btrfs_reserve_extent (413 samples, 0.02%)</title><rect x="18.7368%" y="341" width="0.0173%" height="15" fill="rgb(253,46,43)" fg:x="447358" fg:w="413"/><text x="18.9868%" y="351.50"></text></g><g><title>find_free_extent (377 samples, 0.02%)</title><rect x="18.7383%" y="325" width="0.0158%" height="15" fill="rgb(226,206,43)" fg:x="447394" fg:w="377"/><text x="18.9883%" y="335.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,105 samples, 0.05%)</title><rect x="18.7173%" y="373" width="0.0463%" height="15" fill="rgb(217,54,7)" fg:x="446894" fg:w="1105"/><text x="18.9673%" y="383.50"></text></g><g><title>btrfs_alloc_tree_block (1,102 samples, 0.05%)</title><rect x="18.7174%" y="357" width="0.0462%" height="15" fill="rgb(223,5,52)" fg:x="446897" fg:w="1102"/><text x="18.9674%" y="367.50"></text></g><g><title>btrfs_free_tree_block (326 samples, 0.01%)</title><rect x="18.7636%" y="373" width="0.0137%" height="15" fill="rgb(206,52,46)" fg:x="447999" fg:w="326"/><text x="19.0136%" y="383.50"></text></g><g><title>copy_extent_buffer_full (263 samples, 0.01%)</title><rect x="18.7861%" y="373" width="0.0110%" height="15" fill="rgb(253,136,11)" fg:x="448536" fg:w="263"/><text x="19.0361%" y="383.50"></text></g><g><title>copy_page (257 samples, 0.01%)</title><rect x="18.7863%" y="357" width="0.0108%" height="15" fill="rgb(208,106,33)" fg:x="448542" fg:w="257"/><text x="19.0363%" y="367.50"></text></g><g><title>__btrfs_cow_block (2,041 samples, 0.09%)</title><rect x="18.7160%" y="389" width="0.0855%" height="15" fill="rgb(206,54,4)" fg:x="446863" fg:w="2041"/><text x="18.9660%" y="399.50"></text></g><g><title>btrfs_cow_block (2,060 samples, 0.09%)</title><rect x="18.7157%" y="405" width="0.0863%" height="15" fill="rgb(213,3,15)" fg:x="446856" fg:w="2060"/><text x="18.9657%" y="415.50"></text></g><g><title>_cond_resched (317 samples, 0.01%)</title><rect x="18.8629%" y="373" width="0.0133%" height="15" fill="rgb(252,211,39)" fg:x="450371" fg:w="317"/><text x="19.1129%" y="383.50"></text></g><g><title>_raw_write_lock (1,046 samples, 0.04%)</title><rect x="18.8802%" y="373" width="0.0438%" height="15" fill="rgb(223,6,36)" fg:x="450784" fg:w="1046"/><text x="19.1302%" y="383.50"></text></g><g><title>__list_del_entry_valid (335 samples, 0.01%)</title><rect x="18.9275%" y="357" width="0.0140%" height="15" fill="rgb(252,169,45)" fg:x="451912" fg:w="335"/><text x="19.1775%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (6,774 samples, 0.28%)</title><rect x="18.9415%" y="357" width="0.2837%" height="15" fill="rgb(212,48,26)" fg:x="452247" fg:w="6774"/><text x="19.1915%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,434 samples, 0.27%)</title><rect x="18.9558%" y="341" width="0.2695%" height="15" fill="rgb(251,102,48)" fg:x="452587" fg:w="6434"/><text x="19.2058%" y="351.50"></text></g><g><title>finish_wait (7,189 samples, 0.30%)</title><rect x="18.9242%" y="373" width="0.3011%" height="15" fill="rgb(243,208,16)" fg:x="451833" fg:w="7189"/><text x="19.1742%" y="383.50"></text></g><g><title>__list_add_valid (459 samples, 0.02%)</title><rect x="19.2884%" y="357" width="0.0192%" height="15" fill="rgb(219,96,24)" fg:x="460528" fg:w="459"/><text x="19.5384%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (17,910 samples, 0.75%)</title><rect x="19.3076%" y="357" width="0.7501%" height="15" fill="rgb(219,33,29)" fg:x="460987" fg:w="17910"/><text x="19.5576%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (16,891 samples, 0.71%)</title><rect x="19.3503%" y="341" width="0.7074%" height="15" fill="rgb(223,176,5)" fg:x="462006" fg:w="16891"/><text x="19.6003%" y="351.50"></text></g><g><title>prepare_to_wait_event (20,163 samples, 0.84%)</title><rect x="19.2280%" y="373" width="0.8445%" height="15" fill="rgb(228,140,14)" fg:x="459087" fg:w="20163"/><text x="19.4780%" y="383.50"></text></g><g><title>_raw_spin_unlock_irqrestore (353 samples, 0.01%)</title><rect x="20.0577%" y="357" width="0.0148%" height="15" fill="rgb(217,179,31)" fg:x="478897" fg:w="353"/><text x="20.3077%" y="367.50"></text></g><g><title>queued_write_lock_slowpath (25,889 samples, 1.08%)</title><rect x="20.0725%" y="373" width="1.0843%" height="15" fill="rgb(230,9,30)" fg:x="479250" fg:w="25889"/><text x="20.3225%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (13,369 samples, 0.56%)</title><rect x="20.5969%" y="357" width="0.5599%" height="15" fill="rgb(230,136,20)" fg:x="491770" fg:w="13369"/><text x="20.8469%" y="367.50"></text></g><g><title>__perf_event_task_sched_out (602 samples, 0.03%)</title><rect x="21.2035%" y="341" width="0.0252%" height="15" fill="rgb(215,210,22)" fg:x="506255" fg:w="602"/><text x="21.4535%" y="351.50"></text></g><g><title>update_cfs_group (380 samples, 0.02%)</title><rect x="21.2875%" y="309" width="0.0159%" height="15" fill="rgb(218,43,5)" fg:x="508260" fg:w="380"/><text x="21.5375%" y="319.50"></text></g><g><title>cpuacct_charge (279 samples, 0.01%)</title><rect x="21.3422%" y="293" width="0.0117%" height="15" fill="rgb(216,11,5)" fg:x="509566" fg:w="279"/><text x="21.5922%" y="303.50"></text></g><g><title>update_curr (1,294 samples, 0.05%)</title><rect x="21.3034%" y="309" width="0.0542%" height="15" fill="rgb(209,82,29)" fg:x="508640" fg:w="1294"/><text x="21.5534%" y="319.50"></text></g><g><title>__update_load_avg_cfs_rq (326 samples, 0.01%)</title><rect x="21.3748%" y="293" width="0.0137%" height="15" fill="rgb(244,115,12)" fg:x="510343" fg:w="326"/><text x="21.6248%" y="303.50"></text></g><g><title>__update_load_avg_se (368 samples, 0.02%)</title><rect x="21.3884%" y="293" width="0.0154%" height="15" fill="rgb(222,82,18)" fg:x="510669" fg:w="368"/><text x="21.6384%" y="303.50"></text></g><g><title>dequeue_entity (3,568 samples, 0.15%)</title><rect x="21.2556%" y="325" width="0.1494%" height="15" fill="rgb(249,227,8)" fg:x="507497" fg:w="3568"/><text x="21.5056%" y="335.50"></text></g><g><title>update_load_avg (1,131 samples, 0.05%)</title><rect x="21.3576%" y="309" width="0.0474%" height="15" fill="rgb(253,141,45)" fg:x="509934" fg:w="1131"/><text x="21.6076%" y="319.50"></text></g><g><title>dequeue_task_fair (4,229 samples, 0.18%)</title><rect x="21.2374%" y="341" width="0.1771%" height="15" fill="rgb(234,184,4)" fg:x="507063" fg:w="4229"/><text x="21.4874%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (929 samples, 0.04%)</title><rect x="21.4407%" y="325" width="0.0389%" height="15" fill="rgb(218,194,23)" fg:x="511918" fg:w="929"/><text x="21.6907%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (821 samples, 0.03%)</title><rect x="21.4453%" y="309" width="0.0344%" height="15" fill="rgb(235,66,41)" fg:x="512026" fg:w="821"/><text x="21.6953%" y="319.50"></text></g><g><title>native_write_msr (765 samples, 0.03%)</title><rect x="21.4476%" y="293" width="0.0320%" height="15" fill="rgb(245,217,1)" fg:x="512082" fg:w="765"/><text x="21.6976%" y="303.50"></text></g><g><title>finish_task_switch (1,683 samples, 0.07%)</title><rect x="21.4145%" y="341" width="0.0705%" height="15" fill="rgb(229,91,1)" fg:x="511292" fg:w="1683"/><text x="21.6645%" y="351.50"></text></g><g><title>newidle_balance (353 samples, 0.01%)</title><rect x="21.4934%" y="325" width="0.0148%" height="15" fill="rgb(207,101,30)" fg:x="513176" fg:w="353"/><text x="21.7434%" y="335.50"></text></g><g><title>pick_next_task_fair (694 samples, 0.03%)</title><rect x="21.4852%" y="341" width="0.0291%" height="15" fill="rgb(223,82,49)" fg:x="512980" fg:w="694"/><text x="21.7352%" y="351.50"></text></g><g><title>__update_idle_core (660 samples, 0.03%)</title><rect x="21.5188%" y="325" width="0.0276%" height="15" fill="rgb(218,167,17)" fg:x="513782" fg:w="660"/><text x="21.7688%" y="335.50"></text></g><g><title>pick_next_task_idle (769 samples, 0.03%)</title><rect x="21.5143%" y="341" width="0.0322%" height="15" fill="rgb(208,103,14)" fg:x="513674" fg:w="769"/><text x="21.7643%" y="351.50"></text></g><g><title>psi_task_change (3,230 samples, 0.14%)</title><rect x="21.5465%" y="341" width="0.1353%" height="15" fill="rgb(238,20,8)" fg:x="514443" fg:w="3230"/><text x="21.7965%" y="351.50"></text></g><g><title>psi_group_change (2,782 samples, 0.12%)</title><rect x="21.5652%" y="325" width="0.1165%" height="15" fill="rgb(218,80,54)" fg:x="514891" fg:w="2782"/><text x="21.8152%" y="335.50"></text></g><g><title>record_times (753 samples, 0.03%)</title><rect x="21.6502%" y="309" width="0.0315%" height="15" fill="rgb(240,144,17)" fg:x="516920" fg:w="753"/><text x="21.9002%" y="319.50"></text></g><g><title>sched_clock_cpu (521 samples, 0.02%)</title><rect x="21.6599%" y="293" width="0.0218%" height="15" fill="rgb(245,27,50)" fg:x="517152" fg:w="521"/><text x="21.9099%" y="303.50"></text></g><g><title>sched_clock (466 samples, 0.02%)</title><rect x="21.6622%" y="277" width="0.0195%" height="15" fill="rgb(251,51,7)" fg:x="517207" fg:w="466"/><text x="21.9122%" y="287.50"></text></g><g><title>native_sched_clock (440 samples, 0.02%)</title><rect x="21.6633%" y="261" width="0.0184%" height="15" fill="rgb(245,217,29)" fg:x="517233" fg:w="440"/><text x="21.9133%" y="271.50"></text></g><g><title>psi_task_switch (320 samples, 0.01%)</title><rect x="21.6818%" y="341" width="0.0134%" height="15" fill="rgb(221,176,29)" fg:x="517673" fg:w="320"/><text x="21.9318%" y="351.50"></text></g><g><title>put_prev_task_fair (246 samples, 0.01%)</title><rect x="21.6952%" y="341" width="0.0103%" height="15" fill="rgb(212,180,24)" fg:x="517993" fg:w="246"/><text x="21.9452%" y="351.50"></text></g><g><title>__schedule (13,269 samples, 0.56%)</title><rect x="21.1654%" y="357" width="0.5557%" height="15" fill="rgb(254,24,2)" fg:x="505344" fg:w="13269"/><text x="21.4154%" y="367.50"></text></g><g><title>update_rq_clock (333 samples, 0.01%)</title><rect x="21.7072%" y="341" width="0.0139%" height="15" fill="rgb(230,100,2)" fg:x="518280" fg:w="333"/><text x="21.9572%" y="351.50"></text></g><g><title>__btrfs_tree_lock (69,635 samples, 2.92%)</title><rect x="18.8047%" y="389" width="2.9165%" height="15" fill="rgb(219,142,25)" fg:x="448981" fg:w="69635"/><text x="19.0547%" y="399.50">__..</text></g><g><title>schedule (13,477 samples, 0.56%)</title><rect x="21.1568%" y="373" width="0.5645%" height="15" fill="rgb(240,73,43)" fg:x="505139" fg:w="13477"/><text x="21.4068%" y="383.50"></text></g><g><title>btrfs_lock_root_node (70,308 samples, 2.94%)</title><rect x="18.8020%" y="405" width="2.9447%" height="15" fill="rgb(214,114,15)" fg:x="448916" fg:w="70308"/><text x="19.0520%" y="415.50">bt..</text></g><g><title>btrfs_root_node (608 samples, 0.03%)</title><rect x="21.7213%" y="389" width="0.0255%" height="15" fill="rgb(207,130,4)" fg:x="518616" fg:w="608"/><text x="21.9713%" y="399.50"></text></g><g><title>btrfs_set_path_blocking (444 samples, 0.02%)</title><rect x="21.7467%" y="405" width="0.0186%" height="15" fill="rgb(221,25,40)" fg:x="519224" fg:w="444"/><text x="21.9967%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (661 samples, 0.03%)</title><rect x="21.7655%" y="405" width="0.0277%" height="15" fill="rgb(241,184,7)" fg:x="519673" fg:w="661"/><text x="22.0155%" y="415.50"></text></g><g><title>_raw_write_lock (401 samples, 0.02%)</title><rect x="21.8001%" y="389" width="0.0168%" height="15" fill="rgb(235,159,4)" fg:x="520498" fg:w="401"/><text x="22.0501%" y="399.50"></text></g><g><title>btrfs_try_tree_write_lock (3,571 samples, 0.15%)</title><rect x="21.7932%" y="405" width="0.1496%" height="15" fill="rgb(214,87,48)" fg:x="520334" fg:w="3571"/><text x="22.0432%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (3,006 samples, 0.13%)</title><rect x="21.8169%" y="389" width="0.1259%" height="15" fill="rgb(246,198,24)" fg:x="520899" fg:w="3006"/><text x="22.0669%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (765 samples, 0.03%)</title><rect x="21.9432%" y="405" width="0.0320%" height="15" fill="rgb(209,66,40)" fg:x="523916" fg:w="765"/><text x="22.1932%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (5,465 samples, 0.23%)</title><rect x="21.9753%" y="405" width="0.2289%" height="15" fill="rgb(233,147,39)" fg:x="524681" fg:w="5465"/><text x="22.2253%" y="415.50"></text></g><g><title>btrfs_buffer_uptodate (822 samples, 0.03%)</title><rect x="22.2357%" y="389" width="0.0344%" height="15" fill="rgb(231,145,52)" fg:x="530899" fg:w="822"/><text x="22.4857%" y="399.50"></text></g><g><title>verify_parent_transid (701 samples, 0.03%)</title><rect x="22.2408%" y="373" width="0.0294%" height="15" fill="rgb(206,20,26)" fg:x="531020" fg:w="701"/><text x="22.4908%" y="383.50"></text></g><g><title>btrfs_get_64 (1,020 samples, 0.04%)</title><rect x="22.2701%" y="389" width="0.0427%" height="15" fill="rgb(238,220,4)" fg:x="531721" fg:w="1020"/><text x="22.5201%" y="399.50"></text></g><g><title>btrfs_verify_level_key (271 samples, 0.01%)</title><rect x="22.3168%" y="389" width="0.0114%" height="15" fill="rgb(252,195,42)" fg:x="532835" fg:w="271"/><text x="22.5668%" y="399.50"></text></g><g><title>__radix_tree_lookup (3,314 samples, 0.14%)</title><rect x="22.4011%" y="373" width="0.1388%" height="15" fill="rgb(209,10,6)" fg:x="534848" fg:w="3314"/><text x="22.6511%" y="383.50"></text></g><g><title>mark_page_accessed (1,248 samples, 0.05%)</title><rect x="22.5537%" y="357" width="0.0523%" height="15" fill="rgb(229,3,52)" fg:x="538491" fg:w="1248"/><text x="22.8037%" y="367.50"></text></g><g><title>mark_extent_buffer_accessed (1,568 samples, 0.07%)</title><rect x="22.5403%" y="373" width="0.0657%" height="15" fill="rgb(253,49,37)" fg:x="538172" fg:w="1568"/><text x="22.7903%" y="383.50"></text></g><g><title>find_extent_buffer (6,664 samples, 0.28%)</title><rect x="22.3281%" y="389" width="0.2791%" height="15" fill="rgb(240,103,49)" fg:x="533106" fg:w="6664"/><text x="22.5781%" y="399.50"></text></g><g><title>read_block_for_search.isra.0 (10,477 samples, 0.44%)</title><rect x="22.2042%" y="405" width="0.4388%" height="15" fill="rgb(250,182,30)" fg:x="530146" fg:w="10477"/><text x="22.4542%" y="415.50"></text></g><g><title>read_extent_buffer (853 samples, 0.04%)</title><rect x="22.6073%" y="389" width="0.0357%" height="15" fill="rgb(248,8,30)" fg:x="539770" fg:w="853"/><text x="22.8573%" y="399.50"></text></g><g><title>btrfs_buffer_uptodate (273 samples, 0.01%)</title><rect x="22.6503%" y="389" width="0.0114%" height="15" fill="rgb(237,120,30)" fg:x="540798" fg:w="273"/><text x="22.9003%" y="399.50"></text></g><g><title>btrfs_get_64 (298 samples, 0.01%)</title><rect x="22.6617%" y="389" width="0.0125%" height="15" fill="rgb(221,146,34)" fg:x="541071" fg:w="298"/><text x="22.9117%" y="399.50"></text></g><g><title>__radix_tree_lookup (905 samples, 0.04%)</title><rect x="22.7025%" y="373" width="0.0379%" height="15" fill="rgb(242,55,13)" fg:x="542045" fg:w="905"/><text x="22.9525%" y="383.50"></text></g><g><title>mark_extent_buffer_accessed (412 samples, 0.02%)</title><rect x="22.7404%" y="373" width="0.0173%" height="15" fill="rgb(242,112,31)" fg:x="542950" fg:w="412"/><text x="22.9904%" y="383.50"></text></g><g><title>mark_page_accessed (307 samples, 0.01%)</title><rect x="22.7448%" y="357" width="0.0129%" height="15" fill="rgb(249,192,27)" fg:x="543055" fg:w="307"/><text x="22.9948%" y="367.50"></text></g><g><title>find_extent_buffer (1,999 samples, 0.08%)</title><rect x="22.6742%" y="389" width="0.0837%" height="15" fill="rgb(208,204,44)" fg:x="541369" fg:w="1999"/><text x="22.9242%" y="399.50"></text></g><g><title>reada_for_balance (2,921 samples, 0.12%)</title><rect x="22.6430%" y="405" width="0.1223%" height="15" fill="rgb(208,93,54)" fg:x="540623" fg:w="2921"/><text x="22.8930%" y="415.50"></text></g><g><title>__list_del_entry_valid (550 samples, 0.02%)</title><rect x="22.8377%" y="341" width="0.0230%" height="15" fill="rgb(242,1,31)" fg:x="545272" fg:w="550"/><text x="23.0877%" y="351.50"></text></g><g><title>_raw_spin_lock (644 samples, 0.03%)</title><rect x="23.0974%" y="325" width="0.0270%" height="15" fill="rgb(241,83,25)" fg:x="551472" fg:w="644"/><text x="23.3474%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath (337 samples, 0.01%)</title><rect x="23.1102%" y="309" width="0.0141%" height="15" fill="rgb(205,169,50)" fg:x="551779" fg:w="337"/><text x="23.3602%" y="319.50"></text></g><g><title>_raw_spin_lock_irqsave (880 samples, 0.04%)</title><rect x="23.1243%" y="325" width="0.0369%" height="15" fill="rgb(239,186,37)" fg:x="552116" fg:w="880"/><text x="23.3743%" y="335.50"></text></g><g><title>available_idle_cpu (808 samples, 0.03%)</title><rect x="23.2327%" y="309" width="0.0338%" height="15" fill="rgb(205,221,10)" fg:x="554702" fg:w="808"/><text x="23.4827%" y="319.50"></text></g><g><title>select_task_rq_fair (3,572 samples, 0.15%)</title><rect x="23.1669%" y="325" width="0.1496%" height="15" fill="rgb(218,196,15)" fg:x="553132" fg:w="3572"/><text x="23.4169%" y="335.50"></text></g><g><title>update_cfs_rq_h_load (778 samples, 0.03%)</title><rect x="23.2839%" y="309" width="0.0326%" height="15" fill="rgb(218,196,35)" fg:x="555926" fg:w="778"/><text x="23.5339%" y="319.50"></text></g><g><title>set_task_cpu (324 samples, 0.01%)</title><rect x="23.3165%" y="325" width="0.0136%" height="15" fill="rgb(233,63,24)" fg:x="556704" fg:w="324"/><text x="23.5665%" y="335.50"></text></g><g><title>reweight_entity (270 samples, 0.01%)</title><rect x="23.4287%" y="277" width="0.0113%" height="15" fill="rgb(225,8,4)" fg:x="559383" fg:w="270"/><text x="23.6787%" y="287.50"></text></g><g><title>update_cfs_group (292 samples, 0.01%)</title><rect x="23.4400%" y="277" width="0.0122%" height="15" fill="rgb(234,105,35)" fg:x="559653" fg:w="292"/><text x="23.6900%" y="287.50"></text></g><g><title>update_curr (410 samples, 0.02%)</title><rect x="23.4523%" y="277" width="0.0172%" height="15" fill="rgb(236,21,32)" fg:x="559945" fg:w="410"/><text x="23.7023%" y="287.50"></text></g><g><title>__update_load_avg_cfs_rq (297 samples, 0.01%)</title><rect x="23.4951%" y="261" width="0.0124%" height="15" fill="rgb(228,109,6)" fg:x="560969" fg:w="297"/><text x="23.7451%" y="271.50"></text></g><g><title>enqueue_entity (3,417 samples, 0.14%)</title><rect x="23.3756%" y="293" width="0.1431%" height="15" fill="rgb(229,215,31)" fg:x="558115" fg:w="3417"/><text x="23.6256%" y="303.50"></text></g><g><title>update_load_avg (1,177 samples, 0.05%)</title><rect x="23.4694%" y="277" width="0.0493%" height="15" fill="rgb(221,52,54)" fg:x="560355" fg:w="1177"/><text x="23.7194%" y="287.50"></text></g><g><title>enqueue_task_fair (4,373 samples, 0.18%)</title><rect x="23.3475%" y="309" width="0.1832%" height="15" fill="rgb(252,129,43)" fg:x="557444" fg:w="4373"/><text x="23.5975%" y="319.50"></text></g><g><title>ttwu_do_activate (9,075 samples, 0.38%)</title><rect x="23.3301%" y="325" width="0.3801%" height="15" fill="rgb(248,183,27)" fg:x="557028" fg:w="9075"/><text x="23.5801%" y="335.50"></text></g><g><title>psi_task_change (4,280 samples, 0.18%)</title><rect x="23.5309%" y="309" width="0.1793%" height="15" fill="rgb(250,0,22)" fg:x="561823" fg:w="4280"/><text x="23.7809%" y="319.50"></text></g><g><title>psi_group_change (3,817 samples, 0.16%)</title><rect x="23.5503%" y="293" width="0.1599%" height="15" fill="rgb(213,166,10)" fg:x="562286" fg:w="3817"/><text x="23.8003%" y="303.50"></text></g><g><title>record_times (646 samples, 0.03%)</title><rect x="23.6831%" y="277" width="0.0271%" height="15" fill="rgb(207,163,36)" fg:x="565457" fg:w="646"/><text x="23.9331%" y="287.50"></text></g><g><title>sched_clock_cpu (427 samples, 0.02%)</title><rect x="23.6923%" y="261" width="0.0179%" height="15" fill="rgb(208,122,22)" fg:x="565676" fg:w="427"/><text x="23.9423%" y="271.50"></text></g><g><title>sched_clock (355 samples, 0.01%)</title><rect x="23.6953%" y="245" width="0.0149%" height="15" fill="rgb(207,104,49)" fg:x="565748" fg:w="355"/><text x="23.9453%" y="255.50"></text></g><g><title>native_sched_clock (317 samples, 0.01%)</title><rect x="23.6969%" y="229" width="0.0133%" height="15" fill="rgb(248,211,50)" fg:x="565786" fg:w="317"/><text x="23.9469%" y="239.50"></text></g><g><title>resched_curr (340 samples, 0.01%)</title><rect x="23.7297%" y="293" width="0.0142%" height="15" fill="rgb(217,13,45)" fg:x="566570" fg:w="340"/><text x="23.9797%" y="303.50"></text></g><g><title>ttwu_do_wakeup (810 samples, 0.03%)</title><rect x="23.7102%" y="325" width="0.0339%" height="15" fill="rgb(211,216,49)" fg:x="566103" fg:w="810"/><text x="23.9602%" y="335.50"></text></g><g><title>check_preempt_curr (720 samples, 0.03%)</title><rect x="23.7139%" y="309" width="0.0302%" height="15" fill="rgb(221,58,53)" fg:x="566193" fg:w="720"/><text x="23.9639%" y="319.50"></text></g><g><title>ttwu_queue_wakelist (689 samples, 0.03%)</title><rect x="23.7441%" y="325" width="0.0289%" height="15" fill="rgb(220,112,41)" fg:x="566913" fg:w="689"/><text x="23.9941%" y="335.50"></text></g><g><title>__wake_up_common (23,588 samples, 0.99%)</title><rect x="22.8134%" y="373" width="0.9879%" height="15" fill="rgb(236,38,28)" fg:x="544691" fg:w="23588"/><text x="23.0634%" y="383.50"></text></g><g><title>autoremove_wake_function (23,102 samples, 0.97%)</title><rect x="22.8337%" y="357" width="0.9676%" height="15" fill="rgb(227,195,22)" fg:x="545177" fg:w="23102"/><text x="23.0837%" y="367.50"></text></g><g><title>try_to_wake_up (22,443 samples, 0.94%)</title><rect x="22.8613%" y="341" width="0.9400%" height="15" fill="rgb(214,55,33)" fg:x="545836" fg:w="22443"/><text x="23.1113%" y="351.50"></text></g><g><title>update_rq_clock (677 samples, 0.03%)</title><rect x="23.7729%" y="325" width="0.0284%" height="15" fill="rgb(248,80,13)" fg:x="567602" fg:w="677"/><text x="24.0229%" y="335.50"></text></g><g><title>_raw_spin_lock_irqsave (3,384 samples, 0.14%)</title><rect x="23.8013%" y="373" width="0.1417%" height="15" fill="rgb(238,52,6)" fg:x="568279" fg:w="3384"/><text x="24.0513%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,173 samples, 0.13%)</title><rect x="23.8101%" y="357" width="0.1329%" height="15" fill="rgb(224,198,47)" fg:x="568490" fg:w="3173"/><text x="24.0601%" y="367.50"></text></g><g><title>__wake_up_common_lock (27,270 samples, 1.14%)</title><rect x="22.8101%" y="389" width="1.1422%" height="15" fill="rgb(233,171,20)" fg:x="544612" fg:w="27270"/><text x="23.0601%" y="399.50"></text></g><g><title>btrfs_lookup_inode (184,246 samples, 7.72%)</title><rect x="16.2649%" y="437" width="7.7168%" height="15" fill="rgb(241,30,25)" fg:x="388339" fg:w="184246"/><text x="16.5149%" y="447.50">btrfs_looku..</text></g><g><title>btrfs_search_slot (183,659 samples, 7.69%)</title><rect x="16.2894%" y="421" width="7.6922%" height="15" fill="rgb(207,171,38)" fg:x="388926" fg:w="183659"/><text x="16.5394%" y="431.50">btrfs_searc..</text></g><g><title>unlock_up (28,949 samples, 1.21%)</title><rect x="22.7692%" y="405" width="1.2125%" height="15" fill="rgb(234,70,1)" fg:x="543636" fg:w="28949"/><text x="23.0192%" y="415.50"></text></g><g><title>btrfs_tree_unlock (699 samples, 0.03%)</title><rect x="23.9524%" y="389" width="0.0293%" height="15" fill="rgb(232,178,18)" fg:x="571886" fg:w="699"/><text x="24.2024%" y="399.50"></text></g><g><title>btrfs_mark_buffer_dirty (692 samples, 0.03%)</title><rect x="23.9817%" y="437" width="0.0290%" height="15" fill="rgb(241,78,40)" fg:x="572585" fg:w="692"/><text x="24.2317%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (370 samples, 0.02%)</title><rect x="23.9951%" y="421" width="0.0155%" height="15" fill="rgb(222,35,25)" fg:x="572907" fg:w="370"/><text x="24.2451%" y="431.50"></text></g><g><title>btrfs_release_delayed_inode (483 samples, 0.02%)</title><rect x="24.0106%" y="437" width="0.0202%" height="15" fill="rgb(207,92,16)" fg:x="573277" fg:w="483"/><text x="24.2606%" y="447.50"></text></g><g><title>select_task_rq_fair (994 samples, 0.04%)</title><rect x="24.1169%" y="357" width="0.0416%" height="15" fill="rgb(216,59,51)" fg:x="575813" fg:w="994"/><text x="24.3669%" y="367.50"></text></g><g><title>enqueue_entity (1,041 samples, 0.04%)</title><rect x="24.1753%" y="325" width="0.0436%" height="15" fill="rgb(213,80,28)" fg:x="577209" fg:w="1041"/><text x="24.4253%" y="335.50"></text></g><g><title>update_load_avg (347 samples, 0.01%)</title><rect x="24.2044%" y="309" width="0.0145%" height="15" fill="rgb(220,93,7)" fg:x="577903" fg:w="347"/><text x="24.4544%" y="319.50"></text></g><g><title>enqueue_task_fair (1,327 samples, 0.06%)</title><rect x="24.1665%" y="341" width="0.0556%" height="15" fill="rgb(225,24,44)" fg:x="576998" fg:w="1327"/><text x="24.4165%" y="351.50"></text></g><g><title>ttwu_do_activate (2,665 samples, 0.11%)</title><rect x="24.1623%" y="357" width="0.1116%" height="15" fill="rgb(243,74,40)" fg:x="576899" fg:w="2665"/><text x="24.4123%" y="367.50"></text></g><g><title>psi_task_change (1,238 samples, 0.05%)</title><rect x="24.2221%" y="341" width="0.0519%" height="15" fill="rgb(228,39,7)" fg:x="578326" fg:w="1238"/><text x="24.4721%" y="351.50"></text></g><g><title>psi_group_change (1,099 samples, 0.05%)</title><rect x="24.2279%" y="325" width="0.0460%" height="15" fill="rgb(227,79,8)" fg:x="578465" fg:w="1099"/><text x="24.4779%" y="335.50"></text></g><g><title>__wake_up_common (6,190 samples, 0.26%)</title><rect x="24.0404%" y="405" width="0.2593%" height="15" fill="rgb(236,58,11)" fg:x="573988" fg:w="6190"/><text x="24.2904%" y="415.50"></text></g><g><title>autoremove_wake_function (6,047 samples, 0.25%)</title><rect x="24.0464%" y="389" width="0.2533%" height="15" fill="rgb(249,63,35)" fg:x="574131" fg:w="6047"/><text x="24.2964%" y="399.50"></text></g><g><title>try_to_wake_up (5,865 samples, 0.25%)</title><rect x="24.0540%" y="373" width="0.2456%" height="15" fill="rgb(252,114,16)" fg:x="574313" fg:w="5865"/><text x="24.3040%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (278 samples, 0.01%)</title><rect x="24.2997%" y="405" width="0.0116%" height="15" fill="rgb(254,151,24)" fg:x="580178" fg:w="278"/><text x="24.5497%" y="415.50"></text></g><g><title>__wake_up_common_lock (6,558 samples, 0.27%)</title><rect x="24.0392%" y="421" width="0.2747%" height="15" fill="rgb(253,54,39)" fg:x="573959" fg:w="6558"/><text x="24.2892%" y="431.50"></text></g><g><title>btrfs_tree_unlock (319 samples, 0.01%)</title><rect x="24.3140%" y="421" width="0.0134%" height="15" fill="rgb(243,25,45)" fg:x="580520" fg:w="319"/><text x="24.5640%" y="431.50"></text></g><g><title>_raw_spin_lock (466 samples, 0.02%)</title><rect x="24.3740%" y="405" width="0.0195%" height="15" fill="rgb(234,134,9)" fg:x="581953" fg:w="466"/><text x="24.6240%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,569 samples, 0.07%)</title><rect x="24.3280%" y="421" width="0.0657%" height="15" fill="rgb(227,166,31)" fg:x="580855" fg:w="1569"/><text x="24.5780%" y="431.50"></text></g><g><title>btrfs_release_path (9,149 samples, 0.38%)</title><rect x="24.0309%" y="437" width="0.3832%" height="15" fill="rgb(245,143,41)" fg:x="573760" fg:w="9149"/><text x="24.2809%" y="447.50"></text></g><g><title>release_extent_buffer (485 samples, 0.02%)</title><rect x="24.3937%" y="421" width="0.0203%" height="15" fill="rgb(238,181,32)" fg:x="582424" fg:w="485"/><text x="24.6437%" y="431.50"></text></g><g><title>__btrfs_tree_lock (244 samples, 0.01%)</title><rect x="24.4251%" y="405" width="0.0102%" height="15" fill="rgb(224,113,18)" fg:x="583172" fg:w="244"/><text x="24.6751%" y="415.50"></text></g><g><title>btrfs_lock_root_node (245 samples, 0.01%)</title><rect x="24.4251%" y="421" width="0.0103%" height="15" fill="rgb(240,229,28)" fg:x="583172" fg:w="245"/><text x="24.6751%" y="431.50"></text></g><g><title>btrfs_search_slot (749 samples, 0.03%)</title><rect x="24.4141%" y="437" width="0.0314%" height="15" fill="rgb(250,185,3)" fg:x="582909" fg:w="749"/><text x="24.6641%" y="447.50"></text></g><g><title>finish_one_item (1,255 samples, 0.05%)</title><rect x="24.4454%" y="437" width="0.0526%" height="15" fill="rgb(212,59,25)" fg:x="583658" fg:w="1255"/><text x="24.6954%" y="447.50"></text></g><g><title>read_extent_buffer (272 samples, 0.01%)</title><rect x="24.4980%" y="437" width="0.0114%" height="15" fill="rgb(221,87,20)" fg:x="584913" fg:w="272"/><text x="24.7480%" y="447.50"></text></g><g><title>__btrfs_update_delayed_inode (236,826 samples, 9.92%)</title><rect x="14.6366%" y="453" width="9.9190%" height="15" fill="rgb(213,74,28)" fg:x="349464" fg:w="236826"/><text x="14.8866%" y="463.50">__btrfs_update..</text></g><g><title>write_extent_buffer (1,104 samples, 0.05%)</title><rect x="24.5094%" y="437" width="0.0462%" height="15" fill="rgb(224,132,34)" fg:x="585186" fg:w="1104"/><text x="24.7594%" y="447.50"></text></g><g><title>__radix_tree_lookup (316 samples, 0.01%)</title><rect x="24.5857%" y="437" width="0.0132%" height="15" fill="rgb(222,101,24)" fg:x="587008" fg:w="316"/><text x="24.8357%" y="447.50"></text></g><g><title>balance_dirty_pages_ratelimited (824 samples, 0.03%)</title><rect x="24.5648%" y="453" width="0.0345%" height="15" fill="rgb(254,142,4)" fg:x="586509" fg:w="824"/><text x="24.8148%" y="463.50"></text></g><g><title>btrfs_balance_delayed_items (443 samples, 0.02%)</title><rect x="24.6200%" y="437" width="0.0186%" height="15" fill="rgb(230,229,49)" fg:x="587827" fg:w="443"/><text x="24.8700%" y="447.50"></text></g><g><title>_raw_spin_lock (297 samples, 0.01%)</title><rect x="24.6442%" y="405" width="0.0124%" height="15" fill="rgb(238,70,47)" fg:x="588403" fg:w="297"/><text x="24.8942%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (252 samples, 0.01%)</title><rect x="24.6460%" y="389" width="0.0106%" height="15" fill="rgb(231,160,17)" fg:x="588448" fg:w="252"/><text x="24.8960%" y="399.50"></text></g><g><title>__queue_work (1,165 samples, 0.05%)</title><rect x="24.6416%" y="421" width="0.0488%" height="15" fill="rgb(218,68,53)" fg:x="588343" fg:w="1165"/><text x="24.8916%" y="431.50"></text></g><g><title>try_to_wake_up (745 samples, 0.03%)</title><rect x="24.6592%" y="405" width="0.0312%" height="15" fill="rgb(236,111,10)" fg:x="588763" fg:w="745"/><text x="24.9092%" y="415.50"></text></g><g><title>btrfs_btree_balance_dirty (2,154 samples, 0.09%)</title><rect x="24.6006%" y="453" width="0.0902%" height="15" fill="rgb(224,34,41)" fg:x="587363" fg:w="2154"/><text x="24.8506%" y="463.50"></text></g><g><title>queue_work_on (1,198 samples, 0.05%)</title><rect x="24.6406%" y="437" width="0.0502%" height="15" fill="rgb(241,118,19)" fg:x="588319" fg:w="1198"/><text x="24.8906%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (588 samples, 0.02%)</title><rect x="24.7005%" y="453" width="0.0246%" height="15" fill="rgb(238,129,25)" fg:x="589749" fg:w="588"/><text x="24.9505%" y="463.50"></text></g><g><title>kmem_cache_alloc (720 samples, 0.03%)</title><rect x="24.7269%" y="453" width="0.0302%" height="15" fill="rgb(238,22,31)" fg:x="590378" fg:w="720"/><text x="24.9769%" y="463.50"></text></g><g><title>kmem_cache_free (1,175 samples, 0.05%)</title><rect x="24.7570%" y="453" width="0.0492%" height="15" fill="rgb(222,174,48)" fg:x="591098" fg:w="1175"/><text x="25.0070%" y="463.50"></text></g><g><title>mutex_lock (557 samples, 0.02%)</title><rect x="24.8062%" y="453" width="0.0233%" height="15" fill="rgb(206,152,40)" fg:x="592273" fg:w="557"/><text x="25.0562%" y="463.50"></text></g><g><title>mutex_unlock (552 samples, 0.02%)</title><rect x="24.8296%" y="453" width="0.0231%" height="15" fill="rgb(218,99,54)" fg:x="592830" fg:w="552"/><text x="25.0796%" y="463.50"></text></g><g><title>_raw_spin_lock (756 samples, 0.03%)</title><rect x="24.9288%" y="421" width="0.0317%" height="15" fill="rgb(220,174,26)" fg:x="595199" fg:w="756"/><text x="25.1788%" y="431.50"></text></g><g><title>join_transaction (1,609 samples, 0.07%)</title><rect x="24.8933%" y="437" width="0.0674%" height="15" fill="rgb(245,116,9)" fg:x="594351" fg:w="1609"/><text x="25.1433%" y="447.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (254,929 samples, 10.68%)</title><rect x="14.3258%" y="469" width="10.6772%" height="15" fill="rgb(209,72,35)" fg:x="342043" fg:w="254929"/><text x="14.5758%" y="479.50">btrfs_commit_ino..</text></g><g><title>start_transaction (3,584 samples, 0.15%)</title><rect x="24.8529%" y="453" width="0.1501%" height="15" fill="rgb(226,126,21)" fg:x="593388" fg:w="3584"/><text x="25.1029%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,012 samples, 0.04%)</title><rect x="24.9607%" y="437" width="0.0424%" height="15" fill="rgb(227,192,1)" fg:x="595960" fg:w="1012"/><text x="25.2107%" y="447.50"></text></g><g><title>btrfs_get_32 (698 samples, 0.03%)</title><rect x="25.0629%" y="437" width="0.0292%" height="15" fill="rgb(237,180,29)" fg:x="598400" fg:w="698"/><text x="25.3129%" y="447.50"></text></g><g><title>btrfs_get_token_32 (525 samples, 0.02%)</title><rect x="25.0921%" y="437" width="0.0220%" height="15" fill="rgb(230,197,35)" fg:x="599098" fg:w="525"/><text x="25.3421%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (857 samples, 0.04%)</title><rect x="25.1141%" y="437" width="0.0359%" height="15" fill="rgb(246,193,31)" fg:x="599623" fg:w="857"/><text x="25.3641%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (391 samples, 0.02%)</title><rect x="25.1336%" y="421" width="0.0164%" height="15" fill="rgb(241,36,4)" fg:x="600089" fg:w="391"/><text x="25.3836%" y="431.50"></text></g><g><title>btrfs_set_token_32 (340 samples, 0.01%)</title><rect x="25.1500%" y="437" width="0.0142%" height="15" fill="rgb(241,130,17)" fg:x="600480" fg:w="340"/><text x="25.4000%" y="447.50"></text></g><g><title>leaf_space_used (788 samples, 0.03%)</title><rect x="25.1642%" y="437" width="0.0330%" height="15" fill="rgb(206,137,32)" fg:x="600820" fg:w="788"/><text x="25.4142%" y="447.50"></text></g><g><title>btrfs_get_32 (581 samples, 0.02%)</title><rect x="25.1729%" y="421" width="0.0243%" height="15" fill="rgb(237,228,51)" fg:x="601027" fg:w="581"/><text x="25.4229%" y="431.50"></text></g><g><title>memcpy_extent_buffer (600 samples, 0.03%)</title><rect x="25.1972%" y="437" width="0.0251%" height="15" fill="rgb(243,6,42)" fg:x="601608" fg:w="600"/><text x="25.4472%" y="447.50"></text></g><g><title>memmove_extent_buffer (272 samples, 0.01%)</title><rect x="25.2224%" y="437" width="0.0114%" height="15" fill="rgb(251,74,28)" fg:x="602208" fg:w="272"/><text x="25.4724%" y="447.50"></text></g><g><title>btrfs_del_items (5,171 samples, 0.22%)</title><rect x="25.0172%" y="453" width="0.2166%" height="15" fill="rgb(218,20,49)" fg:x="597310" fg:w="5171"/><text x="25.2672%" y="463.50"></text></g><g><title>__task_rq_lock (364 samples, 0.02%)</title><rect x="25.4479%" y="357" width="0.0152%" height="15" fill="rgb(238,28,14)" fg:x="607594" fg:w="364"/><text x="25.6979%" y="367.50"></text></g><g><title>_raw_spin_lock (354 samples, 0.01%)</title><rect x="25.4484%" y="341" width="0.0148%" height="15" fill="rgb(229,40,46)" fg:x="607604" fg:w="354"/><text x="25.6984%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (347 samples, 0.01%)</title><rect x="25.4487%" y="325" width="0.0145%" height="15" fill="rgb(244,195,20)" fg:x="607611" fg:w="347"/><text x="25.6987%" y="335.50"></text></g><g><title>select_task_rq_fair (909 samples, 0.04%)</title><rect x="25.4804%" y="357" width="0.0381%" height="15" fill="rgb(253,56,35)" fg:x="608368" fg:w="909"/><text x="25.7304%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (245 samples, 0.01%)</title><rect x="25.5082%" y="341" width="0.0103%" height="15" fill="rgb(210,149,44)" fg:x="609032" fg:w="245"/><text x="25.7582%" y="351.50"></text></g><g><title>enqueue_entity (888 samples, 0.04%)</title><rect x="25.5341%" y="325" width="0.0372%" height="15" fill="rgb(240,135,12)" fg:x="609650" fg:w="888"/><text x="25.7841%" y="335.50"></text></g><g><title>update_load_avg (311 samples, 0.01%)</title><rect x="25.5582%" y="309" width="0.0130%" height="15" fill="rgb(251,24,50)" fg:x="610227" fg:w="311"/><text x="25.8082%" y="319.50"></text></g><g><title>enqueue_task_fair (1,134 samples, 0.05%)</title><rect x="25.5246%" y="341" width="0.0475%" height="15" fill="rgb(243,200,47)" fg:x="609424" fg:w="1134"/><text x="25.7746%" y="351.50"></text></g><g><title>ttwu_do_activate (2,325 samples, 0.10%)</title><rect x="25.5205%" y="357" width="0.0974%" height="15" fill="rgb(224,166,26)" fg:x="609326" fg:w="2325"/><text x="25.7705%" y="367.50"></text></g><g><title>psi_task_change (1,093 samples, 0.05%)</title><rect x="25.5721%" y="341" width="0.0458%" height="15" fill="rgb(233,0,47)" fg:x="610558" fg:w="1093"/><text x="25.8221%" y="351.50"></text></g><g><title>psi_group_change (956 samples, 0.04%)</title><rect x="25.5778%" y="325" width="0.0400%" height="15" fill="rgb(253,80,5)" fg:x="610695" fg:w="956"/><text x="25.8278%" y="335.50"></text></g><g><title>ttwu_do_wakeup (257 samples, 0.01%)</title><rect x="25.6179%" y="357" width="0.0108%" height="15" fill="rgb(214,133,25)" fg:x="611651" fg:w="257"/><text x="25.8679%" y="367.50"></text></g><g><title>__wake_up_common (9,532 samples, 0.40%)</title><rect x="25.2448%" y="405" width="0.3992%" height="15" fill="rgb(209,27,14)" fg:x="602744" fg:w="9532"/><text x="25.4948%" y="415.50"></text></g><g><title>autoremove_wake_function (9,364 samples, 0.39%)</title><rect x="25.2518%" y="389" width="0.3922%" height="15" fill="rgb(219,102,51)" fg:x="602912" fg:w="9364"/><text x="25.5018%" y="399.50"></text></g><g><title>try_to_wake_up (9,254 samples, 0.39%)</title><rect x="25.2565%" y="373" width="0.3876%" height="15" fill="rgb(237,18,16)" fg:x="603022" fg:w="9254"/><text x="25.5065%" y="383.50"></text></g><g><title>__wake_up_common_lock (9,807 samples, 0.41%)</title><rect x="25.2430%" y="421" width="0.4107%" height="15" fill="rgb(241,85,17)" fg:x="602700" fg:w="9807"/><text x="25.4930%" y="431.50"></text></g><g><title>btrfs_tree_unlock (744 samples, 0.03%)</title><rect x="25.6537%" y="421" width="0.0312%" height="15" fill="rgb(236,90,42)" fg:x="612507" fg:w="744"/><text x="25.9037%" y="431.50"></text></g><g><title>_raw_spin_lock (473 samples, 0.02%)</title><rect x="25.7365%" y="405" width="0.0198%" height="15" fill="rgb(249,57,21)" fg:x="614484" fg:w="473"/><text x="25.9865%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,691 samples, 0.07%)</title><rect x="25.6857%" y="421" width="0.0708%" height="15" fill="rgb(243,12,36)" fg:x="613270" fg:w="1691"/><text x="25.9357%" y="431.50"></text></g><g><title>btrfs_free_path (12,977 samples, 0.54%)</title><rect x="25.2338%" y="453" width="0.5435%" height="15" fill="rgb(253,128,47)" fg:x="602481" fg:w="12977"/><text x="25.4838%" y="463.50"></text></g><g><title>btrfs_release_path (12,958 samples, 0.54%)</title><rect x="25.2346%" y="437" width="0.5427%" height="15" fill="rgb(207,33,20)" fg:x="602500" fg:w="12958"/><text x="25.4846%" y="447.50"></text></g><g><title>release_extent_buffer (497 samples, 0.02%)</title><rect x="25.7565%" y="421" width="0.0208%" height="15" fill="rgb(233,215,35)" fg:x="614961" fg:w="497"/><text x="26.0065%" y="431.50"></text></g><g><title>_raw_read_lock (1,253 samples, 0.05%)</title><rect x="25.9738%" y="405" width="0.0525%" height="15" fill="rgb(249,188,52)" fg:x="620149" fg:w="1253"/><text x="26.2238%" y="415.50"></text></g><g><title>__list_del_entry_valid (428 samples, 0.02%)</title><rect x="26.0341%" y="389" width="0.0179%" height="15" fill="rgb(225,12,32)" fg:x="621589" fg:w="428"/><text x="26.2841%" y="399.50"></text></g><g><title>finish_wait (9,577 samples, 0.40%)</title><rect x="26.0315%" y="405" width="0.4011%" height="15" fill="rgb(247,98,14)" fg:x="621528" fg:w="9577"/><text x="26.2815%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (9,088 samples, 0.38%)</title><rect x="26.0520%" y="389" width="0.3806%" height="15" fill="rgb(247,219,48)" fg:x="622017" fg:w="9088"/><text x="26.3020%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,774 samples, 0.37%)</title><rect x="26.0652%" y="373" width="0.3675%" height="15" fill="rgb(253,60,48)" fg:x="622331" fg:w="8774"/><text x="26.3152%" y="383.50"></text></g><g><title>__list_add_valid (531 samples, 0.02%)</title><rect x="26.4891%" y="389" width="0.0222%" height="15" fill="rgb(245,15,52)" fg:x="632452" fg:w="531"/><text x="26.7391%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (24,661 samples, 1.03%)</title><rect x="26.5113%" y="389" width="1.0329%" height="15" fill="rgb(220,133,28)" fg:x="632983" fg:w="24661"/><text x="26.7613%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (23,790 samples, 1.00%)</title><rect x="26.5478%" y="373" width="0.9964%" height="15" fill="rgb(217,180,4)" fg:x="633854" fg:w="23790"/><text x="26.7978%" y="383.50"></text></g><g><title>_raw_spin_unlock_irqrestore (307 samples, 0.01%)</title><rect x="27.5442%" y="389" width="0.0129%" height="15" fill="rgb(251,24,1)" fg:x="657644" fg:w="307"/><text x="27.7942%" y="399.50"></text></g><g><title>prepare_to_wait_event (26,822 samples, 1.12%)</title><rect x="26.4337%" y="405" width="1.1234%" height="15" fill="rgb(212,185,49)" fg:x="631131" fg:w="26822"/><text x="26.6837%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (17,949 samples, 0.75%)</title><rect x="27.5571%" y="405" width="0.7518%" height="15" fill="rgb(215,175,22)" fg:x="657953" fg:w="17949"/><text x="27.8071%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (13,040 samples, 0.55%)</title><rect x="27.7627%" y="389" width="0.5462%" height="15" fill="rgb(250,205,14)" fg:x="662862" fg:w="13040"/><text x="28.0127%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (627 samples, 0.03%)</title><rect x="28.3478%" y="373" width="0.0263%" height="15" fill="rgb(225,211,22)" fg:x="676832" fg:w="627"/><text x="28.5978%" y="383.50"></text></g><g><title>update_cfs_group (277 samples, 0.01%)</title><rect x="28.4232%" y="341" width="0.0116%" height="15" fill="rgb(251,179,42)" fg:x="678631" fg:w="277"/><text x="28.6732%" y="351.50"></text></g><g><title>update_curr (1,188 samples, 0.05%)</title><rect x="28.4348%" y="341" width="0.0498%" height="15" fill="rgb(208,216,51)" fg:x="678908" fg:w="1188"/><text x="28.6848%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (246 samples, 0.01%)</title><rect x="28.5011%" y="325" width="0.0103%" height="15" fill="rgb(235,36,11)" fg:x="680491" fg:w="246"/><text x="28.7511%" y="335.50"></text></g><g><title>__update_load_avg_se (273 samples, 0.01%)</title><rect x="28.5114%" y="325" width="0.0114%" height="15" fill="rgb(213,189,28)" fg:x="680737" fg:w="273"/><text x="28.7614%" y="335.50"></text></g><g><title>dequeue_entity (3,052 samples, 0.13%)</title><rect x="28.3967%" y="357" width="0.1278%" height="15" fill="rgb(227,203,42)" fg:x="677998" fg:w="3052"/><text x="28.6467%" y="367.50"></text></g><g><title>update_load_avg (954 samples, 0.04%)</title><rect x="28.4846%" y="341" width="0.0400%" height="15" fill="rgb(244,72,36)" fg:x="680096" fg:w="954"/><text x="28.7346%" y="351.50"></text></g><g><title>dequeue_task_fair (3,685 samples, 0.15%)</title><rect x="28.3797%" y="373" width="0.1543%" height="15" fill="rgb(213,53,17)" fg:x="677593" fg:w="3685"/><text x="28.6297%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (719 samples, 0.03%)</title><rect x="28.5542%" y="357" width="0.0301%" height="15" fill="rgb(207,167,3)" fg:x="681758" fg:w="719"/><text x="28.8042%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (627 samples, 0.03%)</title><rect x="28.5580%" y="341" width="0.0263%" height="15" fill="rgb(216,98,30)" fg:x="681850" fg:w="627"/><text x="28.8080%" y="351.50"></text></g><g><title>native_write_msr (576 samples, 0.02%)</title><rect x="28.5602%" y="325" width="0.0241%" height="15" fill="rgb(236,123,15)" fg:x="681901" fg:w="576"/><text x="28.8102%" y="335.50"></text></g><g><title>finish_task_switch (1,317 samples, 0.06%)</title><rect x="28.5341%" y="373" width="0.0552%" height="15" fill="rgb(248,81,50)" fg:x="681278" fg:w="1317"/><text x="28.7841%" y="383.50"></text></g><g><title>newidle_balance (295 samples, 0.01%)</title><rect x="28.5976%" y="357" width="0.0124%" height="15" fill="rgb(214,120,4)" fg:x="682794" fg:w="295"/><text x="28.8476%" y="367.50"></text></g><g><title>pick_next_task_fair (654 samples, 0.03%)</title><rect x="28.5895%" y="373" width="0.0274%" height="15" fill="rgb(208,179,34)" fg:x="682601" fg:w="654"/><text x="28.8395%" y="383.50"></text></g><g><title>__update_idle_core (500 samples, 0.02%)</title><rect x="28.6220%" y="357" width="0.0209%" height="15" fill="rgb(227,140,7)" fg:x="683378" fg:w="500"/><text x="28.8720%" y="367.50"></text></g><g><title>pick_next_task_idle (625 samples, 0.03%)</title><rect x="28.6169%" y="373" width="0.0262%" height="15" fill="rgb(214,22,6)" fg:x="683255" fg:w="625"/><text x="28.8669%" y="383.50"></text></g><g><title>psi_task_change (2,623 samples, 0.11%)</title><rect x="28.6430%" y="373" width="0.1099%" height="15" fill="rgb(207,137,27)" fg:x="683880" fg:w="2623"/><text x="28.8930%" y="383.50"></text></g><g><title>psi_group_change (2,264 samples, 0.09%)</title><rect x="28.6581%" y="357" width="0.0948%" height="15" fill="rgb(210,8,46)" fg:x="684239" fg:w="2264"/><text x="28.9081%" y="367.50"></text></g><g><title>record_times (522 samples, 0.02%)</title><rect x="28.7310%" y="341" width="0.0219%" height="15" fill="rgb(240,16,54)" fg:x="685981" fg:w="522"/><text x="28.9810%" y="351.50"></text></g><g><title>sched_clock_cpu (340 samples, 0.01%)</title><rect x="28.7387%" y="325" width="0.0142%" height="15" fill="rgb(211,209,29)" fg:x="686163" fg:w="340"/><text x="28.9887%" y="335.50"></text></g><g><title>sched_clock (297 samples, 0.01%)</title><rect x="28.7405%" y="309" width="0.0124%" height="15" fill="rgb(226,228,24)" fg:x="686206" fg:w="297"/><text x="28.9905%" y="319.50"></text></g><g><title>native_sched_clock (274 samples, 0.01%)</title><rect x="28.7414%" y="293" width="0.0115%" height="15" fill="rgb(222,84,9)" fg:x="686229" fg:w="274"/><text x="28.9914%" y="303.50"></text></g><g><title>psi_task_switch (327 samples, 0.01%)</title><rect x="28.7529%" y="373" width="0.0137%" height="15" fill="rgb(234,203,30)" fg:x="686503" fg:w="327"/><text x="29.0029%" y="383.50"></text></g><g><title>put_prev_task_fair (258 samples, 0.01%)</title><rect x="28.7666%" y="373" width="0.0108%" height="15" fill="rgb(238,109,14)" fg:x="686830" fg:w="258"/><text x="29.0166%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (68,589 samples, 2.87%)</title><rect x="25.9181%" y="421" width="2.8727%" height="15" fill="rgb(233,206,34)" fg:x="618819" fg:w="68589"/><text x="26.1681%" y="431.50">__..</text></g><g><title>schedule (11,506 samples, 0.48%)</title><rect x="28.3089%" y="405" width="0.4819%" height="15" fill="rgb(220,167,47)" fg:x="675902" fg:w="11506"/><text x="28.5589%" y="415.50"></text></g><g><title>__schedule (11,388 samples, 0.48%)</title><rect x="28.3138%" y="389" width="0.4770%" height="15" fill="rgb(238,105,10)" fg:x="676020" fg:w="11388"/><text x="28.5638%" y="399.50"></text></g><g><title>update_rq_clock (277 samples, 0.01%)</title><rect x="28.7792%" y="373" width="0.0116%" height="15" fill="rgb(213,227,17)" fg:x="687131" fg:w="277"/><text x="29.0292%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (70,036 samples, 2.93%)</title><rect x="25.9079%" y="437" width="2.9333%" height="15" fill="rgb(217,132,38)" fg:x="618576" fg:w="70036"/><text x="26.1579%" y="447.50">__..</text></g><g><title>btrfs_root_node (1,203 samples, 0.05%)</title><rect x="28.7908%" y="421" width="0.0504%" height="15" fill="rgb(242,146,4)" fg:x="687409" fg:w="1203"/><text x="29.0408%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (242 samples, 0.01%)</title><rect x="28.8692%" y="405" width="0.0101%" height="15" fill="rgb(212,61,9)" fg:x="689281" fg:w="242"/><text x="29.1192%" y="415.50"></text></g><g><title>prepare_to_wait_event (517 samples, 0.02%)</title><rect x="28.8597%" y="421" width="0.0217%" height="15" fill="rgb(247,126,22)" fg:x="689053" fg:w="517"/><text x="29.1097%" y="431.50"></text></g><g><title>update_curr (355 samples, 0.01%)</title><rect x="28.9238%" y="357" width="0.0149%" height="15" fill="rgb(220,196,2)" fg:x="690583" fg:w="355"/><text x="29.1738%" y="367.50"></text></g><g><title>dequeue_entity (961 samples, 0.04%)</title><rect x="28.9114%" y="373" width="0.0402%" height="15" fill="rgb(208,46,4)" fg:x="690287" fg:w="961"/><text x="29.1614%" y="383.50"></text></g><g><title>update_load_avg (310 samples, 0.01%)</title><rect x="28.9386%" y="357" width="0.0130%" height="15" fill="rgb(252,104,46)" fg:x="690938" fg:w="310"/><text x="29.1886%" y="367.50"></text></g><g><title>dequeue_task_fair (1,155 samples, 0.05%)</title><rect x="28.9059%" y="389" width="0.0484%" height="15" fill="rgb(237,152,48)" fg:x="690157" fg:w="1155"/><text x="29.1559%" y="399.50"></text></g><g><title>finish_task_switch (420 samples, 0.02%)</title><rect x="28.9543%" y="389" width="0.0176%" height="15" fill="rgb(221,59,37)" fg:x="691312" fg:w="420"/><text x="29.2043%" y="399.50"></text></g><g><title>psi_task_change (862 samples, 0.04%)</title><rect x="28.9882%" y="389" width="0.0361%" height="15" fill="rgb(209,202,51)" fg:x="692120" fg:w="862"/><text x="29.2382%" y="399.50"></text></g><g><title>psi_group_change (737 samples, 0.03%)</title><rect x="28.9934%" y="373" width="0.0309%" height="15" fill="rgb(228,81,30)" fg:x="692245" fg:w="737"/><text x="29.2434%" y="383.50"></text></g><g><title>__btrfs_tree_lock (4,612 samples, 0.19%)</title><rect x="28.8412%" y="437" width="0.1932%" height="15" fill="rgb(227,42,39)" fg:x="688612" fg:w="4612"/><text x="29.0912%" y="447.50"></text></g><g><title>schedule (3,654 samples, 0.15%)</title><rect x="28.8814%" y="421" width="0.1530%" height="15" fill="rgb(221,26,2)" fg:x="689570" fg:w="3654"/><text x="29.1314%" y="431.50"></text></g><g><title>__schedule (3,604 samples, 0.15%)</title><rect x="28.8834%" y="405" width="0.1509%" height="15" fill="rgb(254,61,31)" fg:x="689620" fg:w="3604"/><text x="29.1334%" y="415.50"></text></g><g><title>_cond_resched (285 samples, 0.01%)</title><rect x="29.1099%" y="405" width="0.0119%" height="15" fill="rgb(222,173,38)" fg:x="695028" fg:w="285"/><text x="29.3599%" y="415.50"></text></g><g><title>_raw_write_lock (1,102 samples, 0.05%)</title><rect x="29.1257%" y="405" width="0.0462%" height="15" fill="rgb(218,50,12)" fg:x="695405" fg:w="1102"/><text x="29.3757%" y="415.50"></text></g><g><title>__list_del_entry_valid (297 samples, 0.01%)</title><rect x="29.1745%" y="389" width="0.0124%" height="15" fill="rgb(223,88,40)" fg:x="696570" fg:w="297"/><text x="29.4245%" y="399.50"></text></g><g><title>finish_wait (6,550 samples, 0.27%)</title><rect x="29.1720%" y="405" width="0.2743%" height="15" fill="rgb(237,54,19)" fg:x="696509" fg:w="6550"/><text x="29.4220%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (6,192 samples, 0.26%)</title><rect x="29.1870%" y="389" width="0.2593%" height="15" fill="rgb(251,129,25)" fg:x="696867" fg:w="6192"/><text x="29.4370%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,837 samples, 0.24%)</title><rect x="29.2018%" y="373" width="0.2445%" height="15" fill="rgb(238,97,19)" fg:x="697222" fg:w="5837"/><text x="29.4518%" y="383.50"></text></g><g><title>__list_add_valid (418 samples, 0.02%)</title><rect x="29.5032%" y="389" width="0.0175%" height="15" fill="rgb(240,169,18)" fg:x="704417" fg:w="418"/><text x="29.7532%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (15,780 samples, 0.66%)</title><rect x="29.5207%" y="389" width="0.6609%" height="15" fill="rgb(230,187,49)" fg:x="704835" fg:w="15780"/><text x="29.7707%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (14,795 samples, 0.62%)</title><rect x="29.5620%" y="373" width="0.6197%" height="15" fill="rgb(209,44,26)" fg:x="705820" fg:w="14795"/><text x="29.8120%" y="383.50"></text></g><g><title>prepare_to_wait_event (17,851 samples, 0.75%)</title><rect x="29.4487%" y="405" width="0.7477%" height="15" fill="rgb(244,0,6)" fg:x="703116" fg:w="17851"/><text x="29.6987%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (352 samples, 0.01%)</title><rect x="30.1816%" y="389" width="0.0147%" height="15" fill="rgb(248,18,21)" fg:x="720615" fg:w="352"/><text x="30.4316%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (27,031 samples, 1.13%)</title><rect x="30.1964%" y="405" width="1.1321%" height="15" fill="rgb(245,180,19)" fg:x="720967" fg:w="27031"/><text x="30.4464%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (14,320 samples, 0.60%)</title><rect x="30.7287%" y="389" width="0.5998%" height="15" fill="rgb(252,118,36)" fg:x="733678" fg:w="14320"/><text x="30.9787%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (564 samples, 0.02%)</title><rect x="31.3719%" y="373" width="0.0236%" height="15" fill="rgb(210,224,19)" fg:x="749034" fg:w="564"/><text x="31.6219%" y="383.50"></text></g><g><title>update_cfs_group (325 samples, 0.01%)</title><rect x="31.4461%" y="341" width="0.0136%" height="15" fill="rgb(218,30,24)" fg:x="750807" fg:w="325"/><text x="31.6961%" y="351.50"></text></g><g><title>__calc_delta (244 samples, 0.01%)</title><rect x="31.4832%" y="325" width="0.0102%" height="15" fill="rgb(219,75,50)" fg:x="751692" fg:w="244"/><text x="31.7332%" y="335.50"></text></g><g><title>update_curr (1,207 samples, 0.05%)</title><rect x="31.4598%" y="341" width="0.0506%" height="15" fill="rgb(234,72,50)" fg:x="751132" fg:w="1207"/><text x="31.7098%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (289 samples, 0.01%)</title><rect x="31.5276%" y="325" width="0.0121%" height="15" fill="rgb(219,100,48)" fg:x="752751" fg:w="289"/><text x="31.7776%" y="335.50"></text></g><g><title>__update_load_avg_se (331 samples, 0.01%)</title><rect x="31.5397%" y="325" width="0.0139%" height="15" fill="rgb(253,5,41)" fg:x="753040" fg:w="331"/><text x="31.7897%" y="335.50"></text></g><g><title>dequeue_entity (3,230 samples, 0.14%)</title><rect x="31.4194%" y="357" width="0.1353%" height="15" fill="rgb(247,181,11)" fg:x="750169" fg:w="3230"/><text x="31.6694%" y="367.50"></text></g><g><title>update_load_avg (1,060 samples, 0.04%)</title><rect x="31.5103%" y="341" width="0.0444%" height="15" fill="rgb(222,223,25)" fg:x="752339" fg:w="1060"/><text x="31.7603%" y="351.50"></text></g><g><title>dequeue_task_fair (3,843 samples, 0.16%)</title><rect x="31.4041%" y="373" width="0.1610%" height="15" fill="rgb(214,198,28)" fg:x="749804" fg:w="3843"/><text x="31.6541%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (735 samples, 0.03%)</title><rect x="31.5872%" y="357" width="0.0308%" height="15" fill="rgb(230,46,43)" fg:x="754175" fg:w="735"/><text x="31.8372%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (637 samples, 0.03%)</title><rect x="31.5913%" y="341" width="0.0267%" height="15" fill="rgb(233,65,53)" fg:x="754273" fg:w="637"/><text x="31.8413%" y="351.50"></text></g><g><title>native_write_msr (591 samples, 0.02%)</title><rect x="31.5932%" y="325" width="0.0248%" height="15" fill="rgb(221,121,27)" fg:x="754319" fg:w="591"/><text x="31.8432%" y="335.50"></text></g><g><title>finish_task_switch (1,386 samples, 0.06%)</title><rect x="31.5651%" y="373" width="0.0581%" height="15" fill="rgb(247,70,47)" fg:x="753647" fg:w="1386"/><text x="31.8151%" y="383.50"></text></g><g><title>newidle_balance (311 samples, 0.01%)</title><rect x="31.6291%" y="357" width="0.0130%" height="15" fill="rgb(228,85,35)" fg:x="755176" fg:w="311"/><text x="31.8791%" y="367.50"></text></g><g><title>pick_next_task_fair (574 samples, 0.02%)</title><rect x="31.6233%" y="373" width="0.0240%" height="15" fill="rgb(209,50,18)" fg:x="755036" fg:w="574"/><text x="31.8733%" y="383.50"></text></g><g><title>__update_idle_core (584 samples, 0.02%)</title><rect x="31.6522%" y="357" width="0.0245%" height="15" fill="rgb(250,19,35)" fg:x="755727" fg:w="584"/><text x="31.9022%" y="367.50"></text></g><g><title>pick_next_task_idle (705 samples, 0.03%)</title><rect x="31.6473%" y="373" width="0.0295%" height="15" fill="rgb(253,107,29)" fg:x="755610" fg:w="705"/><text x="31.8973%" y="383.50"></text></g><g><title>psi_task_change (3,099 samples, 0.13%)</title><rect x="31.6768%" y="373" width="0.1298%" height="15" fill="rgb(252,179,29)" fg:x="756315" fg:w="3099"/><text x="31.9268%" y="383.50"></text></g><g><title>psi_group_change (2,645 samples, 0.11%)</title><rect x="31.6959%" y="357" width="0.1108%" height="15" fill="rgb(238,194,6)" fg:x="756769" fg:w="2645"/><text x="31.9459%" y="367.50"></text></g><g><title>record_times (750 samples, 0.03%)</title><rect x="31.7752%" y="341" width="0.0314%" height="15" fill="rgb(238,164,29)" fg:x="758664" fg:w="750"/><text x="32.0252%" y="351.50"></text></g><g><title>sched_clock_cpu (501 samples, 0.02%)</title><rect x="31.7857%" y="325" width="0.0210%" height="15" fill="rgb(224,25,9)" fg:x="758913" fg:w="501"/><text x="32.0357%" y="335.50"></text></g><g><title>sched_clock (433 samples, 0.02%)</title><rect x="31.7885%" y="309" width="0.0181%" height="15" fill="rgb(244,153,23)" fg:x="758981" fg:w="433"/><text x="32.0385%" y="319.50"></text></g><g><title>native_sched_clock (411 samples, 0.02%)</title><rect x="31.7894%" y="293" width="0.0172%" height="15" fill="rgb(212,203,14)" fg:x="759003" fg:w="411"/><text x="32.0394%" y="303.50"></text></g><g><title>psi_task_switch (329 samples, 0.01%)</title><rect x="31.8066%" y="373" width="0.0138%" height="15" fill="rgb(220,164,20)" fg:x="759414" fg:w="329"/><text x="32.0566%" y="383.50"></text></g><g><title>__schedule (12,079 samples, 0.51%)</title><rect x="31.3388%" y="389" width="0.5059%" height="15" fill="rgb(222,203,48)" fg:x="748244" fg:w="12079"/><text x="31.5888%" y="399.50"></text></g><g><title>update_rq_clock (316 samples, 0.01%)</title><rect x="31.8315%" y="373" width="0.0132%" height="15" fill="rgb(215,159,22)" fg:x="760007" fg:w="316"/><text x="32.0815%" y="383.50"></text></g><g><title>__btrfs_tree_lock (66,808 samples, 2.80%)</title><rect x="29.0466%" y="421" width="2.7981%" height="15" fill="rgb(216,183,47)" fg:x="693516" fg:w="66808"/><text x="29.2966%" y="431.50">__..</text></g><g><title>schedule (12,326 samples, 0.52%)</title><rect x="31.3285%" y="405" width="0.5163%" height="15" fill="rgb(229,195,25)" fg:x="747998" fg:w="12326"/><text x="31.5785%" y="415.50"></text></g><g><title>btrfs_lock_root_node (67,555 samples, 2.83%)</title><rect x="29.0446%" y="437" width="2.8294%" height="15" fill="rgb(224,132,51)" fg:x="693468" fg:w="67555"/><text x="29.2946%" y="447.50">bt..</text></g><g><title>btrfs_root_node (698 samples, 0.03%)</title><rect x="31.8448%" y="421" width="0.0292%" height="15" fill="rgb(240,63,7)" fg:x="760325" fg:w="698"/><text x="32.0948%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (1,103 samples, 0.05%)</title><rect x="31.8740%" y="437" width="0.0462%" height="15" fill="rgb(249,182,41)" fg:x="761023" fg:w="1103"/><text x="32.1240%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_write (436 samples, 0.02%)</title><rect x="31.9020%" y="421" width="0.0183%" height="15" fill="rgb(243,47,26)" fg:x="761690" fg:w="436"/><text x="32.1520%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (810 samples, 0.03%)</title><rect x="31.9203%" y="437" width="0.0339%" height="15" fill="rgb(233,48,2)" fg:x="762127" fg:w="810"/><text x="32.1703%" y="447.50"></text></g><g><title>_raw_write_lock (573 samples, 0.02%)</title><rect x="31.9632%" y="421" width="0.0240%" height="15" fill="rgb(244,165,34)" fg:x="763151" fg:w="573"/><text x="32.2132%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (3,657 samples, 0.15%)</title><rect x="31.9542%" y="437" width="0.1532%" height="15" fill="rgb(207,89,7)" fg:x="762937" fg:w="3657"/><text x="32.2042%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (2,868 samples, 0.12%)</title><rect x="31.9872%" y="421" width="0.1201%" height="15" fill="rgb(244,117,36)" fg:x="763726" fg:w="2868"/><text x="32.2372%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (756 samples, 0.03%)</title><rect x="32.1079%" y="437" width="0.0317%" height="15" fill="rgb(226,144,34)" fg:x="766606" fg:w="756"/><text x="32.3579%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,919 samples, 0.21%)</title><rect x="32.1395%" y="437" width="0.2060%" height="15" fill="rgb(213,23,19)" fg:x="767362" fg:w="4919"/><text x="32.3895%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (1,071 samples, 0.04%)</title><rect x="32.3759%" y="421" width="0.0449%" height="15" fill="rgb(217,75,12)" fg:x="773006" fg:w="1071"/><text x="32.6259%" y="431.50"></text></g><g><title>verify_parent_transid (867 samples, 0.04%)</title><rect x="32.3845%" y="405" width="0.0363%" height="15" fill="rgb(224,159,17)" fg:x="773210" fg:w="867"/><text x="32.6345%" y="415.50"></text></g><g><title>btrfs_get_64 (1,042 samples, 0.04%)</title><rect x="32.4208%" y="421" width="0.0436%" height="15" fill="rgb(217,118,1)" fg:x="774077" fg:w="1042"/><text x="32.6708%" y="431.50"></text></g><g><title>btrfs_verify_level_key (289 samples, 0.01%)</title><rect x="32.4690%" y="421" width="0.0121%" height="15" fill="rgb(232,180,48)" fg:x="775229" fg:w="289"/><text x="32.7190%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,832 samples, 0.12%)</title><rect x="32.5804%" y="405" width="0.1186%" height="15" fill="rgb(230,27,33)" fg:x="777888" fg:w="2832"/><text x="32.8304%" y="415.50"></text></g><g><title>mark_page_accessed (991 samples, 0.04%)</title><rect x="32.7147%" y="389" width="0.0415%" height="15" fill="rgb(205,31,21)" fg:x="781096" fg:w="991"/><text x="32.9647%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,384 samples, 0.06%)</title><rect x="32.6998%" y="405" width="0.0580%" height="15" fill="rgb(253,59,4)" fg:x="780739" fg:w="1384"/><text x="32.9498%" y="415.50"></text></g><g><title>find_extent_buffer (6,654 samples, 0.28%)</title><rect x="32.4811%" y="421" width="0.2787%" height="15" fill="rgb(224,201,9)" fg:x="775518" fg:w="6654"/><text x="32.7311%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (10,804 samples, 0.45%)</title><rect x="32.3455%" y="437" width="0.4525%" height="15" fill="rgb(229,206,30)" fg:x="772281" fg:w="10804"/><text x="32.5955%" y="447.50"></text></g><g><title>read_extent_buffer (913 samples, 0.04%)</title><rect x="32.7598%" y="421" width="0.0382%" height="15" fill="rgb(212,67,47)" fg:x="782172" fg:w="913"/><text x="33.0098%" y="431.50"></text></g><g><title>__list_del_entry_valid (487 samples, 0.02%)</title><rect x="32.8550%" y="373" width="0.0204%" height="15" fill="rgb(211,96,50)" fg:x="784445" fg:w="487"/><text x="33.1050%" y="383.50"></text></g><g><title>_raw_spin_lock (599 samples, 0.03%)</title><rect x="32.9571%" y="357" width="0.0251%" height="15" fill="rgb(252,114,18)" fg:x="786882" fg:w="599"/><text x="33.2071%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (356 samples, 0.01%)</title><rect x="32.9673%" y="341" width="0.0149%" height="15" fill="rgb(223,58,37)" fg:x="787125" fg:w="356"/><text x="33.2173%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (653 samples, 0.03%)</title><rect x="32.9822%" y="357" width="0.0273%" height="15" fill="rgb(237,70,4)" fg:x="787481" fg:w="653"/><text x="33.2322%" y="367.50"></text></g><g><title>available_idle_cpu (607 samples, 0.03%)</title><rect x="33.0661%" y="341" width="0.0254%" height="15" fill="rgb(244,85,46)" fg:x="789484" fg:w="607"/><text x="33.3161%" y="351.50"></text></g><g><title>select_task_rq_fair (2,896 samples, 0.12%)</title><rect x="33.0130%" y="357" width="0.1213%" height="15" fill="rgb(223,39,52)" fg:x="788217" fg:w="2896"/><text x="33.2630%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (658 samples, 0.03%)</title><rect x="33.1067%" y="341" width="0.0276%" height="15" fill="rgb(218,200,14)" fg:x="790455" fg:w="658"/><text x="33.3567%" y="351.50"></text></g><g><title>set_task_cpu (291 samples, 0.01%)</title><rect x="33.1343%" y="357" width="0.0122%" height="15" fill="rgb(208,171,16)" fg:x="791113" fg:w="291"/><text x="33.3843%" y="367.50"></text></g><g><title>update_curr (338 samples, 0.01%)</title><rect x="33.2393%" y="309" width="0.0142%" height="15" fill="rgb(234,200,18)" fg:x="793620" fg:w="338"/><text x="33.4893%" y="319.50"></text></g><g><title>__update_load_avg_cfs_rq (255 samples, 0.01%)</title><rect x="33.2735%" y="293" width="0.0107%" height="15" fill="rgb(228,45,11)" fg:x="794436" fg:w="255"/><text x="33.5235%" y="303.50"></text></g><g><title>enqueue_entity (2,731 samples, 0.11%)</title><rect x="33.1809%" y="325" width="0.1144%" height="15" fill="rgb(237,182,11)" fg:x="792226" fg:w="2731"/><text x="33.4309%" y="335.50"></text></g><g><title>update_load_avg (999 samples, 0.04%)</title><rect x="33.2534%" y="309" width="0.0418%" height="15" fill="rgb(241,175,49)" fg:x="793958" fg:w="999"/><text x="33.5034%" y="319.50"></text></g><g><title>enqueue_task_fair (3,501 samples, 0.15%)</title><rect x="33.1597%" y="341" width="0.1466%" height="15" fill="rgb(247,38,35)" fg:x="791720" fg:w="3501"/><text x="33.4097%" y="351.50"></text></g><g><title>ttwu_do_activate (7,352 samples, 0.31%)</title><rect x="33.1465%" y="357" width="0.3079%" height="15" fill="rgb(228,39,49)" fg:x="791404" fg:w="7352"/><text x="33.3965%" y="367.50"></text></g><g><title>psi_task_change (3,529 samples, 0.15%)</title><rect x="33.3066%" y="341" width="0.1478%" height="15" fill="rgb(226,101,26)" fg:x="795227" fg:w="3529"/><text x="33.5566%" y="351.50"></text></g><g><title>psi_group_change (3,171 samples, 0.13%)</title><rect x="33.3216%" y="325" width="0.1328%" height="15" fill="rgb(206,141,19)" fg:x="795585" fg:w="3171"/><text x="33.5716%" y="335.50"></text></g><g><title>record_times (536 samples, 0.02%)</title><rect x="33.4320%" y="309" width="0.0224%" height="15" fill="rgb(211,200,13)" fg:x="798220" fg:w="536"/><text x="33.6820%" y="319.50"></text></g><g><title>sched_clock_cpu (367 samples, 0.02%)</title><rect x="33.4390%" y="293" width="0.0154%" height="15" fill="rgb(241,121,6)" fg:x="798389" fg:w="367"/><text x="33.6890%" y="303.50"></text></g><g><title>sched_clock (307 samples, 0.01%)</title><rect x="33.4415%" y="277" width="0.0129%" height="15" fill="rgb(234,221,29)" fg:x="798449" fg:w="307"/><text x="33.6915%" y="287.50"></text></g><g><title>native_sched_clock (278 samples, 0.01%)</title><rect x="33.4428%" y="261" width="0.0116%" height="15" fill="rgb(229,136,5)" fg:x="798478" fg:w="278"/><text x="33.6928%" y="271.50"></text></g><g><title>resched_curr (259 samples, 0.01%)</title><rect x="33.4687%" y="325" width="0.0108%" height="15" fill="rgb(238,36,11)" fg:x="799098" fg:w="259"/><text x="33.7187%" y="335.50"></text></g><g><title>ttwu_do_wakeup (605 samples, 0.03%)</title><rect x="33.4544%" y="357" width="0.0253%" height="15" fill="rgb(251,55,41)" fg:x="798756" fg:w="605"/><text x="33.7044%" y="367.50"></text></g><g><title>check_preempt_curr (536 samples, 0.02%)</title><rect x="33.4573%" y="341" width="0.0224%" height="15" fill="rgb(242,34,40)" fg:x="798825" fg:w="536"/><text x="33.7073%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (380 samples, 0.02%)</title><rect x="33.4797%" y="357" width="0.0159%" height="15" fill="rgb(215,42,17)" fg:x="799361" fg:w="380"/><text x="33.7297%" y="367.50"></text></g><g><title>__wake_up_common (16,125 samples, 0.68%)</title><rect x="32.8435%" y="405" width="0.6754%" height="15" fill="rgb(207,44,46)" fg:x="784171" fg:w="16125"/><text x="33.0935%" y="415.50"></text></g><g><title>autoremove_wake_function (15,883 samples, 0.67%)</title><rect x="32.8537%" y="389" width="0.6652%" height="15" fill="rgb(211,206,28)" fg:x="784413" fg:w="15883"/><text x="33.1037%" y="399.50"></text></g><g><title>try_to_wake_up (15,348 samples, 0.64%)</title><rect x="32.8761%" y="373" width="0.6428%" height="15" fill="rgb(237,167,16)" fg:x="784948" fg:w="15348"/><text x="33.1261%" y="383.50"></text></g><g><title>update_rq_clock (555 samples, 0.02%)</title><rect x="33.4957%" y="357" width="0.0232%" height="15" fill="rgb(233,66,6)" fg:x="799741" fg:w="555"/><text x="33.7457%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (587 samples, 0.02%)</title><rect x="33.5189%" y="405" width="0.0246%" height="15" fill="rgb(246,123,29)" fg:x="800296" fg:w="587"/><text x="33.7689%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (516 samples, 0.02%)</title><rect x="33.5219%" y="389" width="0.0216%" height="15" fill="rgb(209,62,40)" fg:x="800367" fg:w="516"/><text x="33.7719%" y="399.50"></text></g><g><title>__wake_up_common_lock (16,865 samples, 0.71%)</title><rect x="32.8424%" y="421" width="0.7064%" height="15" fill="rgb(218,4,25)" fg:x="784144" fg:w="16865"/><text x="33.0924%" y="431.50"></text></g><g><title>btrfs_search_slot (186,041 samples, 7.79%)</title><rect x="25.7773%" y="453" width="7.7920%" height="15" fill="rgb(253,91,49)" fg:x="615458" fg:w="186041"/><text x="26.0273%" y="463.50">btrfs_searc..</text></g><g><title>unlock_up (18,298 samples, 0.77%)</title><rect x="32.8029%" y="437" width="0.7664%" height="15" fill="rgb(228,155,29)" fg:x="783201" fg:w="18298"/><text x="33.0529%" y="447.50"></text></g><g><title>btrfs_tree_unlock (486 samples, 0.02%)</title><rect x="33.5489%" y="421" width="0.0204%" height="15" fill="rgb(243,57,37)" fg:x="801013" fg:w="486"/><text x="33.7989%" y="431.50"></text></g><g><title>kmem_cache_alloc (940 samples, 0.04%)</title><rect x="33.5693%" y="453" width="0.0394%" height="15" fill="rgb(244,167,17)" fg:x="801499" fg:w="940"/><text x="33.8193%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (261 samples, 0.01%)</title><rect x="33.5977%" y="437" width="0.0109%" height="15" fill="rgb(207,181,38)" fg:x="802178" fg:w="261"/><text x="33.8477%" y="447.50"></text></g><g><title>btrfs_del_orphan_item (206,271 samples, 8.64%)</title><rect x="25.0031%" y="469" width="8.6393%" height="15" fill="rgb(211,8,23)" fg:x="596972" fg:w="206271"/><text x="25.2531%" y="479.50">btrfs_del_or..</text></g><g><title>kmem_cache_free (804 samples, 0.03%)</title><rect x="33.6087%" y="453" width="0.0337%" height="15" fill="rgb(235,11,44)" fg:x="802439" fg:w="804"/><text x="33.8587%" y="463.50"></text></g><g><title>_raw_spin_lock (906 samples, 0.04%)</title><rect x="33.6692%" y="437" width="0.0379%" height="15" fill="rgb(248,18,52)" fg:x="803885" fg:w="906"/><text x="33.9192%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (343 samples, 0.01%)</title><rect x="33.6928%" y="421" width="0.0144%" height="15" fill="rgb(208,4,7)" fg:x="804448" fg:w="343"/><text x="33.9428%" y="431.50"></text></g><g><title>btrfs_free_block_rsv (1,483 samples, 0.06%)</title><rect x="33.6507%" y="469" width="0.0621%" height="15" fill="rgb(240,17,39)" fg:x="803443" fg:w="1483"/><text x="33.9007%" y="479.50"></text></g><g><title>btrfs_block_rsv_release (1,409 samples, 0.06%)</title><rect x="33.6538%" y="453" width="0.0590%" height="15" fill="rgb(207,170,3)" fg:x="803517" fg:w="1409"/><text x="33.9038%" y="463.50"></text></g><g><title>btrfs_free_io_failure_record (301 samples, 0.01%)</title><rect x="33.7128%" y="469" width="0.0126%" height="15" fill="rgb(236,100,52)" fg:x="804926" fg:w="301"/><text x="33.9628%" y="479.50"></text></g><g><title>_raw_spin_lock (472 samples, 0.02%)</title><rect x="33.8654%" y="437" width="0.0198%" height="15" fill="rgb(246,78,51)" fg:x="808568" fg:w="472"/><text x="34.1154%" y="447.50"></text></g><g><title>mutex_lock (387 samples, 0.02%)</title><rect x="33.8852%" y="437" width="0.0162%" height="15" fill="rgb(211,17,15)" fg:x="809041" fg:w="387"/><text x="34.1352%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,359 samples, 0.06%)</title><rect x="33.8540%" y="453" width="0.0569%" height="15" fill="rgb(209,59,46)" fg:x="808297" fg:w="1359"/><text x="34.1040%" y="463.50"></text></g><g><title>_raw_spin_lock (239 samples, 0.01%)</title><rect x="33.9485%" y="437" width="0.0100%" height="15" fill="rgb(210,92,25)" fg:x="810552" fg:w="239"/><text x="34.1985%" y="447.50"></text></g><g><title>alloc_extent_state (1,074 samples, 0.04%)</title><rect x="33.9585%" y="437" width="0.0450%" height="15" fill="rgb(238,174,52)" fg:x="810791" fg:w="1074"/><text x="34.2085%" y="447.50"></text></g><g><title>kmem_cache_alloc (945 samples, 0.04%)</title><rect x="33.9639%" y="421" width="0.0396%" height="15" fill="rgb(230,73,7)" fg:x="810920" fg:w="945"/><text x="34.2139%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (279 samples, 0.01%)</title><rect x="33.9918%" y="405" width="0.0117%" height="15" fill="rgb(243,124,40)" fg:x="811586" fg:w="279"/><text x="34.2418%" y="415.50"></text></g><g><title>__wake_up_common (401 samples, 0.02%)</title><rect x="34.0459%" y="405" width="0.0168%" height="15" fill="rgb(244,170,11)" fg:x="812878" fg:w="401"/><text x="34.2959%" y="415.50"></text></g><g><title>__wake_up_common_lock (1,168 samples, 0.05%)</title><rect x="34.0310%" y="421" width="0.0489%" height="15" fill="rgb(207,114,54)" fg:x="812522" fg:w="1168"/><text x="34.2810%" y="431.50"></text></g><g><title>btrfs_clear_delalloc_extent (543 samples, 0.02%)</title><rect x="34.0800%" y="421" width="0.0227%" height="15" fill="rgb(205,42,20)" fg:x="813693" fg:w="543"/><text x="34.3300%" y="431.50"></text></g><g><title>kmem_cache_free (874 samples, 0.04%)</title><rect x="34.1120%" y="421" width="0.0366%" height="15" fill="rgb(230,30,28)" fg:x="814457" fg:w="874"/><text x="34.3620%" y="431.50"></text></g><g><title>clear_state_bit (3,704 samples, 0.16%)</title><rect x="34.0037%" y="437" width="0.1551%" height="15" fill="rgb(205,73,54)" fg:x="811872" fg:w="3704"/><text x="34.2537%" y="447.50"></text></g><g><title>__clear_extent_bit (6,649 samples, 0.28%)</title><rect x="33.9109%" y="453" width="0.2785%" height="15" fill="rgb(254,227,23)" fg:x="809656" fg:w="6649"/><text x="34.1609%" y="463.50"></text></g><g><title>kmem_cache_free (559 samples, 0.02%)</title><rect x="34.1660%" y="437" width="0.0234%" height="15" fill="rgb(228,202,34)" fg:x="815746" fg:w="559"/><text x="34.4160%" y="447.50"></text></g><g><title>_find_next_bit.constprop.0 (339 samples, 0.01%)</title><rect x="34.3252%" y="373" width="0.0142%" height="15" fill="rgb(222,225,37)" fg:x="819546" fg:w="339"/><text x="34.5752%" y="383.50"></text></g><g><title>steal_from_bitmap.part.0 (414 samples, 0.02%)</title><rect x="34.3231%" y="389" width="0.0173%" height="15" fill="rgb(221,14,54)" fg:x="819496" fg:w="414"/><text x="34.5731%" y="399.50"></text></g><g><title>__btrfs_add_free_space (865 samples, 0.04%)</title><rect x="34.3114%" y="405" width="0.0362%" height="15" fill="rgb(254,102,2)" fg:x="819217" fg:w="865"/><text x="34.5614%" y="415.50"></text></g><g><title>add_delayed_ref_head (272 samples, 0.01%)</title><rect x="34.3546%" y="389" width="0.0114%" height="15" fill="rgb(232,104,17)" fg:x="820249" fg:w="272"/><text x="34.6046%" y="399.50"></text></g><g><title>btrfs_add_delayed_tree_ref (583 samples, 0.02%)</title><rect x="34.3518%" y="405" width="0.0244%" height="15" fill="rgb(250,220,14)" fg:x="820182" fg:w="583"/><text x="34.6018%" y="415.50"></text></g><g><title>btrfs_free_tree_block (1,987 samples, 0.08%)</title><rect x="34.3104%" y="421" width="0.0832%" height="15" fill="rgb(241,158,9)" fg:x="819194" fg:w="1987"/><text x="34.5604%" y="431.50"></text></g><g><title>check_ref_cleanup (363 samples, 0.02%)</title><rect x="34.3784%" y="405" width="0.0152%" height="15" fill="rgb(246,9,43)" fg:x="820818" fg:w="363"/><text x="34.6284%" y="415.50"></text></g><g><title>__wake_up_common (414 samples, 0.02%)</title><rect x="34.3949%" y="389" width="0.0173%" height="15" fill="rgb(206,73,33)" fg:x="821211" fg:w="414"/><text x="34.6449%" y="399.50"></text></g><g><title>autoremove_wake_function (402 samples, 0.02%)</title><rect x="34.3954%" y="373" width="0.0168%" height="15" fill="rgb(222,79,8)" fg:x="821223" fg:w="402"/><text x="34.6454%" y="383.50"></text></g><g><title>try_to_wake_up (391 samples, 0.02%)</title><rect x="34.3959%" y="357" width="0.0164%" height="15" fill="rgb(234,8,54)" fg:x="821234" fg:w="391"/><text x="34.6459%" y="367.50"></text></g><g><title>__wake_up_common_lock (431 samples, 0.02%)</title><rect x="34.3948%" y="405" width="0.0181%" height="15" fill="rgb(209,134,38)" fg:x="821210" fg:w="431"/><text x="34.6448%" y="415.50"></text></g><g><title>btrfs_unlock_up_safe (449 samples, 0.02%)</title><rect x="34.3944%" y="421" width="0.0188%" height="15" fill="rgb(230,127,29)" fg:x="821199" fg:w="449"/><text x="34.6444%" y="431.50"></text></g><g><title>btrfs_del_leaf (2,670 samples, 0.11%)</title><rect x="34.3088%" y="437" width="0.1118%" height="15" fill="rgb(242,44,41)" fg:x="819155" fg:w="2670"/><text x="34.5588%" y="447.50"></text></g><g><title>btrfs_get_32 (782 samples, 0.03%)</title><rect x="34.4206%" y="437" width="0.0328%" height="15" fill="rgb(222,56,43)" fg:x="821825" fg:w="782"/><text x="34.6706%" y="447.50"></text></g><g><title>btrfs_get_token_32 (8,518 samples, 0.36%)</title><rect x="34.4534%" y="437" width="0.3568%" height="15" fill="rgb(238,39,47)" fg:x="822607" fg:w="8518"/><text x="34.7034%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (1,224 samples, 0.05%)</title><rect x="34.7589%" y="421" width="0.0513%" height="15" fill="rgb(226,79,43)" fg:x="829901" fg:w="1224"/><text x="35.0089%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (808 samples, 0.03%)</title><rect x="34.8101%" y="437" width="0.0338%" height="15" fill="rgb(242,105,53)" fg:x="831125" fg:w="808"/><text x="35.0601%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (341 samples, 0.01%)</title><rect x="34.8297%" y="421" width="0.0143%" height="15" fill="rgb(251,132,46)" fg:x="831592" fg:w="341"/><text x="35.0797%" y="431.50"></text></g><g><title>btrfs_set_token_32 (6,568 samples, 0.28%)</title><rect x="34.8459%" y="437" width="0.2751%" height="15" fill="rgb(231,77,14)" fg:x="831979" fg:w="6568"/><text x="35.0959%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (1,069 samples, 0.04%)</title><rect x="35.0762%" y="421" width="0.0448%" height="15" fill="rgb(240,135,9)" fg:x="837478" fg:w="1069"/><text x="35.3262%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (277 samples, 0.01%)</title><rect x="35.1256%" y="421" width="0.0116%" height="15" fill="rgb(248,109,14)" fg:x="838657" fg:w="277"/><text x="35.3756%" y="431.50"></text></g><g><title>fixup_low_keys (693 samples, 0.03%)</title><rect x="35.1224%" y="437" width="0.0290%" height="15" fill="rgb(227,146,52)" fg:x="838581" fg:w="693"/><text x="35.3724%" y="447.50"></text></g><g><title>leaf_space_used (672 samples, 0.03%)</title><rect x="35.1529%" y="437" width="0.0281%" height="15" fill="rgb(232,54,3)" fg:x="839310" fg:w="672"/><text x="35.4029%" y="447.50"></text></g><g><title>btrfs_get_32 (462 samples, 0.02%)</title><rect x="35.1617%" y="421" width="0.0194%" height="15" fill="rgb(229,201,43)" fg:x="839520" fg:w="462"/><text x="35.4117%" y="431.50"></text></g><g><title>memcpy_extent_buffer (1,164 samples, 0.05%)</title><rect x="35.1811%" y="437" width="0.0488%" height="15" fill="rgb(252,161,33)" fg:x="839982" fg:w="1164"/><text x="35.4311%" y="447.50"></text></g><g><title>memmove (847 samples, 0.04%)</title><rect x="35.1944%" y="421" width="0.0355%" height="15" fill="rgb(226,146,40)" fg:x="840299" fg:w="847"/><text x="35.4444%" y="431.50"></text></g><g><title>copy_pages (1,220 samples, 0.05%)</title><rect x="35.2615%" y="421" width="0.0511%" height="15" fill="rgb(219,47,25)" fg:x="841903" fg:w="1220"/><text x="35.5115%" y="431.50"></text></g><g><title>memmove_extent_buffer (9,354 samples, 0.39%)</title><rect x="35.2298%" y="437" width="0.3918%" height="15" fill="rgb(250,135,13)" fg:x="841146" fg:w="9354"/><text x="35.4798%" y="447.50"></text></g><g><title>memmove (7,377 samples, 0.31%)</title><rect x="35.3126%" y="421" width="0.3090%" height="15" fill="rgb(219,229,18)" fg:x="843123" fg:w="7377"/><text x="35.5626%" y="431.50"></text></g><g><title>clear_extent_buffer_dirty (362 samples, 0.02%)</title><rect x="35.6497%" y="405" width="0.0152%" height="15" fill="rgb(217,152,27)" fg:x="851172" fg:w="362"/><text x="35.8997%" y="415.50"></text></g><g><title>__push_leaf_left (1,241 samples, 0.05%)</title><rect x="35.6243%" y="421" width="0.0520%" height="15" fill="rgb(225,71,47)" fg:x="850564" fg:w="1241"/><text x="35.8743%" y="431.50"></text></g><g><title>push_leaf_left (1,651 samples, 0.07%)</title><rect x="35.6216%" y="437" width="0.0691%" height="15" fill="rgb(220,139,14)" fg:x="850500" fg:w="1651"/><text x="35.8716%" y="447.50"></text></g><g><title>__push_leaf_right (581 samples, 0.02%)</title><rect x="35.6924%" y="421" width="0.0243%" height="15" fill="rgb(247,54,32)" fg:x="852191" fg:w="581"/><text x="35.9424%" y="431.50"></text></g><g><title>push_leaf_right (908 samples, 0.04%)</title><rect x="35.6908%" y="437" width="0.0380%" height="15" fill="rgb(252,131,39)" fg:x="852151" fg:w="908"/><text x="35.9408%" y="447.50"></text></g><g><title>btrfs_del_items (37,005 samples, 1.55%)</title><rect x="34.1910%" y="453" width="1.5499%" height="15" fill="rgb(210,108,39)" fg:x="816343" fg:w="37005"/><text x="34.4410%" y="463.50"></text></g><g><title>_raw_write_lock (264 samples, 0.01%)</title><rect x="35.7736%" y="437" width="0.0111%" height="15" fill="rgb(205,23,29)" fg:x="854130" fg:w="264"/><text x="36.0236%" y="447.50"></text></g><g><title>__slab_alloc (255 samples, 0.01%)</title><rect x="35.8637%" y="405" width="0.0107%" height="15" fill="rgb(246,139,46)" fg:x="856280" fg:w="255"/><text x="36.1137%" y="415.50"></text></g><g><title>memset_erms (504 samples, 0.02%)</title><rect x="35.8808%" y="405" width="0.0211%" height="15" fill="rgb(250,81,26)" fg:x="856688" fg:w="504"/><text x="36.1308%" y="415.50"></text></g><g><title>alloc_extent_map (3,297 samples, 0.14%)</title><rect x="35.7847%" y="437" width="0.1381%" height="15" fill="rgb(214,104,7)" fg:x="854394" fg:w="3297"/><text x="36.0347%" y="447.50"></text></g><g><title>kmem_cache_alloc (2,536 samples, 0.11%)</title><rect x="35.8166%" y="421" width="0.1062%" height="15" fill="rgb(233,189,8)" fg:x="855155" fg:w="2536"/><text x="36.0666%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (499 samples, 0.02%)</title><rect x="35.9019%" y="405" width="0.0209%" height="15" fill="rgb(228,141,17)" fg:x="857192" fg:w="499"/><text x="36.1519%" y="415.50"></text></g><g><title>free_extent_map (464 samples, 0.02%)</title><rect x="35.9229%" y="437" width="0.0194%" height="15" fill="rgb(247,157,1)" fg:x="857694" fg:w="464"/><text x="36.1729%" y="447.50"></text></g><g><title>kmem_cache_free (1,502 samples, 0.06%)</title><rect x="35.9423%" y="437" width="0.0629%" height="15" fill="rgb(249,225,5)" fg:x="858158" fg:w="1502"/><text x="36.1923%" y="447.50"></text></g><g><title>btrfs_drop_extent_cache (6,410 samples, 0.27%)</title><rect x="35.7409%" y="453" width="0.2685%" height="15" fill="rgb(242,55,13)" fg:x="853348" fg:w="6410"/><text x="35.9909%" y="463.50"></text></g><g><title>__list_del_entry_valid (252 samples, 0.01%)</title><rect x="36.0434%" y="373" width="0.0106%" height="15" fill="rgb(230,49,50)" fg:x="860570" fg:w="252"/><text x="36.2934%" y="383.50"></text></g><g><title>_raw_spin_lock (453 samples, 0.02%)</title><rect x="36.1579%" y="357" width="0.0190%" height="15" fill="rgb(241,111,38)" fg:x="863304" fg:w="453"/><text x="36.4079%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (292 samples, 0.01%)</title><rect x="36.1646%" y="341" width="0.0122%" height="15" fill="rgb(252,155,4)" fg:x="863465" fg:w="292"/><text x="36.4146%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (432 samples, 0.02%)</title><rect x="36.1768%" y="357" width="0.0181%" height="15" fill="rgb(212,69,32)" fg:x="863757" fg:w="432"/><text x="36.4268%" y="367.50"></text></g><g><title>available_idle_cpu (459 samples, 0.02%)</title><rect x="36.2326%" y="341" width="0.0192%" height="15" fill="rgb(243,107,47)" fg:x="865088" fg:w="459"/><text x="36.4826%" y="351.50"></text></g><g><title>select_task_rq_fair (1,932 samples, 0.08%)</title><rect x="36.1975%" y="357" width="0.0809%" height="15" fill="rgb(247,130,12)" fg:x="864250" fg:w="1932"/><text x="36.4475%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (457 samples, 0.02%)</title><rect x="36.2593%" y="341" width="0.0191%" height="15" fill="rgb(233,74,16)" fg:x="865725" fg:w="457"/><text x="36.5093%" y="351.50"></text></g><g><title>enqueue_entity (1,921 samples, 0.08%)</title><rect x="36.3134%" y="325" width="0.0805%" height="15" fill="rgb(208,58,18)" fg:x="867018" fg:w="1921"/><text x="36.5634%" y="335.50"></text></g><g><title>update_load_avg (644 samples, 0.03%)</title><rect x="36.3669%" y="309" width="0.0270%" height="15" fill="rgb(242,225,1)" fg:x="868295" fg:w="644"/><text x="36.6169%" y="319.50"></text></g><g><title>enqueue_task_fair (2,459 samples, 0.10%)</title><rect x="36.2945%" y="341" width="0.1030%" height="15" fill="rgb(249,39,40)" fg:x="866567" fg:w="2459"/><text x="36.5445%" y="351.50"></text></g><g><title>ttwu_do_activate (5,042 samples, 0.21%)</title><rect x="36.2852%" y="357" width="0.2112%" height="15" fill="rgb(207,72,44)" fg:x="866343" fg:w="5042"/><text x="36.5352%" y="367.50"></text></g><g><title>psi_task_change (2,359 samples, 0.10%)</title><rect x="36.3975%" y="341" width="0.0988%" height="15" fill="rgb(215,193,12)" fg:x="869026" fg:w="2359"/><text x="36.6475%" y="351.50"></text></g><g><title>psi_group_change (2,111 samples, 0.09%)</title><rect x="36.4079%" y="325" width="0.0884%" height="15" fill="rgb(248,41,39)" fg:x="869274" fg:w="2111"/><text x="36.6579%" y="335.50"></text></g><g><title>record_times (351 samples, 0.01%)</title><rect x="36.4816%" y="309" width="0.0147%" height="15" fill="rgb(253,85,4)" fg:x="871034" fg:w="351"/><text x="36.7316%" y="319.50"></text></g><g><title>ttwu_do_wakeup (409 samples, 0.02%)</title><rect x="36.4963%" y="357" width="0.0171%" height="15" fill="rgb(243,70,31)" fg:x="871385" fg:w="409"/><text x="36.7463%" y="367.50"></text></g><g><title>check_preempt_curr (368 samples, 0.02%)</title><rect x="36.4981%" y="341" width="0.0154%" height="15" fill="rgb(253,195,26)" fg:x="871426" fg:w="368"/><text x="36.7481%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (517 samples, 0.02%)</title><rect x="36.5135%" y="357" width="0.0217%" height="15" fill="rgb(243,42,11)" fg:x="871794" fg:w="517"/><text x="36.7635%" y="367.50"></text></g><g><title>__wake_up_common (12,418 samples, 0.52%)</title><rect x="36.0302%" y="405" width="0.5201%" height="15" fill="rgb(239,66,17)" fg:x="860255" fg:w="12418"/><text x="36.2802%" y="415.50"></text></g><g><title>autoremove_wake_function (12,155 samples, 0.51%)</title><rect x="36.0412%" y="389" width="0.5091%" height="15" fill="rgb(217,132,21)" fg:x="860518" fg:w="12155"/><text x="36.2912%" y="399.50"></text></g><g><title>try_to_wake_up (11,836 samples, 0.50%)</title><rect x="36.0546%" y="373" width="0.4957%" height="15" fill="rgb(252,202,21)" fg:x="860837" fg:w="11836"/><text x="36.3046%" y="383.50"></text></g><g><title>update_rq_clock (362 samples, 0.02%)</title><rect x="36.5351%" y="357" width="0.0152%" height="15" fill="rgb(233,98,36)" fg:x="872311" fg:w="362"/><text x="36.7851%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (368 samples, 0.02%)</title><rect x="36.5503%" y="405" width="0.0154%" height="15" fill="rgb(216,153,54)" fg:x="872673" fg:w="368"/><text x="36.8003%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (276 samples, 0.01%)</title><rect x="36.5541%" y="389" width="0.0116%" height="15" fill="rgb(250,99,7)" fg:x="872765" fg:w="276"/><text x="36.8041%" y="399.50"></text></g><g><title>__wake_up_common_lock (12,983 samples, 0.54%)</title><rect x="36.0280%" y="421" width="0.5438%" height="15" fill="rgb(207,56,50)" fg:x="860203" fg:w="12983"/><text x="36.2780%" y="431.50"></text></g><g><title>btrfs_tree_unlock (706 samples, 0.03%)</title><rect x="36.5718%" y="421" width="0.0296%" height="15" fill="rgb(244,61,34)" fg:x="873187" fg:w="706"/><text x="36.8218%" y="431.50"></text></g><g><title>_raw_spin_lock (450 samples, 0.02%)</title><rect x="36.6485%" y="405" width="0.0188%" height="15" fill="rgb(241,50,38)" fg:x="875018" fg:w="450"/><text x="36.8985%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,553 samples, 0.07%)</title><rect x="36.6025%" y="421" width="0.0650%" height="15" fill="rgb(212,166,30)" fg:x="873919" fg:w="1553"/><text x="36.8525%" y="431.50"></text></g><g><title>btrfs_free_path (16,173 samples, 0.68%)</title><rect x="36.0094%" y="453" width="0.6774%" height="15" fill="rgb(249,127,32)" fg:x="859758" fg:w="16173"/><text x="36.2594%" y="463.50"></text></g><g><title>btrfs_release_path (16,141 samples, 0.68%)</title><rect x="36.0107%" y="437" width="0.6760%" height="15" fill="rgb(209,103,0)" fg:x="859790" fg:w="16141"/><text x="36.2607%" y="447.50"></text></g><g><title>release_extent_buffer (459 samples, 0.02%)</title><rect x="36.6675%" y="421" width="0.0192%" height="15" fill="rgb(238,209,51)" fg:x="875472" fg:w="459"/><text x="36.9175%" y="431.50"></text></g><g><title>btrfs_get_32 (285 samples, 0.01%)</title><rect x="36.6867%" y="453" width="0.0119%" height="15" fill="rgb(237,56,23)" fg:x="875931" fg:w="285"/><text x="36.9367%" y="463.50"></text></g><g><title>btrfs_get_8 (369 samples, 0.02%)</title><rect x="36.7085%" y="453" width="0.0155%" height="15" fill="rgb(215,153,46)" fg:x="876450" fg:w="369"/><text x="36.9585%" y="463.50"></text></g><g><title>_raw_spin_lock (465 samples, 0.02%)</title><rect x="36.7700%" y="405" width="0.0195%" height="15" fill="rgb(224,49,31)" fg:x="877919" fg:w="465"/><text x="37.0200%" y="415.50"></text></g><g><title>_cond_resched (268 samples, 0.01%)</title><rect x="36.8500%" y="357" width="0.0112%" height="15" fill="rgb(250,18,42)" fg:x="879829" fg:w="268"/><text x="37.1000%" y="367.50"></text></g><g><title>alloc_extent_state (1,726 samples, 0.07%)</title><rect x="36.7895%" y="405" width="0.0723%" height="15" fill="rgb(215,176,39)" fg:x="878384" fg:w="1726"/><text x="37.0395%" y="415.50"></text></g><g><title>kmem_cache_alloc (1,446 samples, 0.06%)</title><rect x="36.8012%" y="389" width="0.0606%" height="15" fill="rgb(223,77,29)" fg:x="878664" fg:w="1446"/><text x="37.0512%" y="399.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (541 samples, 0.02%)</title><rect x="36.8391%" y="373" width="0.0227%" height="15" fill="rgb(234,94,52)" fg:x="879569" fg:w="541"/><text x="37.0891%" y="383.50"></text></g><g><title>free_extent_state (279 samples, 0.01%)</title><rect x="36.8619%" y="405" width="0.0117%" height="15" fill="rgb(220,154,50)" fg:x="880114" fg:w="279"/><text x="37.1119%" y="415.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (4,452 samples, 0.19%)</title><rect x="36.7239%" y="453" width="0.1865%" height="15" fill="rgb(212,11,10)" fg:x="876819" fg:w="4452"/><text x="36.9739%" y="463.50"></text></g><g><title>clear_extent_bit (3,845 samples, 0.16%)</title><rect x="36.7493%" y="437" width="0.1610%" height="15" fill="rgb(205,166,19)" fg:x="877426" fg:w="3845"/><text x="36.9993%" y="447.50"></text></g><g><title>__clear_extent_bit (3,805 samples, 0.16%)</title><rect x="36.7510%" y="421" width="0.1594%" height="15" fill="rgb(244,198,16)" fg:x="877466" fg:w="3805"/><text x="37.0010%" y="431.50"></text></g><g><title>kmem_cache_free (878 samples, 0.04%)</title><rect x="36.8736%" y="405" width="0.0368%" height="15" fill="rgb(219,69,12)" fg:x="880393" fg:w="878"/><text x="37.1236%" y="415.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (1,005 samples, 0.04%)</title><rect x="36.9104%" y="453" width="0.0421%" height="15" fill="rgb(245,30,7)" fg:x="881271" fg:w="1005"/><text x="37.1604%" y="463.50"></text></g><g><title>find_contiguous_extent_bit (300 samples, 0.01%)</title><rect x="36.9399%" y="437" width="0.0126%" height="15" fill="rgb(218,221,48)" fg:x="881976" fg:w="300"/><text x="37.1899%" y="447.50"></text></g><g><title>__btrfs_kill_delayed_node (418 samples, 0.02%)</title><rect x="36.9647%" y="437" width="0.0175%" height="15" fill="rgb(216,66,15)" fg:x="882568" fg:w="418"/><text x="37.2147%" y="447.50"></text></g><g><title>mutex_lock (250 samples, 0.01%)</title><rect x="36.9717%" y="421" width="0.0105%" height="15" fill="rgb(226,122,50)" fg:x="882736" fg:w="250"/><text x="37.2217%" y="431.50"></text></g><g><title>btrfs_get_delayed_node (578 samples, 0.02%)</title><rect x="36.9823%" y="437" width="0.0242%" height="15" fill="rgb(239,156,16)" fg:x="882989" fg:w="578"/><text x="37.2323%" y="447.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,499 samples, 0.06%)</title><rect x="36.9525%" y="453" width="0.0628%" height="15" fill="rgb(224,27,38)" fg:x="882276" fg:w="1499"/><text x="37.2025%" y="463.50"></text></g><g><title>_raw_read_lock (1,165 samples, 0.05%)</title><rect x="37.2263%" y="405" width="0.0488%" height="15" fill="rgb(224,39,27)" fg:x="888813" fg:w="1165"/><text x="37.4763%" y="415.50"></text></g><g><title>__list_del_entry_valid (327 samples, 0.01%)</title><rect x="37.2822%" y="389" width="0.0137%" height="15" fill="rgb(215,92,29)" fg:x="890149" fg:w="327"/><text x="37.5322%" y="399.50"></text></g><g><title>finish_wait (8,307 samples, 0.35%)</title><rect x="37.2794%" y="405" width="0.3479%" height="15" fill="rgb(207,159,16)" fg:x="890082" fg:w="8307"/><text x="37.5294%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (7,913 samples, 0.33%)</title><rect x="37.2959%" y="389" width="0.3314%" height="15" fill="rgb(238,163,47)" fg:x="890476" fg:w="7913"/><text x="37.5459%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,647 samples, 0.32%)</title><rect x="37.3071%" y="373" width="0.3203%" height="15" fill="rgb(219,91,49)" fg:x="890742" fg:w="7647"/><text x="37.5571%" y="383.50"></text></g><g><title>__list_add_valid (446 samples, 0.02%)</title><rect x="37.6780%" y="389" width="0.0187%" height="15" fill="rgb(227,167,31)" fg:x="899598" fg:w="446"/><text x="37.9280%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (20,100 samples, 0.84%)</title><rect x="37.6967%" y="389" width="0.8419%" height="15" fill="rgb(234,80,54)" fg:x="900044" fg:w="20100"/><text x="37.9467%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (19,385 samples, 0.81%)</title><rect x="37.7266%" y="373" width="0.8119%" height="15" fill="rgb(212,114,2)" fg:x="900759" fg:w="19385"/><text x="37.9766%" y="383.50"></text></g><g><title>prepare_to_wait_event (22,048 samples, 0.92%)</title><rect x="37.6281%" y="405" width="0.9234%" height="15" fill="rgb(234,50,24)" fg:x="898407" fg:w="22048"/><text x="37.8781%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (311 samples, 0.01%)</title><rect x="38.5385%" y="389" width="0.0130%" height="15" fill="rgb(221,68,8)" fg:x="920144" fg:w="311"/><text x="38.7885%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (20,324 samples, 0.85%)</title><rect x="38.5515%" y="405" width="0.8512%" height="15" fill="rgb(254,180,31)" fg:x="920455" fg:w="20324"/><text x="38.8015%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (15,298 samples, 0.64%)</title><rect x="38.7620%" y="389" width="0.6407%" height="15" fill="rgb(247,130,50)" fg:x="925481" fg:w="15298"/><text x="39.0120%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (546 samples, 0.02%)</title><rect x="39.4406%" y="373" width="0.0229%" height="15" fill="rgb(211,109,4)" fg:x="941681" fg:w="546"/><text x="39.6906%" y="383.50"></text></g><g><title>update_cfs_group (247 samples, 0.01%)</title><rect x="39.5081%" y="341" width="0.0103%" height="15" fill="rgb(238,50,21)" fg:x="943294" fg:w="247"/><text x="39.7581%" y="351.50"></text></g><g><title>update_curr (1,091 samples, 0.05%)</title><rect x="39.5185%" y="341" width="0.0457%" height="15" fill="rgb(225,57,45)" fg:x="943541" fg:w="1091"/><text x="39.7685%" y="351.50"></text></g><g><title>__update_load_avg_se (245 samples, 0.01%)</title><rect x="39.5887%" y="325" width="0.0103%" height="15" fill="rgb(209,196,50)" fg:x="945218" fg:w="245"/><text x="39.8387%" y="335.50"></text></g><g><title>dequeue_entity (2,737 samples, 0.11%)</title><rect x="39.4852%" y="357" width="0.1146%" height="15" fill="rgb(242,140,13)" fg:x="942748" fg:w="2737"/><text x="39.7352%" y="367.50"></text></g><g><title>update_load_avg (853 samples, 0.04%)</title><rect x="39.5641%" y="341" width="0.0357%" height="15" fill="rgb(217,111,7)" fg:x="944632" fg:w="853"/><text x="39.8141%" y="351.50"></text></g><g><title>dequeue_task_fair (3,381 samples, 0.14%)</title><rect x="39.4689%" y="373" width="0.1416%" height="15" fill="rgb(253,193,51)" fg:x="942357" fg:w="3381"/><text x="39.7189%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (596 samples, 0.02%)</title><rect x="39.6287%" y="357" width="0.0250%" height="15" fill="rgb(252,70,29)" fg:x="946174" fg:w="596"/><text x="39.8787%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (520 samples, 0.02%)</title><rect x="39.6319%" y="341" width="0.0218%" height="15" fill="rgb(232,127,12)" fg:x="946250" fg:w="520"/><text x="39.8819%" y="351.50"></text></g><g><title>native_write_msr (484 samples, 0.02%)</title><rect x="39.6334%" y="325" width="0.0203%" height="15" fill="rgb(211,180,21)" fg:x="946286" fg:w="484"/><text x="39.8834%" y="335.50"></text></g><g><title>finish_task_switch (1,126 samples, 0.05%)</title><rect x="39.6105%" y="373" width="0.0472%" height="15" fill="rgb(229,72,13)" fg:x="945738" fg:w="1126"/><text x="39.8605%" y="383.50"></text></g><g><title>newidle_balance (258 samples, 0.01%)</title><rect x="39.6645%" y="357" width="0.0108%" height="15" fill="rgb(240,211,49)" fg:x="947029" fg:w="258"/><text x="39.9145%" y="367.50"></text></g><g><title>pick_next_task_fair (569 samples, 0.02%)</title><rect x="39.6580%" y="373" width="0.0238%" height="15" fill="rgb(219,149,40)" fg:x="946872" fg:w="569"/><text x="39.9080%" y="383.50"></text></g><g><title>__update_idle_core (470 samples, 0.02%)</title><rect x="39.6863%" y="357" width="0.0197%" height="15" fill="rgb(210,127,46)" fg:x="947548" fg:w="470"/><text x="39.9363%" y="367.50"></text></g><g><title>pick_next_task_idle (578 samples, 0.02%)</title><rect x="39.6818%" y="373" width="0.0242%" height="15" fill="rgb(220,106,7)" fg:x="947441" fg:w="578"/><text x="39.9318%" y="383.50"></text></g><g><title>psi_task_change (2,474 samples, 0.10%)</title><rect x="39.7060%" y="373" width="0.1036%" height="15" fill="rgb(249,31,22)" fg:x="948019" fg:w="2474"/><text x="39.9560%" y="383.50"></text></g><g><title>psi_group_change (2,099 samples, 0.09%)</title><rect x="39.7217%" y="357" width="0.0879%" height="15" fill="rgb(253,1,49)" fg:x="948394" fg:w="2099"/><text x="39.9717%" y="367.50"></text></g><g><title>record_times (481 samples, 0.02%)</title><rect x="39.7895%" y="341" width="0.0201%" height="15" fill="rgb(227,144,33)" fg:x="950012" fg:w="481"/><text x="40.0395%" y="351.50"></text></g><g><title>sched_clock_cpu (336 samples, 0.01%)</title><rect x="39.7956%" y="325" width="0.0141%" height="15" fill="rgb(249,163,44)" fg:x="950157" fg:w="336"/><text x="40.0456%" y="335.50"></text></g><g><title>sched_clock (288 samples, 0.01%)</title><rect x="39.7976%" y="309" width="0.0121%" height="15" fill="rgb(234,15,39)" fg:x="950205" fg:w="288"/><text x="40.0476%" y="319.50"></text></g><g><title>native_sched_clock (272 samples, 0.01%)</title><rect x="39.7982%" y="293" width="0.0114%" height="15" fill="rgb(207,66,16)" fg:x="950221" fg:w="272"/><text x="40.0482%" y="303.50"></text></g><g><title>psi_task_switch (299 samples, 0.01%)</title><rect x="39.8096%" y="373" width="0.0125%" height="15" fill="rgb(233,112,24)" fg:x="950493" fg:w="299"/><text x="40.0596%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (63,749 samples, 2.67%)</title><rect x="37.1735%" y="421" width="2.6700%" height="15" fill="rgb(230,90,22)" fg:x="887554" fg:w="63749"/><text x="37.4235%" y="431.50">__..</text></g><g><title>schedule (10,524 samples, 0.44%)</title><rect x="39.4028%" y="405" width="0.4408%" height="15" fill="rgb(229,61,13)" fg:x="940779" fg:w="10524"/><text x="39.6528%" y="415.50"></text></g><g><title>__schedule (10,388 samples, 0.44%)</title><rect x="39.4085%" y="389" width="0.4351%" height="15" fill="rgb(225,57,24)" fg:x="940915" fg:w="10388"/><text x="39.6585%" y="399.50"></text></g><g><title>update_rq_clock (278 samples, 0.01%)</title><rect x="39.8319%" y="373" width="0.0116%" height="15" fill="rgb(208,169,48)" fg:x="951025" fg:w="278"/><text x="40.0819%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (65,317 samples, 2.74%)</title><rect x="37.1645%" y="437" width="2.7357%" height="15" fill="rgb(244,218,51)" fg:x="887338" fg:w="65317"/><text x="37.4145%" y="447.50">__..</text></g><g><title>btrfs_root_node (1,350 samples, 0.06%)</title><rect x="39.8436%" y="421" width="0.0565%" height="15" fill="rgb(214,148,10)" fg:x="951305" fg:w="1350"/><text x="40.0936%" y="431.50"></text></g><g><title>prepare_to_wait_event (372 samples, 0.02%)</title><rect x="39.9092%" y="421" width="0.0156%" height="15" fill="rgb(225,174,27)" fg:x="952870" fg:w="372"/><text x="40.1592%" y="431.50"></text></g><g><title>update_curr (289 samples, 0.01%)</title><rect x="39.9598%" y="357" width="0.0121%" height="15" fill="rgb(230,96,26)" fg:x="954078" fg:w="289"/><text x="40.2098%" y="367.50"></text></g><g><title>dequeue_entity (759 samples, 0.03%)</title><rect x="39.9499%" y="373" width="0.0318%" height="15" fill="rgb(232,10,30)" fg:x="953843" fg:w="759"/><text x="40.1999%" y="383.50"></text></g><g><title>dequeue_task_fair (920 samples, 0.04%)</title><rect x="39.9456%" y="389" width="0.0385%" height="15" fill="rgb(222,8,50)" fg:x="953739" fg:w="920"/><text x="40.1956%" y="399.50"></text></g><g><title>finish_task_switch (380 samples, 0.02%)</title><rect x="39.9841%" y="389" width="0.0159%" height="15" fill="rgb(213,81,27)" fg:x="954659" fg:w="380"/><text x="40.2341%" y="399.50"></text></g><g><title>psi_task_change (710 samples, 0.03%)</title><rect x="40.0142%" y="389" width="0.0297%" height="15" fill="rgb(245,50,10)" fg:x="955378" fg:w="710"/><text x="40.2642%" y="399.50"></text></g><g><title>psi_group_change (593 samples, 0.02%)</title><rect x="40.0191%" y="373" width="0.0248%" height="15" fill="rgb(216,100,18)" fg:x="955495" fg:w="593"/><text x="40.2691%" y="383.50"></text></g><g><title>__btrfs_tree_lock (3,625 samples, 0.15%)</title><rect x="39.9002%" y="437" width="0.1518%" height="15" fill="rgb(236,147,54)" fg:x="952655" fg:w="3625"/><text x="40.1502%" y="447.50"></text></g><g><title>schedule (3,038 samples, 0.13%)</title><rect x="39.9248%" y="421" width="0.1272%" height="15" fill="rgb(205,143,26)" fg:x="953242" fg:w="3038"/><text x="40.1748%" y="431.50"></text></g><g><title>__schedule (2,980 samples, 0.12%)</title><rect x="39.9272%" y="405" width="0.1248%" height="15" fill="rgb(236,26,9)" fg:x="953300" fg:w="2980"/><text x="40.1772%" y="415.50"></text></g><g><title>__btrfs_cow_block (268 samples, 0.01%)</title><rect x="40.0674%" y="421" width="0.0112%" height="15" fill="rgb(221,165,53)" fg:x="956647" fg:w="268"/><text x="40.3174%" y="431.50"></text></g><g><title>btrfs_cow_block (271 samples, 0.01%)</title><rect x="40.0673%" y="437" width="0.0114%" height="15" fill="rgb(214,110,17)" fg:x="956646" fg:w="271"/><text x="40.3173%" y="447.50"></text></g><g><title>_cond_resched (330 samples, 0.01%)</title><rect x="40.1455%" y="405" width="0.0138%" height="15" fill="rgb(237,197,12)" fg:x="958513" fg:w="330"/><text x="40.3955%" y="415.50"></text></g><g><title>_raw_write_lock (1,018 samples, 0.04%)</title><rect x="40.1637%" y="405" width="0.0426%" height="15" fill="rgb(205,84,17)" fg:x="958947" fg:w="1018"/><text x="40.4137%" y="415.50"></text></g><g><title>__list_del_entry_valid (277 samples, 0.01%)</title><rect x="40.2096%" y="389" width="0.0116%" height="15" fill="rgb(237,18,45)" fg:x="960043" fg:w="277"/><text x="40.4596%" y="399.50"></text></g><g><title>finish_wait (6,464 samples, 0.27%)</title><rect x="40.2067%" y="405" width="0.2707%" height="15" fill="rgb(221,87,14)" fg:x="959974" fg:w="6464"/><text x="40.4567%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (6,118 samples, 0.26%)</title><rect x="40.2212%" y="389" width="0.2562%" height="15" fill="rgb(238,186,15)" fg:x="960320" fg:w="6118"/><text x="40.4712%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,808 samples, 0.24%)</title><rect x="40.2342%" y="373" width="0.2433%" height="15" fill="rgb(208,115,11)" fg:x="960630" fg:w="5808"/><text x="40.4842%" y="383.50"></text></g><g><title>__list_add_valid (456 samples, 0.02%)</title><rect x="40.5347%" y="389" width="0.0191%" height="15" fill="rgb(254,175,0)" fg:x="967804" fg:w="456"/><text x="40.7847%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (15,658 samples, 0.66%)</title><rect x="40.5538%" y="389" width="0.6558%" height="15" fill="rgb(227,24,42)" fg:x="968260" fg:w="15658"/><text x="40.8038%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (14,647 samples, 0.61%)</title><rect x="40.5961%" y="373" width="0.6135%" height="15" fill="rgb(223,211,37)" fg:x="969271" fg:w="14647"/><text x="40.8461%" y="383.50"></text></g><g><title>_raw_spin_unlock_irqrestore (334 samples, 0.01%)</title><rect x="41.2096%" y="389" width="0.0140%" height="15" fill="rgb(235,49,27)" fg:x="983918" fg:w="334"/><text x="41.4596%" y="399.50"></text></g><g><title>prepare_to_wait_event (17,765 samples, 0.74%)</title><rect x="40.4795%" y="405" width="0.7441%" height="15" fill="rgb(254,97,51)" fg:x="966488" fg:w="17765"/><text x="40.7295%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (26,603 samples, 1.11%)</title><rect x="41.2236%" y="405" width="1.1142%" height="15" fill="rgb(249,51,40)" fg:x="984253" fg:w="26603"/><text x="41.4736%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (14,383 samples, 0.60%)</title><rect x="41.7354%" y="389" width="0.6024%" height="15" fill="rgb(210,128,45)" fg:x="996473" fg:w="14383"/><text x="41.9854%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (548 samples, 0.02%)</title><rect x="42.3799%" y="373" width="0.0230%" height="15" fill="rgb(224,137,50)" fg:x="1011861" fg:w="548"/><text x="42.6299%" y="383.50"></text></g><g><title>update_cfs_group (380 samples, 0.02%)</title><rect x="42.4566%" y="341" width="0.0159%" height="15" fill="rgb(242,15,9)" fg:x="1013691" fg:w="380"/><text x="42.7066%" y="351.50"></text></g><g><title>cpuacct_charge (291 samples, 0.01%)</title><rect x="42.5079%" y="325" width="0.0122%" height="15" fill="rgb(233,187,41)" fg:x="1014917" fg:w="291"/><text x="42.7579%" y="335.50"></text></g><g><title>update_curr (1,232 samples, 0.05%)</title><rect x="42.4725%" y="341" width="0.0516%" height="15" fill="rgb(227,2,29)" fg:x="1014071" fg:w="1232"/><text x="42.7225%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (295 samples, 0.01%)</title><rect x="42.5407%" y="325" width="0.0124%" height="15" fill="rgb(222,70,3)" fg:x="1015699" fg:w="295"/><text x="42.7907%" y="335.50"></text></g><g><title>__update_load_avg_se (343 samples, 0.01%)</title><rect x="42.5530%" y="325" width="0.0144%" height="15" fill="rgb(213,11,42)" fg:x="1015994" fg:w="343"/><text x="42.8030%" y="335.50"></text></g><g><title>dequeue_entity (3,352 samples, 0.14%)</title><rect x="42.4278%" y="357" width="0.1404%" height="15" fill="rgb(225,150,9)" fg:x="1013005" fg:w="3352"/><text x="42.6778%" y="367.50"></text></g><g><title>update_load_avg (1,054 samples, 0.04%)</title><rect x="42.5241%" y="341" width="0.0441%" height="15" fill="rgb(230,162,45)" fg:x="1015303" fg:w="1054"/><text x="42.7741%" y="351.50"></text></g><g><title>dequeue_task_fair (3,975 samples, 0.17%)</title><rect x="42.4118%" y="373" width="0.1665%" height="15" fill="rgb(222,14,52)" fg:x="1012622" fg:w="3975"/><text x="42.6618%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (728 samples, 0.03%)</title><rect x="42.6024%" y="357" width="0.0305%" height="15" fill="rgb(254,198,14)" fg:x="1017174" fg:w="728"/><text x="42.8524%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (622 samples, 0.03%)</title><rect x="42.6069%" y="341" width="0.0261%" height="15" fill="rgb(220,217,30)" fg:x="1017280" fg:w="622"/><text x="42.8569%" y="351.50"></text></g><g><title>native_write_msr (573 samples, 0.02%)</title><rect x="42.6089%" y="325" width="0.0240%" height="15" fill="rgb(215,146,41)" fg:x="1017329" fg:w="573"/><text x="42.8589%" y="335.50"></text></g><g><title>finish_task_switch (1,417 samples, 0.06%)</title><rect x="42.5783%" y="373" width="0.0593%" height="15" fill="rgb(217,27,36)" fg:x="1016597" fg:w="1417"/><text x="42.8283%" y="383.50"></text></g><g><title>newidle_balance (334 samples, 0.01%)</title><rect x="42.6444%" y="357" width="0.0140%" height="15" fill="rgb(219,218,39)" fg:x="1018177" fg:w="334"/><text x="42.8944%" y="367.50"></text></g><g><title>pick_next_task_fair (631 samples, 0.03%)</title><rect x="42.6378%" y="373" width="0.0264%" height="15" fill="rgb(219,4,42)" fg:x="1018018" fg:w="631"/><text x="42.8878%" y="383.50"></text></g><g><title>__update_idle_core (593 samples, 0.02%)</title><rect x="42.6682%" y="357" width="0.0248%" height="15" fill="rgb(249,119,36)" fg:x="1018744" fg:w="593"/><text x="42.9182%" y="367.50"></text></g><g><title>pick_next_task_idle (693 samples, 0.03%)</title><rect x="42.6642%" y="373" width="0.0290%" height="15" fill="rgb(209,23,33)" fg:x="1018649" fg:w="693"/><text x="42.9142%" y="383.50"></text></g><g><title>psi_task_change (3,015 samples, 0.13%)</title><rect x="42.6932%" y="373" width="0.1263%" height="15" fill="rgb(211,10,0)" fg:x="1019342" fg:w="3015"/><text x="42.9432%" y="383.50"></text></g><g><title>psi_group_change (2,584 samples, 0.11%)</title><rect x="42.7113%" y="357" width="0.1082%" height="15" fill="rgb(208,99,37)" fg:x="1019773" fg:w="2584"/><text x="42.9613%" y="367.50"></text></g><g><title>record_times (660 samples, 0.03%)</title><rect x="42.7919%" y="341" width="0.0276%" height="15" fill="rgb(213,132,31)" fg:x="1021697" fg:w="660"/><text x="43.0419%" y="351.50"></text></g><g><title>sched_clock_cpu (436 samples, 0.02%)</title><rect x="42.8013%" y="325" width="0.0183%" height="15" fill="rgb(243,129,40)" fg:x="1021921" fg:w="436"/><text x="43.0513%" y="335.50"></text></g><g><title>sched_clock (377 samples, 0.02%)</title><rect x="42.8037%" y="309" width="0.0158%" height="15" fill="rgb(210,66,33)" fg:x="1021980" fg:w="377"/><text x="43.0537%" y="319.50"></text></g><g><title>native_sched_clock (366 samples, 0.02%)</title><rect x="42.8042%" y="293" width="0.0153%" height="15" fill="rgb(209,189,4)" fg:x="1021991" fg:w="366"/><text x="43.0542%" y="303.50"></text></g><g><title>psi_task_switch (310 samples, 0.01%)</title><rect x="42.8195%" y="373" width="0.0130%" height="15" fill="rgb(214,107,37)" fg:x="1022357" fg:w="310"/><text x="43.0695%" y="383.50"></text></g><g><title>__schedule (12,184 samples, 0.51%)</title><rect x="42.3453%" y="389" width="0.5103%" height="15" fill="rgb(245,88,54)" fg:x="1011034" fg:w="12184"/><text x="42.5953%" y="399.50"></text></g><g><title>update_rq_clock (274 samples, 0.01%)</title><rect x="42.8441%" y="373" width="0.0115%" height="15" fill="rgb(205,146,20)" fg:x="1022944" fg:w="274"/><text x="43.0941%" y="383.50"></text></g><g><title>__btrfs_tree_lock (66,238 samples, 2.77%)</title><rect x="40.0814%" y="421" width="2.7743%" height="15" fill="rgb(220,161,25)" fg:x="956981" fg:w="66238"/><text x="40.3314%" y="431.50">__..</text></g><g><title>schedule (12,363 samples, 0.52%)</title><rect x="42.3378%" y="405" width="0.5178%" height="15" fill="rgb(215,152,15)" fg:x="1010856" fg:w="12363"/><text x="42.5878%" y="415.50"></text></g><g><title>btrfs_lock_root_node (66,998 samples, 2.81%)</title><rect x="40.0787%" y="437" width="2.8061%" height="15" fill="rgb(233,192,44)" fg:x="956917" fg:w="66998"/><text x="40.3287%" y="447.50">bt..</text></g><g><title>btrfs_root_node (696 samples, 0.03%)</title><rect x="42.8556%" y="421" width="0.0292%" height="15" fill="rgb(240,170,46)" fg:x="1023219" fg:w="696"/><text x="43.1056%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (1,282 samples, 0.05%)</title><rect x="42.8848%" y="437" width="0.0537%" height="15" fill="rgb(207,104,33)" fg:x="1023915" fg:w="1282"/><text x="43.1348%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_write (497 samples, 0.02%)</title><rect x="42.9176%" y="421" width="0.0208%" height="15" fill="rgb(219,21,39)" fg:x="1024700" fg:w="497"/><text x="43.1676%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (763 samples, 0.03%)</title><rect x="42.9385%" y="437" width="0.0320%" height="15" fill="rgb(214,133,29)" fg:x="1025197" fg:w="763"/><text x="43.1885%" y="447.50"></text></g><g><title>_raw_write_lock (383 samples, 0.02%)</title><rect x="42.9780%" y="421" width="0.0160%" height="15" fill="rgb(226,93,6)" fg:x="1026141" fg:w="383"/><text x="43.2280%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (3,836 samples, 0.16%)</title><rect x="42.9704%" y="437" width="0.1607%" height="15" fill="rgb(252,222,34)" fg:x="1025960" fg:w="3836"/><text x="43.2204%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (3,272 samples, 0.14%)</title><rect x="42.9940%" y="421" width="0.1370%" height="15" fill="rgb(252,92,48)" fg:x="1026524" fg:w="3272"/><text x="43.2440%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (810 samples, 0.03%)</title><rect x="43.1315%" y="437" width="0.0339%" height="15" fill="rgb(245,223,24)" fg:x="1029805" fg:w="810"/><text x="43.3815%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (5,580 samples, 0.23%)</title><rect x="43.1654%" y="437" width="0.2337%" height="15" fill="rgb(205,176,3)" fg:x="1030615" fg:w="5580"/><text x="43.4154%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (769 samples, 0.03%)</title><rect x="43.4298%" y="421" width="0.0322%" height="15" fill="rgb(235,151,15)" fg:x="1036929" fg:w="769"/><text x="43.6798%" y="431.50"></text></g><g><title>verify_parent_transid (590 samples, 0.02%)</title><rect x="43.4373%" y="405" width="0.0247%" height="15" fill="rgb(237,209,11)" fg:x="1037108" fg:w="590"/><text x="43.6873%" y="415.50"></text></g><g><title>btrfs_get_64 (1,074 samples, 0.04%)</title><rect x="43.4620%" y="421" width="0.0450%" height="15" fill="rgb(243,227,24)" fg:x="1037698" fg:w="1074"/><text x="43.7120%" y="431.50"></text></g><g><title>btrfs_verify_level_key (362 samples, 0.02%)</title><rect x="43.5114%" y="421" width="0.0152%" height="15" fill="rgb(239,193,16)" fg:x="1038877" fg:w="362"/><text x="43.7614%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,992 samples, 0.13%)</title><rect x="43.5803%" y="405" width="0.1253%" height="15" fill="rgb(231,27,9)" fg:x="1040522" fg:w="2992"/><text x="43.8303%" y="415.50"></text></g><g><title>mark_page_accessed (984 samples, 0.04%)</title><rect x="43.7195%" y="389" width="0.0412%" height="15" fill="rgb(219,169,10)" fg:x="1043846" fg:w="984"/><text x="43.9695%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,308 samples, 0.05%)</title><rect x="43.7061%" y="405" width="0.0548%" height="15" fill="rgb(244,229,43)" fg:x="1043524" fg:w="1308"/><text x="43.9561%" y="415.50"></text></g><g><title>find_extent_buffer (5,632 samples, 0.24%)</title><rect x="43.5266%" y="421" width="0.2359%" height="15" fill="rgb(254,38,20)" fg:x="1039239" fg:w="5632"/><text x="43.7766%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (9,609 samples, 0.40%)</title><rect x="43.3991%" y="437" width="0.4025%" height="15" fill="rgb(250,47,30)" fg:x="1036195" fg:w="9609"/><text x="43.6491%" y="447.50"></text></g><g><title>read_extent_buffer (933 samples, 0.04%)</title><rect x="43.7625%" y="421" width="0.0391%" height="15" fill="rgb(224,124,36)" fg:x="1044871" fg:w="933"/><text x="44.0125%" y="431.50"></text></g><g><title>btrfs_get_64 (311 samples, 0.01%)</title><rect x="43.8163%" y="421" width="0.0130%" height="15" fill="rgb(246,68,51)" fg:x="1046157" fg:w="311"/><text x="44.0663%" y="431.50"></text></g><g><title>__radix_tree_lookup (774 samples, 0.03%)</title><rect x="43.8570%" y="405" width="0.0324%" height="15" fill="rgb(253,43,49)" fg:x="1047128" fg:w="774"/><text x="44.1070%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (399 samples, 0.02%)</title><rect x="43.8896%" y="405" width="0.0167%" height="15" fill="rgb(219,54,36)" fg:x="1047906" fg:w="399"/><text x="44.1396%" y="415.50"></text></g><g><title>mark_page_accessed (283 samples, 0.01%)</title><rect x="43.8944%" y="389" width="0.0119%" height="15" fill="rgb(227,133,34)" fg:x="1048022" fg:w="283"/><text x="44.1444%" y="399.50"></text></g><g><title>find_extent_buffer (1,840 samples, 0.08%)</title><rect x="43.8294%" y="421" width="0.0771%" height="15" fill="rgb(247,227,15)" fg:x="1046468" fg:w="1840"/><text x="44.0794%" y="431.50"></text></g><g><title>reada_for_balance (2,649 samples, 0.11%)</title><rect x="43.8015%" y="437" width="0.1109%" height="15" fill="rgb(229,96,14)" fg:x="1045804" fg:w="2649"/><text x="44.0515%" y="447.50"></text></g><g><title>__list_del_entry_valid (656 samples, 0.03%)</title><rect x="43.9869%" y="373" width="0.0275%" height="15" fill="rgb(220,79,17)" fg:x="1050230" fg:w="656"/><text x="44.2369%" y="383.50"></text></g><g><title>_raw_spin_lock (741 samples, 0.03%)</title><rect x="44.2418%" y="357" width="0.0310%" height="15" fill="rgb(205,131,53)" fg:x="1056316" fg:w="741"/><text x="44.4918%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (388 samples, 0.02%)</title><rect x="44.2566%" y="341" width="0.0163%" height="15" fill="rgb(209,50,29)" fg:x="1056669" fg:w="388"/><text x="44.5066%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (946 samples, 0.04%)</title><rect x="44.2729%" y="357" width="0.0396%" height="15" fill="rgb(245,86,46)" fg:x="1057057" fg:w="946"/><text x="44.5229%" y="367.50"></text></g><g><title>available_idle_cpu (831 samples, 0.03%)</title><rect x="44.3881%" y="341" width="0.0348%" height="15" fill="rgb(235,66,46)" fg:x="1059808" fg:w="831"/><text x="44.6381%" y="351.50"></text></g><g><title>select_task_rq_fair (3,868 samples, 0.16%)</title><rect x="44.3176%" y="357" width="0.1620%" height="15" fill="rgb(232,148,31)" fg:x="1058126" fg:w="3868"/><text x="44.5676%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (882 samples, 0.04%)</title><rect x="44.4427%" y="341" width="0.0369%" height="15" fill="rgb(217,149,8)" fg:x="1061112" fg:w="882"/><text x="44.6927%" y="351.50"></text></g><g><title>set_task_cpu (340 samples, 0.01%)</title><rect x="44.4796%" y="357" width="0.0142%" height="15" fill="rgb(209,183,11)" fg:x="1061994" fg:w="340"/><text x="44.7296%" y="367.50"></text></g><g><title>reweight_entity (323 samples, 0.01%)</title><rect x="44.5966%" y="309" width="0.0135%" height="15" fill="rgb(208,55,20)" fg:x="1064786" fg:w="323"/><text x="44.8466%" y="319.50"></text></g><g><title>update_cfs_group (291 samples, 0.01%)</title><rect x="44.6101%" y="309" width="0.0122%" height="15" fill="rgb(218,39,14)" fg:x="1065109" fg:w="291"/><text x="44.8601%" y="319.50"></text></g><g><title>update_curr (468 samples, 0.02%)</title><rect x="44.6223%" y="309" width="0.0196%" height="15" fill="rgb(216,169,33)" fg:x="1065400" fg:w="468"/><text x="44.8723%" y="319.50"></text></g><g><title>__update_load_avg_cfs_rq (320 samples, 0.01%)</title><rect x="44.6687%" y="293" width="0.0134%" height="15" fill="rgb(233,80,24)" fg:x="1066509" fg:w="320"/><text x="44.9187%" y="303.50"></text></g><g><title>enqueue_entity (3,680 samples, 0.15%)</title><rect x="44.5406%" y="325" width="0.1541%" height="15" fill="rgb(213,179,31)" fg:x="1063449" fg:w="3680"/><text x="44.7906%" y="335.50"></text></g><g><title>update_load_avg (1,261 samples, 0.05%)</title><rect x="44.6419%" y="309" width="0.0528%" height="15" fill="rgb(209,19,5)" fg:x="1065868" fg:w="1261"/><text x="44.8919%" y="319.50"></text></g><g><title>enqueue_task_fair (4,661 samples, 0.20%)</title><rect x="44.5117%" y="341" width="0.1952%" height="15" fill="rgb(219,18,35)" fg:x="1062760" fg:w="4661"/><text x="44.7617%" y="351.50"></text></g><g><title>ttwu_do_activate (9,705 samples, 0.41%)</title><rect x="44.4939%" y="357" width="0.4065%" height="15" fill="rgb(209,169,16)" fg:x="1062334" fg:w="9705"/><text x="44.7439%" y="367.50"></text></g><g><title>psi_task_change (4,607 samples, 0.19%)</title><rect x="44.7074%" y="341" width="0.1930%" height="15" fill="rgb(245,90,51)" fg:x="1067432" fg:w="4607"/><text x="44.9574%" y="351.50"></text></g><g><title>psi_group_change (4,138 samples, 0.17%)</title><rect x="44.7270%" y="325" width="0.1733%" height="15" fill="rgb(220,99,45)" fg:x="1067901" fg:w="4138"/><text x="44.9770%" y="335.50"></text></g><g><title>record_times (689 samples, 0.03%)</title><rect x="44.8715%" y="309" width="0.0289%" height="15" fill="rgb(249,89,25)" fg:x="1071350" fg:w="689"/><text x="45.1215%" y="319.50"></text></g><g><title>sched_clock_cpu (468 samples, 0.02%)</title><rect x="44.8808%" y="293" width="0.0196%" height="15" fill="rgb(239,193,0)" fg:x="1071571" fg:w="468"/><text x="45.1308%" y="303.50"></text></g><g><title>sched_clock (390 samples, 0.02%)</title><rect x="44.8840%" y="277" width="0.0163%" height="15" fill="rgb(231,126,1)" fg:x="1071649" fg:w="390"/><text x="45.1340%" y="287.50"></text></g><g><title>native_sched_clock (341 samples, 0.01%)</title><rect x="44.8861%" y="261" width="0.0143%" height="15" fill="rgb(243,166,3)" fg:x="1071698" fg:w="341"/><text x="45.1361%" y="271.50"></text></g><g><title>resched_curr (369 samples, 0.02%)</title><rect x="44.9215%" y="325" width="0.0155%" height="15" fill="rgb(223,22,34)" fg:x="1072544" fg:w="369"/><text x="45.1715%" y="335.50"></text></g><g><title>ttwu_do_wakeup (878 samples, 0.04%)</title><rect x="44.9004%" y="357" width="0.0368%" height="15" fill="rgb(251,52,51)" fg:x="1072039" fg:w="878"/><text x="45.1504%" y="367.50"></text></g><g><title>check_preempt_curr (775 samples, 0.03%)</title><rect x="44.9047%" y="341" width="0.0325%" height="15" fill="rgb(221,165,28)" fg:x="1072142" fg:w="775"/><text x="45.1547%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (721 samples, 0.03%)</title><rect x="44.9371%" y="357" width="0.0302%" height="15" fill="rgb(218,121,47)" fg:x="1072917" fg:w="721"/><text x="45.1871%" y="367.50"></text></g><g><title>__wake_up_common (24,789 samples, 1.04%)</title><rect x="43.9621%" y="405" width="1.0382%" height="15" fill="rgb(209,120,9)" fg:x="1049637" fg:w="24789"/><text x="44.2121%" y="415.50"></text></g><g><title>autoremove_wake_function (24,262 samples, 1.02%)</title><rect x="43.9842%" y="389" width="1.0162%" height="15" fill="rgb(236,68,12)" fg:x="1050164" fg:w="24262"/><text x="44.2342%" y="399.50"></text></g><g><title>try_to_wake_up (23,520 samples, 0.99%)</title><rect x="44.0152%" y="373" width="0.9851%" height="15" fill="rgb(225,194,26)" fg:x="1050906" fg:w="23520"/><text x="44.2652%" y="383.50"></text></g><g><title>update_rq_clock (788 samples, 0.03%)</title><rect x="44.9673%" y="357" width="0.0330%" height="15" fill="rgb(231,84,39)" fg:x="1073638" fg:w="788"/><text x="45.2173%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (3,752 samples, 0.16%)</title><rect x="45.0003%" y="405" width="0.1571%" height="15" fill="rgb(210,11,45)" fg:x="1074426" fg:w="3752"/><text x="45.2503%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,514 samples, 0.15%)</title><rect x="45.0103%" y="389" width="0.1472%" height="15" fill="rgb(224,54,52)" fg:x="1074664" fg:w="3514"/><text x="45.2603%" y="399.50"></text></g><g><title>__wake_up_common_lock (28,864 samples, 1.21%)</title><rect x="43.9590%" y="421" width="1.2089%" height="15" fill="rgb(238,102,14)" fg:x="1049563" fg:w="28864"/><text x="44.2090%" y="431.50"></text></g><g><title>_raw_spin_unlock_irqrestore (249 samples, 0.01%)</title><rect x="45.1575%" y="405" width="0.0104%" height="15" fill="rgb(243,160,52)" fg:x="1078178" fg:w="249"/><text x="45.4075%" y="415.50"></text></g><g><title>btrfs_search_slot (195,199 samples, 8.18%)</title><rect x="37.0221%" y="453" width="8.1755%" height="15" fill="rgb(216,114,19)" fg:x="883937" fg:w="195199"/><text x="37.2721%" y="463.50">btrfs_searc..</text></g><g><title>unlock_up (30,604 samples, 1.28%)</title><rect x="43.9158%" y="437" width="1.2818%" height="15" fill="rgb(244,166,37)" fg:x="1048532" fg:w="30604"/><text x="44.1658%" y="447.50"></text></g><g><title>btrfs_tree_unlock (698 samples, 0.03%)</title><rect x="45.1684%" y="421" width="0.0292%" height="15" fill="rgb(246,29,44)" fg:x="1078438" fg:w="698"/><text x="45.4184%" y="431.50"></text></g><g><title>_raw_spin_lock (469 samples, 0.02%)</title><rect x="45.2086%" y="437" width="0.0196%" height="15" fill="rgb(215,56,53)" fg:x="1079398" fg:w="469"/><text x="45.4586%" y="447.50"></text></g><g><title>inode_sub_bytes (732 samples, 0.03%)</title><rect x="45.1976%" y="453" width="0.0307%" height="15" fill="rgb(217,60,2)" fg:x="1079136" fg:w="732"/><text x="45.4476%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,007 samples, 0.04%)</title><rect x="45.2283%" y="453" width="0.0422%" height="15" fill="rgb(207,26,24)" fg:x="1079868" fg:w="1007"/><text x="45.4783%" y="463.50"></text></g><g><title>kmem_cache_free (774 samples, 0.03%)</title><rect x="45.2704%" y="453" width="0.0324%" height="15" fill="rgb(252,210,15)" fg:x="1080875" fg:w="774"/><text x="45.5204%" y="463.50"></text></g><g><title>_raw_spin_lock (304 samples, 0.01%)</title><rect x="45.3573%" y="421" width="0.0127%" height="15" fill="rgb(253,209,26)" fg:x="1082948" fg:w="304"/><text x="45.6073%" y="431.50"></text></g><g><title>alloc_extent_state (1,817 samples, 0.08%)</title><rect x="45.3700%" y="421" width="0.0761%" height="15" fill="rgb(238,170,14)" fg:x="1083252" fg:w="1817"/><text x="45.6200%" y="431.50"></text></g><g><title>kmem_cache_alloc (1,288 samples, 0.05%)</title><rect x="45.3921%" y="405" width="0.0539%" height="15" fill="rgb(216,178,15)" fg:x="1083781" fg:w="1288"/><text x="45.6421%" y="415.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (314 samples, 0.01%)</title><rect x="45.4329%" y="389" width="0.0132%" height="15" fill="rgb(250,197,2)" fg:x="1084755" fg:w="314"/><text x="45.6829%" y="399.50"></text></g><g><title>cache_state_if_flags (462 samples, 0.02%)</title><rect x="45.4462%" y="421" width="0.0194%" height="15" fill="rgb(212,70,42)" fg:x="1085071" fg:w="462"/><text x="45.6962%" y="431.50"></text></g><g><title>insert_state (1,932 samples, 0.08%)</title><rect x="45.4655%" y="421" width="0.0809%" height="15" fill="rgb(227,213,9)" fg:x="1085533" fg:w="1932"/><text x="45.7155%" y="431.50"></text></g><g><title>set_state_bits (1,237 samples, 0.05%)</title><rect x="45.4946%" y="405" width="0.0518%" height="15" fill="rgb(245,99,25)" fg:x="1086228" fg:w="1237"/><text x="45.7446%" y="415.50"></text></g><g><title>btrfs_set_delalloc_extent (548 samples, 0.02%)</title><rect x="45.5235%" y="389" width="0.0230%" height="15" fill="rgb(250,82,29)" fg:x="1086917" fg:w="548"/><text x="45.7735%" y="399.50"></text></g><g><title>__set_extent_bit (5,544 samples, 0.23%)</title><rect x="45.3143%" y="437" width="0.2322%" height="15" fill="rgb(241,226,54)" fg:x="1081922" fg:w="5544"/><text x="45.5643%" y="447.50"></text></g><g><title>lock_extent_bits (5,820 samples, 0.24%)</title><rect x="45.3028%" y="453" width="0.2438%" height="15" fill="rgb(221,99,41)" fg:x="1081649" fg:w="5820"/><text x="45.5528%" y="463.50"></text></g><g><title>btrfs_truncate_inode_items (282,803 samples, 11.84%)</title><rect x="33.7395%" y="469" width="11.8447%" height="15" fill="rgb(213,90,21)" fg:x="805564" fg:w="282803"/><text x="33.9895%" y="479.50">btrfs_truncate_ino..</text></g><g><title>read_extent_buffer (898 samples, 0.04%)</title><rect x="45.5466%" y="453" width="0.0376%" height="15" fill="rgb(205,208,24)" fg:x="1087469" fg:w="898"/><text x="45.7966%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,678 samples, 0.07%)</title><rect x="45.6035%" y="453" width="0.0703%" height="15" fill="rgb(246,31,12)" fg:x="1088827" fg:w="1678"/><text x="45.8535%" y="463.50"></text></g><g><title>_raw_spin_lock (1,482 samples, 0.06%)</title><rect x="45.6117%" y="437" width="0.0621%" height="15" fill="rgb(213,154,6)" fg:x="1089023" fg:w="1482"/><text x="45.8617%" y="447.50"></text></g><g><title>_raw_spin_lock (492 samples, 0.02%)</title><rect x="45.6944%" y="437" width="0.0206%" height="15" fill="rgb(222,163,29)" fg:x="1090998" fg:w="492"/><text x="45.9444%" y="447.50"></text></g><g><title>_raw_spin_lock (516 samples, 0.02%)</title><rect x="45.7281%" y="421" width="0.0216%" height="15" fill="rgb(227,201,8)" fg:x="1091802" fg:w="516"/><text x="45.9781%" y="431.50"></text></g><g><title>btrfs_block_rsv_add_bytes (828 samples, 0.03%)</title><rect x="45.7151%" y="437" width="0.0347%" height="15" fill="rgb(233,9,32)" fg:x="1091491" fg:w="828"/><text x="45.9651%" y="447.50"></text></g><g><title>_raw_spin_lock (1,542 samples, 0.06%)</title><rect x="45.8255%" y="405" width="0.0646%" height="15" fill="rgb(217,54,24)" fg:x="1094127" fg:w="1542"/><text x="46.0755%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (744 samples, 0.03%)</title><rect x="45.8589%" y="389" width="0.0312%" height="15" fill="rgb(235,192,0)" fg:x="1094925" fg:w="744"/><text x="46.1089%" y="399.50"></text></g><g><title>btrfs_get_alloc_profile (487 samples, 0.02%)</title><rect x="45.9773%" y="389" width="0.0204%" height="15" fill="rgb(235,45,9)" fg:x="1097753" fg:w="487"/><text x="46.2273%" y="399.50"></text></g><g><title>_raw_spin_lock (825 samples, 0.03%)</title><rect x="46.0487%" y="373" width="0.0346%" height="15" fill="rgb(246,42,40)" fg:x="1099456" fg:w="825"/><text x="46.2987%" y="383.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (4,618 samples, 0.19%)</title><rect x="45.8903%" y="405" width="0.1934%" height="15" fill="rgb(248,111,24)" fg:x="1095676" fg:w="4618"/><text x="46.1403%" y="415.50"></text></g><g><title>btrfs_reduce_alloc_profile (2,054 samples, 0.09%)</title><rect x="45.9977%" y="389" width="0.0860%" height="15" fill="rgb(249,65,22)" fg:x="1098240" fg:w="2054"/><text x="46.2477%" y="399.50"></text></g><g><title>btrfs_get_alloc_profile (709 samples, 0.03%)</title><rect x="46.1240%" y="389" width="0.0297%" height="15" fill="rgb(238,111,51)" fg:x="1101254" fg:w="709"/><text x="46.3740%" y="399.50"></text></g><g><title>_raw_spin_lock (713 samples, 0.03%)</title><rect x="46.1798%" y="373" width="0.0299%" height="15" fill="rgb(250,118,22)" fg:x="1102588" fg:w="713"/><text x="46.4298%" y="383.50"></text></g><g><title>__reserve_bytes (10,702 samples, 0.45%)</title><rect x="45.7617%" y="421" width="0.4482%" height="15" fill="rgb(234,84,26)" fg:x="1092604" fg:w="10702"/><text x="46.0117%" y="431.50"></text></g><g><title>calc_available_free_space.isra.0 (3,012 samples, 0.13%)</title><rect x="46.0838%" y="405" width="0.1262%" height="15" fill="rgb(243,172,12)" fg:x="1100294" fg:w="3012"/><text x="46.3338%" y="415.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,343 samples, 0.06%)</title><rect x="46.1537%" y="389" width="0.0562%" height="15" fill="rgb(236,150,49)" fg:x="1101963" fg:w="1343"/><text x="46.4037%" y="399.50"></text></g><g><title>btrfs_block_rsv_refill (12,804 samples, 0.54%)</title><rect x="45.6738%" y="453" width="0.5363%" height="15" fill="rgb(225,197,26)" fg:x="1090505" fg:w="12804"/><text x="45.9238%" y="463.50"></text></g><g><title>btrfs_reserve_metadata_bytes (10,990 samples, 0.46%)</title><rect x="45.7497%" y="437" width="0.4603%" height="15" fill="rgb(214,17,42)" fg:x="1092319" fg:w="10990"/><text x="45.9997%" y="447.50"></text></g><g><title>btrfs_join_transaction (280 samples, 0.01%)</title><rect x="46.2100%" y="453" width="0.0117%" height="15" fill="rgb(224,165,40)" fg:x="1103309" fg:w="280"/><text x="46.4600%" y="463.50"></text></g><g><title>_raw_spin_lock (1,382 samples, 0.06%)</title><rect x="46.3619%" y="421" width="0.0579%" height="15" fill="rgb(246,100,4)" fg:x="1106935" fg:w="1382"/><text x="46.6119%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (277 samples, 0.01%)</title><rect x="46.4082%" y="405" width="0.0116%" height="15" fill="rgb(222,103,0)" fg:x="1108040" fg:w="277"/><text x="46.6582%" y="415.50"></text></g><g><title>join_transaction (2,814 samples, 0.12%)</title><rect x="46.3024%" y="437" width="0.1179%" height="15" fill="rgb(227,189,26)" fg:x="1105515" fg:w="2814"/><text x="46.5524%" y="447.50"></text></g><g><title>memset_erms (417 samples, 0.02%)</title><rect x="46.4641%" y="421" width="0.0175%" height="15" fill="rgb(214,202,17)" fg:x="1109374" fg:w="417"/><text x="46.7141%" y="431.50"></text></g><g><title>kmem_cache_alloc (1,899 samples, 0.08%)</title><rect x="46.4203%" y="437" width="0.0795%" height="15" fill="rgb(229,111,3)" fg:x="1108329" fg:w="1899"/><text x="46.6703%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (437 samples, 0.02%)</title><rect x="46.4815%" y="421" width="0.0183%" height="15" fill="rgb(229,172,15)" fg:x="1109791" fg:w="437"/><text x="46.7315%" y="431.50"></text></g><g><title>evict_refill_and_join (21,844 samples, 0.91%)</title><rect x="45.5850%" y="469" width="0.9149%" height="15" fill="rgb(230,224,35)" fg:x="1088385" fg:w="21844"/><text x="45.8350%" y="479.50"></text></g><g><title>start_transaction (6,640 samples, 0.28%)</title><rect x="46.2218%" y="453" width="0.2781%" height="15" fill="rgb(251,141,6)" fg:x="1103589" fg:w="6640"/><text x="46.4718%" y="463.50"></text></g><g><title>kfree (1,644 samples, 0.07%)</title><rect x="46.5027%" y="469" width="0.0689%" height="15" fill="rgb(225,208,6)" fg:x="1110296" fg:w="1644"/><text x="46.7527%" y="479.50"></text></g><g><title>__slab_free (577 samples, 0.02%)</title><rect x="46.6194%" y="453" width="0.0242%" height="15" fill="rgb(246,181,16)" fg:x="1113082" fg:w="577"/><text x="46.8694%" y="463.50"></text></g><g><title>kmem_cache_free (2,270 samples, 0.10%)</title><rect x="46.5715%" y="469" width="0.0951%" height="15" fill="rgb(227,129,36)" fg:x="1111940" fg:w="2270"/><text x="46.8215%" y="479.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (404 samples, 0.02%)</title><rect x="46.6497%" y="453" width="0.0169%" height="15" fill="rgb(248,117,24)" fg:x="1113806" fg:w="404"/><text x="46.8997%" y="463.50"></text></g><g><title>truncate_inode_pages_final (771 samples, 0.03%)</title><rect x="46.6675%" y="469" width="0.0323%" height="15" fill="rgb(214,185,35)" fg:x="1114232" fg:w="771"/><text x="46.9175%" y="479.50"></text></g><g><title>btrfs_evict_inode (798,708 samples, 33.45%)</title><rect x="13.2626%" y="485" width="33.4524%" height="15" fill="rgb(236,150,34)" fg:x="316657" fg:w="798708"/><text x="13.5126%" y="495.50">btrfs_evict_inode</text></g><g><title>truncate_inode_pages_range (362 samples, 0.02%)</title><rect x="46.6998%" y="469" width="0.0152%" height="15" fill="rgb(243,228,27)" fg:x="1115003" fg:w="362"/><text x="46.9498%" y="479.50"></text></g><g><title>_raw_spin_lock_irq (475 samples, 0.02%)</title><rect x="46.7211%" y="469" width="0.0199%" height="15" fill="rgb(245,77,44)" fg:x="1115512" fg:w="475"/><text x="46.9711%" y="479.50"></text></g><g><title>clear_inode (625 samples, 0.03%)</title><rect x="46.7150%" y="485" width="0.0262%" height="15" fill="rgb(235,214,42)" fg:x="1115365" fg:w="625"/><text x="46.9650%" y="495.50"></text></g><g><title>_raw_spin_lock (375 samples, 0.02%)</title><rect x="46.7467%" y="469" width="0.0157%" height="15" fill="rgb(221,74,3)" fg:x="1116123" fg:w="375"/><text x="46.9967%" y="479.50"></text></g><g><title>inode_wait_for_writeback (509 samples, 0.02%)</title><rect x="46.7412%" y="485" width="0.0213%" height="15" fill="rgb(206,121,29)" fg:x="1115990" fg:w="509"/><text x="46.9912%" y="495.50"></text></g><g><title>evict (803,578 samples, 33.66%)</title><rect x="13.1129%" y="501" width="33.6564%" height="15" fill="rgb(249,131,53)" fg:x="313083" fg:w="803578"/><text x="13.3629%" y="511.50">evict</text></g><g><title>__legitimize_mnt (524 samples, 0.02%)</title><rect x="46.8673%" y="421" width="0.0219%" height="15" fill="rgb(236,170,29)" fg:x="1119002" fg:w="524"/><text x="47.1173%" y="431.50"></text></g><g><title>__legitimize_path (1,165 samples, 0.05%)</title><rect x="46.8517%" y="437" width="0.0488%" height="15" fill="rgb(247,96,15)" fg:x="1118629" fg:w="1165"/><text x="47.1017%" y="447.50"></text></g><g><title>lockref_get_not_dead (268 samples, 0.01%)</title><rect x="46.8893%" y="421" width="0.0112%" height="15" fill="rgb(211,210,7)" fg:x="1119526" fg:w="268"/><text x="47.1393%" y="431.50"></text></g><g><title>legitimize_links (448 samples, 0.02%)</title><rect x="46.9006%" y="437" width="0.0188%" height="15" fill="rgb(240,88,50)" fg:x="1119797" fg:w="448"/><text x="47.1506%" y="447.50"></text></g><g><title>complete_walk (2,542 samples, 0.11%)</title><rect x="46.8169%" y="469" width="0.1065%" height="15" fill="rgb(209,229,26)" fg:x="1117798" fg:w="2542"/><text x="47.0669%" y="479.50"></text></g><g><title>try_to_unlazy (2,198 samples, 0.09%)</title><rect x="46.8313%" y="453" width="0.0921%" height="15" fill="rgb(210,68,23)" fg:x="1118142" fg:w="2198"/><text x="47.0813%" y="463.50"></text></g><g><title>inode_permission.part.0 (1,416 samples, 0.06%)</title><rect x="46.9483%" y="453" width="0.0593%" height="15" fill="rgb(229,180,13)" fg:x="1120935" fg:w="1416"/><text x="47.1983%" y="463.50"></text></g><g><title>generic_permission (606 samples, 0.03%)</title><rect x="46.9822%" y="437" width="0.0254%" height="15" fill="rgb(236,53,44)" fg:x="1121745" fg:w="606"/><text x="47.2322%" y="447.50"></text></g><g><title>link_path_walk.part.0 (2,098 samples, 0.09%)</title><rect x="46.9233%" y="469" width="0.0879%" height="15" fill="rgb(244,214,29)" fg:x="1120340" fg:w="2098"/><text x="47.1733%" y="479.50"></text></g><g><title>__fget_files (1,447 samples, 0.06%)</title><rect x="47.0707%" y="437" width="0.0606%" height="15" fill="rgb(220,75,29)" fg:x="1123859" fg:w="1447"/><text x="47.3207%" y="447.50"></text></g><g><title>__fget_light (2,085 samples, 0.09%)</title><rect x="47.0441%" y="453" width="0.0873%" height="15" fill="rgb(214,183,37)" fg:x="1123222" fg:w="2085"/><text x="47.2941%" y="463.50"></text></g><g><title>path_init (3,059 samples, 0.13%)</title><rect x="47.0112%" y="469" width="0.1281%" height="15" fill="rgb(239,117,29)" fg:x="1122438" fg:w="3059"/><text x="47.2612%" y="479.50"></text></g><g><title>filename_parentat (9,966 samples, 0.42%)</title><rect x="46.7693%" y="501" width="0.4174%" height="15" fill="rgb(237,171,35)" fg:x="1116661" fg:w="9966"/><text x="47.0193%" y="511.50"></text></g><g><title>path_parentat (9,051 samples, 0.38%)</title><rect x="46.8076%" y="485" width="0.3791%" height="15" fill="rgb(229,178,53)" fg:x="1117576" fg:w="9051"/><text x="47.0576%" y="495.50"></text></g><g><title>terminate_walk (1,130 samples, 0.05%)</title><rect x="47.1393%" y="469" width="0.0473%" height="15" fill="rgb(210,102,19)" fg:x="1125497" fg:w="1130"/><text x="47.3893%" y="479.50"></text></g><g><title>ihold (1,086 samples, 0.05%)</title><rect x="47.1867%" y="501" width="0.0455%" height="15" fill="rgb(235,127,22)" fg:x="1126627" fg:w="1086"/><text x="47.4367%" y="511.50"></text></g><g><title>_atomic_dec_and_lock (383 samples, 0.02%)</title><rect x="47.2574%" y="485" width="0.0160%" height="15" fill="rgb(244,31,31)" fg:x="1128315" fg:w="383"/><text x="47.5074%" y="495.50"></text></g><g><title>iput.part.0 (1,314 samples, 0.06%)</title><rect x="47.2325%" y="501" width="0.0550%" height="15" fill="rgb(231,43,21)" fg:x="1127721" fg:w="1314"/><text x="47.4825%" y="511.50"></text></g><g><title>btrfs_drop_inode (333 samples, 0.01%)</title><rect x="47.2736%" y="485" width="0.0139%" height="15" fill="rgb(217,131,35)" fg:x="1128702" fg:w="333"/><text x="47.5236%" y="495.50"></text></g><g><title>__slab_free (329 samples, 0.01%)</title><rect x="47.3177%" y="485" width="0.0138%" height="15" fill="rgb(221,149,4)" fg:x="1129755" fg:w="329"/><text x="47.5677%" y="495.50"></text></g><g><title>kmem_cache_free (1,495 samples, 0.06%)</title><rect x="47.2875%" y="501" width="0.0626%" height="15" fill="rgb(232,170,28)" fg:x="1129035" fg:w="1495"/><text x="47.5375%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (443 samples, 0.02%)</title><rect x="47.3316%" y="485" width="0.0186%" height="15" fill="rgb(238,56,10)" fg:x="1130087" fg:w="443"/><text x="47.5816%" y="495.50"></text></g><g><title>mnt_drop_write (801 samples, 0.03%)</title><rect x="47.3501%" y="501" width="0.0335%" height="15" fill="rgb(235,196,14)" fg:x="1130530" fg:w="801"/><text x="47.6001%" y="511.50"></text></g><g><title>__mnt_want_write (609 samples, 0.03%)</title><rect x="47.4024%" y="485" width="0.0255%" height="15" fill="rgb(216,45,48)" fg:x="1131778" fg:w="609"/><text x="47.6524%" y="495.50"></text></g><g><title>mnt_want_write (1,168 samples, 0.05%)</title><rect x="47.3837%" y="501" width="0.0489%" height="15" fill="rgb(238,213,17)" fg:x="1131331" fg:w="1168"/><text x="47.6337%" y="511.50"></text></g><g><title>mntput_no_expire (282 samples, 0.01%)</title><rect x="47.4396%" y="501" width="0.0118%" height="15" fill="rgb(212,13,2)" fg:x="1132666" fg:w="282"/><text x="47.6896%" y="511.50"></text></g><g><title>putname (813 samples, 0.03%)</title><rect x="47.4514%" y="501" width="0.0341%" height="15" fill="rgb(240,114,20)" fg:x="1132948" fg:w="813"/><text x="47.7014%" y="511.50"></text></g><g><title>apparmor_path_unlink (369 samples, 0.02%)</title><rect x="47.4907%" y="485" width="0.0155%" height="15" fill="rgb(228,41,40)" fg:x="1133886" fg:w="369"/><text x="47.7407%" y="495.50"></text></g><g><title>security_path_unlink (2,077 samples, 0.09%)</title><rect x="47.4856%" y="501" width="0.0870%" height="15" fill="rgb(244,132,35)" fg:x="1133765" fg:w="2077"/><text x="47.7356%" y="511.50"></text></g><g><title>tomoyo_path_unlink (1,585 samples, 0.07%)</title><rect x="47.5062%" y="485" width="0.0664%" height="15" fill="rgb(253,189,4)" fg:x="1134257" fg:w="1585"/><text x="47.7562%" y="495.50"></text></g><g><title>tomoyo_path_perm (1,536 samples, 0.06%)</title><rect x="47.5083%" y="469" width="0.0643%" height="15" fill="rgb(224,37,19)" fg:x="1134306" fg:w="1536"/><text x="47.7583%" y="479.50"></text></g><g><title>tomoyo_init_request_info (1,126 samples, 0.05%)</title><rect x="47.5255%" y="453" width="0.0472%" height="15" fill="rgb(235,223,18)" fg:x="1134716" fg:w="1126"/><text x="47.7755%" y="463.50"></text></g><g><title>tomoyo_domain (646 samples, 0.03%)</title><rect x="47.5456%" y="437" width="0.0271%" height="15" fill="rgb(235,163,25)" fg:x="1135196" fg:w="646"/><text x="47.7956%" y="447.50"></text></g><g><title>up_write (280 samples, 0.01%)</title><rect x="47.5726%" y="501" width="0.0117%" height="15" fill="rgb(217,145,28)" fg:x="1135842" fg:w="280"/><text x="47.8226%" y="511.50"></text></g><g><title>_raw_spin_lock (346 samples, 0.01%)</title><rect x="47.6085%" y="485" width="0.0145%" height="15" fill="rgb(223,223,32)" fg:x="1136698" fg:w="346"/><text x="47.8585%" y="495.50"></text></g><g><title>btrfs_put_transaction (245 samples, 0.01%)</title><rect x="47.7415%" y="453" width="0.0103%" height="15" fill="rgb(227,189,39)" fg:x="1139874" fg:w="245"/><text x="47.9915%" y="463.50"></text></g><g><title>_raw_spin_lock (2,169 samples, 0.09%)</title><rect x="47.8013%" y="421" width="0.0908%" height="15" fill="rgb(248,10,22)" fg:x="1141302" fg:w="2169"/><text x="48.0513%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (829 samples, 0.03%)</title><rect x="47.8574%" y="405" width="0.0347%" height="15" fill="rgb(248,46,39)" fg:x="1142642" fg:w="829"/><text x="48.1074%" y="415.50"></text></g><g><title>btrfs_trans_release_metadata (3,392 samples, 0.14%)</title><rect x="47.7574%" y="453" width="0.1421%" height="15" fill="rgb(248,113,48)" fg:x="1140253" fg:w="3392"/><text x="48.0074%" y="463.50"></text></g><g><title>btrfs_block_rsv_release (3,125 samples, 0.13%)</title><rect x="47.7686%" y="437" width="0.1309%" height="15" fill="rgb(245,16,25)" fg:x="1140520" fg:w="3125"/><text x="48.0186%" y="447.50"></text></g><g><title>kmem_cache_free (971 samples, 0.04%)</title><rect x="47.8994%" y="453" width="0.0407%" height="15" fill="rgb(249,152,16)" fg:x="1143645" fg:w="971"/><text x="48.1494%" y="463.50"></text></g><g><title>__btrfs_end_transaction (7,075 samples, 0.30%)</title><rect x="47.6438%" y="469" width="0.2963%" height="15" fill="rgb(250,16,1)" fg:x="1137542" fg:w="7075"/><text x="47.8938%" y="479.50"></text></g><g><title>btrfs_end_log_trans (258 samples, 0.01%)</title><rect x="48.0545%" y="437" width="0.0108%" height="15" fill="rgb(249,138,3)" fg:x="1147348" fg:w="258"/><text x="48.3045%" y="447.50"></text></g><g><title>btrfs_free_path (932 samples, 0.04%)</title><rect x="48.0653%" y="437" width="0.0390%" height="15" fill="rgb(227,71,41)" fg:x="1147606" fg:w="932"/><text x="48.3153%" y="447.50"></text></g><g><title>btrfs_release_path (877 samples, 0.04%)</title><rect x="48.0676%" y="421" width="0.0367%" height="15" fill="rgb(209,184,23)" fg:x="1147661" fg:w="877"/><text x="48.3176%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (338 samples, 0.01%)</title><rect x="48.1352%" y="389" width="0.0142%" height="15" fill="rgb(223,215,31)" fg:x="1149275" fg:w="338"/><text x="48.3852%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (586 samples, 0.02%)</title><rect x="48.1337%" y="405" width="0.0245%" height="15" fill="rgb(210,146,28)" fg:x="1149239" fg:w="586"/><text x="48.3837%" y="415.50"></text></g><g><title>__btrfs_tree_lock (492 samples, 0.02%)</title><rect x="48.1628%" y="389" width="0.0206%" height="15" fill="rgb(209,183,41)" fg:x="1149933" fg:w="492"/><text x="48.4128%" y="399.50"></text></g><g><title>btrfs_lock_root_node (697 samples, 0.03%)</title><rect x="48.1620%" y="405" width="0.0292%" height="15" fill="rgb(209,224,45)" fg:x="1149915" fg:w="697"/><text x="48.4120%" y="415.50"></text></g><g><title>btrfs_set_path_blocking (312 samples, 0.01%)</title><rect x="48.1912%" y="405" width="0.0131%" height="15" fill="rgb(224,209,51)" fg:x="1150612" fg:w="312"/><text x="48.4412%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (449 samples, 0.02%)</title><rect x="48.2191%" y="405" width="0.0188%" height="15" fill="rgb(223,17,39)" fg:x="1151278" fg:w="449"/><text x="48.4691%" y="415.50"></text></g><g><title>btrfs_lookup_dir_index_item (3,600 samples, 0.15%)</title><rect x="48.1044%" y="437" width="0.1508%" height="15" fill="rgb(234,204,37)" fg:x="1148538" fg:w="3600"/><text x="48.3544%" y="447.50"></text></g><g><title>btrfs_search_slot (3,405 samples, 0.14%)</title><rect x="48.1125%" y="421" width="0.1426%" height="15" fill="rgb(236,120,5)" fg:x="1148733" fg:w="3405"/><text x="48.3625%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (577 samples, 0.02%)</title><rect x="48.2935%" y="389" width="0.0242%" height="15" fill="rgb(248,97,27)" fg:x="1153054" fg:w="577"/><text x="48.5435%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (977 samples, 0.04%)</title><rect x="48.2916%" y="405" width="0.0409%" height="15" fill="rgb(240,66,17)" fg:x="1153008" fg:w="977"/><text x="48.5416%" y="415.50"></text></g><g><title>btrfs_root_node (354 samples, 0.01%)</title><rect x="48.3177%" y="389" width="0.0148%" height="15" fill="rgb(210,79,3)" fg:x="1153631" fg:w="354"/><text x="48.5677%" y="399.50"></text></g><g><title>__btrfs_tree_lock (487 samples, 0.02%)</title><rect x="48.3369%" y="389" width="0.0204%" height="15" fill="rgb(214,176,27)" fg:x="1154091" fg:w="487"/><text x="48.5869%" y="399.50"></text></g><g><title>btrfs_lock_root_node (684 samples, 0.03%)</title><rect x="48.3361%" y="405" width="0.0286%" height="15" fill="rgb(235,185,3)" fg:x="1154071" fg:w="684"/><text x="48.5861%" y="415.50"></text></g><g><title>btrfs_set_path_blocking (413 samples, 0.02%)</title><rect x="48.3648%" y="405" width="0.0173%" height="15" fill="rgb(227,24,12)" fg:x="1154755" fg:w="413"/><text x="48.6148%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (475 samples, 0.02%)</title><rect x="48.3968%" y="405" width="0.0199%" height="15" fill="rgb(252,169,48)" fg:x="1155519" fg:w="475"/><text x="48.6468%" y="415.50"></text></g><g><title>btrfs_search_slot (4,025 samples, 0.17%)</title><rect x="48.2662%" y="421" width="0.1686%" height="15" fill="rgb(212,65,1)" fg:x="1152402" fg:w="4025"/><text x="48.5162%" y="431.50"></text></g><g><title>btrfs_lookup_dir_item (4,499 samples, 0.19%)</title><rect x="48.2551%" y="437" width="0.1884%" height="15" fill="rgb(242,39,24)" fg:x="1152138" fg:w="4499"/><text x="48.5051%" y="447.50"></text></g><g><title>__wake_up_common_lock (248 samples, 0.01%)</title><rect x="48.4525%" y="421" width="0.0104%" height="15" fill="rgb(249,32,23)" fg:x="1156849" fg:w="248"/><text x="48.7025%" y="431.50"></text></g><g><title>btrfs_release_path (1,018 samples, 0.04%)</title><rect x="48.4436%" y="437" width="0.0426%" height="15" fill="rgb(251,195,23)" fg:x="1156637" fg:w="1018"/><text x="48.6936%" y="447.50"></text></g><g><title>kmem_cache_alloc (448 samples, 0.02%)</title><rect x="48.4862%" y="437" width="0.0188%" height="15" fill="rgb(236,174,8)" fg:x="1157655" fg:w="448"/><text x="48.7362%" y="447.50"></text></g><g><title>kmem_cache_free (484 samples, 0.02%)</title><rect x="48.5050%" y="437" width="0.0203%" height="15" fill="rgb(220,197,8)" fg:x="1158103" fg:w="484"/><text x="48.7550%" y="447.50"></text></g><g><title>mutex_lock (431 samples, 0.02%)</title><rect x="48.5253%" y="437" width="0.0181%" height="15" fill="rgb(240,108,37)" fg:x="1158587" fg:w="431"/><text x="48.7753%" y="447.50"></text></g><g><title>btrfs_del_dir_entries_in_log (12,913 samples, 0.54%)</title><rect x="48.0147%" y="453" width="0.5408%" height="15" fill="rgb(232,176,24)" fg:x="1146398" fg:w="12913"/><text x="48.2647%" y="463.50"></text></g><g><title>mutex_unlock (293 samples, 0.01%)</title><rect x="48.5433%" y="437" width="0.0123%" height="15" fill="rgb(243,35,29)" fg:x="1159018" fg:w="293"/><text x="48.7933%" y="447.50"></text></g><g><title>__wake_up_common (439 samples, 0.02%)</title><rect x="48.6032%" y="373" width="0.0184%" height="15" fill="rgb(210,37,18)" fg:x="1160447" fg:w="439"/><text x="48.8532%" y="383.50"></text></g><g><title>autoremove_wake_function (426 samples, 0.02%)</title><rect x="48.6037%" y="357" width="0.0178%" height="15" fill="rgb(224,184,40)" fg:x="1160460" fg:w="426"/><text x="48.8537%" y="367.50"></text></g><g><title>try_to_wake_up (424 samples, 0.02%)</title><rect x="48.6038%" y="341" width="0.0178%" height="15" fill="rgb(236,39,29)" fg:x="1160462" fg:w="424"/><text x="48.8538%" y="351.50"></text></g><g><title>__wake_up_common_lock (564 samples, 0.02%)</title><rect x="48.6031%" y="389" width="0.0236%" height="15" fill="rgb(232,48,39)" fg:x="1160445" fg:w="564"/><text x="48.8531%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (349 samples, 0.01%)</title><rect x="48.6339%" y="389" width="0.0146%" height="15" fill="rgb(236,34,42)" fg:x="1161180" fg:w="349"/><text x="48.8839%" y="399.50"></text></g><g><title>btrfs_free_path (1,789 samples, 0.07%)</title><rect x="48.5847%" y="421" width="0.0749%" height="15" fill="rgb(243,106,37)" fg:x="1160006" fg:w="1789"/><text x="48.8347%" y="431.50"></text></g><g><title>btrfs_release_path (1,658 samples, 0.07%)</title><rect x="48.5902%" y="405" width="0.0694%" height="15" fill="rgb(218,96,6)" fg:x="1160137" fg:w="1658"/><text x="48.8402%" y="415.50"></text></g><g><title>release_extent_buffer (266 samples, 0.01%)</title><rect x="48.6485%" y="389" width="0.0111%" height="15" fill="rgb(235,130,12)" fg:x="1161529" fg:w="266"/><text x="48.8985%" y="399.50"></text></g><g><title>_raw_read_lock (341 samples, 0.01%)</title><rect x="48.7212%" y="373" width="0.0143%" height="15" fill="rgb(231,95,0)" fg:x="1163265" fg:w="341"/><text x="48.9712%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (1,181 samples, 0.05%)</title><rect x="48.7132%" y="389" width="0.0495%" height="15" fill="rgb(228,12,23)" fg:x="1163075" fg:w="1181"/><text x="48.9632%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (2,441 samples, 0.10%)</title><rect x="48.7087%" y="405" width="0.1022%" height="15" fill="rgb(216,12,1)" fg:x="1162967" fg:w="2441"/><text x="48.9587%" y="415.50"></text></g><g><title>btrfs_root_node (1,151 samples, 0.05%)</title><rect x="48.7627%" y="389" width="0.0482%" height="15" fill="rgb(219,59,3)" fg:x="1164257" fg:w="1151"/><text x="49.0127%" y="399.50"></text></g><g><title>_raw_write_lock (259 samples, 0.01%)</title><rect x="48.8304%" y="373" width="0.0108%" height="15" fill="rgb(215,208,46)" fg:x="1165872" fg:w="259"/><text x="49.0804%" y="383.50"></text></g><g><title>__btrfs_tree_lock (811 samples, 0.03%)</title><rect x="48.8204%" y="389" width="0.0340%" height="15" fill="rgb(254,224,29)" fg:x="1165635" fg:w="811"/><text x="49.0704%" y="399.50"></text></g><g><title>btrfs_lock_root_node (1,155 samples, 0.05%)</title><rect x="48.8184%" y="405" width="0.0484%" height="15" fill="rgb(232,14,29)" fg:x="1165587" fg:w="1155"/><text x="49.0684%" y="415.50"></text></g><g><title>btrfs_root_node (296 samples, 0.01%)</title><rect x="48.8544%" y="389" width="0.0124%" height="15" fill="rgb(208,45,52)" fg:x="1166446" fg:w="296"/><text x="49.1044%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (336 samples, 0.01%)</title><rect x="48.8799%" y="405" width="0.0141%" height="15" fill="rgb(234,191,28)" fg:x="1167054" fg:w="336"/><text x="49.1299%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (870 samples, 0.04%)</title><rect x="48.8940%" y="405" width="0.0364%" height="15" fill="rgb(244,67,43)" fg:x="1167391" fg:w="870"/><text x="49.1440%" y="415.50"></text></g><g><title>find_extent_buffer (258 samples, 0.01%)</title><rect x="48.9360%" y="389" width="0.0108%" height="15" fill="rgb(236,189,24)" fg:x="1168394" fg:w="258"/><text x="49.1860%" y="399.50"></text></g><g><title>read_block_for_search.isra.0 (433 samples, 0.02%)</title><rect x="48.9304%" y="405" width="0.0181%" height="15" fill="rgb(239,214,33)" fg:x="1168261" fg:w="433"/><text x="49.1804%" y="415.50"></text></g><g><title>btrfs_search_slot (7,402 samples, 0.31%)</title><rect x="48.6596%" y="421" width="0.3100%" height="15" fill="rgb(226,176,41)" fg:x="1161795" fg:w="7402"/><text x="48.9096%" y="431.50"></text></g><g><title>unlock_up (262 samples, 0.01%)</title><rect x="48.9587%" y="405" width="0.0110%" height="15" fill="rgb(248,47,8)" fg:x="1168935" fg:w="262"/><text x="49.2087%" y="415.50"></text></g><g><title>crc32c (553 samples, 0.02%)</title><rect x="48.9696%" y="421" width="0.0232%" height="15" fill="rgb(218,81,44)" fg:x="1169197" fg:w="553"/><text x="49.2196%" y="431.50"></text></g><g><title>crypto_shash_update (291 samples, 0.01%)</title><rect x="48.9806%" y="405" width="0.0122%" height="15" fill="rgb(213,98,6)" fg:x="1169459" fg:w="291"/><text x="49.2306%" y="415.50"></text></g><g><title>memset_erms (252 samples, 0.01%)</title><rect x="49.0239%" y="405" width="0.0106%" height="15" fill="rgb(222,85,22)" fg:x="1170493" fg:w="252"/><text x="49.2739%" y="415.50"></text></g><g><title>kmem_cache_alloc (1,293 samples, 0.05%)</title><rect x="48.9928%" y="421" width="0.0542%" height="15" fill="rgb(239,46,39)" fg:x="1169750" fg:w="1293"/><text x="49.2428%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (298 samples, 0.01%)</title><rect x="49.0345%" y="405" width="0.0125%" height="15" fill="rgb(237,12,29)" fg:x="1170745" fg:w="298"/><text x="49.2845%" y="415.50"></text></g><g><title>btrfs_del_inode_ref (12,274 samples, 0.51%)</title><rect x="48.5725%" y="437" width="0.5141%" height="15" fill="rgb(214,77,8)" fg:x="1159714" fg:w="12274"/><text x="48.8225%" y="447.50"></text></g><g><title>kmem_cache_free (945 samples, 0.04%)</title><rect x="49.0469%" y="421" width="0.0396%" height="15" fill="rgb(217,168,37)" fg:x="1171043" fg:w="945"/><text x="49.2969%" y="431.50"></text></g><g><title>btrfs_end_log_trans (375 samples, 0.02%)</title><rect x="49.0865%" y="437" width="0.0157%" height="15" fill="rgb(221,217,23)" fg:x="1171988" fg:w="375"/><text x="49.3365%" y="447.50"></text></g><g><title>mutex_lock (562 samples, 0.02%)</title><rect x="49.1022%" y="437" width="0.0235%" height="15" fill="rgb(243,229,36)" fg:x="1172363" fg:w="562"/><text x="49.3522%" y="447.50"></text></g><g><title>btrfs_del_inode_ref_in_log (13,876 samples, 0.58%)</title><rect x="48.5556%" y="453" width="0.5812%" height="15" fill="rgb(251,163,40)" fg:x="1159311" fg:w="13876"/><text x="48.8056%" y="463.50"></text></g><g><title>mutex_unlock (262 samples, 0.01%)</title><rect x="49.1258%" y="437" width="0.0110%" height="15" fill="rgb(237,222,12)" fg:x="1172925" fg:w="262"/><text x="49.3758%" y="447.50"></text></g><g><title>__btrfs_add_free_space (245 samples, 0.01%)</title><rect x="49.3039%" y="405" width="0.0103%" height="15" fill="rgb(248,132,6)" fg:x="1177179" fg:w="245"/><text x="49.5539%" y="415.50"></text></g><g><title>btrfs_free_tree_block (543 samples, 0.02%)</title><rect x="49.3038%" y="421" width="0.0227%" height="15" fill="rgb(227,167,50)" fg:x="1177176" fg:w="543"/><text x="49.5538%" y="431.50"></text></g><g><title>btrfs_del_leaf (666 samples, 0.03%)</title><rect x="49.3034%" y="437" width="0.0279%" height="15" fill="rgb(242,84,37)" fg:x="1177166" fg:w="666"/><text x="49.5534%" y="447.50"></text></g><g><title>btrfs_get_32 (809 samples, 0.03%)</title><rect x="49.3313%" y="437" width="0.0339%" height="15" fill="rgb(212,4,50)" fg:x="1177832" fg:w="809"/><text x="49.5813%" y="447.50"></text></g><g><title>btrfs_get_token_32 (15,680 samples, 0.66%)</title><rect x="49.3652%" y="437" width="0.6567%" height="15" fill="rgb(230,228,32)" fg:x="1178641" fg:w="15680"/><text x="49.6152%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (2,029 samples, 0.08%)</title><rect x="49.9369%" y="421" width="0.0850%" height="15" fill="rgb(248,217,23)" fg:x="1192292" fg:w="2029"/><text x="50.1869%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (946 samples, 0.04%)</title><rect x="50.0219%" y="437" width="0.0396%" height="15" fill="rgb(238,197,32)" fg:x="1194321" fg:w="946"/><text x="50.2719%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (361 samples, 0.02%)</title><rect x="50.0464%" y="421" width="0.0151%" height="15" fill="rgb(236,106,1)" fg:x="1194906" fg:w="361"/><text x="50.2964%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,607 samples, 0.07%)</title><rect x="50.4352%" y="421" width="0.0673%" height="15" fill="rgb(219,228,13)" fg:x="1204190" fg:w="1607"/><text x="50.6852%" y="431.50"></text></g><g><title>btrfs_set_token_32 (10,516 samples, 0.44%)</title><rect x="50.0622%" y="437" width="0.4404%" height="15" fill="rgb(238,30,35)" fg:x="1195282" fg:w="10516"/><text x="50.3122%" y="447.50"></text></g><g><title>leaf_space_used (679 samples, 0.03%)</title><rect x="50.5041%" y="437" width="0.0284%" height="15" fill="rgb(236,70,23)" fg:x="1205833" fg:w="679"/><text x="50.7541%" y="447.50"></text></g><g><title>btrfs_get_32 (519 samples, 0.02%)</title><rect x="50.5108%" y="421" width="0.0217%" height="15" fill="rgb(249,104,48)" fg:x="1205993" fg:w="519"/><text x="50.7608%" y="431.50"></text></g><g><title>copy_pages (240 samples, 0.01%)</title><rect x="50.5439%" y="421" width="0.0101%" height="15" fill="rgb(254,117,50)" fg:x="1206784" fg:w="240"/><text x="50.7939%" y="431.50"></text></g><g><title>memcpy_extent_buffer (2,142 samples, 0.09%)</title><rect x="50.5325%" y="437" width="0.0897%" height="15" fill="rgb(223,152,4)" fg:x="1206512" fg:w="2142"/><text x="50.7825%" y="447.50"></text></g><g><title>memmove (1,630 samples, 0.07%)</title><rect x="50.5539%" y="421" width="0.0683%" height="15" fill="rgb(245,6,2)" fg:x="1207024" fg:w="1630"/><text x="50.8039%" y="431.50"></text></g><g><title>copy_pages (936 samples, 0.04%)</title><rect x="50.6491%" y="421" width="0.0392%" height="15" fill="rgb(249,150,24)" fg:x="1209297" fg:w="936"/><text x="50.8991%" y="431.50"></text></g><g><title>memmove (8,313 samples, 0.35%)</title><rect x="50.6883%" y="421" width="0.3482%" height="15" fill="rgb(228,185,42)" fg:x="1210233" fg:w="8313"/><text x="50.9383%" y="431.50"></text></g><g><title>memmove_extent_buffer (9,893 samples, 0.41%)</title><rect x="50.6222%" y="437" width="0.4143%" height="15" fill="rgb(226,39,33)" fg:x="1208654" fg:w="9893"/><text x="50.8722%" y="447.50"></text></g><g><title>__push_leaf_left (482 samples, 0.02%)</title><rect x="51.0372%" y="421" width="0.0202%" height="15" fill="rgb(221,166,19)" fg:x="1218563" fg:w="482"/><text x="51.2872%" y="431.50"></text></g><g><title>push_leaf_left (602 samples, 0.03%)</title><rect x="51.0366%" y="437" width="0.0252%" height="15" fill="rgb(209,109,2)" fg:x="1218547" fg:w="602"/><text x="51.2866%" y="447.50"></text></g><g><title>push_leaf_right (265 samples, 0.01%)</title><rect x="51.0618%" y="437" width="0.0111%" height="15" fill="rgb(252,216,26)" fg:x="1219149" fg:w="265"/><text x="51.3118%" y="447.50"></text></g><g><title>btrfs_del_items (46,276 samples, 1.94%)</title><rect x="49.1367%" y="453" width="1.9382%" height="15" fill="rgb(227,173,36)" fg:x="1173187" fg:w="46276"/><text x="49.3867%" y="463.50">b..</text></g><g><title>__list_add_valid (458 samples, 0.02%)</title><rect x="51.1669%" y="421" width="0.0192%" height="15" fill="rgb(209,90,7)" fg:x="1221658" fg:w="458"/><text x="51.4169%" y="431.50"></text></g><g><title>_raw_spin_lock (414 samples, 0.02%)</title><rect x="51.1860%" y="421" width="0.0173%" height="15" fill="rgb(250,194,11)" fg:x="1222116" fg:w="414"/><text x="51.4360%" y="431.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,700 samples, 0.11%)</title><rect x="51.1076%" y="437" width="0.1131%" height="15" fill="rgb(220,72,50)" fg:x="1220242" fg:w="2700"/><text x="51.3576%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,580 samples, 0.07%)</title><rect x="51.2216%" y="437" width="0.0662%" height="15" fill="rgb(222,106,48)" fg:x="1222964" fg:w="1580"/><text x="51.4716%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (1,487 samples, 0.06%)</title><rect x="51.2255%" y="421" width="0.0623%" height="15" fill="rgb(216,220,45)" fg:x="1223057" fg:w="1487"/><text x="51.4755%" y="431.50"></text></g><g><title>_cond_resched (251 samples, 0.01%)</title><rect x="51.3022%" y="421" width="0.0105%" height="15" fill="rgb(234,112,18)" fg:x="1224890" fg:w="251"/><text x="51.5522%" y="431.50"></text></g><g><title>mutex_lock (598 samples, 0.03%)</title><rect x="51.2877%" y="437" width="0.0250%" height="15" fill="rgb(206,179,9)" fg:x="1224544" fg:w="598"/><text x="51.5377%" y="447.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (5,827 samples, 0.24%)</title><rect x="51.0749%" y="453" width="0.2441%" height="15" fill="rgb(215,115,40)" fg:x="1219463" fg:w="5827"/><text x="51.3249%" y="463.50"></text></g><g><title>btrfs_comp_cpu_keys (986 samples, 0.04%)</title><rect x="51.3619%" y="421" width="0.0413%" height="15" fill="rgb(222,69,34)" fg:x="1226314" fg:w="986"/><text x="51.6119%" y="431.50"></text></g><g><title>__btrfs_add_delayed_item (2,328 samples, 0.10%)</title><rect x="51.3287%" y="437" width="0.0975%" height="15" fill="rgb(209,161,10)" fg:x="1225521" fg:w="2328"/><text x="51.5787%" y="447.50"></text></g><g><title>rb_insert_color (549 samples, 0.02%)</title><rect x="51.4032%" y="421" width="0.0230%" height="15" fill="rgb(217,6,38)" fg:x="1227300" fg:w="549"/><text x="51.6532%" y="431.50"></text></g><g><title>__list_del_entry_valid (319 samples, 0.01%)</title><rect x="51.4445%" y="421" width="0.0134%" height="15" fill="rgb(229,229,48)" fg:x="1228288" fg:w="319"/><text x="51.6945%" y="431.50"></text></g><g><title>_raw_spin_lock (322 samples, 0.01%)</title><rect x="51.4589%" y="421" width="0.0135%" height="15" fill="rgb(225,21,28)" fg:x="1228630" fg:w="322"/><text x="51.7089%" y="431.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,919 samples, 0.08%)</title><rect x="51.4262%" y="437" width="0.0804%" height="15" fill="rgb(206,33,13)" fg:x="1227849" fg:w="1919"/><text x="51.6762%" y="447.50"></text></g><g><title>mutex_unlock (587 samples, 0.02%)</title><rect x="51.4820%" y="421" width="0.0246%" height="15" fill="rgb(242,178,17)" fg:x="1229181" fg:w="587"/><text x="51.7320%" y="431.50"></text></g><g><title>mutex_spin_on_owner (2,913 samples, 0.12%)</title><rect x="51.5145%" y="421" width="0.1220%" height="15" fill="rgb(220,162,5)" fg:x="1229959" fg:w="2913"/><text x="51.7645%" y="431.50"></text></g><g><title>__mutex_lock.constprop.0 (3,729 samples, 0.16%)</title><rect x="51.5065%" y="437" width="0.1562%" height="15" fill="rgb(210,33,43)" fg:x="1229768" fg:w="3729"/><text x="51.7565%" y="447.50"></text></g><g><title>schedule_preempt_disabled (603 samples, 0.03%)</title><rect x="51.6375%" y="421" width="0.0253%" height="15" fill="rgb(216,116,54)" fg:x="1232894" fg:w="603"/><text x="51.8875%" y="431.50"></text></g><g><title>schedule (603 samples, 0.03%)</title><rect x="51.6375%" y="405" width="0.0253%" height="15" fill="rgb(249,92,24)" fg:x="1232894" fg:w="603"/><text x="51.8875%" y="415.50"></text></g><g><title>__schedule (590 samples, 0.02%)</title><rect x="51.6380%" y="389" width="0.0247%" height="15" fill="rgb(231,189,14)" fg:x="1232907" fg:w="590"/><text x="51.8880%" y="399.50"></text></g><g><title>btrfs_block_rsv_migrate (1,890 samples, 0.08%)</title><rect x="51.6828%" y="421" width="0.0792%" height="15" fill="rgb(230,8,41)" fg:x="1233976" fg:w="1890"/><text x="51.9328%" y="431.50"></text></g><g><title>_raw_spin_lock (1,640 samples, 0.07%)</title><rect x="51.6933%" y="405" width="0.0687%" height="15" fill="rgb(249,7,27)" fg:x="1234226" fg:w="1640"/><text x="51.9433%" y="415.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (2,269 samples, 0.10%)</title><rect x="51.6669%" y="437" width="0.0950%" height="15" fill="rgb(232,86,5)" fg:x="1233598" fg:w="2269"/><text x="51.9169%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (666 samples, 0.03%)</title><rect x="51.7620%" y="437" width="0.0279%" height="15" fill="rgb(224,175,18)" fg:x="1235867" fg:w="666"/><text x="52.0120%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (605 samples, 0.03%)</title><rect x="51.7645%" y="421" width="0.0253%" height="15" fill="rgb(220,129,12)" fg:x="1235928" fg:w="605"/><text x="52.0145%" y="431.50"></text></g><g><title>kmem_cache_alloc_trace (1,336 samples, 0.06%)</title><rect x="51.7899%" y="437" width="0.0560%" height="15" fill="rgb(210,19,36)" fg:x="1236533" fg:w="1336"/><text x="52.0399%" y="447.50"></text></g><g><title>mutex_lock (496 samples, 0.02%)</title><rect x="51.8458%" y="437" width="0.0208%" height="15" fill="rgb(219,96,14)" fg:x="1237869" fg:w="496"/><text x="52.0958%" y="447.50"></text></g><g><title>btrfs_delete_delayed_dir_index (13,421 samples, 0.56%)</title><rect x="51.3190%" y="453" width="0.5621%" height="15" fill="rgb(249,106,1)" fg:x="1225290" fg:w="13421"/><text x="51.5690%" y="463.50"></text></g><g><title>mutex_unlock (346 samples, 0.01%)</title><rect x="51.8666%" y="437" width="0.0145%" height="15" fill="rgb(249,155,20)" fg:x="1238365" fg:w="346"/><text x="52.1166%" y="447.50"></text></g><g><title>btrfs_get_16 (329 samples, 0.01%)</title><rect x="51.9027%" y="437" width="0.0138%" height="15" fill="rgb(244,168,9)" fg:x="1239227" fg:w="329"/><text x="52.1527%" y="447.50"></text></g><g><title>btrfs_delete_one_dir_name (1,044 samples, 0.04%)</title><rect x="51.8811%" y="453" width="0.0437%" height="15" fill="rgb(216,23,50)" fg:x="1238711" fg:w="1044"/><text x="52.1311%" y="463.50"></text></g><g><title>btrfs_free_path (279 samples, 0.01%)</title><rect x="51.9248%" y="453" width="0.0117%" height="15" fill="rgb(224,219,20)" fg:x="1239755" fg:w="279"/><text x="52.1748%" y="463.50"></text></g><g><title>btrfs_get_16 (1,128 samples, 0.05%)</title><rect x="51.9926%" y="421" width="0.0472%" height="15" fill="rgb(222,156,15)" fg:x="1241373" fg:w="1128"/><text x="52.2426%" y="431.50"></text></g><g><title>btrfs_get_32 (557 samples, 0.02%)</title><rect x="52.0398%" y="421" width="0.0233%" height="15" fill="rgb(231,97,17)" fg:x="1242501" fg:w="557"/><text x="52.2898%" y="431.50"></text></g><g><title>btrfs_match_dir_item_name (3,788 samples, 0.16%)</title><rect x="51.9637%" y="437" width="0.1587%" height="15" fill="rgb(218,70,48)" fg:x="1240684" fg:w="3788"/><text x="52.2137%" y="447.50"></text></g><g><title>memcmp_extent_buffer (1,414 samples, 0.06%)</title><rect x="52.0632%" y="421" width="0.0592%" height="15" fill="rgb(212,196,52)" fg:x="1243058" fg:w="1414"/><text x="52.3132%" y="431.50"></text></g><g><title>memcmp (892 samples, 0.04%)</title><rect x="52.0850%" y="405" width="0.0374%" height="15" fill="rgb(243,203,18)" fg:x="1243580" fg:w="892"/><text x="52.3350%" y="415.50"></text></g><g><title>_raw_read_lock (995 samples, 0.04%)</title><rect x="52.3274%" y="389" width="0.0417%" height="15" fill="rgb(252,125,41)" fg:x="1249368" fg:w="995"/><text x="52.5774%" y="399.50"></text></g><g><title>__list_del_entry_valid (272 samples, 0.01%)</title><rect x="52.3744%" y="373" width="0.0114%" height="15" fill="rgb(223,180,33)" fg:x="1250488" fg:w="272"/><text x="52.6244%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (6,229 samples, 0.26%)</title><rect x="52.3857%" y="373" width="0.2609%" height="15" fill="rgb(254,159,46)" fg:x="1250760" fg:w="6229"/><text x="52.6357%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,009 samples, 0.25%)</title><rect x="52.3950%" y="357" width="0.2517%" height="15" fill="rgb(254,38,10)" fg:x="1250980" fg:w="6009"/><text x="52.6450%" y="367.50"></text></g><g><title>finish_wait (6,548 samples, 0.27%)</title><rect x="52.3724%" y="389" width="0.2743%" height="15" fill="rgb(208,217,32)" fg:x="1250442" fg:w="6548"/><text x="52.6224%" y="399.50"></text></g><g><title>__list_add_valid (370 samples, 0.02%)</title><rect x="52.6874%" y="373" width="0.0155%" height="15" fill="rgb(221,120,13)" fg:x="1257962" fg:w="370"/><text x="52.9374%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (15,755 samples, 0.66%)</title><rect x="52.7029%" y="373" width="0.6599%" height="15" fill="rgb(246,54,52)" fg:x="1258332" fg:w="15755"/><text x="52.9529%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (15,148 samples, 0.63%)</title><rect x="52.7283%" y="357" width="0.6344%" height="15" fill="rgb(242,34,25)" fg:x="1258939" fg:w="15148"/><text x="52.9783%" y="367.50"></text></g><g><title>prepare_to_wait_event (17,349 samples, 0.73%)</title><rect x="52.6471%" y="389" width="0.7266%" height="15" fill="rgb(247,209,9)" fg:x="1256999" fg:w="17349"/><text x="52.8971%" y="399.50"></text></g><g><title>_raw_spin_unlock_irqrestore (261 samples, 0.01%)</title><rect x="53.3628%" y="373" width="0.0109%" height="15" fill="rgb(228,71,26)" fg:x="1274087" fg:w="261"/><text x="53.6128%" y="383.50"></text></g><g><title>queued_read_lock_slowpath (16,447 samples, 0.69%)</title><rect x="53.3737%" y="389" width="0.6889%" height="15" fill="rgb(222,145,49)" fg:x="1274348" fg:w="16447"/><text x="53.6237%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (12,298 samples, 0.52%)</title><rect x="53.5475%" y="373" width="0.5151%" height="15" fill="rgb(218,121,17)" fg:x="1278497" fg:w="12298"/><text x="53.7975%" y="383.50"></text></g><g><title>__perf_event_task_sched_out (496 samples, 0.02%)</title><rect x="54.0926%" y="357" width="0.0208%" height="15" fill="rgb(244,50,7)" fg:x="1291512" fg:w="496"/><text x="54.3426%" y="367.50"></text></g><g><title>update_curr (873 samples, 0.04%)</title><rect x="54.1600%" y="325" width="0.0366%" height="15" fill="rgb(246,229,37)" fg:x="1293123" fg:w="873"/><text x="54.4100%" y="335.50"></text></g><g><title>dequeue_entity (2,324 samples, 0.10%)</title><rect x="54.1314%" y="341" width="0.0973%" height="15" fill="rgb(225,18,5)" fg:x="1292438" fg:w="2324"/><text x="54.3814%" y="351.50"></text></g><g><title>update_load_avg (766 samples, 0.03%)</title><rect x="54.1966%" y="325" width="0.0321%" height="15" fill="rgb(213,204,8)" fg:x="1293996" fg:w="766"/><text x="54.4466%" y="335.50"></text></g><g><title>dequeue_task_fair (2,820 samples, 0.12%)</title><rect x="54.1177%" y="357" width="0.1181%" height="15" fill="rgb(238,103,6)" fg:x="1292112" fg:w="2820"/><text x="54.3677%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (551 samples, 0.02%)</title><rect x="54.2512%" y="341" width="0.0231%" height="15" fill="rgb(222,25,35)" fg:x="1295300" fg:w="551"/><text x="54.5012%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (477 samples, 0.02%)</title><rect x="54.2543%" y="325" width="0.0200%" height="15" fill="rgb(213,203,35)" fg:x="1295374" fg:w="477"/><text x="54.5043%" y="335.50"></text></g><g><title>native_write_msr (441 samples, 0.02%)</title><rect x="54.2558%" y="309" width="0.0185%" height="15" fill="rgb(221,79,53)" fg:x="1295410" fg:w="441"/><text x="54.5058%" y="319.50"></text></g><g><title>finish_task_switch (995 samples, 0.04%)</title><rect x="54.2358%" y="357" width="0.0417%" height="15" fill="rgb(243,200,35)" fg:x="1294932" fg:w="995"/><text x="54.4858%" y="367.50"></text></g><g><title>pick_next_task_fair (474 samples, 0.02%)</title><rect x="54.2777%" y="357" width="0.0199%" height="15" fill="rgb(248,60,25)" fg:x="1295932" fg:w="474"/><text x="54.5277%" y="367.50"></text></g><g><title>__update_idle_core (405 samples, 0.02%)</title><rect x="54.3007%" y="341" width="0.0170%" height="15" fill="rgb(227,53,46)" fg:x="1296481" fg:w="405"/><text x="54.5507%" y="351.50"></text></g><g><title>pick_next_task_idle (482 samples, 0.02%)</title><rect x="54.2975%" y="357" width="0.0202%" height="15" fill="rgb(216,120,32)" fg:x="1296406" fg:w="482"/><text x="54.5475%" y="367.50"></text></g><g><title>psi_task_change (2,135 samples, 0.09%)</title><rect x="54.3177%" y="357" width="0.0894%" height="15" fill="rgb(220,134,1)" fg:x="1296888" fg:w="2135"/><text x="54.5677%" y="367.50"></text></g><g><title>psi_group_change (1,783 samples, 0.07%)</title><rect x="54.3325%" y="341" width="0.0747%" height="15" fill="rgb(237,168,5)" fg:x="1297240" fg:w="1783"/><text x="54.5825%" y="351.50"></text></g><g><title>record_times (359 samples, 0.02%)</title><rect x="54.3921%" y="325" width="0.0150%" height="15" fill="rgb(231,100,33)" fg:x="1298664" fg:w="359"/><text x="54.6421%" y="335.50"></text></g><g><title>__btrfs_tree_read_lock (51,381 samples, 2.15%)</title><rect x="52.2833%" y="405" width="2.1520%" height="15" fill="rgb(236,177,47)" fg:x="1248314" fg:w="51381"/><text x="52.5333%" y="415.50">_..</text></g><g><title>schedule (8,900 samples, 0.37%)</title><rect x="54.0625%" y="389" width="0.3728%" height="15" fill="rgb(235,7,49)" fg:x="1290795" fg:w="8900"/><text x="54.3125%" y="399.50"></text></g><g><title>__schedule (8,814 samples, 0.37%)</title><rect x="54.0661%" y="373" width="0.3692%" height="15" fill="rgb(232,119,22)" fg:x="1290881" fg:w="8814"/><text x="54.3161%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (53,101 samples, 2.22%)</title><rect x="52.2752%" y="421" width="2.2240%" height="15" fill="rgb(254,73,53)" fg:x="1248120" fg:w="53101"/><text x="52.5252%" y="431.50">_..</text></g><g><title>btrfs_root_node (1,525 samples, 0.06%)</title><rect x="54.4353%" y="405" width="0.0639%" height="15" fill="rgb(251,35,20)" fg:x="1299696" fg:w="1525"/><text x="54.6853%" y="415.50"></text></g><g><title>prepare_to_wait_event (256 samples, 0.01%)</title><rect x="54.5048%" y="405" width="0.0107%" height="15" fill="rgb(241,119,20)" fg:x="1301355" fg:w="256"/><text x="54.7548%" y="415.50"></text></g><g><title>dequeue_entity (538 samples, 0.02%)</title><rect x="54.5319%" y="357" width="0.0225%" height="15" fill="rgb(207,102,14)" fg:x="1302002" fg:w="538"/><text x="54.7819%" y="367.50"></text></g><g><title>dequeue_task_fair (641 samples, 0.03%)</title><rect x="54.5296%" y="373" width="0.0268%" height="15" fill="rgb(248,201,50)" fg:x="1301946" fg:w="641"/><text x="54.7796%" y="383.50"></text></g><g><title>psi_task_change (481 samples, 0.02%)</title><rect x="54.5750%" y="373" width="0.0201%" height="15" fill="rgb(222,185,44)" fg:x="1303030" fg:w="481"/><text x="54.8250%" y="383.50"></text></g><g><title>psi_group_change (396 samples, 0.02%)</title><rect x="54.5785%" y="357" width="0.0166%" height="15" fill="rgb(218,107,18)" fg:x="1303115" fg:w="396"/><text x="54.8285%" y="367.50"></text></g><g><title>__btrfs_tree_lock (2,447 samples, 0.10%)</title><rect x="54.4992%" y="421" width="0.1025%" height="15" fill="rgb(237,177,39)" fg:x="1301221" fg:w="2447"/><text x="54.7492%" y="431.50"></text></g><g><title>schedule (2,057 samples, 0.09%)</title><rect x="54.5155%" y="405" width="0.0862%" height="15" fill="rgb(246,69,6)" fg:x="1301611" fg:w="2057"/><text x="54.7655%" y="415.50"></text></g><g><title>__schedule (2,027 samples, 0.08%)</title><rect x="54.5168%" y="389" width="0.0849%" height="15" fill="rgb(234,208,37)" fg:x="1301641" fg:w="2027"/><text x="54.7668%" y="399.50"></text></g><g><title>__btrfs_cow_block (496 samples, 0.02%)</title><rect x="54.6201%" y="405" width="0.0208%" height="15" fill="rgb(225,4,6)" fg:x="1304107" fg:w="496"/><text x="54.8701%" y="415.50"></text></g><g><title>btrfs_cow_block (500 samples, 0.02%)</title><rect x="54.6200%" y="421" width="0.0209%" height="15" fill="rgb(233,45,0)" fg:x="1304106" fg:w="500"/><text x="54.8700%" y="431.50"></text></g><g><title>_cond_resched (270 samples, 0.01%)</title><rect x="54.7005%" y="389" width="0.0113%" height="15" fill="rgb(226,136,5)" fg:x="1306026" fg:w="270"/><text x="54.9505%" y="399.50"></text></g><g><title>_raw_write_lock (917 samples, 0.04%)</title><rect x="54.7151%" y="389" width="0.0384%" height="15" fill="rgb(211,91,47)" fg:x="1306375" fg:w="917"/><text x="54.9651%" y="399.50"></text></g><g><title>__list_del_entry_valid (248 samples, 0.01%)</title><rect x="54.7569%" y="373" width="0.0104%" height="15" fill="rgb(242,88,51)" fg:x="1307373" fg:w="248"/><text x="55.0069%" y="383.50"></text></g><g><title>finish_wait (5,902 samples, 0.25%)</title><rect x="54.7539%" y="389" width="0.2472%" height="15" fill="rgb(230,91,28)" fg:x="1307302" fg:w="5902"/><text x="55.0039%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (5,583 samples, 0.23%)</title><rect x="54.7673%" y="373" width="0.2338%" height="15" fill="rgb(254,186,29)" fg:x="1307621" fg:w="5583"/><text x="55.0173%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,293 samples, 0.22%)</title><rect x="54.7794%" y="357" width="0.2217%" height="15" fill="rgb(238,6,4)" fg:x="1307911" fg:w="5293"/><text x="55.0294%" y="367.50"></text></g><g><title>__list_add_valid (438 samples, 0.02%)</title><rect x="55.0568%" y="373" width="0.0183%" height="15" fill="rgb(221,151,16)" fg:x="1314535" fg:w="438"/><text x="55.3068%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (14,457 samples, 0.61%)</title><rect x="55.0752%" y="373" width="0.6055%" height="15" fill="rgb(251,143,52)" fg:x="1314973" fg:w="14457"/><text x="55.3252%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (13,473 samples, 0.56%)</title><rect x="55.1164%" y="357" width="0.5643%" height="15" fill="rgb(206,90,15)" fg:x="1315957" fg:w="13473"/><text x="55.3664%" y="367.50"></text></g><g><title>prepare_to_wait_event (16,511 samples, 0.69%)</title><rect x="55.0034%" y="389" width="0.6915%" height="15" fill="rgb(218,35,8)" fg:x="1313258" fg:w="16511"/><text x="55.2534%" y="399.50"></text></g><g><title>_raw_spin_unlock_irqrestore (339 samples, 0.01%)</title><rect x="55.6807%" y="373" width="0.0142%" height="15" fill="rgb(239,215,6)" fg:x="1329430" fg:w="339"/><text x="55.9307%" y="383.50"></text></g><g><title>queued_write_lock_slowpath (25,210 samples, 1.06%)</title><rect x="55.6949%" y="389" width="1.0559%" height="15" fill="rgb(245,116,39)" fg:x="1329769" fg:w="25210"/><text x="55.9449%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (12,838 samples, 0.54%)</title><rect x="56.2131%" y="373" width="0.5377%" height="15" fill="rgb(242,65,28)" fg:x="1342141" fg:w="12838"/><text x="56.4631%" y="383.50"></text></g><g><title>__perf_event_task_sched_out (578 samples, 0.02%)</title><rect x="56.7927%" y="357" width="0.0242%" height="15" fill="rgb(252,132,53)" fg:x="1355980" fg:w="578"/><text x="57.0427%" y="367.50"></text></g><g><title>update_cfs_group (330 samples, 0.01%)</title><rect x="56.8690%" y="325" width="0.0138%" height="15" fill="rgb(224,159,50)" fg:x="1357801" fg:w="330"/><text x="57.1190%" y="335.50"></text></g><g><title>update_curr (1,115 samples, 0.05%)</title><rect x="56.8828%" y="325" width="0.0467%" height="15" fill="rgb(224,93,4)" fg:x="1358131" fg:w="1115"/><text x="57.1328%" y="335.50"></text></g><g><title>__update_load_avg_cfs_rq (247 samples, 0.01%)</title><rect x="56.9460%" y="309" width="0.0103%" height="15" fill="rgb(208,81,34)" fg:x="1359640" fg:w="247"/><text x="57.1960%" y="319.50"></text></g><g><title>__update_load_avg_se (292 samples, 0.01%)</title><rect x="56.9563%" y="309" width="0.0122%" height="15" fill="rgb(233,92,54)" fg:x="1359887" fg:w="292"/><text x="57.2063%" y="319.50"></text></g><g><title>dequeue_entity (3,063 samples, 0.13%)</title><rect x="56.8411%" y="341" width="0.1283%" height="15" fill="rgb(237,21,14)" fg:x="1357137" fg:w="3063"/><text x="57.0911%" y="351.50"></text></g><g><title>update_load_avg (954 samples, 0.04%)</title><rect x="56.9295%" y="325" width="0.0400%" height="15" fill="rgb(249,128,51)" fg:x="1359246" fg:w="954"/><text x="57.1795%" y="335.50"></text></g><g><title>dequeue_task_fair (3,648 samples, 0.15%)</title><rect x="56.8259%" y="357" width="0.1528%" height="15" fill="rgb(223,129,24)" fg:x="1356774" fg:w="3648"/><text x="57.0759%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (712 samples, 0.03%)</title><rect x="57.0008%" y="341" width="0.0298%" height="15" fill="rgb(231,168,25)" fg:x="1360949" fg:w="712"/><text x="57.2508%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (608 samples, 0.03%)</title><rect x="57.0052%" y="325" width="0.0255%" height="15" fill="rgb(224,39,20)" fg:x="1361053" fg:w="608"/><text x="57.2552%" y="335.50"></text></g><g><title>native_write_msr (578 samples, 0.02%)</title><rect x="57.0064%" y="309" width="0.0242%" height="15" fill="rgb(225,152,53)" fg:x="1361083" fg:w="578"/><text x="57.2564%" y="319.50"></text></g><g><title>finish_task_switch (1,336 samples, 0.06%)</title><rect x="56.9787%" y="357" width="0.0560%" height="15" fill="rgb(252,17,24)" fg:x="1360422" fg:w="1336"/><text x="57.2287%" y="367.50"></text></g><g><title>newidle_balance (341 samples, 0.01%)</title><rect x="57.0416%" y="341" width="0.0143%" height="15" fill="rgb(250,114,30)" fg:x="1361923" fg:w="341"/><text x="57.2916%" y="351.50"></text></g><g><title>pick_next_task_fair (642 samples, 0.03%)</title><rect x="57.0349%" y="357" width="0.0269%" height="15" fill="rgb(229,5,4)" fg:x="1361762" fg:w="642"/><text x="57.2849%" y="367.50"></text></g><g><title>pick_next_task_idle (657 samples, 0.03%)</title><rect x="57.0617%" y="357" width="0.0275%" height="15" fill="rgb(225,176,49)" fg:x="1362404" fg:w="657"/><text x="57.3117%" y="367.50"></text></g><g><title>__update_idle_core (573 samples, 0.02%)</title><rect x="57.0653%" y="341" width="0.0240%" height="15" fill="rgb(224,221,49)" fg:x="1362488" fg:w="573"/><text x="57.3153%" y="351.50"></text></g><g><title>psi_task_change (2,717 samples, 0.11%)</title><rect x="57.0893%" y="357" width="0.1138%" height="15" fill="rgb(253,169,27)" fg:x="1363061" fg:w="2717"/><text x="57.3393%" y="367.50"></text></g><g><title>psi_group_change (2,317 samples, 0.10%)</title><rect x="57.1060%" y="341" width="0.0970%" height="15" fill="rgb(211,206,16)" fg:x="1363461" fg:w="2317"/><text x="57.3560%" y="351.50"></text></g><g><title>record_times (577 samples, 0.02%)</title><rect x="57.1789%" y="325" width="0.0242%" height="15" fill="rgb(244,87,35)" fg:x="1365201" fg:w="577"/><text x="57.4289%" y="335.50"></text></g><g><title>sched_clock_cpu (393 samples, 0.02%)</title><rect x="57.1866%" y="309" width="0.0165%" height="15" fill="rgb(246,28,10)" fg:x="1365385" fg:w="393"/><text x="57.4366%" y="319.50"></text></g><g><title>sched_clock (340 samples, 0.01%)</title><rect x="57.1888%" y="293" width="0.0142%" height="15" fill="rgb(229,12,44)" fg:x="1365438" fg:w="340"/><text x="57.4388%" y="303.50"></text></g><g><title>native_sched_clock (323 samples, 0.01%)</title><rect x="57.1895%" y="277" width="0.0135%" height="15" fill="rgb(210,145,37)" fg:x="1365455" fg:w="323"/><text x="57.4395%" y="287.50"></text></g><g><title>psi_task_switch (269 samples, 0.01%)</title><rect x="57.2031%" y="357" width="0.0113%" height="15" fill="rgb(227,112,52)" fg:x="1365778" fg:w="269"/><text x="57.4531%" y="367.50"></text></g><g><title>__schedule (11,342 samples, 0.48%)</title><rect x="56.7601%" y="373" width="0.4750%" height="15" fill="rgb(238,155,34)" fg:x="1355202" fg:w="11342"/><text x="57.0101%" y="383.50"></text></g><g><title>update_rq_clock (276 samples, 0.01%)</title><rect x="57.2236%" y="357" width="0.0116%" height="15" fill="rgb(239,226,36)" fg:x="1366268" fg:w="276"/><text x="57.4736%" y="367.50"></text></g><g><title>__btrfs_tree_lock (61,889 samples, 2.59%)</title><rect x="54.6432%" y="405" width="2.5921%" height="15" fill="rgb(230,16,23)" fg:x="1304659" fg:w="61889"/><text x="54.8932%" y="415.50">__..</text></g><g><title>schedule (11,569 samples, 0.48%)</title><rect x="56.7508%" y="389" width="0.4845%" height="15" fill="rgb(236,171,36)" fg:x="1354979" fg:w="11569"/><text x="57.0008%" y="399.50"></text></g><g><title>btrfs_lock_root_node (62,576 samples, 2.62%)</title><rect x="54.6410%" y="421" width="2.6209%" height="15" fill="rgb(221,22,14)" fg:x="1304606" fg:w="62576"/><text x="54.8910%" y="431.50">bt..</text></g><g><title>btrfs_root_node (634 samples, 0.03%)</title><rect x="57.2353%" y="405" width="0.0266%" height="15" fill="rgb(242,43,11)" fg:x="1366548" fg:w="634"/><text x="57.4853%" y="415.50"></text></g><g><title>btrfs_set_path_blocking (527 samples, 0.02%)</title><rect x="57.2619%" y="421" width="0.0221%" height="15" fill="rgb(232,69,23)" fg:x="1367182" fg:w="527"/><text x="57.5119%" y="431.50"></text></g><g><title>btrfs_set_lock_blocking_write (281 samples, 0.01%)</title><rect x="57.2722%" y="405" width="0.0118%" height="15" fill="rgb(216,180,54)" fg:x="1367428" fg:w="281"/><text x="57.5222%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (706 samples, 0.03%)</title><rect x="57.2841%" y="421" width="0.0296%" height="15" fill="rgb(216,5,24)" fg:x="1367712" fg:w="706"/><text x="57.5341%" y="431.50"></text></g><g><title>_raw_write_lock (464 samples, 0.02%)</title><rect x="57.3198%" y="405" width="0.0194%" height="15" fill="rgb(225,89,9)" fg:x="1368566" fg:w="464"/><text x="57.5698%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (3,708 samples, 0.16%)</title><rect x="57.3136%" y="421" width="0.1553%" height="15" fill="rgb(243,75,33)" fg:x="1368418" fg:w="3708"/><text x="57.5636%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (3,095 samples, 0.13%)</title><rect x="57.3393%" y="405" width="0.1296%" height="15" fill="rgb(247,141,45)" fg:x="1369031" fg:w="3095"/><text x="57.5893%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (759 samples, 0.03%)</title><rect x="57.4696%" y="421" width="0.0318%" height="15" fill="rgb(232,177,36)" fg:x="1372142" fg:w="759"/><text x="57.7196%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (8,189 samples, 0.34%)</title><rect x="57.5014%" y="421" width="0.3430%" height="15" fill="rgb(219,125,36)" fg:x="1372901" fg:w="8189"/><text x="57.7514%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (989 samples, 0.04%)</title><rect x="57.8784%" y="405" width="0.0414%" height="15" fill="rgb(227,94,9)" fg:x="1381903" fg:w="989"/><text x="58.1284%" y="415.50"></text></g><g><title>verify_parent_transid (808 samples, 0.03%)</title><rect x="57.8860%" y="389" width="0.0338%" height="15" fill="rgb(240,34,52)" fg:x="1382084" fg:w="808"/><text x="58.1360%" y="399.50"></text></g><g><title>btrfs_get_64 (1,079 samples, 0.05%)</title><rect x="57.9198%" y="405" width="0.0452%" height="15" fill="rgb(216,45,12)" fg:x="1382892" fg:w="1079"/><text x="58.1698%" y="415.50"></text></g><g><title>btrfs_verify_level_key (274 samples, 0.01%)</title><rect x="57.9699%" y="405" width="0.0115%" height="15" fill="rgb(246,21,19)" fg:x="1384087" fg:w="274"/><text x="58.2199%" y="415.50"></text></g><g><title>__radix_tree_lookup (3,772 samples, 0.16%)</title><rect x="58.0649%" y="389" width="0.1580%" height="15" fill="rgb(213,98,42)" fg:x="1386356" fg:w="3772"/><text x="58.3149%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,824 samples, 0.08%)</title><rect x="58.2235%" y="389" width="0.0764%" height="15" fill="rgb(250,136,47)" fg:x="1390143" fg:w="1824"/><text x="58.4735%" y="399.50"></text></g><g><title>mark_page_accessed (1,439 samples, 0.06%)</title><rect x="58.2397%" y="373" width="0.0603%" height="15" fill="rgb(251,124,27)" fg:x="1390528" fg:w="1439"/><text x="58.4897%" y="383.50"></text></g><g><title>find_extent_buffer (7,633 samples, 0.32%)</title><rect x="57.9814%" y="405" width="0.3197%" height="15" fill="rgb(229,180,14)" fg:x="1384361" fg:w="7633"/><text x="58.2314%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (11,815 samples, 0.49%)</title><rect x="57.8444%" y="421" width="0.4948%" height="15" fill="rgb(245,216,25)" fg:x="1381090" fg:w="11815"/><text x="58.0944%" y="431.50"></text></g><g><title>read_extent_buffer (911 samples, 0.04%)</title><rect x="58.3011%" y="405" width="0.0382%" height="15" fill="rgb(251,43,5)" fg:x="1391994" fg:w="911"/><text x="58.5511%" y="415.50"></text></g><g><title>btrfs_buffer_uptodate (331 samples, 0.01%)</title><rect x="58.3500%" y="405" width="0.0139%" height="15" fill="rgb(250,128,24)" fg:x="1393162" fg:w="331"/><text x="58.6000%" y="415.50"></text></g><g><title>verify_parent_transid (275 samples, 0.01%)</title><rect x="58.3523%" y="389" width="0.0115%" height="15" fill="rgb(217,117,27)" fg:x="1393218" fg:w="275"/><text x="58.6023%" y="399.50"></text></g><g><title>btrfs_get_64 (457 samples, 0.02%)</title><rect x="58.3639%" y="405" width="0.0191%" height="15" fill="rgb(245,147,4)" fg:x="1393493" fg:w="457"/><text x="58.6139%" y="415.50"></text></g><g><title>__radix_tree_lookup (1,262 samples, 0.05%)</title><rect x="58.4250%" y="389" width="0.0529%" height="15" fill="rgb(242,201,35)" fg:x="1394952" fg:w="1262"/><text x="58.6750%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (641 samples, 0.03%)</title><rect x="58.4780%" y="389" width="0.0268%" height="15" fill="rgb(218,181,1)" fg:x="1396218" fg:w="641"/><text x="58.7280%" y="399.50"></text></g><g><title>mark_page_accessed (487 samples, 0.02%)</title><rect x="58.4844%" y="373" width="0.0204%" height="15" fill="rgb(222,6,29)" fg:x="1396372" fg:w="487"/><text x="58.7344%" y="383.50"></text></g><g><title>find_extent_buffer (2,919 samples, 0.12%)</title><rect x="58.3830%" y="405" width="0.1223%" height="15" fill="rgb(208,186,3)" fg:x="1393950" fg:w="2919"/><text x="58.6330%" y="415.50"></text></g><g><title>reada_for_balance (4,202 samples, 0.18%)</title><rect x="58.3392%" y="421" width="0.1760%" height="15" fill="rgb(216,36,26)" fg:x="1392905" fg:w="4202"/><text x="58.5892%" y="431.50"></text></g><g><title>__list_del_entry_valid (599 samples, 0.03%)</title><rect x="58.5981%" y="357" width="0.0251%" height="15" fill="rgb(248,201,23)" fg:x="1399087" fg:w="599"/><text x="58.8481%" y="367.50"></text></g><g><title>_raw_spin_lock (611 samples, 0.03%)</title><rect x="58.9491%" y="341" width="0.0256%" height="15" fill="rgb(251,170,31)" fg:x="1407467" fg:w="611"/><text x="59.1991%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (311 samples, 0.01%)</title><rect x="58.9617%" y="325" width="0.0130%" height="15" fill="rgb(207,110,25)" fg:x="1407767" fg:w="311"/><text x="59.2117%" y="335.50"></text></g><g><title>_raw_spin_lock_irqsave (997 samples, 0.04%)</title><rect x="58.9747%" y="341" width="0.0418%" height="15" fill="rgb(250,54,15)" fg:x="1408078" fg:w="997"/><text x="59.2247%" y="351.50"></text></g><g><title>available_idle_cpu (733 samples, 0.03%)</title><rect x="59.0922%" y="325" width="0.0307%" height="15" fill="rgb(227,68,33)" fg:x="1410882" fg:w="733"/><text x="59.3422%" y="335.50"></text></g><g><title>select_task_rq_fair (3,711 samples, 0.16%)</title><rect x="59.0221%" y="341" width="0.1554%" height="15" fill="rgb(238,34,41)" fg:x="1409210" fg:w="3711"/><text x="59.2721%" y="351.50"></text></g><g><title>update_cfs_rq_h_load (838 samples, 0.04%)</title><rect x="59.1425%" y="325" width="0.0351%" height="15" fill="rgb(220,11,15)" fg:x="1412083" fg:w="838"/><text x="59.3925%" y="335.50"></text></g><g><title>set_task_cpu (310 samples, 0.01%)</title><rect x="59.1776%" y="341" width="0.0130%" height="15" fill="rgb(246,111,35)" fg:x="1412921" fg:w="310"/><text x="59.4276%" y="351.50"></text></g><g><title>reweight_entity (251 samples, 0.01%)</title><rect x="59.2961%" y="293" width="0.0105%" height="15" fill="rgb(209,88,53)" fg:x="1415752" fg:w="251"/><text x="59.5461%" y="303.50"></text></g><g><title>update_cfs_group (306 samples, 0.01%)</title><rect x="59.3066%" y="293" width="0.0128%" height="15" fill="rgb(231,185,47)" fg:x="1416003" fg:w="306"/><text x="59.5566%" y="303.50"></text></g><g><title>update_curr (435 samples, 0.02%)</title><rect x="59.3195%" y="293" width="0.0182%" height="15" fill="rgb(233,154,1)" fg:x="1416309" fg:w="435"/><text x="59.5695%" y="303.50"></text></g><g><title>__update_load_avg_cfs_rq (329 samples, 0.01%)</title><rect x="59.3631%" y="277" width="0.0138%" height="15" fill="rgb(225,15,46)" fg:x="1417352" fg:w="329"/><text x="59.6131%" y="287.50"></text></g><g><title>enqueue_entity (3,523 samples, 0.15%)</title><rect x="59.2417%" y="309" width="0.1476%" height="15" fill="rgb(211,135,41)" fg:x="1414453" fg:w="3523"/><text x="59.4917%" y="319.50"></text></g><g><title>update_load_avg (1,232 samples, 0.05%)</title><rect x="59.3377%" y="293" width="0.0516%" height="15" fill="rgb(208,54,0)" fg:x="1416744" fg:w="1232"/><text x="59.5877%" y="303.50"></text></g><g><title>enqueue_task_fair (4,618 samples, 0.19%)</title><rect x="59.2082%" y="325" width="0.1934%" height="15" fill="rgb(244,136,14)" fg:x="1413653" fg:w="4618"/><text x="59.4582%" y="335.50"></text></g><g><title>ttwu_do_activate (9,433 samples, 0.40%)</title><rect x="59.1905%" y="341" width="0.3951%" height="15" fill="rgb(241,56,14)" fg:x="1413231" fg:w="9433"/><text x="59.4405%" y="351.50"></text></g><g><title>psi_task_change (4,384 samples, 0.18%)</title><rect x="59.4020%" y="325" width="0.1836%" height="15" fill="rgb(205,80,24)" fg:x="1418280" fg:w="4384"/><text x="59.6520%" y="335.50"></text></g><g><title>psi_group_change (3,934 samples, 0.16%)</title><rect x="59.4209%" y="309" width="0.1648%" height="15" fill="rgb(220,57,4)" fg:x="1418730" fg:w="3934"/><text x="59.6709%" y="319.50"></text></g><g><title>record_times (633 samples, 0.03%)</title><rect x="59.5591%" y="293" width="0.0265%" height="15" fill="rgb(226,193,50)" fg:x="1422031" fg:w="633"/><text x="59.8091%" y="303.50"></text></g><g><title>sched_clock_cpu (425 samples, 0.02%)</title><rect x="59.5678%" y="277" width="0.0178%" height="15" fill="rgb(231,168,22)" fg:x="1422239" fg:w="425"/><text x="59.8178%" y="287.50"></text></g><g><title>sched_clock (362 samples, 0.02%)</title><rect x="59.5705%" y="261" width="0.0152%" height="15" fill="rgb(254,215,14)" fg:x="1422302" fg:w="362"/><text x="59.8205%" y="271.50"></text></g><g><title>native_sched_clock (327 samples, 0.01%)</title><rect x="59.5719%" y="245" width="0.0137%" height="15" fill="rgb(211,115,16)" fg:x="1422337" fg:w="327"/><text x="59.8219%" y="255.50"></text></g><g><title>resched_curr (370 samples, 0.02%)</title><rect x="59.6059%" y="309" width="0.0155%" height="15" fill="rgb(236,210,16)" fg:x="1423149" fg:w="370"/><text x="59.8559%" y="319.50"></text></g><g><title>ttwu_do_wakeup (856 samples, 0.04%)</title><rect x="59.5856%" y="341" width="0.0359%" height="15" fill="rgb(221,94,12)" fg:x="1422664" fg:w="856"/><text x="59.8356%" y="351.50"></text></g><g><title>check_preempt_curr (746 samples, 0.03%)</title><rect x="59.5902%" y="325" width="0.0312%" height="15" fill="rgb(235,218,49)" fg:x="1422774" fg:w="746"/><text x="59.8402%" y="335.50"></text></g><g><title>ttwu_queue_wakelist (810 samples, 0.03%)</title><rect x="59.6215%" y="341" width="0.0339%" height="15" fill="rgb(217,114,14)" fg:x="1423520" fg:w="810"/><text x="59.8715%" y="351.50"></text></g><g><title>__wake_up_common (26,715 samples, 1.12%)</title><rect x="58.5659%" y="389" width="1.1189%" height="15" fill="rgb(216,145,22)" fg:x="1398316" fg:w="26715"/><text x="58.8159%" y="399.50"></text></g><g><title>autoremove_wake_function (26,018 samples, 1.09%)</title><rect x="58.5950%" y="373" width="1.0897%" height="15" fill="rgb(217,112,39)" fg:x="1399013" fg:w="26018"/><text x="58.8450%" y="383.50"></text></g><g><title>try_to_wake_up (25,322 samples, 1.06%)</title><rect x="58.6242%" y="357" width="1.0606%" height="15" fill="rgb(225,85,32)" fg:x="1399709" fg:w="25322"/><text x="58.8742%" y="367.50"></text></g><g><title>update_rq_clock (701 samples, 0.03%)</title><rect x="59.6554%" y="341" width="0.0294%" height="15" fill="rgb(245,209,47)" fg:x="1424330" fg:w="701"/><text x="59.9054%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (6,861 samples, 0.29%)</title><rect x="59.6848%" y="389" width="0.2874%" height="15" fill="rgb(218,220,15)" fg:x="1425031" fg:w="6861"/><text x="59.9348%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,538 samples, 0.27%)</title><rect x="59.6983%" y="373" width="0.2738%" height="15" fill="rgb(222,202,31)" fg:x="1425354" fg:w="6538"/><text x="59.9483%" y="383.50"></text></g><g><title>_raw_spin_unlock_irqrestore (257 samples, 0.01%)</title><rect x="59.9721%" y="389" width="0.0108%" height="15" fill="rgb(243,203,4)" fg:x="1431892" fg:w="257"/><text x="60.2221%" y="399.50"></text></g><g><title>__wake_up_common_lock (33,945 samples, 1.42%)</title><rect x="58.5612%" y="405" width="1.4217%" height="15" fill="rgb(237,92,17)" fg:x="1398205" fg:w="33945"/><text x="58.8112%" y="415.50"></text></g><g><title>btrfs_search_slot (188,496 samples, 7.89%)</title><rect x="52.1224%" y="437" width="7.8948%" height="15" fill="rgb(231,119,7)" fg:x="1244472" fg:w="188496"/><text x="52.3724%" y="447.50">btrfs_searc..</text></g><g><title>unlock_up (35,776 samples, 1.50%)</title><rect x="58.5188%" y="421" width="1.4984%" height="15" fill="rgb(237,82,41)" fg:x="1397192" fg:w="35776"/><text x="58.7688%" y="431.50"></text></g><g><title>btrfs_tree_unlock (812 samples, 0.03%)</title><rect x="59.9832%" y="405" width="0.0340%" height="15" fill="rgb(226,81,48)" fg:x="1432156" fg:w="812"/><text x="60.2332%" y="415.50"></text></g><g><title>btrfs_lookup_dir_item (194,506 samples, 8.15%)</title><rect x="51.9365%" y="453" width="8.1465%" height="15" fill="rgb(234,70,51)" fg:x="1240034" fg:w="194506"/><text x="52.1865%" y="463.50">btrfs_looku..</text></g><g><title>crc32c (1,572 samples, 0.07%)</title><rect x="60.0172%" y="437" width="0.0658%" height="15" fill="rgb(251,86,4)" fg:x="1432968" fg:w="1572"/><text x="60.2672%" y="447.50"></text></g><g><title>crypto_shash_update (634 samples, 0.03%)</title><rect x="60.0565%" y="421" width="0.0266%" height="15" fill="rgb(244,144,28)" fg:x="1433906" fg:w="634"/><text x="60.3065%" y="431.50"></text></g><g><title>select_task_rq_fair (558 samples, 0.02%)</title><rect x="60.1473%" y="373" width="0.0234%" height="15" fill="rgb(232,161,39)" fg:x="1436075" fg:w="558"/><text x="60.3973%" y="383.50"></text></g><g><title>enqueue_entity (572 samples, 0.02%)</title><rect x="60.1807%" y="341" width="0.0240%" height="15" fill="rgb(247,34,51)" fg:x="1436871" fg:w="572"/><text x="60.4307%" y="351.50"></text></g><g><title>enqueue_task_fair (728 samples, 0.03%)</title><rect x="60.1750%" y="357" width="0.0305%" height="15" fill="rgb(225,132,2)" fg:x="1436737" fg:w="728"/><text x="60.4250%" y="367.50"></text></g><g><title>ttwu_do_activate (1,552 samples, 0.07%)</title><rect x="60.1729%" y="373" width="0.0650%" height="15" fill="rgb(209,159,44)" fg:x="1436686" fg:w="1552"/><text x="60.4229%" y="383.50"></text></g><g><title>psi_task_change (771 samples, 0.03%)</title><rect x="60.2056%" y="357" width="0.0323%" height="15" fill="rgb(251,214,1)" fg:x="1437467" fg:w="771"/><text x="60.4556%" y="367.50"></text></g><g><title>psi_group_change (689 samples, 0.03%)</title><rect x="60.2091%" y="341" width="0.0289%" height="15" fill="rgb(247,84,47)" fg:x="1437549" fg:w="689"/><text x="60.4591%" y="351.50"></text></g><g><title>__wake_up_common (3,810 samples, 0.16%)</title><rect x="60.0951%" y="421" width="0.1596%" height="15" fill="rgb(240,111,43)" fg:x="1434829" fg:w="3810"/><text x="60.3451%" y="431.50"></text></g><g><title>autoremove_wake_function (3,702 samples, 0.16%)</title><rect x="60.0997%" y="405" width="0.1551%" height="15" fill="rgb(215,214,35)" fg:x="1434937" fg:w="3702"/><text x="60.3497%" y="415.50"></text></g><g><title>try_to_wake_up (3,623 samples, 0.15%)</title><rect x="60.1030%" y="389" width="0.1517%" height="15" fill="rgb(248,207,23)" fg:x="1435016" fg:w="3623"/><text x="60.3530%" y="399.50"></text></g><g><title>__wake_up_common_lock (4,003 samples, 0.17%)</title><rect x="60.0942%" y="437" width="0.1677%" height="15" fill="rgb(214,186,4)" fg:x="1434806" fg:w="4003"/><text x="60.3442%" y="447.50"></text></g><g><title>btrfs_tree_unlock (470 samples, 0.02%)</title><rect x="60.2626%" y="437" width="0.0197%" height="15" fill="rgb(220,133,22)" fg:x="1438828" fg:w="470"/><text x="60.5126%" y="447.50"></text></g><g><title>_raw_spin_lock (488 samples, 0.02%)</title><rect x="60.3349%" y="421" width="0.0204%" height="15" fill="rgb(239,134,19)" fg:x="1440553" fg:w="488"/><text x="60.5849%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,715 samples, 0.07%)</title><rect x="60.2836%" y="437" width="0.0718%" height="15" fill="rgb(250,140,9)" fg:x="1439328" fg:w="1715"/><text x="60.5336%" y="447.50"></text></g><g><title>btrfs_release_path (6,957 samples, 0.29%)</title><rect x="60.0830%" y="453" width="0.2914%" height="15" fill="rgb(225,59,14)" fg:x="1434540" fg:w="6957"/><text x="60.3330%" y="463.50"></text></g><g><title>release_extent_buffer (454 samples, 0.02%)</title><rect x="60.3554%" y="437" width="0.0190%" height="15" fill="rgb(214,152,51)" fg:x="1441043" fg:w="454"/><text x="60.6054%" y="447.50"></text></g><g><title>_raw_spin_lock (386 samples, 0.02%)</title><rect x="60.4390%" y="405" width="0.0162%" height="15" fill="rgb(251,227,43)" fg:x="1443040" fg:w="386"/><text x="60.6890%" y="415.50"></text></g><g><title>mutex_lock (359 samples, 0.02%)</title><rect x="60.4553%" y="405" width="0.0150%" height="15" fill="rgb(241,96,17)" fg:x="1443428" fg:w="359"/><text x="60.7053%" y="415.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,781 samples, 0.07%)</title><rect x="60.4119%" y="421" width="0.0746%" height="15" fill="rgb(234,198,43)" fg:x="1442392" fg:w="1781"/><text x="60.6619%" y="431.50"></text></g><g><title>mutex_unlock (386 samples, 0.02%)</title><rect x="60.4703%" y="405" width="0.0162%" height="15" fill="rgb(220,108,29)" fg:x="1443787" fg:w="386"/><text x="60.7203%" y="415.50"></text></g><g><title>btrfs_get_or_create_delayed_node (502 samples, 0.02%)</title><rect x="60.4973%" y="421" width="0.0210%" height="15" fill="rgb(226,163,33)" fg:x="1444432" fg:w="502"/><text x="60.7473%" y="431.50"></text></g><g><title>btrfs_get_delayed_node (443 samples, 0.02%)</title><rect x="60.4998%" y="405" width="0.0186%" height="15" fill="rgb(205,194,45)" fg:x="1444491" fg:w="443"/><text x="60.7498%" y="415.50"></text></g><g><title>_raw_spin_lock (239 samples, 0.01%)</title><rect x="60.5390%" y="389" width="0.0100%" height="15" fill="rgb(206,143,44)" fg:x="1445427" fg:w="239"/><text x="60.7890%" y="399.50"></text></g><g><title>inode_get_bytes (400 samples, 0.02%)</title><rect x="60.5323%" y="405" width="0.0168%" height="15" fill="rgb(236,136,36)" fg:x="1445267" fg:w="400"/><text x="60.7823%" y="415.50"></text></g><g><title>fill_stack_inode_item (1,258 samples, 0.05%)</title><rect x="60.5184%" y="421" width="0.0527%" height="15" fill="rgb(249,172,42)" fg:x="1444934" fg:w="1258"/><text x="60.7684%" y="431.50"></text></g><g><title>map_id_up (525 samples, 0.02%)</title><rect x="60.5491%" y="405" width="0.0220%" height="15" fill="rgb(216,139,23)" fg:x="1445667" fg:w="525"/><text x="60.7991%" y="415.50"></text></g><g><title>btrfs_delayed_update_inode (4,508 samples, 0.19%)</title><rect x="60.4034%" y="437" width="0.1888%" height="15" fill="rgb(207,166,20)" fg:x="1442190" fg:w="4508"/><text x="60.6534%" y="447.50"></text></g><g><title>mutex_unlock (268 samples, 0.01%)</title><rect x="60.5810%" y="421" width="0.0112%" height="15" fill="rgb(210,209,22)" fg:x="1446430" fg:w="268"/><text x="60.8310%" y="431.50"></text></g><g><title>_raw_spin_lock (604 samples, 0.03%)</title><rect x="60.6003%" y="421" width="0.0253%" height="15" fill="rgb(232,118,20)" fg:x="1446890" fg:w="604"/><text x="60.8503%" y="431.50"></text></g><g><title>btrfs_update_inode (6,676 samples, 0.28%)</title><rect x="60.3744%" y="453" width="0.2796%" height="15" fill="rgb(238,113,42)" fg:x="1441497" fg:w="6676"/><text x="60.6244%" y="463.50"></text></g><g><title>btrfs_update_root_times (1,475 samples, 0.06%)</title><rect x="60.5922%" y="437" width="0.0618%" height="15" fill="rgb(231,42,5)" fg:x="1446698" fg:w="1475"/><text x="60.8422%" y="447.50"></text></g><g><title>ktime_get_real_ts64 (678 samples, 0.03%)</title><rect x="60.6256%" y="421" width="0.0284%" height="15" fill="rgb(243,166,24)" fg:x="1447495" fg:w="678"/><text x="60.8756%" y="431.50"></text></g><g><title>kmem_cache_alloc (860 samples, 0.04%)</title><rect x="60.6619%" y="453" width="0.0360%" height="15" fill="rgb(237,226,12)" fg:x="1448362" fg:w="860"/><text x="60.9119%" y="463.50"></text></g><g><title>__btrfs_unlink_inode (305,552 samples, 12.80%)</title><rect x="47.9401%" y="469" width="12.7975%" height="15" fill="rgb(229,133,24)" fg:x="1144617" fg:w="305552"/><text x="48.1901%" y="479.50">__btrfs_unlink_inode</text></g><g><title>kmem_cache_free (947 samples, 0.04%)</title><rect x="60.6980%" y="453" width="0.0397%" height="15" fill="rgb(238,33,43)" fg:x="1449222" fg:w="947"/><text x="60.9480%" y="463.50"></text></g><g><title>__radix_tree_lookup (470 samples, 0.02%)</title><rect x="60.7653%" y="453" width="0.0197%" height="15" fill="rgb(227,59,38)" fg:x="1450829" fg:w="470"/><text x="61.0153%" y="463.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,141 samples, 0.05%)</title><rect x="60.7377%" y="469" width="0.0478%" height="15" fill="rgb(230,97,0)" fg:x="1450171" fg:w="1141"/><text x="60.9877%" y="479.50"></text></g><g><title>btrfs_balance_delayed_items (729 samples, 0.03%)</title><rect x="60.7992%" y="453" width="0.0305%" height="15" fill="rgb(250,173,50)" fg:x="1451640" fg:w="729"/><text x="61.0492%" y="463.50"></text></g><g><title>_raw_spin_lock (400 samples, 0.02%)</title><rect x="60.8399%" y="421" width="0.0168%" height="15" fill="rgb(240,15,50)" fg:x="1452611" fg:w="400"/><text x="61.0899%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (340 samples, 0.01%)</title><rect x="60.8424%" y="405" width="0.0142%" height="15" fill="rgb(221,93,22)" fg:x="1452671" fg:w="340"/><text x="61.0924%" y="415.50"></text></g><g><title>select_task_rq_fair (299 samples, 0.01%)</title><rect x="60.8746%" y="405" width="0.0125%" height="15" fill="rgb(245,180,53)" fg:x="1453439" fg:w="299"/><text x="61.1246%" y="415.50"></text></g><g><title>ttwu_do_activate (370 samples, 0.02%)</title><rect x="60.8889%" y="405" width="0.0155%" height="15" fill="rgb(231,88,51)" fg:x="1453781" fg:w="370"/><text x="61.1389%" y="415.50"></text></g><g><title>try_to_wake_up (1,250 samples, 0.05%)</title><rect x="60.8609%" y="421" width="0.0524%" height="15" fill="rgb(240,58,21)" fg:x="1453112" fg:w="1250"/><text x="61.1109%" y="431.50"></text></g><g><title>__queue_work (1,869 samples, 0.08%)</title><rect x="60.8350%" y="437" width="0.0783%" height="15" fill="rgb(237,21,10)" fg:x="1452494" fg:w="1869"/><text x="61.0850%" y="447.50"></text></g><g><title>btrfs_btree_balance_dirty (3,072 samples, 0.13%)</title><rect x="60.7855%" y="469" width="0.1287%" height="15" fill="rgb(218,43,11)" fg:x="1451312" fg:w="3072"/><text x="61.0355%" y="479.50"></text></g><g><title>queue_work_on (1,919 samples, 0.08%)</title><rect x="60.8338%" y="453" width="0.0804%" height="15" fill="rgb(218,221,29)" fg:x="1452465" fg:w="1919"/><text x="61.0838%" y="463.50"></text></g><g><title>btrfs_end_transaction (247 samples, 0.01%)</title><rect x="60.9142%" y="469" width="0.0103%" height="15" fill="rgb(214,118,42)" fg:x="1454384" fg:w="247"/><text x="61.1642%" y="479.50"></text></g><g><title>enqueue_task_fair (266 samples, 0.01%)</title><rect x="61.0525%" y="325" width="0.0111%" height="15" fill="rgb(251,200,26)" fg:x="1457686" fg:w="266"/><text x="61.3025%" y="335.50"></text></g><g><title>ttwu_do_activate (572 samples, 0.02%)</title><rect x="61.0512%" y="341" width="0.0240%" height="15" fill="rgb(237,101,39)" fg:x="1457656" fg:w="572"/><text x="61.3012%" y="351.50"></text></g><g><title>psi_task_change (275 samples, 0.01%)</title><rect x="61.0636%" y="325" width="0.0115%" height="15" fill="rgb(251,117,11)" fg:x="1457953" fg:w="275"/><text x="61.3136%" y="335.50"></text></g><g><title>psi_group_change (241 samples, 0.01%)</title><rect x="61.0651%" y="309" width="0.0101%" height="15" fill="rgb(216,223,23)" fg:x="1457987" fg:w="241"/><text x="61.3151%" y="319.50"></text></g><g><title>__wake_up_common (2,819 samples, 0.12%)</title><rect x="60.9637%" y="389" width="0.1181%" height="15" fill="rgb(251,54,12)" fg:x="1455568" fg:w="2819"/><text x="61.2137%" y="399.50"></text></g><g><title>autoremove_wake_function (2,769 samples, 0.12%)</title><rect x="60.9658%" y="373" width="0.1160%" height="15" fill="rgb(254,176,54)" fg:x="1455618" fg:w="2769"/><text x="61.2158%" y="383.50"></text></g><g><title>try_to_wake_up (2,755 samples, 0.12%)</title><rect x="60.9664%" y="357" width="0.1154%" height="15" fill="rgb(210,32,8)" fg:x="1455632" fg:w="2755"/><text x="61.2164%" y="367.50"></text></g><g><title>__wake_up_common_lock (2,906 samples, 0.12%)</title><rect x="60.9630%" y="405" width="0.1217%" height="15" fill="rgb(235,52,38)" fg:x="1455549" fg:w="2906"/><text x="61.2130%" y="415.50"></text></g><g><title>btrfs_tree_unlock (375 samples, 0.02%)</title><rect x="61.0848%" y="405" width="0.0157%" height="15" fill="rgb(231,4,44)" fg:x="1458458" fg:w="375"/><text x="61.3348%" y="415.50"></text></g><g><title>_raw_spin_lock (553 samples, 0.02%)</title><rect x="61.1571%" y="389" width="0.0232%" height="15" fill="rgb(249,2,32)" fg:x="1460185" fg:w="553"/><text x="61.4071%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (1,882 samples, 0.08%)</title><rect x="61.1018%" y="405" width="0.0788%" height="15" fill="rgb(224,65,26)" fg:x="1458864" fg:w="1882"/><text x="61.3518%" y="415.50"></text></g><g><title>btrfs_free_path (6,157 samples, 0.26%)</title><rect x="60.9428%" y="437" width="0.2579%" height="15" fill="rgb(250,73,40)" fg:x="1455069" fg:w="6157"/><text x="61.1928%" y="447.50"></text></g><g><title>btrfs_release_path (5,971 samples, 0.25%)</title><rect x="60.9506%" y="421" width="0.2501%" height="15" fill="rgb(253,177,16)" fg:x="1455255" fg:w="5971"/><text x="61.2006%" y="431.50"></text></g><g><title>release_extent_buffer (480 samples, 0.02%)</title><rect x="61.1806%" y="405" width="0.0201%" height="15" fill="rgb(217,32,34)" fg:x="1460746" fg:w="480"/><text x="61.4306%" y="415.50"></text></g><g><title>_raw_read_lock (967 samples, 0.04%)</title><rect x="61.3930%" y="373" width="0.0405%" height="15" fill="rgb(212,7,10)" fg:x="1465818" fg:w="967"/><text x="61.6430%" y="383.50"></text></g><g><title>__list_del_entry_valid (265 samples, 0.01%)</title><rect x="61.4401%" y="357" width="0.0111%" height="15" fill="rgb(245,89,8)" fg:x="1466942" fg:w="265"/><text x="61.6901%" y="367.50"></text></g><g><title>finish_wait (8,088 samples, 0.34%)</title><rect x="61.4379%" y="373" width="0.3388%" height="15" fill="rgb(237,16,53)" fg:x="1466888" fg:w="8088"/><text x="61.6879%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (7,769 samples, 0.33%)</title><rect x="61.4512%" y="357" width="0.3254%" height="15" fill="rgb(250,204,30)" fg:x="1467207" fg:w="7769"/><text x="61.7012%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,436 samples, 0.31%)</title><rect x="61.4652%" y="341" width="0.3114%" height="15" fill="rgb(208,77,27)" fg:x="1467540" fg:w="7436"/><text x="61.7152%" y="351.50"></text></g><g><title>__list_add_valid (446 samples, 0.02%)</title><rect x="61.8242%" y="357" width="0.0187%" height="15" fill="rgb(250,204,28)" fg:x="1476112" fg:w="446"/><text x="62.0742%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (19,498 samples, 0.82%)</title><rect x="61.8429%" y="357" width="0.8166%" height="15" fill="rgb(244,63,21)" fg:x="1476558" fg:w="19498"/><text x="62.0929%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (18,792 samples, 0.79%)</title><rect x="61.8724%" y="341" width="0.7871%" height="15" fill="rgb(236,85,44)" fg:x="1477264" fg:w="18792"/><text x="62.1224%" y="351.50"></text></g><g><title>_raw_spin_unlock_irqrestore (273 samples, 0.01%)</title><rect x="62.6595%" y="357" width="0.0114%" height="15" fill="rgb(215,98,4)" fg:x="1496056" fg:w="273"/><text x="62.9095%" y="367.50"></text></g><g><title>prepare_to_wait_event (21,335 samples, 0.89%)</title><rect x="61.7774%" y="373" width="0.8936%" height="15" fill="rgb(235,38,11)" fg:x="1474995" fg:w="21335"/><text x="62.0274%" y="383.50"></text></g><g><title>queued_read_lock_slowpath (17,968 samples, 0.75%)</title><rect x="62.6710%" y="373" width="0.7526%" height="15" fill="rgb(254,186,25)" fg:x="1496330" fg:w="17968"/><text x="62.9210%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (13,467 samples, 0.56%)</title><rect x="62.8595%" y="357" width="0.5640%" height="15" fill="rgb(225,55,31)" fg:x="1500831" fg:w="13467"/><text x="63.1095%" y="367.50"></text></g><g><title>__perf_event_task_sched_out (498 samples, 0.02%)</title><rect x="63.4589%" y="341" width="0.0209%" height="15" fill="rgb(211,15,21)" fg:x="1515142" fg:w="498"/><text x="63.7089%" y="351.50"></text></g><g><title>update_cfs_group (243 samples, 0.01%)</title><rect x="63.5241%" y="309" width="0.0102%" height="15" fill="rgb(215,187,41)" fg:x="1516700" fg:w="243"/><text x="63.7741%" y="319.50"></text></g><g><title>update_curr (1,052 samples, 0.04%)</title><rect x="63.5343%" y="309" width="0.0441%" height="15" fill="rgb(248,69,32)" fg:x="1516943" fg:w="1052"/><text x="63.7843%" y="319.50"></text></g><g><title>__update_load_avg_cfs_rq (241 samples, 0.01%)</title><rect x="63.5930%" y="293" width="0.0101%" height="15" fill="rgb(252,102,52)" fg:x="1518343" fg:w="241"/><text x="63.8430%" y="303.50"></text></g><g><title>dequeue_entity (2,684 samples, 0.11%)</title><rect x="63.5016%" y="325" width="0.1124%" height="15" fill="rgb(253,140,32)" fg:x="1516161" fg:w="2684"/><text x="63.7516%" y="335.50"></text></g><g><title>update_load_avg (850 samples, 0.04%)</title><rect x="63.5784%" y="309" width="0.0356%" height="15" fill="rgb(216,56,42)" fg:x="1517995" fg:w="850"/><text x="63.8284%" y="319.50"></text></g><g><title>dequeue_task_fair (3,288 samples, 0.14%)</title><rect x="63.4852%" y="341" width="0.1377%" height="15" fill="rgb(216,184,14)" fg:x="1515771" fg:w="3288"/><text x="63.7352%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (635 samples, 0.03%)</title><rect x="63.6411%" y="325" width="0.0266%" height="15" fill="rgb(237,187,27)" fg:x="1519493" fg:w="635"/><text x="63.8911%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (564 samples, 0.02%)</title><rect x="63.6441%" y="309" width="0.0236%" height="15" fill="rgb(219,65,3)" fg:x="1519564" fg:w="564"/><text x="63.8941%" y="319.50"></text></g><g><title>native_write_msr (530 samples, 0.02%)</title><rect x="63.6455%" y="293" width="0.0222%" height="15" fill="rgb(245,83,25)" fg:x="1519598" fg:w="530"/><text x="63.8955%" y="303.50"></text></g><g><title>finish_task_switch (1,187 samples, 0.05%)</title><rect x="63.6229%" y="341" width="0.0497%" height="15" fill="rgb(214,205,45)" fg:x="1519059" fg:w="1187"/><text x="63.8729%" y="351.50"></text></g><g><title>newidle_balance (266 samples, 0.01%)</title><rect x="63.6806%" y="325" width="0.0111%" height="15" fill="rgb(241,20,18)" fg:x="1520436" fg:w="266"/><text x="63.9306%" y="335.50"></text></g><g><title>pick_next_task_fair (594 samples, 0.02%)</title><rect x="63.6730%" y="341" width="0.0249%" height="15" fill="rgb(232,163,23)" fg:x="1520255" fg:w="594"/><text x="63.9230%" y="351.50"></text></g><g><title>__update_idle_core (433 samples, 0.02%)</title><rect x="63.7013%" y="325" width="0.0181%" height="15" fill="rgb(214,5,46)" fg:x="1520929" fg:w="433"/><text x="63.9513%" y="335.50"></text></g><g><title>pick_next_task_idle (514 samples, 0.02%)</title><rect x="63.6979%" y="341" width="0.0215%" height="15" fill="rgb(229,78,17)" fg:x="1520849" fg:w="514"/><text x="63.9479%" y="351.50"></text></g><g><title>psi_task_change (2,306 samples, 0.10%)</title><rect x="63.7194%" y="341" width="0.0966%" height="15" fill="rgb(248,89,10)" fg:x="1521363" fg:w="2306"/><text x="63.9694%" y="351.50"></text></g><g><title>psi_group_change (1,980 samples, 0.08%)</title><rect x="63.7331%" y="325" width="0.0829%" height="15" fill="rgb(248,54,15)" fg:x="1521689" fg:w="1980"/><text x="63.9831%" y="335.50"></text></g><g><title>record_times (435 samples, 0.02%)</title><rect x="63.7978%" y="309" width="0.0182%" height="15" fill="rgb(223,116,6)" fg:x="1523234" fg:w="435"/><text x="64.0478%" y="319.50"></text></g><g><title>sched_clock_cpu (286 samples, 0.01%)</title><rect x="63.8041%" y="293" width="0.0120%" height="15" fill="rgb(205,125,38)" fg:x="1523383" fg:w="286"/><text x="64.0541%" y="303.50"></text></g><g><title>sched_clock (241 samples, 0.01%)</title><rect x="63.8059%" y="277" width="0.0101%" height="15" fill="rgb(251,78,38)" fg:x="1523428" fg:w="241"/><text x="64.0559%" y="287.50"></text></g><g><title>psi_task_switch (279 samples, 0.01%)</title><rect x="63.8160%" y="341" width="0.0117%" height="15" fill="rgb(253,78,28)" fg:x="1523669" fg:w="279"/><text x="64.0660%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (59,834 samples, 2.51%)</title><rect x="61.3431%" y="389" width="2.5060%" height="15" fill="rgb(209,120,3)" fg:x="1464625" fg:w="59834"/><text x="61.5931%" y="399.50">__..</text></g><g><title>schedule (10,161 samples, 0.43%)</title><rect x="63.4235%" y="373" width="0.4256%" height="15" fill="rgb(238,229,9)" fg:x="1514298" fg:w="10161"/><text x="63.6735%" y="383.50"></text></g><g><title>__schedule (9,971 samples, 0.42%)</title><rect x="63.4315%" y="357" width="0.4176%" height="15" fill="rgb(253,159,18)" fg:x="1514488" fg:w="9971"/><text x="63.6815%" y="367.50"></text></g><g><title>update_rq_clock (244 samples, 0.01%)</title><rect x="63.8389%" y="341" width="0.0102%" height="15" fill="rgb(244,42,34)" fg:x="1524215" fg:w="244"/><text x="64.0889%" y="351.50"></text></g><g><title>__btrfs_read_lock_root_node (61,349 samples, 2.57%)</title><rect x="61.3351%" y="405" width="2.5695%" height="15" fill="rgb(224,8,7)" fg:x="1464435" fg:w="61349"/><text x="61.5851%" y="415.50">__..</text></g><g><title>btrfs_root_node (1,323 samples, 0.06%)</title><rect x="63.8492%" y="389" width="0.0554%" height="15" fill="rgb(210,201,45)" fg:x="1524461" fg:w="1323"/><text x="64.0992%" y="399.50"></text></g><g><title>finish_wait (351 samples, 0.01%)</title><rect x="63.9216%" y="389" width="0.0147%" height="15" fill="rgb(252,185,21)" fg:x="1526189" fg:w="351"/><text x="64.1716%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (314 samples, 0.01%)</title><rect x="63.9231%" y="373" width="0.0132%" height="15" fill="rgb(223,131,1)" fg:x="1526226" fg:w="314"/><text x="64.1731%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (623 samples, 0.03%)</title><rect x="63.9504%" y="373" width="0.0261%" height="15" fill="rgb(245,141,16)" fg:x="1526877" fg:w="623"/><text x="64.2004%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (358 samples, 0.01%)</title><rect x="63.9615%" y="357" width="0.0150%" height="15" fill="rgb(229,55,45)" fg:x="1527142" fg:w="358"/><text x="64.2115%" y="367.50"></text></g><g><title>prepare_to_wait_event (1,022 samples, 0.04%)</title><rect x="63.9373%" y="389" width="0.0428%" height="15" fill="rgb(208,92,15)" fg:x="1526564" fg:w="1022"/><text x="64.1873%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,074 samples, 0.04%)</title><rect x="63.9801%" y="389" width="0.0450%" height="15" fill="rgb(234,185,47)" fg:x="1527586" fg:w="1074"/><text x="64.2301%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (352 samples, 0.01%)</title><rect x="64.0103%" y="373" width="0.0147%" height="15" fill="rgb(253,104,50)" fg:x="1528308" fg:w="352"/><text x="64.2603%" y="383.50"></text></g><g><title>update_curr (422 samples, 0.02%)</title><rect x="64.0710%" y="325" width="0.0177%" height="15" fill="rgb(205,70,7)" fg:x="1529757" fg:w="422"/><text x="64.3210%" y="335.50"></text></g><g><title>dequeue_entity (1,129 samples, 0.05%)</title><rect x="64.0562%" y="341" width="0.0473%" height="15" fill="rgb(240,178,43)" fg:x="1529403" fg:w="1129"/><text x="64.3062%" y="351.50"></text></g><g><title>update_load_avg (353 samples, 0.01%)</title><rect x="64.0887%" y="325" width="0.0148%" height="15" fill="rgb(214,112,2)" fg:x="1530179" fg:w="353"/><text x="64.3387%" y="335.50"></text></g><g><title>dequeue_task_fair (1,361 samples, 0.06%)</title><rect x="64.0503%" y="357" width="0.0570%" height="15" fill="rgb(206,46,17)" fg:x="1529262" fg:w="1361"/><text x="64.3003%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (272 samples, 0.01%)</title><rect x="64.1149%" y="341" width="0.0114%" height="15" fill="rgb(225,220,16)" fg:x="1530804" fg:w="272"/><text x="64.3649%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (245 samples, 0.01%)</title><rect x="64.1160%" y="325" width="0.0103%" height="15" fill="rgb(238,65,40)" fg:x="1530831" fg:w="245"/><text x="64.3660%" y="335.50"></text></g><g><title>finish_task_switch (493 samples, 0.02%)</title><rect x="64.1073%" y="357" width="0.0206%" height="15" fill="rgb(230,151,21)" fg:x="1530623" fg:w="493"/><text x="64.3573%" y="367.50"></text></g><g><title>pick_next_task_fair (258 samples, 0.01%)</title><rect x="64.1280%" y="357" width="0.0108%" height="15" fill="rgb(218,58,49)" fg:x="1531118" fg:w="258"/><text x="64.3780%" y="367.50"></text></g><g><title>psi_task_change (957 samples, 0.04%)</title><rect x="64.1474%" y="357" width="0.0401%" height="15" fill="rgb(219,179,14)" fg:x="1531581" fg:w="957"/><text x="64.3974%" y="367.50"></text></g><g><title>psi_group_change (788 samples, 0.03%)</title><rect x="64.1545%" y="341" width="0.0330%" height="15" fill="rgb(223,72,1)" fg:x="1531750" fg:w="788"/><text x="64.4045%" y="351.50"></text></g><g><title>__schedule (4,140 samples, 0.17%)</title><rect x="64.0280%" y="373" width="0.1734%" height="15" fill="rgb(238,126,10)" fg:x="1528731" fg:w="4140"/><text x="64.2780%" y="383.50"></text></g><g><title>__btrfs_tree_lock (7,088 samples, 0.30%)</title><rect x="63.9046%" y="405" width="0.2969%" height="15" fill="rgb(224,206,38)" fg:x="1525784" fg:w="7088"/><text x="64.1546%" y="415.50"></text></g><g><title>schedule (4,212 samples, 0.18%)</title><rect x="64.0251%" y="389" width="0.1764%" height="15" fill="rgb(212,201,54)" fg:x="1528660" fg:w="4212"/><text x="64.2751%" y="399.50"></text></g><g><title>btrfs_leaf_free_space (1,204 samples, 0.05%)</title><rect x="64.2112%" y="405" width="0.0504%" height="15" fill="rgb(218,154,48)" fg:x="1533105" fg:w="1204"/><text x="64.4612%" y="415.50"></text></g><g><title>leaf_space_used (895 samples, 0.04%)</title><rect x="64.2242%" y="389" width="0.0375%" height="15" fill="rgb(232,93,24)" fg:x="1533414" fg:w="895"/><text x="64.4742%" y="399.50"></text></g><g><title>btrfs_get_32 (547 samples, 0.02%)</title><rect x="64.2388%" y="373" width="0.0229%" height="15" fill="rgb(245,30,21)" fg:x="1533762" fg:w="547"/><text x="64.4888%" y="383.50"></text></g><g><title>btrfs_set_lock_blocking_read (323 samples, 0.01%)</title><rect x="64.2930%" y="389" width="0.0135%" height="15" fill="rgb(242,148,29)" fg:x="1535058" fg:w="323"/><text x="64.5430%" y="399.50"></text></g><g><title>btrfs_set_path_blocking (1,083 samples, 0.05%)</title><rect x="64.2679%" y="405" width="0.0454%" height="15" fill="rgb(244,153,54)" fg:x="1534458" fg:w="1083"/><text x="64.5179%" y="415.50"></text></g><g><title>_raw_write_lock (606 samples, 0.03%)</title><rect x="64.3237%" y="389" width="0.0254%" height="15" fill="rgb(252,87,22)" fg:x="1535790" fg:w="606"/><text x="64.5737%" y="399.50"></text></g><g><title>btrfs_try_tree_write_lock (7,539 samples, 0.32%)</title><rect x="64.3134%" y="405" width="0.3158%" height="15" fill="rgb(210,51,29)" fg:x="1535545" fg:w="7539"/><text x="64.5634%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (6,688 samples, 0.28%)</title><rect x="64.3491%" y="389" width="0.2801%" height="15" fill="rgb(242,136,47)" fg:x="1536396" fg:w="6688"/><text x="64.5991%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,029 samples, 0.04%)</title><rect x="64.5861%" y="373" width="0.0431%" height="15" fill="rgb(238,68,4)" fg:x="1542055" fg:w="1029"/><text x="64.8361%" y="383.50"></text></g><g><title>generic_bin_search.constprop.0 (4,274 samples, 0.18%)</title><rect x="64.6292%" y="405" width="0.1790%" height="15" fill="rgb(242,161,30)" fg:x="1543084" fg:w="4274"/><text x="64.8792%" y="415.50"></text></g><g><title>btrfs_buffer_uptodate (1,012 samples, 0.04%)</title><rect x="64.8367%" y="389" width="0.0424%" height="15" fill="rgb(218,58,44)" fg:x="1548038" fg:w="1012"/><text x="65.0867%" y="399.50"></text></g><g><title>verify_parent_transid (826 samples, 0.03%)</title><rect x="64.8445%" y="373" width="0.0346%" height="15" fill="rgb(252,125,32)" fg:x="1548224" fg:w="826"/><text x="65.0945%" y="383.50"></text></g><g><title>btrfs_get_64 (974 samples, 0.04%)</title><rect x="64.8791%" y="389" width="0.0408%" height="15" fill="rgb(219,178,0)" fg:x="1549050" fg:w="974"/><text x="65.1291%" y="399.50"></text></g><g><title>check_setget_bounds.isra.0 (256 samples, 0.01%)</title><rect x="64.9091%" y="373" width="0.0107%" height="15" fill="rgb(213,152,7)" fg:x="1549768" fg:w="256"/><text x="65.1591%" y="383.50"></text></g><g><title>btrfs_verify_level_key (321 samples, 0.01%)</title><rect x="64.9227%" y="389" width="0.0134%" height="15" fill="rgb(249,109,34)" fg:x="1550091" fg:w="321"/><text x="65.1727%" y="399.50"></text></g><g><title>__radix_tree_lookup (2,761 samples, 0.12%)</title><rect x="65.0407%" y="373" width="0.1156%" height="15" fill="rgb(232,96,21)" fg:x="1552908" fg:w="2761"/><text x="65.2907%" y="383.50"></text></g><g><title>mark_page_accessed (890 samples, 0.04%)</title><rect x="65.1751%" y="357" width="0.0373%" height="15" fill="rgb(228,27,39)" fg:x="1556117" fg:w="890"/><text x="65.4251%" y="367.50"></text></g><g><title>mark_extent_buffer_accessed (1,346 samples, 0.06%)</title><rect x="65.1571%" y="373" width="0.0564%" height="15" fill="rgb(211,182,52)" fg:x="1555689" fg:w="1346"/><text x="65.4071%" y="383.50"></text></g><g><title>find_extent_buffer (6,649 samples, 0.28%)</title><rect x="64.9361%" y="389" width="0.2785%" height="15" fill="rgb(234,178,38)" fg:x="1550412" fg:w="6649"/><text x="65.1861%" y="399.50"></text></g><g><title>read_block_for_search.isra.0 (10,498 samples, 0.44%)</title><rect x="64.8082%" y="405" width="0.4397%" height="15" fill="rgb(221,111,3)" fg:x="1547358" fg:w="10498"/><text x="65.0582%" y="415.50"></text></g><g><title>read_extent_buffer (795 samples, 0.03%)</title><rect x="65.2146%" y="389" width="0.0333%" height="15" fill="rgb(228,175,21)" fg:x="1557061" fg:w="795"/><text x="65.4646%" y="399.50"></text></g><g><title>__list_del_entry_valid (258 samples, 0.01%)</title><rect x="65.3054%" y="341" width="0.0108%" height="15" fill="rgb(228,174,43)" fg:x="1559229" fg:w="258"/><text x="65.5554%" y="351.50"></text></g><g><title>_raw_spin_lock (391 samples, 0.02%)</title><rect x="65.3820%" y="325" width="0.0164%" height="15" fill="rgb(211,191,0)" fg:x="1561057" fg:w="391"/><text x="65.6320%" y="335.50"></text></g><g><title>_raw_spin_lock_irqsave (352 samples, 0.01%)</title><rect x="65.3983%" y="325" width="0.0147%" height="15" fill="rgb(253,117,3)" fg:x="1561448" fg:w="352"/><text x="65.6483%" y="335.50"></text></g><g><title>available_idle_cpu (347 samples, 0.01%)</title><rect x="65.4461%" y="309" width="0.0145%" height="15" fill="rgb(241,127,19)" fg:x="1562589" fg:w="347"/><text x="65.6961%" y="319.50"></text></g><g><title>select_task_rq_fair (1,672 samples, 0.07%)</title><rect x="65.4146%" y="325" width="0.0700%" height="15" fill="rgb(218,103,12)" fg:x="1561837" fg:w="1672"/><text x="65.6646%" y="335.50"></text></g><g><title>update_cfs_rq_h_load (346 samples, 0.01%)</title><rect x="65.4702%" y="309" width="0.0145%" height="15" fill="rgb(236,214,43)" fg:x="1563163" fg:w="346"/><text x="65.7202%" y="319.50"></text></g><g><title>enqueue_entity (1,719 samples, 0.07%)</title><rect x="65.5128%" y="293" width="0.0720%" height="15" fill="rgb(244,144,19)" fg:x="1564180" fg:w="1719"/><text x="65.7628%" y="303.50"></text></g><g><title>update_load_avg (623 samples, 0.03%)</title><rect x="65.5587%" y="277" width="0.0261%" height="15" fill="rgb(246,188,10)" fg:x="1565276" fg:w="623"/><text x="65.8087%" y="287.50"></text></g><g><title>enqueue_task_fair (2,201 samples, 0.09%)</title><rect x="65.4984%" y="309" width="0.0922%" height="15" fill="rgb(212,193,33)" fg:x="1563836" fg:w="2201"/><text x="65.7484%" y="319.50"></text></g><g><title>ttwu_do_activate (4,501 samples, 0.19%)</title><rect x="65.4905%" y="325" width="0.1885%" height="15" fill="rgb(241,51,29)" fg:x="1563648" fg:w="4501"/><text x="65.7405%" y="335.50"></text></g><g><title>psi_task_change (2,108 samples, 0.09%)</title><rect x="65.5907%" y="309" width="0.0883%" height="15" fill="rgb(211,58,19)" fg:x="1566041" fg:w="2108"/><text x="65.8407%" y="319.50"></text></g><g><title>psi_group_change (1,883 samples, 0.08%)</title><rect x="65.6001%" y="293" width="0.0789%" height="15" fill="rgb(229,111,26)" fg:x="1566266" fg:w="1883"/><text x="65.8501%" y="303.50"></text></g><g><title>record_times (323 samples, 0.01%)</title><rect x="65.6655%" y="277" width="0.0135%" height="15" fill="rgb(213,115,40)" fg:x="1567826" fg:w="323"/><text x="65.9155%" y="287.50"></text></g><g><title>ttwu_do_wakeup (400 samples, 0.02%)</title><rect x="65.6790%" y="325" width="0.0168%" height="15" fill="rgb(209,56,44)" fg:x="1568149" fg:w="400"/><text x="65.9290%" y="335.50"></text></g><g><title>check_preempt_curr (354 samples, 0.01%)</title><rect x="65.6809%" y="309" width="0.0148%" height="15" fill="rgb(230,108,32)" fg:x="1568195" fg:w="354"/><text x="65.9309%" y="319.50"></text></g><g><title>ttwu_queue_wakelist (244 samples, 0.01%)</title><rect x="65.6957%" y="325" width="0.0102%" height="15" fill="rgb(216,165,31)" fg:x="1568549" fg:w="244"/><text x="65.9457%" y="335.50"></text></g><g><title>__wake_up_common (10,074 samples, 0.42%)</title><rect x="65.2974%" y="373" width="0.4219%" height="15" fill="rgb(218,122,21)" fg:x="1559038" fg:w="10074"/><text x="65.5474%" y="383.50"></text></g><g><title>autoremove_wake_function (9,911 samples, 0.42%)</title><rect x="65.3042%" y="357" width="0.4151%" height="15" fill="rgb(223,224,47)" fg:x="1559201" fg:w="9911"/><text x="65.5542%" y="367.50"></text></g><g><title>try_to_wake_up (9,616 samples, 0.40%)</title><rect x="65.3166%" y="341" width="0.4027%" height="15" fill="rgb(238,102,44)" fg:x="1559496" fg:w="9616"/><text x="65.5666%" y="351.50"></text></g><g><title>update_rq_clock (319 samples, 0.01%)</title><rect x="65.7060%" y="325" width="0.0134%" height="15" fill="rgb(236,46,40)" fg:x="1568793" fg:w="319"/><text x="65.9560%" y="335.50"></text></g><g><title>__wake_up_common_lock (10,393 samples, 0.44%)</title><rect x="65.2960%" y="389" width="0.4353%" height="15" fill="rgb(247,202,50)" fg:x="1559004" fg:w="10393"/><text x="65.5460%" y="399.50"></text></g><g><title>btrfs_tree_read_unlock (890 samples, 0.04%)</title><rect x="65.7316%" y="389" width="0.0373%" height="15" fill="rgb(209,99,20)" fg:x="1569406" fg:w="890"/><text x="65.9816%" y="399.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (336 samples, 0.01%)</title><rect x="65.7689%" y="389" width="0.0141%" height="15" fill="rgb(252,27,34)" fg:x="1570296" fg:w="336"/><text x="66.0189%" y="399.50"></text></g><g><title>btrfs_search_slot (109,294 samples, 4.58%)</title><rect x="61.2176%" y="421" width="4.5776%" height="15" fill="rgb(215,206,23)" fg:x="1461629" fg:w="109294"/><text x="61.4676%" y="431.50">btrfs..</text></g><g><title>unlock_up (12,871 samples, 0.54%)</title><rect x="65.2561%" y="405" width="0.5391%" height="15" fill="rgb(212,135,36)" fg:x="1558052" fg:w="12871"/><text x="65.5061%" y="415.50"></text></g><g><title>btrfs_tree_unlock (291 samples, 0.01%)</title><rect x="65.7830%" y="389" width="0.0122%" height="15" fill="rgb(240,189,1)" fg:x="1570632" fg:w="291"/><text x="66.0330%" y="399.50"></text></g><g><title>btrfs_get_32 (539 samples, 0.02%)</title><rect x="65.8666%" y="405" width="0.0226%" height="15" fill="rgb(242,56,20)" fg:x="1572628" fg:w="539"/><text x="66.1166%" y="415.50"></text></g><g><title>btrfs_get_token_32 (583 samples, 0.02%)</title><rect x="65.8892%" y="405" width="0.0244%" height="15" fill="rgb(247,132,33)" fg:x="1573167" fg:w="583"/><text x="66.1392%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (1,242 samples, 0.05%)</title><rect x="65.9136%" y="405" width="0.0520%" height="15" fill="rgb(208,149,11)" fg:x="1573750" fg:w="1242"/><text x="66.1636%" y="415.50"></text></g><g><title>leaf_space_used (1,024 samples, 0.04%)</title><rect x="65.9227%" y="389" width="0.0429%" height="15" fill="rgb(211,33,11)" fg:x="1573968" fg:w="1024"/><text x="66.1727%" y="399.50"></text></g><g><title>btrfs_get_32 (750 samples, 0.03%)</title><rect x="65.9342%" y="373" width="0.0314%" height="15" fill="rgb(221,29,38)" fg:x="1574242" fg:w="750"/><text x="66.1842%" y="383.50"></text></g><g><title>btrfs_mark_buffer_dirty (968 samples, 0.04%)</title><rect x="65.9656%" y="405" width="0.0405%" height="15" fill="rgb(206,182,49)" fg:x="1574992" fg:w="968"/><text x="66.2156%" y="415.50"></text></g><g><title>set_extent_buffer_dirty (503 samples, 0.02%)</title><rect x="65.9851%" y="389" width="0.0211%" height="15" fill="rgb(216,140,1)" fg:x="1575457" fg:w="503"/><text x="66.2351%" y="399.50"></text></g><g><title>btrfs_set_token_32 (732 samples, 0.03%)</title><rect x="66.0061%" y="405" width="0.0307%" height="15" fill="rgb(232,57,40)" fg:x="1575960" fg:w="732"/><text x="66.2561%" y="415.50"></text></g><g><title>btrfs_unlock_up_safe (459 samples, 0.02%)</title><rect x="66.0368%" y="405" width="0.0192%" height="15" fill="rgb(224,186,18)" fg:x="1576692" fg:w="459"/><text x="66.2868%" y="415.50"></text></g><g><title>copy_pages (308 samples, 0.01%)</title><rect x="66.0733%" y="389" width="0.0129%" height="15" fill="rgb(215,121,11)" fg:x="1577563" fg:w="308"/><text x="66.3233%" y="399.50"></text></g><g><title>memmove_extent_buffer (925 samples, 0.04%)</title><rect x="66.0560%" y="405" width="0.0387%" height="15" fill="rgb(245,147,10)" fg:x="1577151" fg:w="925"/><text x="66.3060%" y="415.50"></text></g><g><title>btrfs_insert_empty_items (117,765 samples, 4.93%)</title><rect x="61.2007%" y="437" width="4.9324%" height="15" fill="rgb(238,153,13)" fg:x="1461226" fg:w="117765"/><text x="61.4507%" y="447.50">btrfs_..</text></g><g><title>setup_items_for_insert (8,068 samples, 0.34%)</title><rect x="65.7952%" y="421" width="0.3379%" height="15" fill="rgb(233,108,0)" fg:x="1570923" fg:w="8068"/><text x="66.0452%" y="431.50"></text></g><g><title>write_extent_buffer (915 samples, 0.04%)</title><rect x="66.0948%" y="405" width="0.0383%" height="15" fill="rgb(212,157,17)" fg:x="1578076" fg:w="915"/><text x="66.3448%" y="415.50"></text></g><g><title>kmem_cache_alloc (802 samples, 0.03%)</title><rect x="66.1331%" y="437" width="0.0336%" height="15" fill="rgb(225,213,38)" fg:x="1578991" fg:w="802"/><text x="66.3831%" y="447.50"></text></g><g><title>btrfs_orphan_add (125,871 samples, 5.27%)</title><rect x="60.9245%" y="469" width="5.2719%" height="15" fill="rgb(248,16,11)" fg:x="1454631" fg:w="125871"/><text x="61.1745%" y="479.50">btrfs_..</text></g><g><title>btrfs_insert_orphan_item (125,662 samples, 5.26%)</title><rect x="60.9333%" y="453" width="5.2631%" height="15" fill="rgb(241,33,4)" fg:x="1454840" fg:w="125662"/><text x="61.1833%" y="463.50">btrfs_..</text></g><g><title>kmem_cache_free (709 samples, 0.03%)</title><rect x="66.1667%" y="437" width="0.0297%" height="15" fill="rgb(222,26,43)" fg:x="1579793" fg:w="709"/><text x="66.4167%" y="447.50"></text></g><g><title>mutex_lock (923 samples, 0.04%)</title><rect x="66.1998%" y="453" width="0.0387%" height="15" fill="rgb(243,29,36)" fg:x="1580584" fg:w="923"/><text x="66.4498%" y="463.50"></text></g><g><title>btrfs_record_unlink_dir (1,238 samples, 0.05%)</title><rect x="66.1964%" y="469" width="0.0519%" height="15" fill="rgb(241,9,27)" fg:x="1580502" fg:w="1238"/><text x="66.4464%" y="479.50"></text></g><g><title>_raw_spin_lock (291 samples, 0.01%)</title><rect x="66.3095%" y="421" width="0.0122%" height="15" fill="rgb(205,117,26)" fg:x="1583204" fg:w="291"/><text x="66.5595%" y="431.50"></text></g><g><title>mutex_lock (241 samples, 0.01%)</title><rect x="66.3218%" y="421" width="0.0101%" height="15" fill="rgb(209,80,39)" fg:x="1583496" fg:w="241"/><text x="66.5718%" y="431.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,399 samples, 0.06%)</title><rect x="66.2912%" y="437" width="0.0586%" height="15" fill="rgb(239,155,6)" fg:x="1582767" fg:w="1399"/><text x="66.5412%" y="447.50"></text></g><g><title>mutex_unlock (429 samples, 0.02%)</title><rect x="66.3319%" y="421" width="0.0180%" height="15" fill="rgb(212,104,12)" fg:x="1583737" fg:w="429"/><text x="66.5819%" y="431.50"></text></g><g><title>_raw_spin_lock (802 samples, 0.03%)</title><rect x="66.3546%" y="421" width="0.0336%" height="15" fill="rgb(234,204,3)" fg:x="1584279" fg:w="802"/><text x="66.6046%" y="431.50"></text></g><g><title>btrfs_block_rsv_migrate (913 samples, 0.04%)</title><rect x="66.3500%" y="437" width="0.0382%" height="15" fill="rgb(251,218,7)" fg:x="1584169" fg:w="913"/><text x="66.6000%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (386 samples, 0.02%)</title><rect x="66.3882%" y="437" width="0.0162%" height="15" fill="rgb(221,81,32)" fg:x="1585082" fg:w="386"/><text x="66.6382%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (343 samples, 0.01%)</title><rect x="66.3900%" y="421" width="0.0144%" height="15" fill="rgb(214,152,26)" fg:x="1585125" fg:w="343"/><text x="66.6400%" y="431.50"></text></g><g><title>inode_get_bytes (276 samples, 0.01%)</title><rect x="66.4106%" y="421" width="0.0116%" height="15" fill="rgb(223,22,3)" fg:x="1585617" fg:w="276"/><text x="66.6606%" y="431.50"></text></g><g><title>fill_stack_inode_item (548 samples, 0.02%)</title><rect x="66.4044%" y="437" width="0.0230%" height="15" fill="rgb(207,174,7)" fg:x="1585468" fg:w="548"/><text x="66.6544%" y="447.50"></text></g><g><title>mutex_lock (426 samples, 0.02%)</title><rect x="66.4273%" y="437" width="0.0178%" height="15" fill="rgb(224,19,52)" fg:x="1586016" fg:w="426"/><text x="66.6773%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (4,483 samples, 0.19%)</title><rect x="66.2641%" y="453" width="0.1878%" height="15" fill="rgb(228,24,14)" fg:x="1582118" fg:w="4483"/><text x="66.5141%" y="463.50"></text></g><g><title>_raw_spin_lock (255 samples, 0.01%)</title><rect x="66.4539%" y="437" width="0.0107%" height="15" fill="rgb(230,153,43)" fg:x="1586651" fg:w="255"/><text x="66.7039%" y="447.50"></text></g><g><title>btrfs_update_inode (5,392 samples, 0.23%)</title><rect x="66.2524%" y="469" width="0.2258%" height="15" fill="rgb(231,106,12)" fg:x="1581839" fg:w="5392"/><text x="66.5024%" y="479.50"></text></g><g><title>btrfs_update_root_times (630 samples, 0.03%)</title><rect x="66.4518%" y="453" width="0.0264%" height="15" fill="rgb(215,92,2)" fg:x="1586601" fg:w="630"/><text x="66.7018%" y="463.50"></text></g><g><title>ktime_get_real_ts64 (325 samples, 0.01%)</title><rect x="66.4646%" y="437" width="0.0136%" height="15" fill="rgb(249,143,25)" fg:x="1586906" fg:w="325"/><text x="66.7146%" y="447.50"></text></g><g><title>drop_nlink (839 samples, 0.04%)</title><rect x="66.4782%" y="469" width="0.0351%" height="15" fill="rgb(252,7,35)" fg:x="1587231" fg:w="839"/><text x="66.7282%" y="479.50"></text></g><g><title>_raw_spin_lock (726 samples, 0.03%)</title><rect x="66.5918%" y="437" width="0.0304%" height="15" fill="rgb(216,69,40)" fg:x="1589942" fg:w="726"/><text x="66.8418%" y="447.50"></text></g><g><title>_raw_spin_lock (1,382 samples, 0.06%)</title><rect x="66.6695%" y="405" width="0.0579%" height="15" fill="rgb(240,36,33)" fg:x="1591799" fg:w="1382"/><text x="66.9195%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (581 samples, 0.02%)</title><rect x="66.7031%" y="389" width="0.0243%" height="15" fill="rgb(231,128,14)" fg:x="1592600" fg:w="581"/><text x="66.9531%" y="399.50"></text></g><g><title>_raw_spin_lock (453 samples, 0.02%)</title><rect x="66.7945%" y="373" width="0.0190%" height="15" fill="rgb(245,143,14)" fg:x="1594782" fg:w="453"/><text x="67.0445%" y="383.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (2,052 samples, 0.09%)</title><rect x="66.7276%" y="405" width="0.0859%" height="15" fill="rgb(222,130,28)" fg:x="1593185" fg:w="2052"/><text x="66.9776%" y="415.50"></text></g><g><title>btrfs_reduce_alloc_profile (988 samples, 0.04%)</title><rect x="66.7721%" y="389" width="0.0414%" height="15" fill="rgb(212,10,48)" fg:x="1594249" fg:w="988"/><text x="67.0221%" y="399.50"></text></g><g><title>_raw_spin_lock (319 samples, 0.01%)</title><rect x="66.8422%" y="373" width="0.0134%" height="15" fill="rgb(254,118,45)" fg:x="1595921" fg:w="319"/><text x="67.0922%" y="383.50"></text></g><g><title>__reserve_bytes (4,987 samples, 0.21%)</title><rect x="66.6467%" y="421" width="0.2089%" height="15" fill="rgb(228,6,45)" fg:x="1591255" fg:w="4987"/><text x="66.8967%" y="431.50"></text></g><g><title>calc_available_free_space.isra.0 (1,005 samples, 0.04%)</title><rect x="66.8135%" y="405" width="0.0421%" height="15" fill="rgb(241,18,35)" fg:x="1595237" fg:w="1005"/><text x="67.0635%" y="415.50"></text></g><g><title>btrfs_reduce_alloc_profile (537 samples, 0.02%)</title><rect x="66.8331%" y="389" width="0.0225%" height="15" fill="rgb(227,214,53)" fg:x="1595705" fg:w="537"/><text x="67.0831%" y="399.50"></text></g><g><title>btrfs_block_rsv_add (6,467 samples, 0.27%)</title><rect x="66.5851%" y="453" width="0.2709%" height="15" fill="rgb(224,107,51)" fg:x="1589783" fg:w="6467"/><text x="66.8351%" y="463.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,582 samples, 0.23%)</title><rect x="66.6222%" y="437" width="0.2338%" height="15" fill="rgb(248,60,28)" fg:x="1590668" fg:w="5582"/><text x="66.8722%" y="447.50"></text></g><g><title>_raw_spin_lock (491 samples, 0.02%)</title><rect x="66.8887%" y="437" width="0.0206%" height="15" fill="rgb(249,101,23)" fg:x="1597032" fg:w="491"/><text x="67.1387%" y="447.50"></text></g><g><title>join_transaction (1,212 samples, 0.05%)</title><rect x="66.8586%" y="453" width="0.0508%" height="15" fill="rgb(228,51,19)" fg:x="1596313" fg:w="1212"/><text x="67.1086%" y="463.50"></text></g><g><title>kmem_cache_alloc (832 samples, 0.03%)</title><rect x="66.9094%" y="453" width="0.0348%" height="15" fill="rgb(213,20,6)" fg:x="1597525" fg:w="832"/><text x="67.1594%" y="463.50"></text></g><g><title>_raw_spin_lock (828 samples, 0.03%)</title><rect x="66.9630%" y="437" width="0.0347%" height="15" fill="rgb(212,124,10)" fg:x="1598805" fg:w="828"/><text x="67.2130%" y="447.50"></text></g><g><title>btrfs_unlink (462,586 samples, 19.37%)</title><rect x="47.6231%" y="485" width="19.3746%" height="15" fill="rgb(248,3,40)" fg:x="1137048" fg:w="462586"/><text x="47.8731%" y="495.50">btrfs_unlink</text></g><g><title>start_transaction (11,562 samples, 0.48%)</title><rect x="66.5134%" y="469" width="0.4843%" height="15" fill="rgb(223,178,23)" fg:x="1588072" fg:w="11562"/><text x="66.7634%" y="479.50"></text></g><g><title>wait_current_trans (1,277 samples, 0.05%)</title><rect x="66.9442%" y="453" width="0.0535%" height="15" fill="rgb(240,132,45)" fg:x="1598357" fg:w="1277"/><text x="67.1942%" y="463.50"></text></g><g><title>_raw_spin_lock (381 samples, 0.02%)</title><rect x="67.0039%" y="469" width="0.0160%" height="15" fill="rgb(245,164,36)" fg:x="1599783" fg:w="381"/><text x="67.2539%" y="479.50"></text></g><g><title>d_delete (531 samples, 0.02%)</title><rect x="66.9977%" y="485" width="0.0222%" height="15" fill="rgb(231,188,53)" fg:x="1599634" fg:w="531"/><text x="67.2477%" y="495.50"></text></g><g><title>__srcu_read_lock (842 samples, 0.04%)</title><rect x="67.0791%" y="437" width="0.0353%" height="15" fill="rgb(237,198,39)" fg:x="1601578" fg:w="842"/><text x="67.3291%" y="447.50"></text></g><g><title>dentry_unlink_inode (2,435 samples, 0.10%)</title><rect x="67.0199%" y="485" width="0.1020%" height="15" fill="rgb(223,120,35)" fg:x="1600165" fg:w="2435"/><text x="67.2699%" y="495.50"></text></g><g><title>fsnotify_destroy_marks (1,591 samples, 0.07%)</title><rect x="67.0553%" y="469" width="0.0666%" height="15" fill="rgb(253,107,49)" fg:x="1601009" fg:w="1591"/><text x="67.3053%" y="479.50"></text></g><g><title>fsnotify_grab_connector (1,277 samples, 0.05%)</title><rect x="67.0684%" y="453" width="0.0535%" height="15" fill="rgb(216,44,31)" fg:x="1601323" fg:w="1277"/><text x="67.3184%" y="463.50"></text></g><g><title>down_write (1,309 samples, 0.05%)</title><rect x="67.1219%" y="485" width="0.0548%" height="15" fill="rgb(253,87,21)" fg:x="1602600" fg:w="1309"/><text x="67.3719%" y="495.50"></text></g><g><title>fsnotify (1,415 samples, 0.06%)</title><rect x="67.1767%" y="485" width="0.0593%" height="15" fill="rgb(226,18,2)" fg:x="1603909" fg:w="1415"/><text x="67.4267%" y="495.50"></text></g><g><title>ihold (351 samples, 0.01%)</title><rect x="67.2360%" y="485" width="0.0147%" height="15" fill="rgb(216,8,46)" fg:x="1605324" fg:w="351"/><text x="67.4860%" y="495.50"></text></g><g><title>_atomic_dec_and_lock (579 samples, 0.02%)</title><rect x="67.2599%" y="469" width="0.0243%" height="15" fill="rgb(226,140,39)" fg:x="1605895" fg:w="579"/><text x="67.5099%" y="479.50"></text></g><g><title>iput.part.0 (733 samples, 0.03%)</title><rect x="67.2535%" y="485" width="0.0307%" height="15" fill="rgb(221,194,54)" fg:x="1605742" fg:w="733"/><text x="67.5035%" y="495.50"></text></g><g><title>btrfs_permission (567 samples, 0.02%)</title><rect x="67.3061%" y="453" width="0.0237%" height="15" fill="rgb(213,92,11)" fg:x="1606997" fg:w="567"/><text x="67.5561%" y="463.50"></text></g><g><title>inode_permission.part.0 (857 samples, 0.04%)</title><rect x="67.2966%" y="469" width="0.0359%" height="15" fill="rgb(229,162,46)" fg:x="1606770" fg:w="857"/><text x="67.5466%" y="479.50"></text></g><g><title>may_delete (1,175 samples, 0.05%)</title><rect x="67.2842%" y="485" width="0.0492%" height="15" fill="rgb(214,111,36)" fg:x="1606476" fg:w="1175"/><text x="67.5342%" y="495.50"></text></g><g><title>do_unlinkat (1,327,853 samples, 55.61%)</title><rect x="11.7396%" y="517" width="55.6146%" height="15" fill="rgb(207,6,21)" fg:x="280295" fg:w="1327853"/><text x="11.9896%" y="527.50">do_unlinkat</text></g><g><title>vfs_unlink (472,026 samples, 19.77%)</title><rect x="47.5843%" y="501" width="19.7699%" height="15" fill="rgb(213,127,38)" fg:x="1136122" fg:w="472026"/><text x="47.8343%" y="511.50">vfs_unlink</text></g><g><title>up_write (443 samples, 0.02%)</title><rect x="67.3357%" y="485" width="0.0186%" height="15" fill="rgb(238,118,32)" fg:x="1607705" fg:w="443"/><text x="67.5857%" y="495.50"></text></g><g><title>do_syscall_64 (1,408,936 samples, 59.01%)</title><rect x="8.3566%" y="533" width="59.0107%" height="15" fill="rgb(240,139,39)" fg:x="199521" fg:w="1408936"/><text x="8.6066%" y="543.50">do_syscall_64</text></g><g><title>syscall_enter_from_user_mode (309 samples, 0.01%)</title><rect x="67.3543%" y="517" width="0.0129%" height="15" fill="rgb(235,10,37)" fg:x="1608148" fg:w="309"/><text x="67.6043%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,412,113 samples, 59.14%)</title><rect x="8.3298%" y="549" width="59.1437%" height="15" fill="rgb(249,171,38)" fg:x="198881" fg:w="1412113"/><text x="8.5798%" y="559.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (2,537 samples, 0.11%)</title><rect x="67.3672%" y="533" width="0.1063%" height="15" fill="rgb(242,144,32)" fg:x="1608457" fg:w="2537"/><text x="67.6172%" y="543.50"></text></g><g><title>exit_to_user_mode_prepare (2,164 samples, 0.09%)</title><rect x="67.3828%" y="517" width="0.0906%" height="15" fill="rgb(217,117,21)" fg:x="1608830" fg:w="2164"/><text x="67.6328%" y="527.50"></text></g><g><title>switch_fpu_return (1,789 samples, 0.07%)</title><rect x="67.3985%" y="501" width="0.0749%" height="15" fill="rgb(249,87,1)" fg:x="1609205" fg:w="1789"/><text x="67.6485%" y="511.50"></text></g><g><title>copy_kernel_to_fpregs (772 samples, 0.03%)</title><rect x="67.4411%" y="485" width="0.0323%" height="15" fill="rgb(248,196,48)" fg:x="1610222" fg:w="772"/><text x="67.6911%" y="495.50"></text></g><g><title>syscall_return_via_sysret (576 samples, 0.02%)</title><rect x="67.4801%" y="549" width="0.0241%" height="15" fill="rgb(251,206,33)" fg:x="1611152" fg:w="576"/><text x="67.7301%" y="559.50"></text></g><g><title>__GI_unlinkat (1,416,202 samples, 59.31%)</title><rect x="8.1893%" y="565" width="59.3150%" height="15" fill="rgb(232,141,28)" fg:x="195528" fg:w="1416202"/><text x="8.4393%" y="575.50">__GI_unlinkat</text></g><g><title>__closedir (271 samples, 0.01%)</title><rect x="67.5046%" y="565" width="0.0114%" height="15" fill="rgb(209,167,14)" fg:x="1611738" fg:w="271"/><text x="67.7546%" y="575.50"></text></g><g><title>__dirfd (570 samples, 0.02%)</title><rect x="67.5160%" y="565" width="0.0239%" height="15" fill="rgb(225,11,50)" fg:x="1612009" fg:w="570"/><text x="67.7660%" y="575.50"></text></g><g><title>__do_sys_newfstat (457 samples, 0.02%)</title><rect x="67.5538%" y="501" width="0.0191%" height="15" fill="rgb(209,50,20)" fg:x="1612913" fg:w="457"/><text x="67.8038%" y="511.50"></text></g><g><title>vfs_fstat (349 samples, 0.01%)</title><rect x="67.5584%" y="485" width="0.0146%" height="15" fill="rgb(212,17,46)" fg:x="1613021" fg:w="349"/><text x="67.8084%" y="495.50"></text></g><g><title>do_syscall_64 (477 samples, 0.02%)</title><rect x="67.5534%" y="517" width="0.0200%" height="15" fill="rgb(216,101,39)" fg:x="1612903" fg:w="477"/><text x="67.8034%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (495 samples, 0.02%)</title><rect x="67.5533%" y="533" width="0.0207%" height="15" fill="rgb(212,228,48)" fg:x="1612899" fg:w="495"/><text x="67.8033%" y="543.50"></text></g><g><title>__GI___fxstat (562 samples, 0.02%)</title><rect x="67.5512%" y="549" width="0.0235%" height="15" fill="rgb(250,6,50)" fg:x="1612849" fg:w="562"/><text x="67.8012%" y="559.50"></text></g><g><title>_int_malloc (293 samples, 0.01%)</title><rect x="67.5847%" y="517" width="0.0123%" height="15" fill="rgb(250,160,48)" fg:x="1613649" fg:w="293"/><text x="67.8347%" y="527.50"></text></g><g><title>__GI___libc_malloc (395 samples, 0.02%)</title><rect x="67.5805%" y="533" width="0.0165%" height="15" fill="rgb(244,216,33)" fg:x="1613550" fg:w="395"/><text x="67.8305%" y="543.50"></text></g><g><title>__fdopendir (1,342 samples, 0.06%)</title><rect x="67.5421%" y="565" width="0.0562%" height="15" fill="rgb(207,157,5)" fg:x="1612633" fg:w="1342"/><text x="67.7921%" y="575.50"></text></g><g><title>__alloc_dir (564 samples, 0.02%)</title><rect x="67.5747%" y="549" width="0.0236%" height="15" fill="rgb(228,199,8)" fg:x="1613411" fg:w="564"/><text x="67.8247%" y="559.50"></text></g><g><title>kmem_cache_alloc (398 samples, 0.02%)</title><rect x="67.6242%" y="421" width="0.0167%" height="15" fill="rgb(227,80,20)" fg:x="1614592" fg:w="398"/><text x="67.8742%" y="431.50"></text></g><g><title>__alloc_file (601 samples, 0.03%)</title><rect x="67.6219%" y="437" width="0.0252%" height="15" fill="rgb(222,9,33)" fg:x="1614538" fg:w="601"/><text x="67.8719%" y="447.50"></text></g><g><title>alloc_empty_file (645 samples, 0.03%)</title><rect x="67.6211%" y="453" width="0.0270%" height="15" fill="rgb(239,44,28)" fg:x="1614518" fg:w="645"/><text x="67.8711%" y="463.50"></text></g><g><title>btrfs_opendir (394 samples, 0.02%)</title><rect x="67.6573%" y="437" width="0.0165%" height="15" fill="rgb(249,187,43)" fg:x="1615383" fg:w="394"/><text x="67.9073%" y="447.50"></text></g><g><title>kmem_cache_alloc_trace (360 samples, 0.02%)</title><rect x="67.6587%" y="421" width="0.0151%" height="15" fill="rgb(216,141,28)" fg:x="1615417" fg:w="360"/><text x="67.9087%" y="431.50"></text></g><g><title>security_file_open (271 samples, 0.01%)</title><rect x="67.6801%" y="437" width="0.0114%" height="15" fill="rgb(230,154,53)" fg:x="1615927" fg:w="271"/><text x="67.9301%" y="447.50"></text></g><g><title>do_dentry_open (941 samples, 0.04%)</title><rect x="67.6521%" y="453" width="0.0394%" height="15" fill="rgb(227,82,4)" fg:x="1615258" fg:w="941"/><text x="67.9021%" y="463.50"></text></g><g><title>do_filp_open (2,366 samples, 0.10%)</title><rect x="67.6166%" y="485" width="0.0991%" height="15" fill="rgb(220,107,16)" fg:x="1614411" fg:w="2366"/><text x="67.8666%" y="495.50"></text></g><g><title>path_openat (2,339 samples, 0.10%)</title><rect x="67.6177%" y="469" width="0.0980%" height="15" fill="rgb(207,187,2)" fg:x="1614438" fg:w="2339"/><text x="67.8677%" y="479.50"></text></g><g><title>getname_flags.part.0 (348 samples, 0.01%)</title><rect x="67.7202%" y="485" width="0.0146%" height="15" fill="rgb(210,162,52)" fg:x="1616885" fg:w="348"/><text x="67.9702%" y="495.50"></text></g><g><title>__x64_sys_openat (3,125 samples, 0.13%)</title><rect x="67.6058%" y="517" width="0.1309%" height="15" fill="rgb(217,216,49)" fg:x="1614154" fg:w="3125"/><text x="67.8558%" y="527.50"></text></g><g><title>do_sys_openat2 (3,093 samples, 0.13%)</title><rect x="67.6072%" y="501" width="0.1295%" height="15" fill="rgb(218,146,49)" fg:x="1614186" fg:w="3093"/><text x="67.8572%" y="511.50"></text></g><g><title>do_syscall_64 (3,177 samples, 0.13%)</title><rect x="67.6047%" y="533" width="0.1331%" height="15" fill="rgb(216,55,40)" fg:x="1614126" fg:w="3177"/><text x="67.8547%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,208 samples, 0.13%)</title><rect x="67.6044%" y="549" width="0.1344%" height="15" fill="rgb(208,196,21)" fg:x="1614119" fg:w="3208"/><text x="67.8544%" y="559.50"></text></g><g><title>__libc_openat64 (3,358 samples, 0.14%)</title><rect x="67.5990%" y="565" width="0.1406%" height="15" fill="rgb(242,117,42)" fg:x="1613991" fg:w="3358"/><text x="67.8490%" y="575.50"></text></g><g><title>entry_SYSCALL_64 (558 samples, 0.02%)</title><rect x="67.7887%" y="549" width="0.0234%" height="15" fill="rgb(210,11,23)" fg:x="1618520" fg:w="558"/><text x="68.0387%" y="559.50"></text></g><g><title>_cond_resched (301 samples, 0.01%)</title><rect x="67.9158%" y="485" width="0.0126%" height="15" fill="rgb(217,110,2)" fg:x="1621556" fg:w="301"/><text x="68.1658%" y="495.50"></text></g><g><title>btrfs_dentry_delete (258 samples, 0.01%)</title><rect x="67.9285%" y="485" width="0.0108%" height="15" fill="rgb(229,77,54)" fg:x="1621858" fg:w="258"/><text x="68.1785%" y="495.50"></text></g><g><title>__list_add_valid (488 samples, 0.02%)</title><rect x="68.0038%" y="453" width="0.0204%" height="15" fill="rgb(218,53,16)" fg:x="1623655" fg:w="488"/><text x="68.2538%" y="463.50"></text></g><g><title>_raw_spin_lock (722 samples, 0.03%)</title><rect x="68.0242%" y="453" width="0.0302%" height="15" fill="rgb(215,38,13)" fg:x="1624143" fg:w="722"/><text x="68.2742%" y="463.50"></text></g><g><title>d_lru_add (3,076 samples, 0.13%)</title><rect x="67.9393%" y="485" width="0.1288%" height="15" fill="rgb(235,42,18)" fg:x="1622116" fg:w="3076"/><text x="68.1893%" y="495.50"></text></g><g><title>list_lru_add (2,819 samples, 0.12%)</title><rect x="67.9501%" y="469" width="0.1181%" height="15" fill="rgb(219,66,54)" fg:x="1622373" fg:w="2819"/><text x="68.2001%" y="479.50"></text></g><g><title>mem_cgroup_from_obj (318 samples, 0.01%)</title><rect x="68.0548%" y="453" width="0.0133%" height="15" fill="rgb(222,205,4)" fg:x="1624874" fg:w="318"/><text x="68.3048%" y="463.50"></text></g><g><title>lockref_put_or_lock (666 samples, 0.03%)</title><rect x="68.0681%" y="485" width="0.0279%" height="15" fill="rgb(227,213,46)" fg:x="1625192" fg:w="666"/><text x="68.3181%" y="495.50"></text></g><g><title>dput (4,887 samples, 0.20%)</title><rect x="67.8926%" y="501" width="0.2047%" height="15" fill="rgb(250,145,42)" fg:x="1621002" fg:w="4887"/><text x="68.1426%" y="511.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (390 samples, 0.02%)</title><rect x="68.1724%" y="405" width="0.0163%" height="15" fill="rgb(219,15,2)" fg:x="1627682" fg:w="390"/><text x="68.4224%" y="415.50"></text></g><g><title>_raw_spin_lock (346 samples, 0.01%)</title><rect x="68.2299%" y="389" width="0.0145%" height="15" fill="rgb(231,181,52)" fg:x="1629055" fg:w="346"/><text x="68.4799%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (1,301 samples, 0.05%)</title><rect x="68.1900%" y="405" width="0.0545%" height="15" fill="rgb(235,1,42)" fg:x="1628102" fg:w="1301"/><text x="68.4400%" y="415.50"></text></g><g><title>btrfs_free_path (2,459 samples, 0.10%)</title><rect x="68.1572%" y="437" width="0.1030%" height="15" fill="rgb(249,88,27)" fg:x="1627319" fg:w="2459"/><text x="68.4072%" y="447.50"></text></g><g><title>btrfs_release_path (2,354 samples, 0.10%)</title><rect x="68.1616%" y="421" width="0.0986%" height="15" fill="rgb(235,145,16)" fg:x="1627424" fg:w="2354"/><text x="68.4116%" y="431.50"></text></g><g><title>release_extent_buffer (375 samples, 0.02%)</title><rect x="68.2445%" y="405" width="0.0157%" height="15" fill="rgb(237,114,19)" fg:x="1629403" fg:w="375"/><text x="68.4945%" y="415.50"></text></g><g><title>_raw_read_lock (573 samples, 0.02%)</title><rect x="68.3882%" y="373" width="0.0240%" height="15" fill="rgb(238,51,50)" fg:x="1632835" fg:w="573"/><text x="68.6382%" y="383.50"></text></g><g><title>finish_wait (2,584 samples, 0.11%)</title><rect x="68.4135%" y="373" width="0.1082%" height="15" fill="rgb(205,194,25)" fg:x="1633437" fg:w="2584"/><text x="68.6635%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (2,461 samples, 0.10%)</title><rect x="68.4186%" y="357" width="0.1031%" height="15" fill="rgb(215,203,17)" fg:x="1633560" fg:w="2461"/><text x="68.6686%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,356 samples, 0.10%)</title><rect x="68.4230%" y="341" width="0.0987%" height="15" fill="rgb(233,112,49)" fg:x="1633665" fg:w="2356"/><text x="68.6730%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (6,166 samples, 0.26%)</title><rect x="68.5457%" y="357" width="0.2583%" height="15" fill="rgb(241,130,26)" fg:x="1636594" fg:w="6166"/><text x="68.7957%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,904 samples, 0.25%)</title><rect x="68.5567%" y="341" width="0.2473%" height="15" fill="rgb(252,223,19)" fg:x="1636856" fg:w="5904"/><text x="68.8067%" y="351.50"></text></g><g><title>prepare_to_wait_event (6,831 samples, 0.29%)</title><rect x="68.5221%" y="373" width="0.2861%" height="15" fill="rgb(211,95,25)" fg:x="1636031" fg:w="6831"/><text x="68.7721%" y="383.50"></text></g><g><title>queued_read_lock_slowpath (7,357 samples, 0.31%)</title><rect x="68.8082%" y="373" width="0.3081%" height="15" fill="rgb(251,182,27)" fg:x="1642862" fg:w="7357"/><text x="69.0582%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,584 samples, 0.23%)</title><rect x="68.8825%" y="357" width="0.2339%" height="15" fill="rgb(238,24,4)" fg:x="1644635" fg:w="5584"/><text x="69.1325%" y="367.50"></text></g><g><title>update_curr (399 samples, 0.02%)</title><rect x="69.1588%" y="309" width="0.0167%" height="15" fill="rgb(224,220,25)" fg:x="1651233" fg:w="399"/><text x="69.4088%" y="319.50"></text></g><g><title>dequeue_entity (1,017 samples, 0.04%)</title><rect x="69.1465%" y="325" width="0.0426%" height="15" fill="rgb(239,133,26)" fg:x="1650940" fg:w="1017"/><text x="69.3965%" y="335.50"></text></g><g><title>update_load_avg (325 samples, 0.01%)</title><rect x="69.1755%" y="309" width="0.0136%" height="15" fill="rgb(211,94,48)" fg:x="1651632" fg:w="325"/><text x="69.4255%" y="319.50"></text></g><g><title>dequeue_task_fair (1,215 samples, 0.05%)</title><rect x="69.1408%" y="341" width="0.0509%" height="15" fill="rgb(239,87,6)" fg:x="1650802" fg:w="1215"/><text x="69.3908%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (285 samples, 0.01%)</title><rect x="69.1981%" y="325" width="0.0119%" height="15" fill="rgb(227,62,0)" fg:x="1652172" fg:w="285"/><text x="69.4481%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (254 samples, 0.01%)</title><rect x="69.1994%" y="309" width="0.0106%" height="15" fill="rgb(211,226,4)" fg:x="1652203" fg:w="254"/><text x="69.4494%" y="319.50"></text></g><g><title>native_write_msr (241 samples, 0.01%)</title><rect x="69.2000%" y="293" width="0.0101%" height="15" fill="rgb(253,38,52)" fg:x="1652216" fg:w="241"/><text x="69.4500%" y="303.50"></text></g><g><title>finish_task_switch (474 samples, 0.02%)</title><rect x="69.1916%" y="341" width="0.0199%" height="15" fill="rgb(229,126,40)" fg:x="1652017" fg:w="474"/><text x="69.4416%" y="351.50"></text></g><g><title>psi_task_change (912 samples, 0.04%)</title><rect x="69.2292%" y="341" width="0.0382%" height="15" fill="rgb(229,165,44)" fg:x="1652914" fg:w="912"/><text x="69.4792%" y="351.50"></text></g><g><title>psi_group_change (770 samples, 0.03%)</title><rect x="69.2352%" y="325" width="0.0323%" height="15" fill="rgb(247,95,47)" fg:x="1653056" fg:w="770"/><text x="69.4852%" y="335.50"></text></g><g><title>__btrfs_tree_read_lock (21,774 samples, 0.91%)</title><rect x="68.3669%" y="389" width="0.9120%" height="15" fill="rgb(216,140,30)" fg:x="1632325" fg:w="21774"/><text x="68.6169%" y="399.50"></text></g><g><title>schedule (3,880 samples, 0.16%)</title><rect x="69.1163%" y="373" width="0.1625%" height="15" fill="rgb(246,214,8)" fg:x="1650219" fg:w="3880"/><text x="69.3663%" y="383.50"></text></g><g><title>__schedule (3,820 samples, 0.16%)</title><rect x="69.1189%" y="357" width="0.1600%" height="15" fill="rgb(227,224,15)" fg:x="1650279" fg:w="3820"/><text x="69.3689%" y="367.50"></text></g><g><title>__btrfs_read_lock_root_node (23,464 samples, 0.98%)</title><rect x="68.3610%" y="405" width="0.9827%" height="15" fill="rgb(233,175,4)" fg:x="1632185" fg:w="23464"/><text x="68.6110%" y="415.50"></text></g><g><title>btrfs_root_node (1,549 samples, 0.06%)</title><rect x="69.2789%" y="389" width="0.0649%" height="15" fill="rgb(221,66,45)" fg:x="1654100" fg:w="1549"/><text x="69.5289%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (356 samples, 0.01%)</title><rect x="69.3571%" y="373" width="0.0149%" height="15" fill="rgb(221,178,18)" fg:x="1655968" fg:w="356"/><text x="69.6071%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (293 samples, 0.01%)</title><rect x="69.3598%" y="357" width="0.0123%" height="15" fill="rgb(213,81,29)" fg:x="1656031" fg:w="293"/><text x="69.6098%" y="367.50"></text></g><g><title>prepare_to_wait_event (463 samples, 0.02%)</title><rect x="69.3537%" y="389" width="0.0194%" height="15" fill="rgb(220,89,49)" fg:x="1655886" fg:w="463"/><text x="69.6037%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (325 samples, 0.01%)</title><rect x="69.3731%" y="389" width="0.0136%" height="15" fill="rgb(227,60,33)" fg:x="1656349" fg:w="325"/><text x="69.6231%" y="399.50"></text></g><g><title>dequeue_entity (307 samples, 0.01%)</title><rect x="69.3975%" y="341" width="0.0129%" height="15" fill="rgb(205,113,12)" fg:x="1656932" fg:w="307"/><text x="69.6475%" y="351.50"></text></g><g><title>dequeue_task_fair (372 samples, 0.02%)</title><rect x="69.3958%" y="357" width="0.0156%" height="15" fill="rgb(211,32,1)" fg:x="1656891" fg:w="372"/><text x="69.6458%" y="367.50"></text></g><g><title>psi_task_change (265 samples, 0.01%)</title><rect x="69.4219%" y="357" width="0.0111%" height="15" fill="rgb(246,2,12)" fg:x="1657514" fg:w="265"/><text x="69.6719%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (2,215 samples, 0.09%)</title><rect x="69.3438%" y="405" width="0.0928%" height="15" fill="rgb(243,37,27)" fg:x="1655649" fg:w="2215"/><text x="69.5938%" y="415.50"></text></g><g><title>schedule (1,190 samples, 0.05%)</title><rect x="69.3867%" y="389" width="0.0498%" height="15" fill="rgb(248,211,31)" fg:x="1656674" fg:w="1190"/><text x="69.6367%" y="399.50"></text></g><g><title>__schedule (1,166 samples, 0.05%)</title><rect x="69.3877%" y="373" width="0.0488%" height="15" fill="rgb(242,146,47)" fg:x="1656698" fg:w="1166"/><text x="69.6377%" y="383.50"></text></g><g><title>select_task_rq_fair (253 samples, 0.01%)</title><rect x="69.4498%" y="341" width="0.0106%" height="15" fill="rgb(206,70,20)" fg:x="1658180" fg:w="253"/><text x="69.6998%" y="351.50"></text></g><g><title>enqueue_task_fair (299 samples, 0.01%)</title><rect x="69.4620%" y="325" width="0.0125%" height="15" fill="rgb(215,10,51)" fg:x="1658473" fg:w="299"/><text x="69.7120%" y="335.50"></text></g><g><title>ttwu_do_activate (616 samples, 0.03%)</title><rect x="69.4610%" y="341" width="0.0258%" height="15" fill="rgb(243,178,53)" fg:x="1658447" fg:w="616"/><text x="69.7110%" y="351.50"></text></g><g><title>psi_task_change (291 samples, 0.01%)</title><rect x="69.4746%" y="325" width="0.0122%" height="15" fill="rgb(233,221,20)" fg:x="1658772" fg:w="291"/><text x="69.7246%" y="335.50"></text></g><g><title>psi_group_change (259 samples, 0.01%)</title><rect x="69.4759%" y="309" width="0.0108%" height="15" fill="rgb(218,95,35)" fg:x="1658804" fg:w="259"/><text x="69.7259%" y="319.50"></text></g><g><title>__wake_up_common (1,320 samples, 0.06%)</title><rect x="69.4368%" y="389" width="0.0553%" height="15" fill="rgb(229,13,5)" fg:x="1657871" fg:w="1320"/><text x="69.6868%" y="399.50"></text></g><g><title>autoremove_wake_function (1,305 samples, 0.05%)</title><rect x="69.4375%" y="373" width="0.0547%" height="15" fill="rgb(252,164,30)" fg:x="1657886" fg:w="1305"/><text x="69.6875%" y="383.50"></text></g><g><title>try_to_wake_up (1,258 samples, 0.05%)</title><rect x="69.4394%" y="357" width="0.0527%" height="15" fill="rgb(232,68,36)" fg:x="1657933" fg:w="1258"/><text x="69.6894%" y="367.50"></text></g><g><title>__wake_up_common_lock (1,351 samples, 0.06%)</title><rect x="69.4365%" y="405" width="0.0566%" height="15" fill="rgb(219,59,54)" fg:x="1657864" fg:w="1351"/><text x="69.6865%" y="415.50"></text></g><g><title>btrfs_set_path_blocking (1,015 samples, 0.04%)</title><rect x="69.5011%" y="405" width="0.0425%" height="15" fill="rgb(250,92,33)" fg:x="1659405" fg:w="1015"/><text x="69.7511%" y="415.50"></text></g><g><title>btrfs_set_lock_blocking_read (608 samples, 0.03%)</title><rect x="69.5181%" y="389" width="0.0255%" height="15" fill="rgb(229,162,54)" fg:x="1659812" fg:w="608"/><text x="69.7681%" y="399.50"></text></g><g><title>_raw_read_lock (414 samples, 0.02%)</title><rect x="69.5546%" y="389" width="0.0173%" height="15" fill="rgb(244,114,52)" fg:x="1660683" fg:w="414"/><text x="69.8046%" y="399.50"></text></g><g><title>btrfs_tree_read_lock_atomic (2,595 samples, 0.11%)</title><rect x="69.5436%" y="405" width="0.1087%" height="15" fill="rgb(212,211,43)" fg:x="1660420" fg:w="2595"/><text x="69.7936%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (1,918 samples, 0.08%)</title><rect x="69.5719%" y="389" width="0.0803%" height="15" fill="rgb(226,147,8)" fg:x="1661097" fg:w="1918"/><text x="69.8219%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (643 samples, 0.03%)</title><rect x="69.6253%" y="373" width="0.0269%" height="15" fill="rgb(226,23,13)" fg:x="1662372" fg:w="643"/><text x="69.8753%" y="383.50"></text></g><g><title>btrfs_tree_read_unlock (961 samples, 0.04%)</title><rect x="69.6523%" y="405" width="0.0402%" height="15" fill="rgb(240,63,4)" fg:x="1663015" fg:w="961"/><text x="69.9023%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (5,722 samples, 0.24%)</title><rect x="69.6964%" y="405" width="0.2397%" height="15" fill="rgb(221,1,32)" fg:x="1664069" fg:w="5722"/><text x="69.9464%" y="415.50"></text></g><g><title>btrfs_buffer_uptodate (661 samples, 0.03%)</title><rect x="69.9662%" y="389" width="0.0277%" height="15" fill="rgb(242,117,10)" fg:x="1670510" fg:w="661"/><text x="70.2162%" y="399.50"></text></g><g><title>verify_parent_transid (530 samples, 0.02%)</title><rect x="69.9717%" y="373" width="0.0222%" height="15" fill="rgb(249,172,44)" fg:x="1670641" fg:w="530"/><text x="70.2217%" y="383.50"></text></g><g><title>btrfs_get_64 (857 samples, 0.04%)</title><rect x="69.9939%" y="389" width="0.0359%" height="15" fill="rgb(244,46,45)" fg:x="1671171" fg:w="857"/><text x="70.2439%" y="399.50"></text></g><g><title>btrfs_verify_level_key (258 samples, 0.01%)</title><rect x="70.0329%" y="389" width="0.0108%" height="15" fill="rgb(206,43,17)" fg:x="1672102" fg:w="258"/><text x="70.2829%" y="399.50"></text></g><g><title>__radix_tree_lookup (3,046 samples, 0.13%)</title><rect x="70.0975%" y="373" width="0.1276%" height="15" fill="rgb(239,218,39)" fg:x="1673645" fg:w="3046"/><text x="70.3475%" y="383.50"></text></g><g><title>mark_page_accessed (1,113 samples, 0.05%)</title><rect x="70.2426%" y="357" width="0.0466%" height="15" fill="rgb(208,169,54)" fg:x="1677110" fg:w="1113"/><text x="70.4926%" y="367.50"></text></g><g><title>mark_extent_buffer_accessed (1,539 samples, 0.06%)</title><rect x="70.2254%" y="373" width="0.0645%" height="15" fill="rgb(247,25,42)" fg:x="1676700" fg:w="1539"/><text x="70.4754%" y="383.50"></text></g><g><title>find_extent_buffer (5,919 samples, 0.25%)</title><rect x="70.0437%" y="389" width="0.2479%" height="15" fill="rgb(226,23,31)" fg:x="1672360" fg:w="5919"/><text x="70.2937%" y="399.50"></text></g><g><title>read_block_for_search.isra.0 (9,390 samples, 0.39%)</title><rect x="69.9361%" y="405" width="0.3933%" height="15" fill="rgb(247,16,28)" fg:x="1669791" fg:w="9390"/><text x="70.1861%" y="415.50"></text></g><g><title>read_extent_buffer (902 samples, 0.04%)</title><rect x="70.2916%" y="389" width="0.0378%" height="15" fill="rgb(231,147,38)" fg:x="1678279" fg:w="902"/><text x="70.5416%" y="399.50"></text></g><g><title>btrfs_search_slot (49,724 samples, 2.08%)</title><rect x="68.2744%" y="421" width="2.0826%" height="15" fill="rgb(253,81,48)" fg:x="1630118" fg:w="49724"/><text x="68.5244%" y="431.50">b..</text></g><g><title>unlock_up (661 samples, 0.03%)</title><rect x="70.3294%" y="405" width="0.0277%" height="15" fill="rgb(249,222,43)" fg:x="1679181" fg:w="661"/><text x="70.5794%" y="415.50"></text></g><g><title>btrfs_lookup_dir_item (50,997 samples, 2.14%)</title><rect x="68.2602%" y="437" width="2.1359%" height="15" fill="rgb(221,3,27)" fg:x="1629778" fg:w="50997"/><text x="68.5102%" y="447.50">b..</text></g><g><title>crc32c (933 samples, 0.04%)</title><rect x="70.3570%" y="421" width="0.0391%" height="15" fill="rgb(228,180,5)" fg:x="1679842" fg:w="933"/><text x="70.6070%" y="431.50"></text></g><g><title>crypto_shash_update (520 samples, 0.02%)</title><rect x="70.3743%" y="405" width="0.0218%" height="15" fill="rgb(227,131,42)" fg:x="1680255" fg:w="520"/><text x="70.6243%" y="415.50"></text></g><g><title>kmem_cache_alloc (1,007 samples, 0.04%)</title><rect x="70.3961%" y="437" width="0.0422%" height="15" fill="rgb(212,3,39)" fg:x="1680775" fg:w="1007"/><text x="70.6461%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (295 samples, 0.01%)</title><rect x="70.4259%" y="421" width="0.0124%" height="15" fill="rgb(226,45,5)" fg:x="1681487" fg:w="295"/><text x="70.6759%" y="431.50"></text></g><g><title>btrfs_lookup_dentry (55,830 samples, 2.34%)</title><rect x="68.1268%" y="453" width="2.3383%" height="15" fill="rgb(215,167,45)" fg:x="1626592" fg:w="55830"/><text x="68.3768%" y="463.50">b..</text></g><g><title>kmem_cache_free (640 samples, 0.03%)</title><rect x="70.4383%" y="437" width="0.0268%" height="15" fill="rgb(250,218,53)" fg:x="1681782" fg:w="640"/><text x="70.6883%" y="447.50"></text></g><g><title>btrfs_lookup (55,983 samples, 2.34%)</title><rect x="68.1204%" y="469" width="2.3447%" height="15" fill="rgb(207,140,0)" fg:x="1626440" fg:w="55983"/><text x="68.3704%" y="479.50">b..</text></g><g><title>d_set_d_op (393 samples, 0.02%)</title><rect x="70.4852%" y="437" width="0.0165%" height="15" fill="rgb(238,133,51)" fg:x="1682901" fg:w="393"/><text x="70.7352%" y="447.50"></text></g><g><title>__alloc_pages_nodemask (256 samples, 0.01%)</title><rect x="70.5423%" y="373" width="0.0107%" height="15" fill="rgb(218,203,53)" fg:x="1684266" fg:w="256"/><text x="70.7923%" y="383.50"></text></g><g><title>allocate_slab (445 samples, 0.02%)</title><rect x="70.5389%" y="389" width="0.0186%" height="15" fill="rgb(226,184,25)" fg:x="1684184" fg:w="445"/><text x="70.7889%" y="399.50"></text></g><g><title>___slab_alloc (780 samples, 0.03%)</title><rect x="70.5276%" y="405" width="0.0327%" height="15" fill="rgb(231,121,21)" fg:x="1683915" fg:w="780"/><text x="70.7776%" y="415.50"></text></g><g><title>__slab_alloc (816 samples, 0.03%)</title><rect x="70.5262%" y="421" width="0.0342%" height="15" fill="rgb(251,14,34)" fg:x="1683881" fg:w="816"/><text x="70.7762%" y="431.50"></text></g><g><title>__mod_memcg_lruvec_state (462 samples, 0.02%)</title><rect x="70.6142%" y="405" width="0.0194%" height="15" fill="rgb(249,193,11)" fg:x="1685982" fg:w="462"/><text x="70.8642%" y="415.50"></text></g><g><title>__mod_memcg_state.part.0 (356 samples, 0.01%)</title><rect x="70.6186%" y="389" width="0.0149%" height="15" fill="rgb(220,172,37)" fg:x="1686088" fg:w="356"/><text x="70.8686%" y="399.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,895 samples, 0.08%)</title><rect x="70.5606%" y="421" width="0.0794%" height="15" fill="rgb(231,229,43)" fg:x="1684701" fg:w="1895"/><text x="70.8106%" y="431.50"></text></g><g><title>get_obj_cgroup_from_current (1,020 samples, 0.04%)</title><rect x="70.6582%" y="405" width="0.0427%" height="15" fill="rgb(250,161,5)" fg:x="1687033" fg:w="1020"/><text x="70.9082%" y="415.50"></text></g><g><title>obj_cgroup_charge (439 samples, 0.02%)</title><rect x="70.7009%" y="405" width="0.0184%" height="15" fill="rgb(218,225,18)" fg:x="1688053" fg:w="439"/><text x="70.9509%" y="415.50"></text></g><g><title>kmem_cache_alloc (5,202 samples, 0.22%)</title><rect x="70.5016%" y="437" width="0.2179%" height="15" fill="rgb(245,45,42)" fg:x="1683294" fg:w="5202"/><text x="70.7516%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,713 samples, 0.07%)</title><rect x="70.6478%" y="421" width="0.0717%" height="15" fill="rgb(211,115,1)" fg:x="1686783" fg:w="1713"/><text x="70.8978%" y="431.50"></text></g><g><title>__d_alloc (6,070 samples, 0.25%)</title><rect x="70.4717%" y="453" width="0.2542%" height="15" fill="rgb(248,133,52)" fg:x="1682579" fg:w="6070"/><text x="70.7217%" y="463.50"></text></g><g><title>__list_add_valid (248 samples, 0.01%)</title><rect x="70.7259%" y="453" width="0.0104%" height="15" fill="rgb(238,100,21)" fg:x="1688649" fg:w="248"/><text x="70.9759%" y="463.50"></text></g><g><title>d_alloc (6,675 samples, 0.28%)</title><rect x="70.4651%" y="469" width="0.2796%" height="15" fill="rgb(247,144,11)" fg:x="1682423" fg:w="6675"/><text x="70.7151%" y="479.50"></text></g><g><title>__d_rehash (483 samples, 0.02%)</title><rect x="70.7685%" y="437" width="0.0202%" height="15" fill="rgb(206,164,16)" fg:x="1689666" fg:w="483"/><text x="71.0185%" y="447.50"></text></g><g><title>__d_add (962 samples, 0.04%)</title><rect x="70.7560%" y="453" width="0.0403%" height="15" fill="rgb(222,34,3)" fg:x="1689368" fg:w="962"/><text x="71.0060%" y="463.50"></text></g><g><title>d_splice_alias (1,233 samples, 0.05%)</title><rect x="70.7447%" y="469" width="0.0516%" height="15" fill="rgb(248,82,4)" fg:x="1689098" fg:w="1233"/><text x="70.9947%" y="479.50"></text></g><g><title>__lookup_hash (65,886 samples, 2.76%)</title><rect x="68.1128%" y="485" width="2.7595%" height="15" fill="rgb(228,81,46)" fg:x="1626258" fg:w="65886"/><text x="68.3628%" y="495.50">__..</text></g><g><title>lookup_dcache (1,813 samples, 0.08%)</title><rect x="70.7964%" y="469" width="0.0759%" height="15" fill="rgb(227,67,47)" fg:x="1690331" fg:w="1813"/><text x="71.0464%" y="479.50"></text></g><g><title>d_lookup (1,741 samples, 0.07%)</title><rect x="70.7994%" y="453" width="0.0729%" height="15" fill="rgb(215,93,53)" fg:x="1690403" fg:w="1741"/><text x="71.0494%" y="463.50"></text></g><g><title>__d_lookup (1,549 samples, 0.06%)</title><rect x="70.8074%" y="437" width="0.0649%" height="15" fill="rgb(248,194,39)" fg:x="1690595" fg:w="1549"/><text x="71.0574%" y="447.50"></text></g><g><title>down_write (356 samples, 0.01%)</title><rect x="70.8725%" y="485" width="0.0149%" height="15" fill="rgb(215,5,19)" fg:x="1692148" fg:w="356"/><text x="71.1225%" y="495.50"></text></g><g><title>__legitimize_mnt (629 samples, 0.03%)</title><rect x="70.9473%" y="405" width="0.0263%" height="15" fill="rgb(226,215,51)" fg:x="1693936" fg:w="629"/><text x="71.1973%" y="415.50"></text></g><g><title>__legitimize_path (1,107 samples, 0.05%)</title><rect x="70.9356%" y="421" width="0.0464%" height="15" fill="rgb(225,56,26)" fg:x="1693655" fg:w="1107"/><text x="71.1856%" y="431.50"></text></g><g><title>legitimize_links (268 samples, 0.01%)</title><rect x="70.9819%" y="421" width="0.0112%" height="15" fill="rgb(222,75,29)" fg:x="1694762" fg:w="268"/><text x="71.2319%" y="431.50"></text></g><g><title>complete_walk (1,872 samples, 0.08%)</title><rect x="70.9169%" y="453" width="0.0784%" height="15" fill="rgb(236,139,6)" fg:x="1693210" fg:w="1872"/><text x="71.1669%" y="463.50"></text></g><g><title>try_to_unlazy (1,683 samples, 0.07%)</title><rect x="70.9249%" y="437" width="0.0705%" height="15" fill="rgb(223,137,36)" fg:x="1693399" fg:w="1683"/><text x="71.1749%" y="447.50"></text></g><g><title>btrfs_permission (239 samples, 0.01%)</title><rect x="71.3751%" y="421" width="0.0100%" height="15" fill="rgb(226,99,2)" fg:x="1704148" fg:w="239"/><text x="71.6251%" y="431.50"></text></g><g><title>inode_permission.part.0 (6,663 samples, 0.28%)</title><rect x="71.1689%" y="437" width="0.2791%" height="15" fill="rgb(206,133,23)" fg:x="1699225" fg:w="6663"/><text x="71.4189%" y="447.50"></text></g><g><title>generic_permission (1,501 samples, 0.06%)</title><rect x="71.3851%" y="421" width="0.0629%" height="15" fill="rgb(243,173,15)" fg:x="1704387" fg:w="1501"/><text x="71.6351%" y="431.50"></text></g><g><title>security_inode_permission (329 samples, 0.01%)</title><rect x="71.4479%" y="437" width="0.0138%" height="15" fill="rgb(228,69,28)" fg:x="1705888" fg:w="329"/><text x="71.6979%" y="447.50"></text></g><g><title>__d_lookup_rcu (8,501 samples, 0.36%)</title><rect x="71.5830%" y="405" width="0.3560%" height="15" fill="rgb(212,51,22)" fg:x="1709113" fg:w="8501"/><text x="71.8330%" y="415.50"></text></g><g><title>lookup_fast (9,918 samples, 0.42%)</title><rect x="71.5240%" y="421" width="0.4154%" height="15" fill="rgb(227,113,0)" fg:x="1707705" fg:w="9918"/><text x="71.7740%" y="431.50"></text></g><g><title>__lookup_mnt (423 samples, 0.02%)</title><rect x="71.9970%" y="405" width="0.0177%" height="15" fill="rgb(252,84,27)" fg:x="1718998" fg:w="423"/><text x="72.2470%" y="415.50"></text></g><g><title>link_path_walk.part.0 (24,355 samples, 1.02%)</title><rect x="70.9953%" y="453" width="1.0201%" height="15" fill="rgb(223,145,39)" fg:x="1695082" fg:w="24355"/><text x="71.2453%" y="463.50"></text></g><g><title>walk_component (13,220 samples, 0.55%)</title><rect x="71.4617%" y="437" width="0.5537%" height="15" fill="rgb(239,219,30)" fg:x="1706217" fg:w="13220"/><text x="71.7117%" y="447.50"></text></g><g><title>step_into (1,814 samples, 0.08%)</title><rect x="71.9394%" y="421" width="0.0760%" height="15" fill="rgb(224,196,39)" fg:x="1717623" fg:w="1814"/><text x="72.1894%" y="431.50"></text></g><g><title>path_init (2,066 samples, 0.09%)</title><rect x="72.0154%" y="453" width="0.0865%" height="15" fill="rgb(205,35,43)" fg:x="1719437" fg:w="2066"/><text x="72.2654%" y="463.50"></text></g><g><title>nd_jump_root (1,162 samples, 0.05%)</title><rect x="72.0533%" y="437" width="0.0487%" height="15" fill="rgb(228,201,21)" fg:x="1720341" fg:w="1162"/><text x="72.3033%" y="447.50"></text></g><g><title>set_root (884 samples, 0.04%)</title><rect x="72.0649%" y="421" width="0.0370%" height="15" fill="rgb(237,118,16)" fg:x="1720619" fg:w="884"/><text x="72.3149%" y="431.50"></text></g><g><title>filename_parentat (29,801 samples, 1.25%)</title><rect x="70.8874%" y="485" width="1.2482%" height="15" fill="rgb(241,17,19)" fg:x="1692504" fg:w="29801"/><text x="71.1374%" y="495.50"></text></g><g><title>path_parentat (29,316 samples, 1.23%)</title><rect x="70.9077%" y="469" width="1.2278%" height="15" fill="rgb(214,10,25)" fg:x="1692989" fg:w="29316"/><text x="71.1577%" y="479.50"></text></g><g><title>terminate_walk (802 samples, 0.03%)</title><rect x="72.1019%" y="453" width="0.0336%" height="15" fill="rgb(238,37,29)" fg:x="1721503" fg:w="802"/><text x="72.3519%" y="463.50"></text></g><g><title>kmem_cache_free (677 samples, 0.03%)</title><rect x="72.1355%" y="485" width="0.0284%" height="15" fill="rgb(253,83,25)" fg:x="1722305" fg:w="677"/><text x="72.3855%" y="495.50"></text></g><g><title>__mnt_want_write (405 samples, 0.02%)</title><rect x="72.1837%" y="469" width="0.0170%" height="15" fill="rgb(234,192,12)" fg:x="1723456" fg:w="405"/><text x="72.4337%" y="479.50"></text></g><g><title>mnt_want_write (1,034 samples, 0.04%)</title><rect x="72.1639%" y="485" width="0.0433%" height="15" fill="rgb(241,216,45)" fg:x="1722982" fg:w="1034"/><text x="72.4139%" y="495.50"></text></g><g><title>filename_create (98,259 samples, 4.12%)</title><rect x="68.0973%" y="501" width="4.1154%" height="15" fill="rgb(242,22,33)" fg:x="1625889" fg:w="98259"/><text x="68.3473%" y="511.50">file..</text></g><g><title>memset_erms (3,219 samples, 0.13%)</title><rect x="72.2928%" y="469" width="0.1348%" height="15" fill="rgb(231,105,49)" fg:x="1726060" fg:w="3219"/><text x="72.5428%" y="479.50"></text></g><g><title>kmem_cache_alloc (4,957 samples, 0.21%)</title><rect x="72.2396%" y="485" width="0.2076%" height="15" fill="rgb(218,204,15)" fg:x="1724790" fg:w="4957"/><text x="72.4896%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (468 samples, 0.02%)</title><rect x="72.4276%" y="469" width="0.0196%" height="15" fill="rgb(235,138,41)" fg:x="1729279" fg:w="468"/><text x="72.6776%" y="479.50"></text></g><g><title>__check_heap_object (538 samples, 0.02%)</title><rect x="72.5929%" y="453" width="0.0225%" height="15" fill="rgb(246,0,9)" fg:x="1733225" fg:w="538"/><text x="72.8429%" y="463.50"></text></g><g><title>__virt_addr_valid (1,120 samples, 0.05%)</title><rect x="72.6154%" y="453" width="0.0469%" height="15" fill="rgb(210,74,4)" fg:x="1733763" fg:w="1120"/><text x="72.8654%" y="463.50"></text></g><g><title>__check_object_size (2,747 samples, 0.12%)</title><rect x="72.5596%" y="469" width="0.1151%" height="15" fill="rgb(250,60,41)" fg:x="1732429" fg:w="2747"/><text x="72.8096%" y="479.50"></text></g><g><title>check_stack_object (286 samples, 0.01%)</title><rect x="72.6626%" y="453" width="0.0120%" height="15" fill="rgb(220,115,12)" fg:x="1734890" fg:w="286"/><text x="72.9126%" y="463.50"></text></g><g><title>getname_flags.part.0 (10,849 samples, 0.45%)</title><rect x="72.2210%" y="501" width="0.4544%" height="15" fill="rgb(237,100,13)" fg:x="1724345" fg:w="10849"/><text x="72.4710%" y="511.50"></text></g><g><title>strncpy_from_user (5,447 samples, 0.23%)</title><rect x="72.4472%" y="485" width="0.2281%" height="15" fill="rgb(213,55,26)" fg:x="1729747" fg:w="5447"/><text x="72.6972%" y="495.50"></text></g><g><title>kmem_cache_free (1,010 samples, 0.04%)</title><rect x="72.6754%" y="501" width="0.0423%" height="15" fill="rgb(216,17,4)" fg:x="1735195" fg:w="1010"/><text x="72.9254%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (347 samples, 0.01%)</title><rect x="72.7032%" y="485" width="0.0145%" height="15" fill="rgb(220,153,47)" fg:x="1735858" fg:w="347"/><text x="72.9532%" y="495.50"></text></g><g><title>apparmor_path_symlink (770 samples, 0.03%)</title><rect x="72.7496%" y="485" width="0.0323%" height="15" fill="rgb(215,131,9)" fg:x="1736967" fg:w="770"/><text x="72.9996%" y="495.50"></text></g><g><title>security_path_symlink (2,604 samples, 0.11%)</title><rect x="72.7307%" y="501" width="0.1091%" height="15" fill="rgb(233,46,42)" fg:x="1736516" fg:w="2604"/><text x="72.9807%" y="511.50"></text></g><g><title>tomoyo_path_symlink (1,382 samples, 0.06%)</title><rect x="72.7819%" y="485" width="0.0579%" height="15" fill="rgb(226,86,7)" fg:x="1737738" fg:w="1382"/><text x="73.0319%" y="495.50"></text></g><g><title>tomoyo_path_perm (1,341 samples, 0.06%)</title><rect x="72.7836%" y="469" width="0.0562%" height="15" fill="rgb(239,226,21)" fg:x="1737779" fg:w="1341"/><text x="73.0336%" y="479.50"></text></g><g><title>tomoyo_init_request_info (916 samples, 0.04%)</title><rect x="72.8014%" y="453" width="0.0384%" height="15" fill="rgb(244,137,22)" fg:x="1738204" fg:w="916"/><text x="73.0514%" y="463.50"></text></g><g><title>tomoyo_domain (552 samples, 0.02%)</title><rect x="72.8167%" y="437" width="0.0231%" height="15" fill="rgb(211,139,35)" fg:x="1738568" fg:w="552"/><text x="73.0667%" y="447.50"></text></g><g><title>up_write (641 samples, 0.03%)</title><rect x="72.8398%" y="501" width="0.0268%" height="15" fill="rgb(214,62,50)" fg:x="1739120" fg:w="641"/><text x="73.0898%" y="511.50"></text></g><g><title>btrfs_create_pending_block_groups (365 samples, 0.02%)</title><rect x="73.0215%" y="453" width="0.0153%" height="15" fill="rgb(212,113,44)" fg:x="1743459" fg:w="365"/><text x="73.2715%" y="463.50"></text></g><g><title>btrfs_trans_release_chunk_metadata (252 samples, 0.01%)</title><rect x="73.0454%" y="453" width="0.0106%" height="15" fill="rgb(226,150,43)" fg:x="1744030" fg:w="252"/><text x="73.2954%" y="463.50"></text></g><g><title>_raw_spin_lock (1,397 samples, 0.06%)</title><rect x="73.0871%" y="421" width="0.0585%" height="15" fill="rgb(250,71,37)" fg:x="1745024" fg:w="1397"/><text x="73.3371%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (482 samples, 0.02%)</title><rect x="73.1254%" y="405" width="0.0202%" height="15" fill="rgb(219,76,19)" fg:x="1745939" fg:w="482"/><text x="73.3754%" y="415.50"></text></g><g><title>btrfs_trans_release_metadata (2,399 samples, 0.10%)</title><rect x="73.0560%" y="453" width="0.1005%" height="15" fill="rgb(250,39,11)" fg:x="1744282" fg:w="2399"/><text x="73.3060%" y="463.50"></text></g><g><title>btrfs_block_rsv_release (2,136 samples, 0.09%)</title><rect x="73.0670%" y="437" width="0.0895%" height="15" fill="rgb(230,64,31)" fg:x="1744545" fg:w="2136"/><text x="73.3170%" y="447.50"></text></g><g><title>__btrfs_end_transaction (5,645 samples, 0.24%)</title><rect x="72.9553%" y="469" width="0.2364%" height="15" fill="rgb(208,222,23)" fg:x="1741879" fg:w="5645"/><text x="73.2053%" y="479.50"></text></g><g><title>kmem_cache_free (843 samples, 0.04%)</title><rect x="73.1565%" y="453" width="0.0353%" height="15" fill="rgb(227,125,18)" fg:x="1746681" fg:w="843"/><text x="73.4065%" y="463.50"></text></g><g><title>__radix_tree_lookup (487 samples, 0.02%)</title><rect x="73.2236%" y="453" width="0.0204%" height="15" fill="rgb(234,210,9)" fg:x="1748284" fg:w="487"/><text x="73.4736%" y="463.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,249 samples, 0.05%)</title><rect x="73.1925%" y="469" width="0.0523%" height="15" fill="rgb(217,127,24)" fg:x="1747542" fg:w="1249"/><text x="73.4425%" y="479.50"></text></g><g><title>btrfs_comp_cpu_keys (1,012 samples, 0.04%)</title><rect x="73.3650%" y="405" width="0.0424%" height="15" fill="rgb(239,141,48)" fg:x="1751659" fg:w="1012"/><text x="73.6150%" y="415.50"></text></g><g><title>__btrfs_add_delayed_item (2,458 samples, 0.10%)</title><rect x="73.3234%" y="421" width="0.1029%" height="15" fill="rgb(227,109,8)" fg:x="1750666" fg:w="2458"/><text x="73.5734%" y="431.50"></text></g><g><title>rb_insert_color (453 samples, 0.02%)</title><rect x="73.4074%" y="405" width="0.0190%" height="15" fill="rgb(235,184,23)" fg:x="1752671" fg:w="453"/><text x="73.6574%" y="415.50"></text></g><g><title>_raw_spin_lock (353 samples, 0.01%)</title><rect x="73.4554%" y="405" width="0.0148%" height="15" fill="rgb(227,226,48)" fg:x="1753819" fg:w="353"/><text x="73.7054%" y="415.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,924 samples, 0.08%)</title><rect x="73.4263%" y="421" width="0.0806%" height="15" fill="rgb(206,150,11)" fg:x="1753124" fg:w="1924"/><text x="73.6763%" y="431.50"></text></g><g><title>mutex_unlock (663 samples, 0.03%)</title><rect x="73.4791%" y="405" width="0.0278%" height="15" fill="rgb(254,2,33)" fg:x="1754385" fg:w="663"/><text x="73.7291%" y="415.50"></text></g><g><title>___slab_alloc (297 samples, 0.01%)</title><rect x="73.5395%" y="389" width="0.0124%" height="15" fill="rgb(243,160,20)" fg:x="1755825" fg:w="297"/><text x="73.7895%" y="399.50"></text></g><g><title>__slab_alloc (348 samples, 0.01%)</title><rect x="73.5374%" y="405" width="0.0146%" height="15" fill="rgb(218,208,30)" fg:x="1755775" fg:w="348"/><text x="73.7874%" y="415.50"></text></g><g><title>_cond_resched (267 samples, 0.01%)</title><rect x="73.5753%" y="389" width="0.0112%" height="15" fill="rgb(224,120,49)" fg:x="1756681" fg:w="267"/><text x="73.8253%" y="399.50"></text></g><g><title>__kmalloc (1,902 samples, 0.08%)</title><rect x="73.5069%" y="421" width="0.0797%" height="15" fill="rgb(246,12,2)" fg:x="1755048" fg:w="1902"/><text x="73.7569%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (458 samples, 0.02%)</title><rect x="73.5674%" y="405" width="0.0192%" height="15" fill="rgb(236,117,3)" fg:x="1756492" fg:w="458"/><text x="73.8174%" y="415.50"></text></g><g><title>mutex_spin_on_owner (2,387 samples, 0.10%)</title><rect x="73.5886%" y="405" width="0.1000%" height="15" fill="rgb(216,128,52)" fg:x="1756998" fg:w="2387"/><text x="73.8386%" y="415.50"></text></g><g><title>__mutex_lock.constprop.0 (2,530 samples, 0.11%)</title><rect x="73.5866%" y="421" width="0.1060%" height="15" fill="rgb(246,145,19)" fg:x="1756950" fg:w="2530"/><text x="73.8366%" y="431.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,625 samples, 0.07%)</title><rect x="73.6932%" y="421" width="0.0681%" height="15" fill="rgb(222,11,46)" fg:x="1759496" fg:w="1625"/><text x="73.9432%" y="431.50"></text></g><g><title>btrfs_block_rsv_migrate (1,449 samples, 0.06%)</title><rect x="73.7006%" y="405" width="0.0607%" height="15" fill="rgb(245,82,36)" fg:x="1759672" fg:w="1449"/><text x="73.9506%" y="415.50"></text></g><g><title>_raw_spin_lock (1,299 samples, 0.05%)</title><rect x="73.7069%" y="389" width="0.0544%" height="15" fill="rgb(250,73,51)" fg:x="1759822" fg:w="1299"/><text x="73.9569%" y="399.50"></text></g><g><title>btrfs_get_or_create_delayed_node (711 samples, 0.03%)</title><rect x="73.7613%" y="421" width="0.0298%" height="15" fill="rgb(221,189,23)" fg:x="1761121" fg:w="711"/><text x="74.0113%" y="431.50"></text></g><g><title>btrfs_get_delayed_node (627 samples, 0.03%)</title><rect x="73.7648%" y="405" width="0.0263%" height="15" fill="rgb(210,33,7)" fg:x="1761205" fg:w="627"/><text x="74.0148%" y="415.50"></text></g><g><title>memcpy_erms (276 samples, 0.01%)</title><rect x="73.7912%" y="421" width="0.0116%" height="15" fill="rgb(210,107,22)" fg:x="1761836" fg:w="276"/><text x="74.0412%" y="431.50"></text></g><g><title>mutex_lock (273 samples, 0.01%)</title><rect x="73.8028%" y="421" width="0.0114%" height="15" fill="rgb(222,116,37)" fg:x="1762112" fg:w="273"/><text x="74.0528%" y="431.50"></text></g><g><title>btrfs_insert_delayed_dir_index (12,280 samples, 0.51%)</title><rect x="73.3065%" y="437" width="0.5143%" height="15" fill="rgb(254,17,48)" fg:x="1750264" fg:w="12280"/><text x="73.5565%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (519 samples, 0.02%)</title><rect x="73.8209%" y="437" width="0.0217%" height="15" fill="rgb(224,36,32)" fg:x="1762544" fg:w="519"/><text x="74.0709%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (304 samples, 0.01%)</title><rect x="73.8299%" y="421" width="0.0127%" height="15" fill="rgb(232,90,46)" fg:x="1762759" fg:w="304"/><text x="74.0799%" y="431.50"></text></g><g><title>_raw_spin_lock (402 samples, 0.02%)</title><rect x="73.8916%" y="405" width="0.0168%" height="15" fill="rgb(241,66,40)" fg:x="1764234" fg:w="402"/><text x="74.1416%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,397 samples, 0.06%)</title><rect x="73.8503%" y="421" width="0.0585%" height="15" fill="rgb(249,184,29)" fg:x="1763247" fg:w="1397"/><text x="74.1003%" y="431.50"></text></g><g><title>btrfs_release_path (1,903 samples, 0.08%)</title><rect x="73.8426%" y="437" width="0.0797%" height="15" fill="rgb(231,181,1)" fg:x="1763063" fg:w="1903"/><text x="74.0926%" y="447.50"></text></g><g><title>release_extent_buffer (322 samples, 0.01%)</title><rect x="73.9088%" y="421" width="0.0135%" height="15" fill="rgb(224,94,2)" fg:x="1764644" fg:w="322"/><text x="74.1588%" y="431.50"></text></g><g><title>btrfs_set_16 (316 samples, 0.01%)</title><rect x="73.9223%" y="437" width="0.0132%" height="15" fill="rgb(229,170,15)" fg:x="1764966" fg:w="316"/><text x="74.1723%" y="447.50"></text></g><g><title>crc32c (699 samples, 0.03%)</title><rect x="73.9476%" y="437" width="0.0293%" height="15" fill="rgb(240,127,35)" fg:x="1765571" fg:w="699"/><text x="74.1976%" y="447.50"></text></g><g><title>crypto_shash_update (406 samples, 0.02%)</title><rect x="73.9599%" y="421" width="0.0170%" height="15" fill="rgb(248,196,34)" fg:x="1765864" fg:w="406"/><text x="74.2099%" y="431.50"></text></g><g><title>btrfs_get_32 (447 samples, 0.02%)</title><rect x="73.9891%" y="421" width="0.0187%" height="15" fill="rgb(236,137,7)" fg:x="1766561" fg:w="447"/><text x="74.2391%" y="431.50"></text></g><g><title>_raw_read_lock (479 samples, 0.02%)</title><rect x="74.1298%" y="357" width="0.0201%" height="15" fill="rgb(235,127,16)" fg:x="1769920" fg:w="479"/><text x="74.3798%" y="367.50"></text></g><g><title>finish_wait (2,235 samples, 0.09%)</title><rect x="74.1509%" y="357" width="0.0936%" height="15" fill="rgb(250,192,54)" fg:x="1770423" fg:w="2235"/><text x="74.4009%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (2,141 samples, 0.09%)</title><rect x="74.1548%" y="341" width="0.0897%" height="15" fill="rgb(218,98,20)" fg:x="1770517" fg:w="2141"/><text x="74.4048%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,066 samples, 0.09%)</title><rect x="74.1579%" y="325" width="0.0865%" height="15" fill="rgb(230,176,47)" fg:x="1770592" fg:w="2066"/><text x="74.4079%" y="335.50"></text></g><g><title>_raw_spin_lock_irqsave (5,099 samples, 0.21%)</title><rect x="74.2631%" y="341" width="0.2136%" height="15" fill="rgb(244,2,33)" fg:x="1773103" fg:w="5099"/><text x="74.5131%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,863 samples, 0.20%)</title><rect x="74.2730%" y="325" width="0.2037%" height="15" fill="rgb(231,100,17)" fg:x="1773339" fg:w="4863"/><text x="74.5230%" y="335.50"></text></g><g><title>prepare_to_wait_event (5,632 samples, 0.24%)</title><rect x="74.2447%" y="357" width="0.2359%" height="15" fill="rgb(245,23,12)" fg:x="1772663" fg:w="5632"/><text x="74.4947%" y="367.50"></text></g><g><title>queued_read_lock_slowpath (6,565 samples, 0.27%)</title><rect x="74.4806%" y="357" width="0.2750%" height="15" fill="rgb(249,55,22)" fg:x="1778295" fg:w="6565"/><text x="74.7306%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,930 samples, 0.21%)</title><rect x="74.5490%" y="341" width="0.2065%" height="15" fill="rgb(207,134,9)" fg:x="1779930" fg:w="4930"/><text x="74.7990%" y="351.50"></text></g><g><title>update_curr (288 samples, 0.01%)</title><rect x="74.7889%" y="293" width="0.0121%" height="15" fill="rgb(218,134,0)" fg:x="1785657" fg:w="288"/><text x="75.0389%" y="303.50"></text></g><g><title>dequeue_entity (788 samples, 0.03%)</title><rect x="74.7790%" y="309" width="0.0330%" height="15" fill="rgb(213,212,33)" fg:x="1785420" fg:w="788"/><text x="75.0290%" y="319.50"></text></g><g><title>update_load_avg (263 samples, 0.01%)</title><rect x="74.8010%" y="293" width="0.0110%" height="15" fill="rgb(252,106,18)" fg:x="1785945" fg:w="263"/><text x="75.0510%" y="303.50"></text></g><g><title>dequeue_task_fair (945 samples, 0.04%)</title><rect x="74.7739%" y="325" width="0.0396%" height="15" fill="rgb(208,126,42)" fg:x="1785299" fg:w="945"/><text x="75.0239%" y="335.50"></text></g><g><title>finish_task_switch (375 samples, 0.02%)</title><rect x="74.8135%" y="325" width="0.0157%" height="15" fill="rgb(246,175,29)" fg:x="1786244" fg:w="375"/><text x="75.0635%" y="335.50"></text></g><g><title>psi_task_change (684 samples, 0.03%)</title><rect x="74.8411%" y="325" width="0.0286%" height="15" fill="rgb(215,13,50)" fg:x="1786903" fg:w="684"/><text x="75.0911%" y="335.50"></text></g><g><title>psi_group_change (581 samples, 0.02%)</title><rect x="74.8454%" y="309" width="0.0243%" height="15" fill="rgb(216,172,15)" fg:x="1787006" fg:w="581"/><text x="75.0954%" y="319.50"></text></g><g><title>__btrfs_tree_read_lock (18,345 samples, 0.77%)</title><rect x="74.1094%" y="373" width="0.7683%" height="15" fill="rgb(212,103,13)" fg:x="1769432" fg:w="18345"/><text x="74.3594%" y="383.50"></text></g><g><title>schedule (2,917 samples, 0.12%)</title><rect x="74.7555%" y="357" width="0.1222%" height="15" fill="rgb(231,171,36)" fg:x="1784860" fg:w="2917"/><text x="75.0055%" y="367.50"></text></g><g><title>__schedule (2,867 samples, 0.12%)</title><rect x="74.7576%" y="341" width="0.1201%" height="15" fill="rgb(250,123,20)" fg:x="1784910" fg:w="2867"/><text x="75.0076%" y="351.50"></text></g><g><title>__btrfs_read_lock_root_node (19,435 samples, 0.81%)</title><rect x="74.1050%" y="389" width="0.8140%" height="15" fill="rgb(212,53,50)" fg:x="1769328" fg:w="19435"/><text x="74.3550%" y="399.50"></text></g><g><title>btrfs_root_node (986 samples, 0.04%)</title><rect x="74.8777%" y="373" width="0.0413%" height="15" fill="rgb(243,54,12)" fg:x="1787777" fg:w="986"/><text x="75.1277%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (595 samples, 0.02%)</title><rect x="74.9378%" y="357" width="0.0249%" height="15" fill="rgb(234,101,34)" fg:x="1789213" fg:w="595"/><text x="75.1878%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (515 samples, 0.02%)</title><rect x="74.9412%" y="341" width="0.0216%" height="15" fill="rgb(254,67,22)" fg:x="1789293" fg:w="515"/><text x="75.1912%" y="351.50"></text></g><g><title>prepare_to_wait_event (741 samples, 0.03%)</title><rect x="74.9332%" y="373" width="0.0310%" height="15" fill="rgb(250,35,47)" fg:x="1789101" fg:w="741"/><text x="75.1832%" y="383.50"></text></g><g><title>queued_write_lock_slowpath (618 samples, 0.03%)</title><rect x="74.9642%" y="373" width="0.0259%" height="15" fill="rgb(226,126,38)" fg:x="1789842" fg:w="618"/><text x="75.2142%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (239 samples, 0.01%)</title><rect x="74.9801%" y="357" width="0.0100%" height="15" fill="rgb(216,138,53)" fg:x="1790221" fg:w="239"/><text x="75.2301%" y="367.50"></text></g><g><title>dequeue_entity (407 samples, 0.02%)</title><rect x="75.0017%" y="325" width="0.0170%" height="15" fill="rgb(246,199,43)" fg:x="1790738" fg:w="407"/><text x="75.2517%" y="335.50"></text></g><g><title>dequeue_task_fair (488 samples, 0.02%)</title><rect x="74.9994%" y="341" width="0.0204%" height="15" fill="rgb(232,125,11)" fg:x="1790683" fg:w="488"/><text x="75.2494%" y="351.50"></text></g><g><title>psi_task_change (332 samples, 0.01%)</title><rect x="75.0340%" y="341" width="0.0139%" height="15" fill="rgb(218,219,45)" fg:x="1791508" fg:w="332"/><text x="75.2840%" y="351.50"></text></g><g><title>psi_group_change (281 samples, 0.01%)</title><rect x="75.0361%" y="325" width="0.0118%" height="15" fill="rgb(216,102,54)" fg:x="1791559" fg:w="281"/><text x="75.2861%" y="335.50"></text></g><g><title>__btrfs_tree_lock (3,163 samples, 0.13%)</title><rect x="74.9190%" y="389" width="0.1325%" height="15" fill="rgb(250,228,7)" fg:x="1788763" fg:w="3163"/><text x="75.1690%" y="399.50"></text></g><g><title>schedule (1,466 samples, 0.06%)</title><rect x="74.9901%" y="373" width="0.0614%" height="15" fill="rgb(226,125,25)" fg:x="1790460" fg:w="1466"/><text x="75.2401%" y="383.50"></text></g><g><title>__schedule (1,433 samples, 0.06%)</title><rect x="74.9915%" y="357" width="0.0600%" height="15" fill="rgb(224,165,27)" fg:x="1790493" fg:w="1433"/><text x="75.2415%" y="367.50"></text></g><g><title>btrfs_leaf_free_space (989 samples, 0.04%)</title><rect x="75.0615%" y="389" width="0.0414%" height="15" fill="rgb(233,86,3)" fg:x="1792166" fg:w="989"/><text x="75.3115%" y="399.50"></text></g><g><title>leaf_space_used (837 samples, 0.04%)</title><rect x="75.0679%" y="373" width="0.0351%" height="15" fill="rgb(228,116,20)" fg:x="1792318" fg:w="837"/><text x="75.3179%" y="383.50"></text></g><g><title>btrfs_get_32 (652 samples, 0.03%)</title><rect x="75.0756%" y="357" width="0.0273%" height="15" fill="rgb(209,192,17)" fg:x="1792503" fg:w="652"/><text x="75.3256%" y="367.50"></text></g><g><title>queued_write_lock_slowpath (241 samples, 0.01%)</title><rect x="75.1133%" y="357" width="0.0101%" height="15" fill="rgb(224,88,34)" fg:x="1793402" fg:w="241"/><text x="75.3633%" y="367.50"></text></g><g><title>__btrfs_tree_lock (644 samples, 0.03%)</title><rect x="75.1030%" y="373" width="0.0270%" height="15" fill="rgb(233,38,6)" fg:x="1793157" fg:w="644"/><text x="75.3530%" y="383.50"></text></g><g><title>btrfs_lock_root_node (650 samples, 0.03%)</title><rect x="75.1029%" y="389" width="0.0272%" height="15" fill="rgb(212,59,30)" fg:x="1793155" fg:w="650"/><text x="75.3529%" y="399.50"></text></g><g><title>_raw_write_lock (342 samples, 0.01%)</title><rect x="75.1442%" y="373" width="0.0143%" height="15" fill="rgb(213,80,3)" fg:x="1794139" fg:w="342"/><text x="75.3942%" y="383.50"></text></g><g><title>btrfs_try_tree_write_lock (3,040 samples, 0.13%)</title><rect x="75.1392%" y="389" width="0.1273%" height="15" fill="rgb(251,178,7)" fg:x="1794020" fg:w="3040"/><text x="75.3892%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (2,578 samples, 0.11%)</title><rect x="75.1585%" y="373" width="0.1080%" height="15" fill="rgb(213,154,26)" fg:x="1794482" fg:w="2578"/><text x="75.4085%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (763 samples, 0.03%)</title><rect x="75.2345%" y="357" width="0.0320%" height="15" fill="rgb(238,165,49)" fg:x="1796297" fg:w="763"/><text x="75.4845%" y="367.50"></text></g><g><title>generic_bin_search.constprop.0 (5,391 samples, 0.23%)</title><rect x="75.2668%" y="389" width="0.2258%" height="15" fill="rgb(248,91,46)" fg:x="1797066" fg:w="5391"/><text x="75.5168%" y="399.50"></text></g><g><title>btrfs_buffer_uptodate (562 samples, 0.02%)</title><rect x="75.5143%" y="373" width="0.0235%" height="15" fill="rgb(244,21,52)" fg:x="1802976" fg:w="562"/><text x="75.7643%" y="383.50"></text></g><g><title>verify_parent_transid (455 samples, 0.02%)</title><rect x="75.5188%" y="357" width="0.0191%" height="15" fill="rgb(247,122,20)" fg:x="1803083" fg:w="455"/><text x="75.7688%" y="367.50"></text></g><g><title>btrfs_get_64 (665 samples, 0.03%)</title><rect x="75.5378%" y="373" width="0.0279%" height="15" fill="rgb(218,27,9)" fg:x="1803538" fg:w="665"/><text x="75.7878%" y="383.50"></text></g><g><title>__radix_tree_lookup (2,282 samples, 0.10%)</title><rect x="75.6234%" y="357" width="0.0956%" height="15" fill="rgb(246,7,6)" fg:x="1805581" fg:w="2282"/><text x="75.8734%" y="367.50"></text></g><g><title>mark_page_accessed (932 samples, 0.04%)</title><rect x="75.7317%" y="341" width="0.0390%" height="15" fill="rgb(227,135,54)" fg:x="1808166" fg:w="932"/><text x="75.9817%" y="351.50"></text></g><g><title>mark_extent_buffer_accessed (1,240 samples, 0.05%)</title><rect x="75.7192%" y="357" width="0.0519%" height="15" fill="rgb(247,14,11)" fg:x="1807869" fg:w="1240"/><text x="75.9692%" y="367.50"></text></g><g><title>find_extent_buffer (4,664 samples, 0.20%)</title><rect x="75.5769%" y="373" width="0.1953%" height="15" fill="rgb(206,149,34)" fg:x="1804470" fg:w="4664"/><text x="75.8269%" y="383.50"></text></g><g><title>read_block_for_search.isra.0 (7,276 samples, 0.30%)</title><rect x="75.4925%" y="389" width="0.3047%" height="15" fill="rgb(227,228,4)" fg:x="1802457" fg:w="7276"/><text x="75.7425%" y="399.50"></text></g><g><title>read_extent_buffer (599 samples, 0.03%)</title><rect x="75.7722%" y="373" width="0.0251%" height="15" fill="rgb(238,218,28)" fg:x="1809134" fg:w="599"/><text x="76.0222%" y="383.50"></text></g><g><title>alloc_tree_block_no_bg_flush (543 samples, 0.02%)</title><rect x="75.8038%" y="373" width="0.0227%" height="15" fill="rgb(252,86,40)" fg:x="1809888" fg:w="543"/><text x="76.0538%" y="383.50"></text></g><g><title>btrfs_alloc_tree_block (543 samples, 0.02%)</title><rect x="75.8038%" y="357" width="0.0227%" height="15" fill="rgb(251,225,11)" fg:x="1809888" fg:w="543"/><text x="76.0538%" y="367.50"></text></g><g><title>copy_for_split (441 samples, 0.02%)</title><rect x="75.8329%" y="373" width="0.0185%" height="15" fill="rgb(206,46,49)" fg:x="1810584" fg:w="441"/><text x="76.0829%" y="383.50"></text></g><g><title>btrfs_get_token_32 (736 samples, 0.03%)</title><rect x="75.8685%" y="341" width="0.0308%" height="15" fill="rgb(245,128,24)" fg:x="1811433" fg:w="736"/><text x="76.1185%" y="351.50"></text></g><g><title>btrfs_set_token_32 (661 samples, 0.03%)</title><rect x="75.9009%" y="341" width="0.0277%" height="15" fill="rgb(219,177,34)" fg:x="1812208" fg:w="661"/><text x="76.1509%" y="351.50"></text></g><g><title>memmove_extent_buffer (397 samples, 0.02%)</title><rect x="75.9402%" y="341" width="0.0166%" height="15" fill="rgb(218,60,48)" fg:x="1813145" fg:w="397"/><text x="76.1902%" y="351.50"></text></g><g><title>memmove (271 samples, 0.01%)</title><rect x="75.9455%" y="325" width="0.0114%" height="15" fill="rgb(221,11,5)" fg:x="1813271" fg:w="271"/><text x="76.1955%" y="335.50"></text></g><g><title>__push_leaf_left (2,496 samples, 0.10%)</title><rect x="75.8527%" y="357" width="0.1045%" height="15" fill="rgb(220,148,13)" fg:x="1811055" fg:w="2496"/><text x="76.1027%" y="367.50"></text></g><g><title>push_leaf_left (2,782 samples, 0.12%)</title><rect x="75.8515%" y="373" width="0.1165%" height="15" fill="rgb(210,16,3)" fg:x="1811028" fg:w="2782"/><text x="76.1015%" y="383.50"></text></g><g><title>btrfs_get_32 (463 samples, 0.02%)</title><rect x="76.0052%" y="341" width="0.0194%" height="15" fill="rgb(236,80,2)" fg:x="1814697" fg:w="463"/><text x="76.2552%" y="351.50"></text></g><g><title>btrfs_get_token_32 (2,096 samples, 0.09%)</title><rect x="76.0246%" y="341" width="0.0878%" height="15" fill="rgb(239,129,19)" fg:x="1815160" fg:w="2096"/><text x="76.2746%" y="351.50"></text></g><g><title>check_setget_bounds.isra.0 (368 samples, 0.02%)</title><rect x="76.0970%" y="325" width="0.0154%" height="15" fill="rgb(220,106,35)" fg:x="1816888" fg:w="368"/><text x="76.3470%" y="335.50"></text></g><g><title>btrfs_set_token_32 (2,123 samples, 0.09%)</title><rect x="76.1190%" y="341" width="0.0889%" height="15" fill="rgb(252,139,45)" fg:x="1817414" fg:w="2123"/><text x="76.3690%" y="351.50"></text></g><g><title>check_setget_bounds.isra.0 (305 samples, 0.01%)</title><rect x="76.1951%" y="325" width="0.0128%" height="15" fill="rgb(229,8,36)" fg:x="1819232" fg:w="305"/><text x="76.4451%" y="335.50"></text></g><g><title>copy_pages (397 samples, 0.02%)</title><rect x="76.2201%" y="325" width="0.0166%" height="15" fill="rgb(230,126,33)" fg:x="1819827" fg:w="397"/><text x="76.4701%" y="335.50"></text></g><g><title>memcpy_extent_buffer (787 samples, 0.03%)</title><rect x="76.2186%" y="341" width="0.0330%" height="15" fill="rgb(239,140,21)" fg:x="1819793" fg:w="787"/><text x="76.4686%" y="351.50"></text></g><g><title>memmove (356 samples, 0.01%)</title><rect x="76.2367%" y="325" width="0.0149%" height="15" fill="rgb(254,104,9)" fg:x="1820224" fg:w="356"/><text x="76.4867%" y="335.50"></text></g><g><title>memmove_extent_buffer (695 samples, 0.03%)</title><rect x="76.2516%" y="341" width="0.0291%" height="15" fill="rgb(239,52,14)" fg:x="1820580" fg:w="695"/><text x="76.5016%" y="351.50"></text></g><g><title>memmove (515 samples, 0.02%)</title><rect x="76.2591%" y="325" width="0.0216%" height="15" fill="rgb(208,227,44)" fg:x="1820760" fg:w="515"/><text x="76.5091%" y="335.50"></text></g><g><title>__push_leaf_right (7,333 samples, 0.31%)</title><rect x="75.9757%" y="357" width="0.3071%" height="15" fill="rgb(246,18,19)" fg:x="1813993" fg:w="7333"/><text x="76.2257%" y="367.50"></text></g><g><title>alloc_extent_buffer (368 samples, 0.02%)</title><rect x="76.2977%" y="325" width="0.0154%" height="15" fill="rgb(235,228,25)" fg:x="1821682" fg:w="368"/><text x="76.5477%" y="335.50"></text></g><g><title>find_extent_buffer (310 samples, 0.01%)</title><rect x="76.3002%" y="309" width="0.0130%" height="15" fill="rgb(240,156,20)" fg:x="1821740" fg:w="310"/><text x="76.5502%" y="319.50"></text></g><g><title>btrfs_read_node_slot (594 samples, 0.02%)</title><rect x="76.2927%" y="357" width="0.0249%" height="15" fill="rgb(224,8,20)" fg:x="1821561" fg:w="594"/><text x="76.5427%" y="367.50"></text></g><g><title>read_tree_block (495 samples, 0.02%)</title><rect x="76.2968%" y="341" width="0.0207%" height="15" fill="rgb(214,12,52)" fg:x="1821660" fg:w="495"/><text x="76.5468%" y="351.50"></text></g><g><title>push_leaf_right (8,459 samples, 0.35%)</title><rect x="75.9680%" y="373" width="0.3543%" height="15" fill="rgb(211,220,47)" fg:x="1813810" fg:w="8459"/><text x="76.2180%" y="383.50"></text></g><g><title>split_leaf (12,502 samples, 0.52%)</title><rect x="75.7989%" y="389" width="0.5236%" height="15" fill="rgb(250,173,5)" fg:x="1809771" fg:w="12502"/><text x="76.0489%" y="399.50"></text></g><g><title>push_nodes_for_insert (251 samples, 0.01%)</title><rect x="76.3230%" y="373" width="0.0105%" height="15" fill="rgb(250,125,52)" fg:x="1822284" fg:w="251"/><text x="76.5730%" y="383.50"></text></g><g><title>split_node (263 samples, 0.01%)</title><rect x="76.3225%" y="389" width="0.0110%" height="15" fill="rgb(209,133,18)" fg:x="1822273" fg:w="263"/><text x="76.5725%" y="399.50"></text></g><g><title>select_task_rq_fair (586 samples, 0.02%)</title><rect x="76.3981%" y="309" width="0.0245%" height="15" fill="rgb(216,173,22)" fg:x="1824078" fg:w="586"/><text x="76.6481%" y="319.50"></text></g><g><title>enqueue_entity (623 samples, 0.03%)</title><rect x="76.4339%" y="277" width="0.0261%" height="15" fill="rgb(205,3,22)" fg:x="1824932" fg:w="623"/><text x="76.6839%" y="287.50"></text></g><g><title>enqueue_task_fair (815 samples, 0.03%)</title><rect x="76.4279%" y="293" width="0.0341%" height="15" fill="rgb(248,22,20)" fg:x="1824790" fg:w="815"/><text x="76.6779%" y="303.50"></text></g><g><title>ttwu_do_activate (1,626 samples, 0.07%)</title><rect x="76.4252%" y="309" width="0.0681%" height="15" fill="rgb(233,6,29)" fg:x="1824726" fg:w="1626"/><text x="76.6752%" y="319.50"></text></g><g><title>psi_task_change (746 samples, 0.03%)</title><rect x="76.4621%" y="293" width="0.0312%" height="15" fill="rgb(240,22,54)" fg:x="1825606" fg:w="746"/><text x="76.7121%" y="303.50"></text></g><g><title>psi_group_change (647 samples, 0.03%)</title><rect x="76.4662%" y="277" width="0.0271%" height="15" fill="rgb(231,133,32)" fg:x="1825705" fg:w="647"/><text x="76.7162%" y="287.50"></text></g><g><title>__wake_up_common (3,500 samples, 0.15%)</title><rect x="76.3625%" y="357" width="0.1466%" height="15" fill="rgb(248,193,4)" fg:x="1823229" fg:w="3500"/><text x="76.6125%" y="367.50"></text></g><g><title>autoremove_wake_function (3,446 samples, 0.14%)</title><rect x="76.3648%" y="341" width="0.1443%" height="15" fill="rgb(211,178,46)" fg:x="1823283" fg:w="3446"/><text x="76.6148%" y="351.50"></text></g><g><title>try_to_wake_up (3,357 samples, 0.14%)</title><rect x="76.3685%" y="325" width="0.1406%" height="15" fill="rgb(224,5,42)" fg:x="1823372" fg:w="3357"/><text x="76.6185%" y="335.50"></text></g><g><title>__wake_up_common_lock (3,603 samples, 0.15%)</title><rect x="76.3620%" y="373" width="0.1509%" height="15" fill="rgb(239,176,25)" fg:x="1823215" fg:w="3603"/><text x="76.6120%" y="383.50"></text></g><g><title>btrfs_tree_read_unlock (629 samples, 0.03%)</title><rect x="76.5129%" y="373" width="0.0263%" height="15" fill="rgb(245,187,50)" fg:x="1826820" fg:w="629"/><text x="76.7629%" y="383.50"></text></g><g><title>btrfs_search_slot (60,449 samples, 2.53%)</title><rect x="74.0158%" y="405" width="2.5318%" height="15" fill="rgb(248,24,15)" fg:x="1767199" fg:w="60449"/><text x="74.2658%" y="415.50">bt..</text></g><g><title>unlock_up (5,112 samples, 0.21%)</title><rect x="76.3335%" y="389" width="0.2141%" height="15" fill="rgb(205,166,13)" fg:x="1822536" fg:w="5112"/><text x="76.5835%" y="399.50"></text></g><g><title>btrfs_get_32 (420 samples, 0.02%)</title><rect x="76.6761%" y="389" width="0.0176%" height="15" fill="rgb(208,114,23)" fg:x="1830715" fg:w="420"/><text x="76.9261%" y="399.50"></text></g><g><title>btrfs_get_token_32 (15,496 samples, 0.65%)</title><rect x="76.6937%" y="389" width="0.6490%" height="15" fill="rgb(239,127,18)" fg:x="1831135" fg:w="15496"/><text x="76.9437%" y="399.50"></text></g><g><title>check_setget_bounds.isra.0 (2,363 samples, 0.10%)</title><rect x="77.2437%" y="373" width="0.0990%" height="15" fill="rgb(219,154,28)" fg:x="1844268" fg:w="2363"/><text x="77.4937%" y="383.50"></text></g><g><title>btrfs_leaf_free_space (951 samples, 0.04%)</title><rect x="77.3427%" y="389" width="0.0398%" height="15" fill="rgb(225,157,23)" fg:x="1846631" fg:w="951"/><text x="77.5927%" y="399.50"></text></g><g><title>leaf_space_used (840 samples, 0.04%)</title><rect x="77.3473%" y="373" width="0.0352%" height="15" fill="rgb(219,8,6)" fg:x="1846742" fg:w="840"/><text x="77.5973%" y="383.50"></text></g><g><title>btrfs_get_32 (632 samples, 0.03%)</title><rect x="77.3561%" y="357" width="0.0265%" height="15" fill="rgb(212,47,6)" fg:x="1846950" fg:w="632"/><text x="77.6061%" y="367.50"></text></g><g><title>btrfs_mark_buffer_dirty (618 samples, 0.03%)</title><rect x="77.3825%" y="389" width="0.0259%" height="15" fill="rgb(224,190,4)" fg:x="1847582" fg:w="618"/><text x="77.6325%" y="399.50"></text></g><g><title>set_extent_buffer_dirty (277 samples, 0.01%)</title><rect x="77.3968%" y="373" width="0.0116%" height="15" fill="rgb(239,183,29)" fg:x="1847923" fg:w="277"/><text x="77.6468%" y="383.50"></text></g><g><title>btrfs_set_token_32 (11,202 samples, 0.47%)</title><rect x="77.4084%" y="389" width="0.4692%" height="15" fill="rgb(213,57,7)" fg:x="1848200" fg:w="11202"/><text x="77.6584%" y="399.50"></text></g><g><title>check_setget_bounds.isra.0 (1,839 samples, 0.08%)</title><rect x="77.8006%" y="373" width="0.0770%" height="15" fill="rgb(216,148,1)" fg:x="1857563" fg:w="1839"/><text x="78.0506%" y="383.50"></text></g><g><title>btrfs_unlock_up_safe (299 samples, 0.01%)</title><rect x="77.8776%" y="389" width="0.0125%" height="15" fill="rgb(236,182,29)" fg:x="1859402" fg:w="299"/><text x="78.1276%" y="399.50"></text></g><g><title>copy_pages (556 samples, 0.02%)</title><rect x="77.9017%" y="373" width="0.0233%" height="15" fill="rgb(244,120,48)" fg:x="1859977" fg:w="556"/><text x="78.1517%" y="383.50"></text></g><g><title>memcpy_extent_buffer (4,781 samples, 0.20%)</title><rect x="77.8908%" y="389" width="0.2002%" height="15" fill="rgb(206,71,34)" fg:x="1859717" fg:w="4781"/><text x="78.1408%" y="399.50"></text></g><g><title>memmove (3,965 samples, 0.17%)</title><rect x="77.9250%" y="373" width="0.1661%" height="15" fill="rgb(242,32,6)" fg:x="1860533" fg:w="3965"/><text x="78.1750%" y="383.50"></text></g><g><title>copy_pages (485 samples, 0.02%)</title><rect x="78.1115%" y="373" width="0.0203%" height="15" fill="rgb(241,35,3)" fg:x="1864987" fg:w="485"/><text x="78.3615%" y="383.50"></text></g><g><title>memmove_extent_buffer (3,719 samples, 0.16%)</title><rect x="78.0910%" y="389" width="0.1558%" height="15" fill="rgb(222,62,19)" fg:x="1864498" fg:w="3719"/><text x="78.3410%" y="399.50"></text></g><g><title>memmove (2,745 samples, 0.11%)</title><rect x="78.1318%" y="373" width="0.1150%" height="15" fill="rgb(223,110,41)" fg:x="1865472" fg:w="2745"/><text x="78.3818%" y="383.50"></text></g><g><title>insert_with_overflow (102,377 samples, 4.29%)</title><rect x="73.9769%" y="437" width="4.2879%" height="15" fill="rgb(208,224,4)" fg:x="1766270" fg:w="102377"/><text x="74.2269%" y="447.50">inser..</text></g><g><title>btrfs_insert_empty_items (101,639 samples, 4.26%)</title><rect x="74.0078%" y="421" width="4.2570%" height="15" fill="rgb(241,137,19)" fg:x="1767008" fg:w="101639"/><text x="74.2578%" y="431.50">btrfs..</text></g><g><title>setup_items_for_insert (40,999 samples, 1.72%)</title><rect x="76.5476%" y="405" width="1.7172%" height="15" fill="rgb(244,24,17)" fg:x="1827648" fg:w="40999"/><text x="76.7976%" y="415.50"></text></g><g><title>write_extent_buffer (429 samples, 0.02%)</title><rect x="78.2468%" y="389" width="0.0180%" height="15" fill="rgb(245,178,49)" fg:x="1868218" fg:w="429"/><text x="78.4968%" y="399.50"></text></g><g><title>kmem_cache_alloc (769 samples, 0.03%)</title><rect x="78.2648%" y="437" width="0.0322%" height="15" fill="rgb(219,160,38)" fg:x="1868647" fg:w="769"/><text x="78.5148%" y="447.50"></text></g><g><title>kmem_cache_free (716 samples, 0.03%)</title><rect x="78.2970%" y="437" width="0.0300%" height="15" fill="rgb(228,137,14)" fg:x="1869416" fg:w="716"/><text x="78.5470%" y="447.50"></text></g><g><title>btrfs_insert_dir_item (121,495 samples, 5.09%)</title><rect x="73.2783%" y="453" width="5.0886%" height="15" fill="rgb(237,134,11)" fg:x="1749589" fg:w="121495"/><text x="73.5283%" y="463.50">btrfs_..</text></g><g><title>write_extent_buffer (952 samples, 0.04%)</title><rect x="78.3270%" y="437" width="0.0399%" height="15" fill="rgb(211,126,44)" fg:x="1870132" fg:w="952"/><text x="78.5770%" y="447.50"></text></g><g><title>_raw_spin_lock (254 samples, 0.01%)</title><rect x="78.4174%" y="405" width="0.0106%" height="15" fill="rgb(226,171,33)" fg:x="1872290" fg:w="254"/><text x="78.6674%" y="415.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,153 samples, 0.05%)</title><rect x="78.4004%" y="421" width="0.0483%" height="15" fill="rgb(253,99,13)" fg:x="1871885" fg:w="1153"/><text x="78.6504%" y="431.50"></text></g><g><title>mutex_unlock (245 samples, 0.01%)</title><rect x="78.4384%" y="405" width="0.0103%" height="15" fill="rgb(244,48,7)" fg:x="1872793" fg:w="245"/><text x="78.6884%" y="415.50"></text></g><g><title>btrfs_get_or_create_delayed_node (357 samples, 0.01%)</title><rect x="78.4580%" y="421" width="0.0150%" height="15" fill="rgb(244,217,54)" fg:x="1873261" fg:w="357"/><text x="78.7080%" y="431.50"></text></g><g><title>btrfs_get_delayed_node (314 samples, 0.01%)</title><rect x="78.4598%" y="405" width="0.0132%" height="15" fill="rgb(224,15,18)" fg:x="1873304" fg:w="314"/><text x="78.7098%" y="415.50"></text></g><g><title>inode_get_bytes (282 samples, 0.01%)</title><rect x="78.4797%" y="405" width="0.0118%" height="15" fill="rgb(244,99,12)" fg:x="1873778" fg:w="282"/><text x="78.7297%" y="415.50"></text></g><g><title>fill_stack_inode_item (585 samples, 0.02%)</title><rect x="78.4730%" y="421" width="0.0245%" height="15" fill="rgb(233,226,8)" fg:x="1873618" fg:w="585"/><text x="78.7230%" y="431.50"></text></g><g><title>btrfs_delayed_update_inode (2,862 samples, 0.12%)</title><rect x="78.3946%" y="437" width="0.1199%" height="15" fill="rgb(229,211,3)" fg:x="1871746" fg:w="2862"/><text x="78.6446%" y="447.50"></text></g><g><title>_raw_spin_lock (565 samples, 0.02%)</title><rect x="78.5175%" y="421" width="0.0237%" height="15" fill="rgb(216,140,21)" fg:x="1874681" fg:w="565"/><text x="78.7675%" y="431.50"></text></g><g><title>btrfs_update_inode (4,595 samples, 0.19%)</title><rect x="78.3669%" y="453" width="0.1925%" height="15" fill="rgb(234,122,30)" fg:x="1871084" fg:w="4595"/><text x="78.6169%" y="463.50"></text></g><g><title>btrfs_update_root_times (1,071 samples, 0.04%)</title><rect x="78.5145%" y="437" width="0.0449%" height="15" fill="rgb(236,25,46)" fg:x="1874608" fg:w="1071"/><text x="78.7645%" y="447.50"></text></g><g><title>ktime_get_real_ts64 (433 samples, 0.02%)</title><rect x="78.5412%" y="421" width="0.0181%" height="15" fill="rgb(217,52,54)" fg:x="1875246" fg:w="433"/><text x="78.7912%" y="431.50"></text></g><g><title>current_time (290 samples, 0.01%)</title><rect x="78.5593%" y="453" width="0.0121%" height="15" fill="rgb(222,29,26)" fg:x="1875679" fg:w="290"/><text x="78.8093%" y="463.50"></text></g><g><title>btrfs_add_link (127,241 samples, 5.33%)</title><rect x="73.2448%" y="469" width="5.3293%" height="15" fill="rgb(216,177,29)" fg:x="1748791" fg:w="127241"/><text x="73.4948%" y="479.50">btrfs_a..</text></g><g><title>btrfs_workqueue_normal_congested (277 samples, 0.01%)</title><rect x="78.6146%" y="437" width="0.0116%" height="15" fill="rgb(247,136,51)" fg:x="1877000" fg:w="277"/><text x="78.8646%" y="447.50"></text></g><g><title>kmem_cache_alloc_trace (246 samples, 0.01%)</title><rect x="78.6263%" y="437" width="0.0103%" height="15" fill="rgb(231,47,47)" fg:x="1877278" fg:w="246"/><text x="78.8763%" y="447.50"></text></g><g><title>btrfs_balance_delayed_items (951 samples, 0.04%)</title><rect x="78.6010%" y="453" width="0.0398%" height="15" fill="rgb(211,192,36)" fg:x="1876675" fg:w="951"/><text x="78.8510%" y="463.50"></text></g><g><title>btrfs_queue_work (250 samples, 0.01%)</title><rect x="78.6409%" y="453" width="0.0105%" height="15" fill="rgb(229,156,32)" fg:x="1877626" fg:w="250"/><text x="78.8909%" y="463.50"></text></g><g><title>_raw_spin_lock (844 samples, 0.04%)</title><rect x="78.6690%" y="421" width="0.0353%" height="15" fill="rgb(248,213,20)" fg:x="1878298" fg:w="844"/><text x="78.9190%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (661 samples, 0.03%)</title><rect x="78.6767%" y="405" width="0.0277%" height="15" fill="rgb(217,64,7)" fg:x="1878481" fg:w="661"/><text x="78.9267%" y="415.50"></text></g><g><title>insert_work (310 samples, 0.01%)</title><rect x="78.7044%" y="421" width="0.0130%" height="15" fill="rgb(232,142,8)" fg:x="1879142" fg:w="310"/><text x="78.9544%" y="431.50"></text></g><g><title>_raw_spin_lock (440 samples, 0.02%)</title><rect x="78.7370%" y="405" width="0.0184%" height="15" fill="rgb(224,92,44)" fg:x="1879922" fg:w="440"/><text x="78.9870%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (357 samples, 0.01%)</title><rect x="78.7405%" y="389" width="0.0150%" height="15" fill="rgb(214,169,17)" fg:x="1880005" fg:w="357"/><text x="78.9905%" y="399.50"></text></g><g><title>available_idle_cpu (326 samples, 0.01%)</title><rect x="78.7818%" y="389" width="0.0137%" height="15" fill="rgb(210,59,37)" fg:x="1880990" fg:w="326"/><text x="79.0318%" y="399.50"></text></g><g><title>select_task_rq_fair (963 samples, 0.04%)</title><rect x="78.7651%" y="405" width="0.0403%" height="15" fill="rgb(214,116,48)" fg:x="1880592" fg:w="963"/><text x="79.0151%" y="415.50"></text></g><g><title>enqueue_task_fair (798 samples, 0.03%)</title><rect x="78.8129%" y="389" width="0.0334%" height="15" fill="rgb(244,191,6)" fg:x="1881734" fg:w="798"/><text x="79.0629%" y="399.50"></text></g><g><title>enqueue_entity (619 samples, 0.03%)</title><rect x="78.8204%" y="373" width="0.0259%" height="15" fill="rgb(241,50,52)" fg:x="1881913" fg:w="619"/><text x="79.0704%" y="383.50"></text></g><g><title>ttwu_do_activate (1,249 samples, 0.05%)</title><rect x="78.8095%" y="405" width="0.0523%" height="15" fill="rgb(236,75,39)" fg:x="1881653" fg:w="1249"/><text x="79.0595%" y="415.50"></text></g><g><title>psi_task_change (368 samples, 0.02%)</title><rect x="78.8464%" y="389" width="0.0154%" height="15" fill="rgb(236,99,0)" fg:x="1882534" fg:w="368"/><text x="79.0964%" y="399.50"></text></g><g><title>psi_group_change (262 samples, 0.01%)</title><rect x="78.8509%" y="373" width="0.0110%" height="15" fill="rgb(207,202,15)" fg:x="1882640" fg:w="262"/><text x="79.1009%" y="383.50"></text></g><g><title>check_preempt_wakeup (240 samples, 0.01%)</title><rect x="78.8647%" y="373" width="0.0101%" height="15" fill="rgb(233,207,14)" fg:x="1882971" fg:w="240"/><text x="79.1147%" y="383.50"></text></g><g><title>ttwu_do_wakeup (365 samples, 0.02%)</title><rect x="78.8618%" y="405" width="0.0153%" height="15" fill="rgb(226,27,51)" fg:x="1882902" fg:w="365"/><text x="79.1118%" y="415.50"></text></g><g><title>check_preempt_curr (347 samples, 0.01%)</title><rect x="78.8626%" y="389" width="0.0145%" height="15" fill="rgb(206,104,42)" fg:x="1882920" fg:w="347"/><text x="79.1126%" y="399.50"></text></g><g><title>__queue_work (5,526 samples, 0.23%)</title><rect x="78.6550%" y="437" width="0.2314%" height="15" fill="rgb(212,225,4)" fg:x="1877963" fg:w="5526"/><text x="78.9050%" y="447.50"></text></g><g><title>try_to_wake_up (4,037 samples, 0.17%)</title><rect x="78.7173%" y="421" width="0.1691%" height="15" fill="rgb(233,96,42)" fg:x="1879452" fg:w="4037"/><text x="78.9673%" y="431.50"></text></g><g><title>btrfs_btree_balance_dirty (7,439 samples, 0.31%)</title><rect x="78.5755%" y="469" width="0.3116%" height="15" fill="rgb(229,21,32)" fg:x="1876065" fg:w="7439"/><text x="78.8255%" y="479.50"></text></g><g><title>queue_work_on (5,628 samples, 0.24%)</title><rect x="78.6513%" y="453" width="0.2357%" height="15" fill="rgb(226,216,24)" fg:x="1877876" fg:w="5628"/><text x="78.9013%" y="463.50"></text></g><g><title>mutex_lock (583 samples, 0.02%)</title><rect x="78.8944%" y="453" width="0.0244%" height="15" fill="rgb(221,163,17)" fg:x="1883680" fg:w="583"/><text x="79.1444%" y="463.50"></text></g><g><title>btrfs_find_free_ino (1,180 samples, 0.05%)</title><rect x="78.8904%" y="469" width="0.0494%" height="15" fill="rgb(216,216,42)" fg:x="1883583" fg:w="1180"/><text x="79.1404%" y="479.50"></text></g><g><title>mutex_unlock (500 samples, 0.02%)</title><rect x="78.9188%" y="453" width="0.0209%" height="15" fill="rgb(240,118,7)" fg:x="1884263" fg:w="500"/><text x="79.1688%" y="463.50"></text></g><g><title>__task_rq_lock (316 samples, 0.01%)</title><rect x="79.2191%" y="373" width="0.0132%" height="15" fill="rgb(221,67,37)" fg:x="1891431" fg:w="316"/><text x="79.4691%" y="383.50"></text></g><g><title>_raw_spin_lock (310 samples, 0.01%)</title><rect x="79.2193%" y="357" width="0.0130%" height="15" fill="rgb(241,32,44)" fg:x="1891437" fg:w="310"/><text x="79.4693%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (305 samples, 0.01%)</title><rect x="79.2195%" y="341" width="0.0128%" height="15" fill="rgb(235,204,43)" fg:x="1891442" fg:w="305"/><text x="79.4695%" y="351.50"></text></g><g><title>_raw_spin_lock (241 samples, 0.01%)</title><rect x="79.2323%" y="373" width="0.0101%" height="15" fill="rgb(213,116,10)" fg:x="1891747" fg:w="241"/><text x="79.4823%" y="383.50"></text></g><g><title>select_task_rq_fair (938 samples, 0.04%)</title><rect x="79.2506%" y="373" width="0.0393%" height="15" fill="rgb(239,15,48)" fg:x="1892183" fg:w="938"/><text x="79.5006%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (258 samples, 0.01%)</title><rect x="79.2790%" y="357" width="0.0108%" height="15" fill="rgb(207,123,36)" fg:x="1892863" fg:w="258"/><text x="79.5290%" y="367.50"></text></g><g><title>enqueue_entity (1,026 samples, 0.04%)</title><rect x="79.3070%" y="341" width="0.0430%" height="15" fill="rgb(209,103,30)" fg:x="1893531" fg:w="1026"/><text x="79.5570%" y="351.50"></text></g><g><title>update_load_avg (384 samples, 0.02%)</title><rect x="79.3339%" y="325" width="0.0161%" height="15" fill="rgb(238,100,19)" fg:x="1894173" fg:w="384"/><text x="79.5839%" y="335.50"></text></g><g><title>enqueue_task_fair (1,294 samples, 0.05%)</title><rect x="79.2961%" y="357" width="0.0542%" height="15" fill="rgb(244,30,14)" fg:x="1893270" fg:w="1294"/><text x="79.5461%" y="367.50"></text></g><g><title>ttwu_do_activate (2,621 samples, 0.11%)</title><rect x="79.2926%" y="373" width="0.1098%" height="15" fill="rgb(249,174,6)" fg:x="1893188" fg:w="2621"/><text x="79.5426%" y="383.50"></text></g><g><title>psi_task_change (1,243 samples, 0.05%)</title><rect x="79.3504%" y="357" width="0.0521%" height="15" fill="rgb(235,213,41)" fg:x="1894566" fg:w="1243"/><text x="79.6004%" y="367.50"></text></g><g><title>psi_group_change (1,093 samples, 0.05%)</title><rect x="79.3566%" y="341" width="0.0458%" height="15" fill="rgb(213,118,6)" fg:x="1894716" fg:w="1093"/><text x="79.6066%" y="351.50"></text></g><g><title>ttwu_do_wakeup (316 samples, 0.01%)</title><rect x="79.4024%" y="373" width="0.0132%" height="15" fill="rgb(235,44,51)" fg:x="1895809" fg:w="316"/><text x="79.6524%" y="383.50"></text></g><g><title>check_preempt_curr (291 samples, 0.01%)</title><rect x="79.4035%" y="357" width="0.0122%" height="15" fill="rgb(217,9,53)" fg:x="1895834" fg:w="291"/><text x="79.6535%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (371 samples, 0.02%)</title><rect x="79.4157%" y="373" width="0.0155%" height="15" fill="rgb(237,172,34)" fg:x="1896125" fg:w="371"/><text x="79.6657%" y="383.50"></text></g><g><title>__wake_up_common (11,662 samples, 0.49%)</title><rect x="78.9508%" y="421" width="0.4884%" height="15" fill="rgb(206,206,11)" fg:x="1885026" fg:w="11662"/><text x="79.2008%" y="431.50"></text></g><g><title>autoremove_wake_function (11,450 samples, 0.48%)</title><rect x="78.9597%" y="405" width="0.4796%" height="15" fill="rgb(214,149,29)" fg:x="1885238" fg:w="11450"/><text x="79.2097%" y="415.50"></text></g><g><title>try_to_wake_up (11,359 samples, 0.48%)</title><rect x="78.9635%" y="389" width="0.4758%" height="15" fill="rgb(208,123,3)" fg:x="1885329" fg:w="11359"/><text x="79.2135%" y="399.50"></text></g><g><title>__wake_up_common_lock (11,938 samples, 0.50%)</title><rect x="78.9477%" y="437" width="0.5000%" height="15" fill="rgb(229,126,4)" fg:x="1884952" fg:w="11938"/><text x="79.1977%" y="447.50"></text></g><g><title>btrfs_tree_unlock (346 samples, 0.01%)</title><rect x="79.4477%" y="437" width="0.0145%" height="15" fill="rgb(222,92,36)" fg:x="1896890" fg:w="346"/><text x="79.6977%" y="447.50"></text></g><g><title>_raw_spin_lock (398 samples, 0.02%)</title><rect x="79.5119%" y="421" width="0.0167%" height="15" fill="rgb(216,39,41)" fg:x="1898422" fg:w="398"/><text x="79.7619%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,573 samples, 0.07%)</title><rect x="79.4630%" y="437" width="0.0659%" height="15" fill="rgb(253,127,28)" fg:x="1897256" fg:w="1573"/><text x="79.7130%" y="447.50"></text></g><g><title>btrfs_free_path (14,406 samples, 0.60%)</title><rect x="78.9398%" y="469" width="0.6034%" height="15" fill="rgb(249,152,51)" fg:x="1884763" fg:w="14406"/><text x="79.1898%" y="479.50"></text></g><g><title>btrfs_release_path (14,393 samples, 0.60%)</title><rect x="78.9403%" y="453" width="0.6028%" height="15" fill="rgb(209,123,42)" fg:x="1884776" fg:w="14393"/><text x="79.1903%" y="463.50"></text></g><g><title>release_extent_buffer (340 samples, 0.01%)</title><rect x="79.5289%" y="437" width="0.0142%" height="15" fill="rgb(241,118,22)" fg:x="1898829" fg:w="340"/><text x="79.7789%" y="447.50"></text></g><g><title>btrfs_init_acl (723 samples, 0.03%)</title><rect x="79.5496%" y="469" width="0.0303%" height="15" fill="rgb(208,25,7)" fg:x="1899322" fg:w="723"/><text x="79.7996%" y="479.50"></text></g><g><title>_raw_read_lock (562 samples, 0.02%)</title><rect x="79.7145%" y="405" width="0.0235%" height="15" fill="rgb(243,144,39)" fg:x="1903261" fg:w="562"/><text x="79.9645%" y="415.50"></text></g><g><title>finish_wait (2,125 samples, 0.09%)</title><rect x="79.7392%" y="405" width="0.0890%" height="15" fill="rgb(250,50,5)" fg:x="1903851" fg:w="2125"/><text x="79.9892%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (2,012 samples, 0.08%)</title><rect x="79.7440%" y="389" width="0.0843%" height="15" fill="rgb(207,67,11)" fg:x="1903964" fg:w="2012"/><text x="79.9940%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,940 samples, 0.08%)</title><rect x="79.7470%" y="373" width="0.0813%" height="15" fill="rgb(245,204,40)" fg:x="1904036" fg:w="1940"/><text x="79.9970%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (4,575 samples, 0.19%)</title><rect x="79.8483%" y="389" width="0.1916%" height="15" fill="rgb(238,228,24)" fg:x="1906456" fg:w="4575"/><text x="80.0983%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,327 samples, 0.18%)</title><rect x="79.8587%" y="373" width="0.1812%" height="15" fill="rgb(217,116,22)" fg:x="1906704" fg:w="4327"/><text x="80.1087%" y="383.50"></text></g><g><title>prepare_to_wait_event (5,128 samples, 0.21%)</title><rect x="79.8288%" y="405" width="0.2148%" height="15" fill="rgb(234,98,12)" fg:x="1905990" fg:w="5128"/><text x="80.0788%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (7,804 samples, 0.33%)</title><rect x="80.0436%" y="405" width="0.3269%" height="15" fill="rgb(242,170,50)" fg:x="1911118" fg:w="7804"/><text x="80.2936%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,809 samples, 0.24%)</title><rect x="80.1272%" y="389" width="0.2433%" height="15" fill="rgb(235,7,5)" fg:x="1913113" fg:w="5809"/><text x="80.3772%" y="399.50"></text></g><g><title>update_curr (339 samples, 0.01%)</title><rect x="80.4068%" y="341" width="0.0142%" height="15" fill="rgb(241,114,28)" fg:x="1919789" fg:w="339"/><text x="80.6568%" y="351.50"></text></g><g><title>dequeue_entity (875 samples, 0.04%)</title><rect x="80.3949%" y="357" width="0.0366%" height="15" fill="rgb(246,112,42)" fg:x="1919505" fg:w="875"/><text x="80.6449%" y="367.50"></text></g><g><title>update_load_avg (252 samples, 0.01%)</title><rect x="80.4210%" y="341" width="0.0106%" height="15" fill="rgb(248,228,14)" fg:x="1920128" fg:w="252"/><text x="80.6710%" y="351.50"></text></g><g><title>dequeue_task_fair (1,021 samples, 0.04%)</title><rect x="80.3905%" y="373" width="0.0428%" height="15" fill="rgb(208,133,18)" fg:x="1919400" fg:w="1021"/><text x="80.6405%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (276 samples, 0.01%)</title><rect x="80.4384%" y="357" width="0.0116%" height="15" fill="rgb(207,35,49)" fg:x="1920544" fg:w="276"/><text x="80.6884%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (254 samples, 0.01%)</title><rect x="80.4393%" y="341" width="0.0106%" height="15" fill="rgb(205,68,36)" fg:x="1920566" fg:w="254"/><text x="80.6893%" y="351.50"></text></g><g><title>native_write_msr (243 samples, 0.01%)</title><rect x="80.4398%" y="325" width="0.0102%" height="15" fill="rgb(245,62,40)" fg:x="1920577" fg:w="243"/><text x="80.6898%" y="335.50"></text></g><g><title>finish_task_switch (429 samples, 0.02%)</title><rect x="80.4332%" y="373" width="0.0180%" height="15" fill="rgb(228,27,24)" fg:x="1920421" fg:w="429"/><text x="80.6832%" y="383.50"></text></g><g><title>psi_task_change (699 samples, 0.03%)</title><rect x="80.4660%" y="373" width="0.0293%" height="15" fill="rgb(253,19,12)" fg:x="1921203" fg:w="699"/><text x="80.7160%" y="383.50"></text></g><g><title>psi_group_change (598 samples, 0.03%)</title><rect x="80.4702%" y="357" width="0.0250%" height="15" fill="rgb(232,28,20)" fg:x="1921304" fg:w="598"/><text x="80.7202%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (19,375 samples, 0.81%)</title><rect x="79.6924%" y="421" width="0.8115%" height="15" fill="rgb(218,35,51)" fg:x="1902732" fg:w="19375"/><text x="79.9424%" y="431.50"></text></g><g><title>schedule (3,185 samples, 0.13%)</title><rect x="80.3705%" y="405" width="0.1334%" height="15" fill="rgb(212,90,40)" fg:x="1918922" fg:w="3185"/><text x="80.6205%" y="415.50"></text></g><g><title>__schedule (3,126 samples, 0.13%)</title><rect x="80.3729%" y="389" width="0.1309%" height="15" fill="rgb(220,172,12)" fg:x="1918981" fg:w="3126"/><text x="80.6229%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (20,510 samples, 0.86%)</title><rect x="79.6881%" y="437" width="0.8590%" height="15" fill="rgb(226,159,20)" fg:x="1902629" fg:w="20510"/><text x="79.9381%" y="447.50"></text></g><g><title>btrfs_root_node (1,032 samples, 0.04%)</title><rect x="80.5039%" y="421" width="0.0432%" height="15" fill="rgb(234,205,16)" fg:x="1922107" fg:w="1032"/><text x="80.7539%" y="431.50"></text></g><g><title>_raw_write_lock (311 samples, 0.01%)</title><rect x="80.5865%" y="421" width="0.0130%" height="15" fill="rgb(207,9,39)" fg:x="1924080" fg:w="311"/><text x="80.8365%" y="431.50"></text></g><g><title>finish_wait (2,064 samples, 0.09%)</title><rect x="80.5996%" y="421" width="0.0864%" height="15" fill="rgb(249,143,15)" fg:x="1924393" fg:w="2064"/><text x="80.8496%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (1,877 samples, 0.08%)</title><rect x="80.6074%" y="405" width="0.0786%" height="15" fill="rgb(253,133,29)" fg:x="1924580" fg:w="1877"/><text x="80.8574%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,666 samples, 0.07%)</title><rect x="80.6163%" y="389" width="0.0698%" height="15" fill="rgb(221,187,0)" fg:x="1924791" fg:w="1666"/><text x="80.8663%" y="399.50"></text></g><g><title>__list_add_valid (258 samples, 0.01%)</title><rect x="80.7284%" y="405" width="0.0108%" height="15" fill="rgb(205,204,26)" fg:x="1927468" fg:w="258"/><text x="80.9784%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (7,112 samples, 0.30%)</title><rect x="80.7392%" y="405" width="0.2979%" height="15" fill="rgb(224,68,54)" fg:x="1927726" fg:w="7112"/><text x="80.9892%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,249 samples, 0.26%)</title><rect x="80.7753%" y="389" width="0.2617%" height="15" fill="rgb(209,67,4)" fg:x="1928589" fg:w="6249"/><text x="81.0253%" y="399.50"></text></g><g><title>_raw_spin_unlock_irqrestore (274 samples, 0.01%)</title><rect x="81.0371%" y="405" width="0.0115%" height="15" fill="rgb(228,229,18)" fg:x="1934838" fg:w="274"/><text x="81.2871%" y="415.50"></text></g><g><title>prepare_to_wait_event (8,599 samples, 0.36%)</title><rect x="80.6885%" y="421" width="0.3602%" height="15" fill="rgb(231,89,13)" fg:x="1926515" fg:w="8599"/><text x="80.9385%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,386 samples, 0.18%)</title><rect x="81.2031%" y="405" width="0.1837%" height="15" fill="rgb(210,182,18)" fg:x="1938801" fg:w="4386"/><text x="81.4531%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (8,074 samples, 0.34%)</title><rect x="81.0486%" y="421" width="0.3382%" height="15" fill="rgb(240,105,2)" fg:x="1935114" fg:w="8074"/><text x="81.2986%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (561 samples, 0.02%)</title><rect x="81.4295%" y="389" width="0.0235%" height="15" fill="rgb(207,170,50)" fg:x="1944207" fg:w="561"/><text x="81.6795%" y="399.50"></text></g><g><title>update_cfs_group (358 samples, 0.01%)</title><rect x="81.5050%" y="357" width="0.0150%" height="15" fill="rgb(232,133,24)" fg:x="1946011" fg:w="358"/><text x="81.7550%" y="367.50"></text></g><g><title>cpuacct_charge (260 samples, 0.01%)</title><rect x="81.5576%" y="341" width="0.0109%" height="15" fill="rgb(235,166,27)" fg:x="1947265" fg:w="260"/><text x="81.8076%" y="351.50"></text></g><g><title>update_curr (1,250 samples, 0.05%)</title><rect x="81.5200%" y="357" width="0.0524%" height="15" fill="rgb(209,19,13)" fg:x="1946369" fg:w="1250"/><text x="81.7700%" y="367.50"></text></g><g><title>__update_load_avg_cfs_rq (281 samples, 0.01%)</title><rect x="81.5884%" y="341" width="0.0118%" height="15" fill="rgb(226,79,39)" fg:x="1948002" fg:w="281"/><text x="81.8384%" y="351.50"></text></g><g><title>__update_load_avg_se (323 samples, 0.01%)</title><rect x="81.6002%" y="341" width="0.0135%" height="15" fill="rgb(222,163,10)" fg:x="1948283" fg:w="323"/><text x="81.8502%" y="351.50"></text></g><g><title>dequeue_entity (3,279 samples, 0.14%)</title><rect x="81.4773%" y="373" width="0.1373%" height="15" fill="rgb(214,44,19)" fg:x="1945349" fg:w="3279"/><text x="81.7273%" y="383.50"></text></g><g><title>update_load_avg (1,009 samples, 0.04%)</title><rect x="81.5724%" y="357" width="0.0423%" height="15" fill="rgb(210,217,13)" fg:x="1947619" fg:w="1009"/><text x="81.8224%" y="367.50"></text></g><g><title>dequeue_task_fair (3,861 samples, 0.16%)</title><rect x="81.4597%" y="389" width="0.1617%" height="15" fill="rgb(237,61,54)" fg:x="1944928" fg:w="3861"/><text x="81.7097%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (776 samples, 0.03%)</title><rect x="81.6447%" y="373" width="0.0325%" height="15" fill="rgb(226,184,24)" fg:x="1949345" fg:w="776"/><text x="81.8947%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (674 samples, 0.03%)</title><rect x="81.6489%" y="357" width="0.0282%" height="15" fill="rgb(223,226,4)" fg:x="1949447" fg:w="674"/><text x="81.8989%" y="367.50"></text></g><g><title>native_write_msr (636 samples, 0.03%)</title><rect x="81.6505%" y="341" width="0.0266%" height="15" fill="rgb(210,26,41)" fg:x="1949485" fg:w="636"/><text x="81.9005%" y="351.50"></text></g><g><title>finish_task_switch (1,413 samples, 0.06%)</title><rect x="81.6214%" y="389" width="0.0592%" height="15" fill="rgb(220,221,6)" fg:x="1948789" fg:w="1413"/><text x="81.8714%" y="399.50"></text></g><g><title>newidle_balance (339 samples, 0.01%)</title><rect x="81.6878%" y="373" width="0.0142%" height="15" fill="rgb(225,89,49)" fg:x="1950374" fg:w="339"/><text x="81.9378%" y="383.50"></text></g><g><title>pick_next_task_fair (609 samples, 0.03%)</title><rect x="81.6809%" y="389" width="0.0255%" height="15" fill="rgb(218,70,45)" fg:x="1950210" fg:w="609"/><text x="81.9309%" y="399.50"></text></g><g><title>__update_idle_core (601 samples, 0.03%)</title><rect x="81.7115%" y="373" width="0.0252%" height="15" fill="rgb(238,166,21)" fg:x="1950940" fg:w="601"/><text x="81.9615%" y="383.50"></text></g><g><title>pick_next_task_idle (725 samples, 0.03%)</title><rect x="81.7064%" y="389" width="0.0304%" height="15" fill="rgb(224,141,44)" fg:x="1950819" fg:w="725"/><text x="81.9564%" y="399.50"></text></g><g><title>psi_task_change (2,648 samples, 0.11%)</title><rect x="81.7368%" y="389" width="0.1109%" height="15" fill="rgb(230,12,49)" fg:x="1951544" fg:w="2648"/><text x="81.9868%" y="399.50"></text></g><g><title>psi_group_change (2,227 samples, 0.09%)</title><rect x="81.7544%" y="373" width="0.0933%" height="15" fill="rgb(212,174,12)" fg:x="1951965" fg:w="2227"/><text x="82.0044%" y="383.50"></text></g><g><title>record_times (528 samples, 0.02%)</title><rect x="81.8256%" y="357" width="0.0221%" height="15" fill="rgb(246,67,9)" fg:x="1953664" fg:w="528"/><text x="82.0756%" y="367.50"></text></g><g><title>sched_clock_cpu (348 samples, 0.01%)</title><rect x="81.8331%" y="341" width="0.0146%" height="15" fill="rgb(239,35,23)" fg:x="1953844" fg:w="348"/><text x="82.0831%" y="351.50"></text></g><g><title>sched_clock (303 samples, 0.01%)</title><rect x="81.8350%" y="325" width="0.0127%" height="15" fill="rgb(211,167,0)" fg:x="1953889" fg:w="303"/><text x="82.0850%" y="335.50"></text></g><g><title>native_sched_clock (279 samples, 0.01%)</title><rect x="81.8360%" y="309" width="0.0117%" height="15" fill="rgb(225,119,45)" fg:x="1953913" fg:w="279"/><text x="82.0860%" y="319.50"></text></g><g><title>put_prev_task_fair (246 samples, 0.01%)</title><rect x="81.8554%" y="389" width="0.0103%" height="15" fill="rgb(210,162,6)" fg:x="1954377" fg:w="246"/><text x="82.1054%" y="399.50"></text></g><g><title>__btrfs_tree_lock (31,778 samples, 1.33%)</title><rect x="80.5471%" y="437" width="1.3310%" height="15" fill="rgb(208,118,35)" fg:x="1923139" fg:w="31778"/><text x="80.7971%" y="447.50"></text></g><g><title>schedule (11,729 samples, 0.49%)</title><rect x="81.3868%" y="421" width="0.4912%" height="15" fill="rgb(239,4,53)" fg:x="1943188" fg:w="11729"/><text x="81.6368%" y="431.50"></text></g><g><title>__schedule (11,499 samples, 0.48%)</title><rect x="81.3964%" y="405" width="0.4816%" height="15" fill="rgb(213,130,21)" fg:x="1943418" fg:w="11499"/><text x="81.6464%" y="415.50"></text></g><g><title>update_rq_clock (261 samples, 0.01%)</title><rect x="81.8671%" y="389" width="0.0109%" height="15" fill="rgb(235,148,0)" fg:x="1954656" fg:w="261"/><text x="82.1171%" y="399.50"></text></g><g><title>btrfs_leaf_free_space (891 samples, 0.04%)</title><rect x="81.8866%" y="437" width="0.0373%" height="15" fill="rgb(244,224,18)" fg:x="1955122" fg:w="891"/><text x="82.1366%" y="447.50"></text></g><g><title>leaf_space_used (675 samples, 0.03%)</title><rect x="81.8957%" y="421" width="0.0283%" height="15" fill="rgb(211,214,4)" fg:x="1955338" fg:w="675"/><text x="82.1457%" y="431.50"></text></g><g><title>btrfs_get_32 (477 samples, 0.02%)</title><rect x="81.9040%" y="405" width="0.0200%" height="15" fill="rgb(206,119,25)" fg:x="1955536" fg:w="477"/><text x="82.1540%" y="415.50"></text></g><g><title>btrfs_set_lock_blocking_read (362 samples, 0.02%)</title><rect x="81.9572%" y="421" width="0.0152%" height="15" fill="rgb(243,93,47)" fg:x="1956806" fg:w="362"/><text x="82.2072%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (1,261 samples, 0.05%)</title><rect x="81.9306%" y="437" width="0.0528%" height="15" fill="rgb(224,194,6)" fg:x="1956172" fg:w="1261"/><text x="82.1806%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_write (265 samples, 0.01%)</title><rect x="81.9723%" y="421" width="0.0111%" height="15" fill="rgb(243,229,6)" fg:x="1957168" fg:w="265"/><text x="82.2223%" y="431.50"></text></g><g><title>_raw_write_lock (574 samples, 0.02%)</title><rect x="81.9965%" y="421" width="0.0240%" height="15" fill="rgb(207,23,50)" fg:x="1957746" fg:w="574"/><text x="82.2465%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (24,130 samples, 1.01%)</title><rect x="81.9837%" y="437" width="1.0106%" height="15" fill="rgb(253,192,32)" fg:x="1957440" fg:w="24130"/><text x="82.2337%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (23,248 samples, 0.97%)</title><rect x="82.0207%" y="421" width="0.9737%" height="15" fill="rgb(213,21,6)" fg:x="1958322" fg:w="23248"/><text x="82.2707%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,611 samples, 0.44%)</title><rect x="82.5499%" y="405" width="0.4444%" height="15" fill="rgb(243,151,13)" fg:x="1970959" fg:w="10611"/><text x="82.7999%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (3,797 samples, 0.16%)</title><rect x="82.9944%" y="437" width="0.1590%" height="15" fill="rgb(233,165,41)" fg:x="1981571" fg:w="3797"/><text x="83.2444%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (761 samples, 0.03%)</title><rect x="83.1759%" y="421" width="0.0319%" height="15" fill="rgb(246,176,45)" fg:x="1985905" fg:w="761"/><text x="83.4259%" y="431.50"></text></g><g><title>verify_parent_transid (585 samples, 0.02%)</title><rect x="83.1833%" y="405" width="0.0245%" height="15" fill="rgb(217,170,52)" fg:x="1986081" fg:w="585"/><text x="83.4333%" y="415.50"></text></g><g><title>btrfs_get_64 (801 samples, 0.03%)</title><rect x="83.2078%" y="421" width="0.0335%" height="15" fill="rgb(214,203,54)" fg:x="1986666" fg:w="801"/><text x="83.4578%" y="431.50"></text></g><g><title>btrfs_verify_level_key (308 samples, 0.01%)</title><rect x="83.2429%" y="421" width="0.0129%" height="15" fill="rgb(248,215,49)" fg:x="1987505" fg:w="308"/><text x="83.4929%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,011 samples, 0.08%)</title><rect x="83.3359%" y="405" width="0.0842%" height="15" fill="rgb(208,46,10)" fg:x="1989725" fg:w="2011"/><text x="83.5859%" y="415.50"></text></g><g><title>mark_page_accessed (680 samples, 0.03%)</title><rect x="83.4389%" y="389" width="0.0285%" height="15" fill="rgb(254,5,31)" fg:x="1992184" fg:w="680"/><text x="83.6889%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,177 samples, 0.05%)</title><rect x="83.4205%" y="405" width="0.0493%" height="15" fill="rgb(222,104,33)" fg:x="1991744" fg:w="1177"/><text x="83.6705%" y="415.50"></text></g><g><title>find_extent_buffer (5,141 samples, 0.22%)</title><rect x="83.2558%" y="421" width="0.2153%" height="15" fill="rgb(248,49,16)" fg:x="1987813" fg:w="5141"/><text x="83.5058%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (8,220 samples, 0.34%)</title><rect x="83.1534%" y="437" width="0.3443%" height="15" fill="rgb(232,198,41)" fg:x="1985368" fg:w="8220"/><text x="83.4034%" y="447.50"></text></g><g><title>read_extent_buffer (634 samples, 0.03%)</title><rect x="83.4712%" y="421" width="0.0266%" height="15" fill="rgb(214,125,3)" fg:x="1992954" fg:w="634"/><text x="83.7212%" y="431.50"></text></g><g><title>pagecache_get_page (240 samples, 0.01%)</title><rect x="83.5078%" y="373" width="0.0101%" height="15" fill="rgb(229,220,28)" fg:x="1993829" fg:w="240"/><text x="83.7578%" y="383.50"></text></g><g><title>alloc_extent_buffer (423 samples, 0.02%)</title><rect x="83.5017%" y="389" width="0.0177%" height="15" fill="rgb(222,64,37)" fg:x="1993683" fg:w="423"/><text x="83.7517%" y="399.50"></text></g><g><title>btrfs_reserve_extent (345 samples, 0.01%)</title><rect x="83.5292%" y="389" width="0.0144%" height="15" fill="rgb(249,184,13)" fg:x="1994341" fg:w="345"/><text x="83.7792%" y="399.50"></text></g><g><title>find_free_extent (284 samples, 0.01%)</title><rect x="83.5318%" y="373" width="0.0119%" height="15" fill="rgb(252,176,6)" fg:x="1994402" fg:w="284"/><text x="83.7818%" y="383.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,348 samples, 0.06%)</title><rect x="83.5002%" y="421" width="0.0565%" height="15" fill="rgb(228,153,7)" fg:x="1993648" fg:w="1348"/><text x="83.7502%" y="431.50"></text></g><g><title>btrfs_alloc_tree_block (1,344 samples, 0.06%)</title><rect x="83.5004%" y="405" width="0.0563%" height="15" fill="rgb(242,193,5)" fg:x="1993652" fg:w="1344"/><text x="83.7504%" y="415.50"></text></g><g><title>copy_for_split (659 samples, 0.03%)</title><rect x="83.5592%" y="421" width="0.0276%" height="15" fill="rgb(232,140,9)" fg:x="1995057" fg:w="659"/><text x="83.8092%" y="431.50"></text></g><g><title>__push_leaf_left (1,029 samples, 0.04%)</title><rect x="83.5890%" y="405" width="0.0431%" height="15" fill="rgb(213,222,16)" fg:x="1995767" fg:w="1029"/><text x="83.8390%" y="415.50"></text></g><g><title>push_leaf_left (1,288 samples, 0.05%)</title><rect x="83.5871%" y="421" width="0.0539%" height="15" fill="rgb(222,75,50)" fg:x="1995722" fg:w="1288"/><text x="83.8371%" y="431.50"></text></g><g><title>split_leaf (3,484 samples, 0.15%)</title><rect x="83.4979%" y="437" width="0.1459%" height="15" fill="rgb(205,180,2)" fg:x="1993592" fg:w="3484"/><text x="83.7479%" y="447.50"></text></g><g><title>__list_del_entry_valid (383 samples, 0.02%)</title><rect x="83.6945%" y="373" width="0.0160%" height="15" fill="rgb(216,34,7)" fg:x="1998287" fg:w="383"/><text x="83.9445%" y="383.50"></text></g><g><title>_raw_spin_lock (610 samples, 0.03%)</title><rect x="83.7836%" y="357" width="0.0255%" height="15" fill="rgb(253,16,32)" fg:x="2000415" fg:w="610"/><text x="84.0336%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (386 samples, 0.02%)</title><rect x="83.7930%" y="341" width="0.0162%" height="15" fill="rgb(208,97,28)" fg:x="2000639" fg:w="386"/><text x="84.0430%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (461 samples, 0.02%)</title><rect x="83.8092%" y="357" width="0.0193%" height="15" fill="rgb(225,92,11)" fg:x="2001025" fg:w="461"/><text x="84.0592%" y="367.50"></text></g><g><title>available_idle_cpu (531 samples, 0.02%)</title><rect x="83.8801%" y="341" width="0.0222%" height="15" fill="rgb(243,38,12)" fg:x="2002719" fg:w="531"/><text x="84.1301%" y="351.50"></text></g><g><title>select_task_rq_fair (2,547 samples, 0.11%)</title><rect x="83.8316%" y="357" width="0.1067%" height="15" fill="rgb(208,139,16)" fg:x="2001559" fg:w="2547"/><text x="84.0816%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (490 samples, 0.02%)</title><rect x="83.9177%" y="341" width="0.0205%" height="15" fill="rgb(227,24,9)" fg:x="2003616" fg:w="490"/><text x="84.1677%" y="351.50"></text></g><g><title>update_curr (331 samples, 0.01%)</title><rect x="84.0311%" y="309" width="0.0139%" height="15" fill="rgb(206,62,11)" fg:x="2006322" fg:w="331"/><text x="84.2811%" y="319.50"></text></g><g><title>enqueue_entity (2,442 samples, 0.10%)</title><rect x="83.9771%" y="325" width="0.1023%" height="15" fill="rgb(228,134,27)" fg:x="2005035" fg:w="2442"/><text x="84.2271%" y="335.50"></text></g><g><title>update_load_avg (824 samples, 0.03%)</title><rect x="84.0449%" y="309" width="0.0345%" height="15" fill="rgb(205,55,33)" fg:x="2006653" fg:w="824"/><text x="84.2949%" y="319.50"></text></g><g><title>enqueue_task_fair (3,080 samples, 0.13%)</title><rect x="83.9566%" y="341" width="0.1290%" height="15" fill="rgb(243,75,43)" fg:x="2004544" fg:w="3080"/><text x="84.2066%" y="351.50"></text></g><g><title>ttwu_do_activate (6,218 samples, 0.26%)</title><rect x="83.9460%" y="357" width="0.2604%" height="15" fill="rgb(223,27,42)" fg:x="2004292" fg:w="6218"/><text x="84.1960%" y="367.50"></text></g><g><title>psi_task_change (2,882 samples, 0.12%)</title><rect x="84.0857%" y="341" width="0.1207%" height="15" fill="rgb(232,189,33)" fg:x="2007628" fg:w="2882"/><text x="84.3357%" y="351.50"></text></g><g><title>psi_group_change (2,547 samples, 0.11%)</title><rect x="84.0998%" y="325" width="0.1067%" height="15" fill="rgb(210,9,39)" fg:x="2007963" fg:w="2547"/><text x="84.3498%" y="335.50"></text></g><g><title>record_times (430 samples, 0.02%)</title><rect x="84.1884%" y="309" width="0.0180%" height="15" fill="rgb(242,85,26)" fg:x="2010080" fg:w="430"/><text x="84.4384%" y="319.50"></text></g><g><title>sched_clock_cpu (286 samples, 0.01%)</title><rect x="84.1945%" y="293" width="0.0120%" height="15" fill="rgb(248,44,4)" fg:x="2010224" fg:w="286"/><text x="84.4445%" y="303.50"></text></g><g><title>resched_curr (271 samples, 0.01%)</title><rect x="84.2224%" y="325" width="0.0114%" height="15" fill="rgb(250,96,46)" fg:x="2010891" fg:w="271"/><text x="84.4724%" y="335.50"></text></g><g><title>ttwu_do_wakeup (657 samples, 0.03%)</title><rect x="84.2065%" y="357" width="0.0275%" height="15" fill="rgb(229,116,26)" fg:x="2010510" fg:w="657"/><text x="84.4565%" y="367.50"></text></g><g><title>check_preempt_curr (587 samples, 0.02%)</title><rect x="84.2094%" y="341" width="0.0246%" height="15" fill="rgb(246,94,34)" fg:x="2010580" fg:w="587"/><text x="84.4594%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (329 samples, 0.01%)</title><rect x="84.2340%" y="357" width="0.0138%" height="15" fill="rgb(251,73,21)" fg:x="2011167" fg:w="329"/><text x="84.4840%" y="367.50"></text></g><g><title>__wake_up_common (13,937 samples, 0.58%)</title><rect x="83.6832%" y="405" width="0.5837%" height="15" fill="rgb(254,121,25)" fg:x="1998017" fg:w="13937"/><text x="83.9332%" y="415.50"></text></g><g><title>autoremove_wake_function (13,706 samples, 0.57%)</title><rect x="83.6929%" y="389" width="0.5741%" height="15" fill="rgb(215,161,49)" fg:x="1998248" fg:w="13706"/><text x="83.9429%" y="399.50"></text></g><g><title>try_to_wake_up (13,272 samples, 0.56%)</title><rect x="83.7111%" y="373" width="0.5559%" height="15" fill="rgb(221,43,13)" fg:x="1998682" fg:w="13272"/><text x="83.9611%" y="383.50"></text></g><g><title>update_rq_clock (458 samples, 0.02%)</title><rect x="84.2478%" y="357" width="0.0192%" height="15" fill="rgb(249,5,37)" fg:x="2011496" fg:w="458"/><text x="84.4978%" y="367.50"></text></g><g><title>__wake_up_common_lock (14,240 samples, 0.60%)</title><rect x="83.6807%" y="421" width="0.5964%" height="15" fill="rgb(226,25,44)" fg:x="1997958" fg:w="14240"/><text x="83.9307%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (577 samples, 0.02%)</title><rect x="84.2773%" y="421" width="0.0242%" height="15" fill="rgb(238,189,16)" fg:x="2012202" fg:w="577"/><text x="84.5273%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (374 samples, 0.02%)</title><rect x="84.3015%" y="421" width="0.0157%" height="15" fill="rgb(251,186,8)" fg:x="2012779" fg:w="374"/><text x="84.5515%" y="431.50"></text></g><g><title>btrfs_search_slot (113,278 samples, 4.74%)</title><rect x="79.5899%" y="453" width="4.7444%" height="15" fill="rgb(254,34,31)" fg:x="1900286" fg:w="113278"/><text x="79.8399%" y="463.50">btrfs_..</text></g><g><title>unlock_up (16,454 samples, 0.69%)</title><rect x="83.6452%" y="437" width="0.6891%" height="15" fill="rgb(225,215,27)" fg:x="1997110" fg:w="16454"/><text x="83.8952%" y="447.50"></text></g><g><title>btrfs_tree_unlock (411 samples, 0.02%)</title><rect x="84.3172%" y="421" width="0.0172%" height="15" fill="rgb(221,192,48)" fg:x="2013153" fg:w="411"/><text x="84.5672%" y="431.50"></text></g><g><title>btrfs_get_32 (451 samples, 0.02%)</title><rect x="84.3907%" y="437" width="0.0189%" height="15" fill="rgb(219,137,20)" fg:x="2014910" fg:w="451"/><text x="84.6407%" y="447.50"></text></g><g><title>btrfs_get_token_32 (1,415 samples, 0.06%)</title><rect x="84.4096%" y="437" width="0.0593%" height="15" fill="rgb(219,84,11)" fg:x="2015361" fg:w="1415"/><text x="84.6596%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,101 samples, 0.05%)</title><rect x="84.4689%" y="437" width="0.0461%" height="15" fill="rgb(224,10,23)" fg:x="2016776" fg:w="1101"/><text x="84.7189%" y="447.50"></text></g><g><title>leaf_space_used (933 samples, 0.04%)</title><rect x="84.4759%" y="421" width="0.0391%" height="15" fill="rgb(248,22,39)" fg:x="2016944" fg:w="933"/><text x="84.7259%" y="431.50"></text></g><g><title>btrfs_get_32 (698 samples, 0.03%)</title><rect x="84.4858%" y="405" width="0.0292%" height="15" fill="rgb(212,154,20)" fg:x="2017179" fg:w="698"/><text x="84.7358%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (765 samples, 0.03%)</title><rect x="84.5150%" y="437" width="0.0320%" height="15" fill="rgb(236,199,50)" fg:x="2017877" fg:w="765"/><text x="84.7650%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (383 samples, 0.02%)</title><rect x="84.5310%" y="421" width="0.0160%" height="15" fill="rgb(211,9,17)" fg:x="2018259" fg:w="383"/><text x="84.7810%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (261 samples, 0.01%)</title><rect x="84.5917%" y="421" width="0.0109%" height="15" fill="rgb(243,216,36)" fg:x="2019709" fg:w="261"/><text x="84.8417%" y="431.50"></text></g><g><title>btrfs_set_token_32 (1,329 samples, 0.06%)</title><rect x="84.5471%" y="437" width="0.0557%" height="15" fill="rgb(250,2,10)" fg:x="2018642" fg:w="1329"/><text x="84.7971%" y="447.50"></text></g><g><title>copy_pages (248 samples, 0.01%)</title><rect x="84.6178%" y="421" width="0.0104%" height="15" fill="rgb(226,50,48)" fg:x="2020332" fg:w="248"/><text x="84.8678%" y="431.50"></text></g><g><title>memcpy_extent_buffer (935 samples, 0.04%)</title><rect x="84.6110%" y="437" width="0.0392%" height="15" fill="rgb(243,81,16)" fg:x="2020170" fg:w="935"/><text x="84.8610%" y="447.50"></text></g><g><title>memmove (525 samples, 0.02%)</title><rect x="84.6282%" y="421" width="0.0220%" height="15" fill="rgb(250,14,2)" fg:x="2020580" fg:w="525"/><text x="84.8782%" y="431.50"></text></g><g><title>memmove_extent_buffer (930 samples, 0.04%)</title><rect x="84.6502%" y="437" width="0.0390%" height="15" fill="rgb(233,135,29)" fg:x="2021105" fg:w="930"/><text x="84.9002%" y="447.50"></text></g><g><title>memmove (477 samples, 0.02%)</title><rect x="84.6692%" y="421" width="0.0200%" height="15" fill="rgb(224,64,43)" fg:x="2021558" fg:w="477"/><text x="84.9192%" y="431.50"></text></g><g><title>btrfs_insert_empty_items (122,539 samples, 5.13%)</title><rect x="79.5798%" y="469" width="5.1323%" height="15" fill="rgb(238,84,13)" fg:x="1900045" fg:w="122539"/><text x="79.8298%" y="479.50">btrfs_..</text></g><g><title>setup_items_for_insert (9,020 samples, 0.38%)</title><rect x="84.3344%" y="453" width="0.3778%" height="15" fill="rgb(253,48,26)" fg:x="2013564" fg:w="9020"/><text x="84.5844%" y="463.50"></text></g><g><title>write_extent_buffer (549 samples, 0.02%)</title><rect x="84.6892%" y="437" width="0.0230%" height="15" fill="rgb(205,223,31)" fg:x="2022035" fg:w="549"/><text x="84.9392%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (653 samples, 0.03%)</title><rect x="84.7122%" y="469" width="0.0273%" height="15" fill="rgb(221,41,32)" fg:x="2022584" fg:w="653"/><text x="84.9622%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (477 samples, 0.02%)</title><rect x="84.7195%" y="453" width="0.0200%" height="15" fill="rgb(213,158,31)" fg:x="2022760" fg:w="477"/><text x="84.9695%" y="463.50"></text></g><g><title>_raw_spin_lock (520 samples, 0.02%)</title><rect x="84.8259%" y="453" width="0.0218%" height="15" fill="rgb(245,126,43)" fg:x="2025299" fg:w="520"/><text x="85.0759%" y="463.50"></text></g><g><title>__wake_up_common (242 samples, 0.01%)</title><rect x="84.8547%" y="405" width="0.0101%" height="15" fill="rgb(227,7,22)" fg:x="2025988" fg:w="242"/><text x="85.1047%" y="415.50"></text></g><g><title>__wake_up_common_lock (249 samples, 0.01%)</title><rect x="84.8546%" y="421" width="0.0104%" height="15" fill="rgb(252,90,44)" fg:x="2025986" fg:w="249"/><text x="85.1046%" y="431.50"></text></g><g><title>_raw_spin_lock (509 samples, 0.02%)</title><rect x="84.9212%" y="405" width="0.0213%" height="15" fill="rgb(253,91,0)" fg:x="2027575" fg:w="509"/><text x="85.1712%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,763 samples, 0.07%)</title><rect x="84.8688%" y="421" width="0.0738%" height="15" fill="rgb(252,175,49)" fg:x="2026323" fg:w="1763"/><text x="85.1188%" y="431.50"></text></g><g><title>btrfs_free_path (2,623 samples, 0.11%)</title><rect x="84.8489%" y="453" width="0.1099%" height="15" fill="rgb(246,150,1)" fg:x="2025850" fg:w="2623"/><text x="85.0989%" y="463.50"></text></g><g><title>btrfs_release_path (2,610 samples, 0.11%)</title><rect x="84.8495%" y="437" width="0.1093%" height="15" fill="rgb(241,192,25)" fg:x="2025863" fg:w="2610"/><text x="85.0995%" y="447.50"></text></g><g><title>release_extent_buffer (387 samples, 0.02%)</title><rect x="84.9426%" y="421" width="0.0162%" height="15" fill="rgb(239,187,11)" fg:x="2028086" fg:w="387"/><text x="85.1926%" y="431.50"></text></g><g><title>btrfs_get_32 (380 samples, 0.02%)</title><rect x="84.9588%" y="453" width="0.0159%" height="15" fill="rgb(218,202,51)" fg:x="2028473" fg:w="380"/><text x="85.2088%" y="463.50"></text></g><g><title>_raw_read_lock (548 samples, 0.02%)</title><rect x="85.1000%" y="389" width="0.0230%" height="15" fill="rgb(225,176,8)" fg:x="2031844" fg:w="548"/><text x="85.3500%" y="399.50"></text></g><g><title>finish_wait (1,885 samples, 0.08%)</title><rect x="85.1236%" y="389" width="0.0789%" height="15" fill="rgb(219,122,41)" fg:x="2032407" fg:w="1885"/><text x="85.3736%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,786 samples, 0.07%)</title><rect x="85.1277%" y="373" width="0.0748%" height="15" fill="rgb(248,140,20)" fg:x="2032506" fg:w="1786"/><text x="85.3777%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,705 samples, 0.07%)</title><rect x="85.1311%" y="357" width="0.0714%" height="15" fill="rgb(245,41,37)" fg:x="2032587" fg:w="1705"/><text x="85.3811%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (4,370 samples, 0.18%)</title><rect x="85.2212%" y="373" width="0.1830%" height="15" fill="rgb(235,82,39)" fg:x="2034738" fg:w="4370"/><text x="85.4712%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,142 samples, 0.17%)</title><rect x="85.2308%" y="357" width="0.1735%" height="15" fill="rgb(230,108,42)" fg:x="2034966" fg:w="4142"/><text x="85.4808%" y="367.50"></text></g><g><title>prepare_to_wait_event (4,886 samples, 0.20%)</title><rect x="85.2029%" y="389" width="0.2046%" height="15" fill="rgb(215,150,50)" fg:x="2034300" fg:w="4886"/><text x="85.4529%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (6,816 samples, 0.29%)</title><rect x="85.4075%" y="389" width="0.2855%" height="15" fill="rgb(233,212,5)" fg:x="2039186" fg:w="6816"/><text x="85.6575%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,072 samples, 0.21%)</title><rect x="85.4805%" y="373" width="0.2124%" height="15" fill="rgb(245,80,22)" fg:x="2040930" fg:w="5072"/><text x="85.7305%" y="383.50"></text></g><g><title>update_curr (327 samples, 0.01%)</title><rect x="85.7276%" y="325" width="0.0137%" height="15" fill="rgb(238,129,16)" fg:x="2046828" fg:w="327"/><text x="85.9776%" y="335.50"></text></g><g><title>dequeue_entity (842 samples, 0.04%)</title><rect x="85.7172%" y="341" width="0.0353%" height="15" fill="rgb(240,19,0)" fg:x="2046581" fg:w="842"/><text x="85.9672%" y="351.50"></text></g><g><title>update_load_avg (268 samples, 0.01%)</title><rect x="85.7413%" y="325" width="0.0112%" height="15" fill="rgb(232,42,35)" fg:x="2047155" fg:w="268"/><text x="85.9913%" y="335.50"></text></g><g><title>dequeue_task_fair (989 samples, 0.04%)</title><rect x="85.7125%" y="357" width="0.0414%" height="15" fill="rgb(223,130,24)" fg:x="2046468" fg:w="989"/><text x="85.9625%" y="367.50"></text></g><g><title>finish_task_switch (412 samples, 0.02%)</title><rect x="85.7539%" y="357" width="0.0173%" height="15" fill="rgb(237,16,22)" fg:x="2047457" fg:w="412"/><text x="86.0039%" y="367.50"></text></g><g><title>psi_task_change (745 samples, 0.03%)</title><rect x="85.7851%" y="357" width="0.0312%" height="15" fill="rgb(248,192,20)" fg:x="2048202" fg:w="745"/><text x="86.0351%" y="367.50"></text></g><g><title>psi_group_change (627 samples, 0.03%)</title><rect x="85.7901%" y="341" width="0.0263%" height="15" fill="rgb(233,167,2)" fg:x="2048320" fg:w="627"/><text x="86.0401%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (17,825 samples, 0.75%)</title><rect x="85.0788%" y="405" width="0.7466%" height="15" fill="rgb(252,71,44)" fg:x="2031338" fg:w="17825"/><text x="85.3288%" y="415.50"></text></g><g><title>schedule (3,161 samples, 0.13%)</title><rect x="85.6930%" y="389" width="0.1324%" height="15" fill="rgb(238,37,47)" fg:x="2046002" fg:w="3161"/><text x="85.9430%" y="399.50"></text></g><g><title>__schedule (3,125 samples, 0.13%)</title><rect x="85.6945%" y="373" width="0.1309%" height="15" fill="rgb(214,202,54)" fg:x="2046038" fg:w="3125"/><text x="85.9445%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (18,904 samples, 0.79%)</title><rect x="85.0754%" y="421" width="0.7918%" height="15" fill="rgb(254,165,40)" fg:x="2031256" fg:w="18904"/><text x="85.3254%" y="431.50"></text></g><g><title>btrfs_root_node (997 samples, 0.04%)</title><rect x="85.8254%" y="405" width="0.0418%" height="15" fill="rgb(246,173,38)" fg:x="2049163" fg:w="997"/><text x="86.0754%" y="415.50"></text></g><g><title>finish_wait (1,839 samples, 0.08%)</title><rect x="85.9102%" y="405" width="0.0770%" height="15" fill="rgb(215,3,27)" fg:x="2051189" fg:w="1839"/><text x="86.1602%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (1,692 samples, 0.07%)</title><rect x="85.9164%" y="389" width="0.0709%" height="15" fill="rgb(239,169,51)" fg:x="2051336" fg:w="1692"/><text x="86.1664%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,474 samples, 0.06%)</title><rect x="85.9255%" y="373" width="0.0617%" height="15" fill="rgb(212,5,25)" fg:x="2051554" fg:w="1474"/><text x="86.1755%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (5,872 samples, 0.25%)</title><rect x="86.0335%" y="389" width="0.2459%" height="15" fill="rgb(243,45,17)" fg:x="2054132" fg:w="5872"/><text x="86.2835%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,154 samples, 0.22%)</title><rect x="86.0636%" y="373" width="0.2159%" height="15" fill="rgb(242,97,9)" fg:x="2054850" fg:w="5154"/><text x="86.3136%" y="383.50"></text></g><g><title>prepare_to_wait_event (7,113 samples, 0.30%)</title><rect x="85.9905%" y="405" width="0.2979%" height="15" fill="rgb(228,71,31)" fg:x="2053105" fg:w="7113"/><text x="86.2405%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (6,080 samples, 0.25%)</title><rect x="86.2884%" y="405" width="0.2546%" height="15" fill="rgb(252,184,16)" fg:x="2060218" fg:w="6080"/><text x="86.5384%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,122 samples, 0.13%)</title><rect x="86.4123%" y="389" width="0.1308%" height="15" fill="rgb(236,169,46)" fg:x="2063176" fg:w="3122"/><text x="86.6623%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (511 samples, 0.02%)</title><rect x="86.5804%" y="373" width="0.0214%" height="15" fill="rgb(207,17,47)" fg:x="2067189" fg:w="511"/><text x="86.8304%" y="383.50"></text></g><g><title>update_cfs_group (289 samples, 0.01%)</title><rect x="86.6490%" y="341" width="0.0121%" height="15" fill="rgb(206,201,28)" fg:x="2068827" fg:w="289"/><text x="86.8990%" y="351.50"></text></g><g><title>cpuacct_charge (244 samples, 0.01%)</title><rect x="86.6970%" y="325" width="0.0102%" height="15" fill="rgb(224,184,23)" fg:x="2069974" fg:w="244"/><text x="86.9470%" y="335.50"></text></g><g><title>update_curr (1,196 samples, 0.05%)</title><rect x="86.6611%" y="341" width="0.0501%" height="15" fill="rgb(208,139,48)" fg:x="2069116" fg:w="1196"/><text x="86.9111%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (247 samples, 0.01%)</title><rect x="86.7263%" y="325" width="0.0103%" height="15" fill="rgb(208,130,10)" fg:x="2070673" fg:w="247"/><text x="86.9763%" y="335.50"></text></g><g><title>__update_load_avg_se (273 samples, 0.01%)</title><rect x="86.7366%" y="325" width="0.0114%" height="15" fill="rgb(211,213,45)" fg:x="2070920" fg:w="273"/><text x="86.9866%" y="335.50"></text></g><g><title>dequeue_entity (2,965 samples, 0.12%)</title><rect x="86.6249%" y="357" width="0.1242%" height="15" fill="rgb(235,100,30)" fg:x="2068253" fg:w="2965"/><text x="86.8749%" y="367.50"></text></g><g><title>update_load_avg (906 samples, 0.04%)</title><rect x="86.7112%" y="341" width="0.0379%" height="15" fill="rgb(206,144,31)" fg:x="2070312" fg:w="906"/><text x="86.9612%" y="351.50"></text></g><g><title>dequeue_task_fair (3,519 samples, 0.15%)</title><rect x="86.6083%" y="373" width="0.1474%" height="15" fill="rgb(224,200,26)" fg:x="2067856" fg:w="3519"/><text x="86.8583%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (782 samples, 0.03%)</title><rect x="86.7741%" y="357" width="0.0328%" height="15" fill="rgb(247,104,53)" fg:x="2071816" fg:w="782"/><text x="87.0241%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (696 samples, 0.03%)</title><rect x="86.7777%" y="341" width="0.0292%" height="15" fill="rgb(220,14,17)" fg:x="2071902" fg:w="696"/><text x="87.0277%" y="351.50"></text></g><g><title>native_write_msr (660 samples, 0.03%)</title><rect x="86.7793%" y="325" width="0.0276%" height="15" fill="rgb(230,140,40)" fg:x="2071938" fg:w="660"/><text x="87.0293%" y="335.50"></text></g><g><title>finish_task_switch (1,293 samples, 0.05%)</title><rect x="86.7557%" y="373" width="0.0542%" height="15" fill="rgb(229,2,41)" fg:x="2071375" fg:w="1293"/><text x="87.0057%" y="383.50"></text></g><g><title>newidle_balance (326 samples, 0.01%)</title><rect x="86.8172%" y="357" width="0.0137%" height="15" fill="rgb(232,89,16)" fg:x="2072844" fg:w="326"/><text x="87.0672%" y="367.50"></text></g><g><title>pick_next_task_fair (612 samples, 0.03%)</title><rect x="86.8100%" y="373" width="0.0256%" height="15" fill="rgb(247,59,52)" fg:x="2072673" fg:w="612"/><text x="87.0600%" y="383.50"></text></g><g><title>__update_idle_core (540 samples, 0.02%)</title><rect x="86.8398%" y="357" width="0.0226%" height="15" fill="rgb(226,110,21)" fg:x="2073383" fg:w="540"/><text x="87.0898%" y="367.50"></text></g><g><title>pick_next_task_idle (641 samples, 0.03%)</title><rect x="86.8357%" y="373" width="0.0268%" height="15" fill="rgb(224,176,43)" fg:x="2073285" fg:w="641"/><text x="87.0857%" y="383.50"></text></g><g><title>psi_task_change (2,511 samples, 0.11%)</title><rect x="86.8625%" y="373" width="0.1052%" height="15" fill="rgb(221,73,6)" fg:x="2073926" fg:w="2511"/><text x="87.1125%" y="383.50"></text></g><g><title>psi_group_change (2,097 samples, 0.09%)</title><rect x="86.8799%" y="357" width="0.0878%" height="15" fill="rgb(232,78,19)" fg:x="2074340" fg:w="2097"/><text x="87.1299%" y="367.50"></text></g><g><title>record_times (423 samples, 0.02%)</title><rect x="86.9500%" y="341" width="0.0177%" height="15" fill="rgb(233,112,48)" fg:x="2076014" fg:w="423"/><text x="87.2000%" y="351.50"></text></g><g><title>sched_clock_cpu (280 samples, 0.01%)</title><rect x="86.9560%" y="325" width="0.0117%" height="15" fill="rgb(243,131,47)" fg:x="2076157" fg:w="280"/><text x="87.2060%" y="335.50"></text></g><g><title>sched_clock (247 samples, 0.01%)</title><rect x="86.9573%" y="309" width="0.0103%" height="15" fill="rgb(226,51,1)" fg:x="2076190" fg:w="247"/><text x="87.2073%" y="319.50"></text></g><g><title>put_prev_task_fair (273 samples, 0.01%)</title><rect x="86.9754%" y="373" width="0.0114%" height="15" fill="rgb(247,58,7)" fg:x="2076620" fg:w="273"/><text x="87.2254%" y="383.50"></text></g><g><title>__btrfs_tree_lock (27,059 samples, 1.13%)</title><rect x="85.8671%" y="421" width="1.1333%" height="15" fill="rgb(209,7,32)" fg:x="2050160" fg:w="27059"/><text x="86.1171%" y="431.50"></text></g><g><title>schedule (10,921 samples, 0.46%)</title><rect x="86.5430%" y="405" width="0.4574%" height="15" fill="rgb(209,39,41)" fg:x="2066298" fg:w="10921"/><text x="86.7930%" y="415.50"></text></g><g><title>__schedule (10,789 samples, 0.45%)</title><rect x="86.5486%" y="389" width="0.4519%" height="15" fill="rgb(226,182,46)" fg:x="2066430" fg:w="10789"/><text x="86.7986%" y="399.50"></text></g><g><title>update_rq_clock (282 samples, 0.01%)</title><rect x="86.9886%" y="373" width="0.0118%" height="15" fill="rgb(230,219,10)" fg:x="2076937" fg:w="282"/><text x="87.2386%" y="383.50"></text></g><g><title>btrfs_leaf_free_space (1,045 samples, 0.04%)</title><rect x="87.0082%" y="421" width="0.0438%" height="15" fill="rgb(227,175,30)" fg:x="2077405" fg:w="1045"/><text x="87.2582%" y="431.50"></text></g><g><title>leaf_space_used (765 samples, 0.03%)</title><rect x="87.0200%" y="405" width="0.0320%" height="15" fill="rgb(217,2,50)" fg:x="2077685" fg:w="765"/><text x="87.2700%" y="415.50"></text></g><g><title>btrfs_get_32 (529 samples, 0.02%)</title><rect x="87.0298%" y="389" width="0.0222%" height="15" fill="rgb(229,160,0)" fg:x="2077921" fg:w="529"/><text x="87.2798%" y="399.50"></text></g><g><title>__btrfs_tree_lock (243 samples, 0.01%)</title><rect x="87.0520%" y="405" width="0.0102%" height="15" fill="rgb(207,78,37)" fg:x="2078450" fg:w="243"/><text x="87.3020%" y="415.50"></text></g><g><title>btrfs_lock_root_node (244 samples, 0.01%)</title><rect x="87.0520%" y="421" width="0.0102%" height="15" fill="rgb(225,57,0)" fg:x="2078450" fg:w="244"/><text x="87.3020%" y="431.50"></text></g><g><title>btrfs_set_lock_blocking_read (332 samples, 0.01%)</title><rect x="87.0698%" y="405" width="0.0139%" height="15" fill="rgb(232,154,2)" fg:x="2078874" fg:w="332"/><text x="87.3198%" y="415.50"></text></g><g><title>btrfs_set_path_blocking (569 samples, 0.02%)</title><rect x="87.0631%" y="421" width="0.0238%" height="15" fill="rgb(241,212,25)" fg:x="2078715" fg:w="569"/><text x="87.3131%" y="431.50"></text></g><g><title>_raw_write_lock (576 samples, 0.02%)</title><rect x="87.0988%" y="405" width="0.0241%" height="15" fill="rgb(226,69,20)" fg:x="2079568" fg:w="576"/><text x="87.3488%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (16,533 samples, 0.69%)</title><rect x="87.0872%" y="421" width="0.6925%" height="15" fill="rgb(247,184,54)" fg:x="2079291" fg:w="16533"/><text x="87.3372%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (15,677 samples, 0.66%)</title><rect x="87.1231%" y="405" width="0.6566%" height="15" fill="rgb(210,145,0)" fg:x="2080147" fg:w="15677"/><text x="87.3731%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,863 samples, 0.20%)</title><rect x="87.5760%" y="389" width="0.2037%" height="15" fill="rgb(253,82,12)" fg:x="2090961" fg:w="4863"/><text x="87.8260%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (3,713 samples, 0.16%)</title><rect x="87.7798%" y="421" width="0.1555%" height="15" fill="rgb(245,42,11)" fg:x="2095826" fg:w="3713"/><text x="88.0298%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (877 samples, 0.04%)</title><rect x="87.9583%" y="405" width="0.0367%" height="15" fill="rgb(219,147,32)" fg:x="2100090" fg:w="877"/><text x="88.2083%" y="415.50"></text></g><g><title>verify_parent_transid (672 samples, 0.03%)</title><rect x="87.9669%" y="389" width="0.0281%" height="15" fill="rgb(246,12,7)" fg:x="2100295" fg:w="672"/><text x="88.2169%" y="399.50"></text></g><g><title>btrfs_get_64 (829 samples, 0.03%)</title><rect x="87.9951%" y="405" width="0.0347%" height="15" fill="rgb(243,50,9)" fg:x="2100967" fg:w="829"/><text x="88.2451%" y="415.50"></text></g><g><title>btrfs_verify_level_key (313 samples, 0.01%)</title><rect x="88.0312%" y="405" width="0.0131%" height="15" fill="rgb(219,149,6)" fg:x="2101830" fg:w="313"/><text x="88.2812%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,281 samples, 0.10%)</title><rect x="88.1366%" y="389" width="0.0955%" height="15" fill="rgb(241,51,42)" fg:x="2104345" fg:w="2281"/><text x="88.3866%" y="399.50"></text></g><g><title>mark_page_accessed (840 samples, 0.04%)</title><rect x="88.2490%" y="373" width="0.0352%" height="15" fill="rgb(226,128,27)" fg:x="2107029" fg:w="840"/><text x="88.4990%" y="383.50"></text></g><g><title>mark_extent_buffer_accessed (1,298 samples, 0.05%)</title><rect x="88.2325%" y="389" width="0.0544%" height="15" fill="rgb(244,144,4)" fg:x="2106635" fg:w="1298"/><text x="88.4825%" y="399.50"></text></g><g><title>find_extent_buffer (5,815 samples, 0.24%)</title><rect x="88.0443%" y="405" width="0.2436%" height="15" fill="rgb(221,4,13)" fg:x="2102143" fg:w="5815"/><text x="88.2943%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (9,087 samples, 0.38%)</title><rect x="87.9353%" y="421" width="0.3806%" height="15" fill="rgb(208,170,28)" fg:x="2099539" fg:w="9087"/><text x="88.1853%" y="431.50"></text></g><g><title>read_extent_buffer (668 samples, 0.03%)</title><rect x="88.2879%" y="405" width="0.0280%" height="15" fill="rgb(226,131,13)" fg:x="2107958" fg:w="668"/><text x="88.5379%" y="415.50"></text></g><g><title>pagecache_get_page (307 samples, 0.01%)</title><rect x="88.3259%" y="357" width="0.0129%" height="15" fill="rgb(215,72,41)" fg:x="2108865" fg:w="307"/><text x="88.5759%" y="367.50"></text></g><g><title>alloc_extent_buffer (478 samples, 0.02%)</title><rect x="88.3204%" y="373" width="0.0200%" height="15" fill="rgb(243,108,20)" fg:x="2108735" fg:w="478"/><text x="88.5704%" y="383.50"></text></g><g><title>btrfs_add_delayed_tree_ref (261 samples, 0.01%)</title><rect x="88.3404%" y="373" width="0.0109%" height="15" fill="rgb(230,189,17)" fg:x="2109213" fg:w="261"/><text x="88.5904%" y="383.50"></text></g><g><title>btrfs_reserve_extent (349 samples, 0.01%)</title><rect x="88.3523%" y="373" width="0.0146%" height="15" fill="rgb(220,50,17)" fg:x="2109496" fg:w="349"/><text x="88.6023%" y="383.50"></text></g><g><title>find_free_extent (304 samples, 0.01%)</title><rect x="88.3542%" y="357" width="0.0127%" height="15" fill="rgb(248,152,48)" fg:x="2109541" fg:w="304"/><text x="88.6042%" y="367.50"></text></g><g><title>set_extent_bit (262 samples, 0.01%)</title><rect x="88.3691%" y="373" width="0.0110%" height="15" fill="rgb(244,91,11)" fg:x="2109898" fg:w="262"/><text x="88.6191%" y="383.50"></text></g><g><title>__set_extent_bit (256 samples, 0.01%)</title><rect x="88.3694%" y="357" width="0.0107%" height="15" fill="rgb(220,157,5)" fg:x="2109904" fg:w="256"/><text x="88.6194%" y="367.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,492 samples, 0.06%)</title><rect x="88.3183%" y="405" width="0.0625%" height="15" fill="rgb(253,137,8)" fg:x="2108685" fg:w="1492"/><text x="88.5683%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (1,486 samples, 0.06%)</title><rect x="88.3186%" y="389" width="0.0622%" height="15" fill="rgb(217,137,51)" fg:x="2108691" fg:w="1486"/><text x="88.5686%" y="399.50"></text></g><g><title>btrfs_mark_buffer_dirty (283 samples, 0.01%)</title><rect x="88.3889%" y="389" width="0.0119%" height="15" fill="rgb(218,209,53)" fg:x="2110369" fg:w="283"/><text x="88.6389%" y="399.50"></text></g><g><title>set_extent_buffer_dirty (268 samples, 0.01%)</title><rect x="88.3895%" y="373" width="0.0112%" height="15" fill="rgb(249,137,25)" fg:x="2110384" fg:w="268"/><text x="88.6395%" y="383.50"></text></g><g><title>copy_for_split (721 samples, 0.03%)</title><rect x="88.3832%" y="405" width="0.0302%" height="15" fill="rgb(239,155,26)" fg:x="2110233" fg:w="721"/><text x="88.6332%" y="415.50"></text></g><g><title>btrfs_set_token_32 (249 samples, 0.01%)</title><rect x="88.4361%" y="373" width="0.0104%" height="15" fill="rgb(227,85,46)" fg:x="2111497" fg:w="249"/><text x="88.6861%" y="383.50"></text></g><g><title>__push_leaf_left (1,058 samples, 0.04%)</title><rect x="88.4161%" y="389" width="0.0443%" height="15" fill="rgb(251,107,43)" fg:x="2111019" fg:w="1058"/><text x="88.6661%" y="399.50"></text></g><g><title>push_leaf_left (1,378 samples, 0.06%)</title><rect x="88.4136%" y="405" width="0.0577%" height="15" fill="rgb(234,170,33)" fg:x="2110959" fg:w="1378"/><text x="88.6636%" y="415.50"></text></g><g><title>split_leaf (3,751 samples, 0.16%)</title><rect x="88.3162%" y="421" width="0.1571%" height="15" fill="rgb(206,29,35)" fg:x="2108635" fg:w="3751"/><text x="88.5662%" y="431.50"></text></g><g><title>__list_del_entry_valid (430 samples, 0.02%)</title><rect x="88.5235%" y="357" width="0.0180%" height="15" fill="rgb(227,138,25)" fg:x="2113584" fg:w="430"/><text x="88.7735%" y="367.50"></text></g><g><title>_raw_spin_lock (620 samples, 0.03%)</title><rect x="88.6102%" y="341" width="0.0260%" height="15" fill="rgb(249,131,35)" fg:x="2115653" fg:w="620"/><text x="88.8602%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (387 samples, 0.02%)</title><rect x="88.6199%" y="325" width="0.0162%" height="15" fill="rgb(239,6,40)" fg:x="2115886" fg:w="387"/><text x="88.8699%" y="335.50"></text></g><g><title>_raw_spin_lock_irqsave (568 samples, 0.02%)</title><rect x="88.6361%" y="341" width="0.0238%" height="15" fill="rgb(246,136,47)" fg:x="2116273" fg:w="568"/><text x="88.8861%" y="351.50"></text></g><g><title>available_idle_cpu (534 samples, 0.02%)</title><rect x="88.7127%" y="325" width="0.0224%" height="15" fill="rgb(253,58,26)" fg:x="2118100" fg:w="534"/><text x="88.9627%" y="335.50"></text></g><g><title>select_task_rq_fair (2,581 samples, 0.11%)</title><rect x="88.6629%" y="341" width="0.1081%" height="15" fill="rgb(237,141,10)" fg:x="2116913" fg:w="2581"/><text x="88.9129%" y="351.50"></text></g><g><title>update_cfs_rq_h_load (484 samples, 0.02%)</title><rect x="88.7508%" y="325" width="0.0203%" height="15" fill="rgb(234,156,12)" fg:x="2119010" fg:w="484"/><text x="89.0008%" y="335.50"></text></g><g><title>update_curr (340 samples, 0.01%)</title><rect x="88.8689%" y="293" width="0.0142%" height="15" fill="rgb(243,224,36)" fg:x="2121831" fg:w="340"/><text x="89.1189%" y="303.50"></text></g><g><title>enqueue_entity (2,564 samples, 0.11%)</title><rect x="88.8128%" y="309" width="0.1074%" height="15" fill="rgb(205,229,51)" fg:x="2120492" fg:w="2564"/><text x="89.0628%" y="319.50"></text></g><g><title>update_load_avg (885 samples, 0.04%)</title><rect x="88.8832%" y="293" width="0.0371%" height="15" fill="rgb(223,189,4)" fg:x="2122171" fg:w="885"/><text x="89.1332%" y="303.50"></text></g><g><title>enqueue_task_fair (3,213 samples, 0.13%)</title><rect x="88.7922%" y="325" width="0.1346%" height="15" fill="rgb(249,167,54)" fg:x="2119998" fg:w="3213"/><text x="89.0422%" y="335.50"></text></g><g><title>ttwu_do_activate (6,475 samples, 0.27%)</title><rect x="88.7805%" y="341" width="0.2712%" height="15" fill="rgb(218,34,28)" fg:x="2119719" fg:w="6475"/><text x="89.0305%" y="351.50"></text></g><g><title>psi_task_change (2,973 samples, 0.12%)</title><rect x="88.9271%" y="325" width="0.1245%" height="15" fill="rgb(232,109,42)" fg:x="2123221" fg:w="2973"/><text x="89.1771%" y="335.50"></text></g><g><title>psi_group_change (2,619 samples, 0.11%)</title><rect x="88.9420%" y="309" width="0.1097%" height="15" fill="rgb(248,214,46)" fg:x="2123575" fg:w="2619"/><text x="89.1920%" y="319.50"></text></g><g><title>record_times (474 samples, 0.02%)</title><rect x="89.0318%" y="293" width="0.0199%" height="15" fill="rgb(244,216,40)" fg:x="2125720" fg:w="474"/><text x="89.2818%" y="303.50"></text></g><g><title>sched_clock_cpu (313 samples, 0.01%)</title><rect x="89.0386%" y="277" width="0.0131%" height="15" fill="rgb(231,226,31)" fg:x="2125881" fg:w="313"/><text x="89.2886%" y="287.50"></text></g><g><title>sched_clock (262 samples, 0.01%)</title><rect x="89.0407%" y="261" width="0.0110%" height="15" fill="rgb(238,38,43)" fg:x="2125932" fg:w="262"/><text x="89.2907%" y="271.50"></text></g><g><title>resched_curr (263 samples, 0.01%)</title><rect x="89.0675%" y="309" width="0.0110%" height="15" fill="rgb(208,88,43)" fg:x="2126572" fg:w="263"/><text x="89.3175%" y="319.50"></text></g><g><title>ttwu_do_wakeup (644 samples, 0.03%)</title><rect x="89.0517%" y="341" width="0.0270%" height="15" fill="rgb(205,136,37)" fg:x="2126194" fg:w="644"/><text x="89.3017%" y="351.50"></text></g><g><title>check_preempt_curr (580 samples, 0.02%)</title><rect x="89.0543%" y="325" width="0.0243%" height="15" fill="rgb(237,34,14)" fg:x="2126258" fg:w="580"/><text x="89.3043%" y="335.50"></text></g><g><title>ttwu_queue_wakelist (336 samples, 0.01%)</title><rect x="89.0786%" y="341" width="0.0141%" height="15" fill="rgb(236,193,44)" fg:x="2126838" fg:w="336"/><text x="89.3286%" y="351.50"></text></g><g><title>__wake_up_common (14,355 samples, 0.60%)</title><rect x="88.5138%" y="389" width="0.6012%" height="15" fill="rgb(231,48,10)" fg:x="2113352" fg:w="14355"/><text x="88.7638%" y="399.50"></text></g><g><title>autoremove_wake_function (14,166 samples, 0.59%)</title><rect x="88.5217%" y="373" width="0.5933%" height="15" fill="rgb(213,141,34)" fg:x="2113541" fg:w="14166"/><text x="88.7717%" y="383.50"></text></g><g><title>try_to_wake_up (13,682 samples, 0.57%)</title><rect x="88.5420%" y="357" width="0.5730%" height="15" fill="rgb(249,130,34)" fg:x="2114025" fg:w="13682"/><text x="88.7920%" y="367.50"></text></g><g><title>update_rq_clock (533 samples, 0.02%)</title><rect x="89.0927%" y="341" width="0.0223%" height="15" fill="rgb(219,42,41)" fg:x="2127174" fg:w="533"/><text x="89.3427%" y="351.50"></text></g><g><title>__wake_up_common_lock (14,669 samples, 0.61%)</title><rect x="88.5116%" y="405" width="0.6144%" height="15" fill="rgb(224,100,54)" fg:x="2113299" fg:w="14669"/><text x="88.7616%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (533 samples, 0.02%)</title><rect x="89.1263%" y="405" width="0.0223%" height="15" fill="rgb(229,200,27)" fg:x="2127977" fg:w="533"/><text x="89.3763%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (369 samples, 0.02%)</title><rect x="89.1487%" y="405" width="0.0155%" height="15" fill="rgb(217,118,10)" fg:x="2128510" fg:w="369"/><text x="89.3987%" y="415.50"></text></g><g><title>btrfs_search_slot (100,087 samples, 4.19%)</title><rect x="84.9880%" y="437" width="4.1920%" height="15" fill="rgb(206,22,3)" fg:x="2029171" fg:w="100087"/><text x="85.2380%" y="447.50">btrfs..</text></g><g><title>unlock_up (16,800 samples, 0.70%)</title><rect x="88.4764%" y="421" width="0.7036%" height="15" fill="rgb(232,163,46)" fg:x="2112458" fg:w="16800"/><text x="88.7264%" y="431.50"></text></g><g><title>btrfs_tree_unlock (379 samples, 0.02%)</title><rect x="89.1641%" y="405" width="0.0159%" height="15" fill="rgb(206,95,13)" fg:x="2128879" fg:w="379"/><text x="89.4141%" y="415.50"></text></g><g><title>btrfs_get_32 (481 samples, 0.02%)</title><rect x="89.2492%" y="421" width="0.0201%" height="15" fill="rgb(253,154,18)" fg:x="2130910" fg:w="481"/><text x="89.4992%" y="431.50"></text></g><g><title>btrfs_get_token_32 (1,127 samples, 0.05%)</title><rect x="89.2693%" y="421" width="0.0472%" height="15" fill="rgb(219,32,23)" fg:x="2131391" fg:w="1127"/><text x="89.5193%" y="431.50"></text></g><g><title>btrfs_leaf_free_space (1,066 samples, 0.04%)</title><rect x="89.3165%" y="421" width="0.0446%" height="15" fill="rgb(230,191,45)" fg:x="2132518" fg:w="1066"/><text x="89.5665%" y="431.50"></text></g><g><title>leaf_space_used (848 samples, 0.04%)</title><rect x="89.3257%" y="405" width="0.0355%" height="15" fill="rgb(229,64,36)" fg:x="2132736" fg:w="848"/><text x="89.5757%" y="415.50"></text></g><g><title>btrfs_get_32 (618 samples, 0.03%)</title><rect x="89.3353%" y="389" width="0.0259%" height="15" fill="rgb(205,129,25)" fg:x="2132966" fg:w="618"/><text x="89.5853%" y="399.50"></text></g><g><title>btrfs_mark_buffer_dirty (986 samples, 0.04%)</title><rect x="89.3612%" y="421" width="0.0413%" height="15" fill="rgb(254,112,7)" fg:x="2133584" fg:w="986"/><text x="89.6112%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (457 samples, 0.02%)</title><rect x="89.3833%" y="405" width="0.0191%" height="15" fill="rgb(226,53,48)" fg:x="2134113" fg:w="457"/><text x="89.6333%" y="415.50"></text></g><g><title>btrfs_set_token_32 (1,405 samples, 0.06%)</title><rect x="89.4025%" y="421" width="0.0588%" height="15" fill="rgb(214,153,38)" fg:x="2134570" fg:w="1405"/><text x="89.6525%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (261 samples, 0.01%)</title><rect x="89.4504%" y="405" width="0.0109%" height="15" fill="rgb(243,101,7)" fg:x="2135714" fg:w="261"/><text x="89.7004%" y="415.50"></text></g><g><title>memcpy_extent_buffer (467 samples, 0.02%)</title><rect x="89.4712%" y="421" width="0.0196%" height="15" fill="rgb(240,140,22)" fg:x="2136210" fg:w="467"/><text x="89.7212%" y="431.50"></text></g><g><title>copy_pages (325 samples, 0.01%)</title><rect x="89.5084%" y="405" width="0.0136%" height="15" fill="rgb(235,114,2)" fg:x="2137100" fg:w="325"/><text x="89.7584%" y="415.50"></text></g><g><title>memmove_extent_buffer (1,092 samples, 0.05%)</title><rect x="89.4907%" y="421" width="0.0457%" height="15" fill="rgb(242,59,12)" fg:x="2136677" fg:w="1092"/><text x="89.7407%" y="431.50"></text></g><g><title>memmove (344 samples, 0.01%)</title><rect x="89.5221%" y="405" width="0.0144%" height="15" fill="rgb(252,134,9)" fg:x="2137425" fg:w="344"/><text x="89.7721%" y="415.50"></text></g><g><title>btrfs_insert_empty_items (109,705 samples, 4.59%)</title><rect x="84.9813%" y="453" width="4.5948%" height="15" fill="rgb(236,4,44)" fg:x="2029011" fg:w="109705"/><text x="85.2313%" y="463.50">btrfs..</text></g><g><title>setup_items_for_insert (9,458 samples, 0.40%)</title><rect x="89.1800%" y="437" width="0.3961%" height="15" fill="rgb(254,172,41)" fg:x="2129258" fg:w="9458"/><text x="89.4300%" y="447.50"></text></g><g><title>write_extent_buffer (947 samples, 0.04%)</title><rect x="89.5365%" y="421" width="0.0397%" height="15" fill="rgb(244,63,20)" fg:x="2137769" fg:w="947"/><text x="89.7865%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (672 samples, 0.03%)</title><rect x="89.5761%" y="453" width="0.0281%" height="15" fill="rgb(250,73,31)" fg:x="2138716" fg:w="672"/><text x="89.8261%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (449 samples, 0.02%)</title><rect x="89.5855%" y="437" width="0.0188%" height="15" fill="rgb(241,38,36)" fg:x="2138939" fg:w="449"/><text x="89.8355%" y="447.50"></text></g><g><title>btrfs_set_16 (343 samples, 0.01%)</title><rect x="89.6043%" y="453" width="0.0144%" height="15" fill="rgb(245,211,2)" fg:x="2139388" fg:w="343"/><text x="89.8543%" y="463.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (360 samples, 0.02%)</title><rect x="89.6277%" y="453" width="0.0151%" height="15" fill="rgb(206,120,28)" fg:x="2139948" fg:w="360"/><text x="89.8777%" y="463.50"></text></g><g><title>btrfs_update_root_times (634 samples, 0.03%)</title><rect x="89.6428%" y="453" width="0.0266%" height="15" fill="rgb(211,59,34)" fg:x="2140308" fg:w="634"/><text x="89.8928%" y="463.50"></text></g><g><title>ktime_get_real_ts64 (344 samples, 0.01%)</title><rect x="89.6549%" y="437" width="0.0144%" height="15" fill="rgb(233,168,5)" fg:x="2140598" fg:w="344"/><text x="89.9049%" y="447.50"></text></g><g><title>current_time (523 samples, 0.02%)</title><rect x="89.6694%" y="453" width="0.0219%" height="15" fill="rgb(234,33,13)" fg:x="2140942" fg:w="523"/><text x="89.9194%" y="463.50"></text></g><g><title>btrfs_set_token_32 (1,617 samples, 0.07%)</title><rect x="89.7223%" y="437" width="0.0677%" height="15" fill="rgb(231,150,26)" fg:x="2142205" fg:w="1617"/><text x="89.9723%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (276 samples, 0.01%)</title><rect x="89.7784%" y="421" width="0.0116%" height="15" fill="rgb(217,191,4)" fg:x="2143546" fg:w="276"/><text x="90.0284%" y="431.50"></text></g><g><title>btrfs_set_token_64 (2,236 samples, 0.09%)</title><rect x="89.7900%" y="437" width="0.0937%" height="15" fill="rgb(246,198,38)" fg:x="2143822" fg:w="2236"/><text x="90.0400%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (354 samples, 0.01%)</title><rect x="89.8688%" y="421" width="0.0148%" height="15" fill="rgb(245,64,37)" fg:x="2145704" fg:w="354"/><text x="90.1188%" y="431.50"></text></g><g><title>inode_get_bytes (319 samples, 0.01%)</title><rect x="89.8856%" y="437" width="0.0134%" height="15" fill="rgb(250,30,36)" fg:x="2146104" fg:w="319"/><text x="90.1356%" y="447.50"></text></g><g><title>fill_inode_item (5,266 samples, 0.22%)</title><rect x="89.6913%" y="453" width="0.2206%" height="15" fill="rgb(217,86,53)" fg:x="2141465" fg:w="5266"/><text x="89.9413%" y="463.50"></text></g><g><title>map_id_up (308 samples, 0.01%)</title><rect x="89.8989%" y="437" width="0.0129%" height="15" fill="rgb(228,157,16)" fg:x="2146423" fg:w="308"/><text x="90.1489%" y="447.50"></text></g><g><title>inherit_props (374 samples, 0.02%)</title><rect x="89.9118%" y="453" width="0.0157%" height="15" fill="rgb(217,59,31)" fg:x="2146731" fg:w="374"/><text x="90.1618%" y="463.50"></text></g><g><title>inode_init_owner (710 samples, 0.03%)</title><rect x="89.9275%" y="453" width="0.0297%" height="15" fill="rgb(237,138,41)" fg:x="2147105" fg:w="710"/><text x="90.1775%" y="463.50"></text></g><g><title>_raw_spin_lock (970 samples, 0.04%)</title><rect x="90.3405%" y="437" width="0.0406%" height="15" fill="rgb(227,91,49)" fg:x="2156967" fg:w="970"/><text x="90.5905%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (408 samples, 0.02%)</title><rect x="90.3641%" y="421" width="0.0171%" height="15" fill="rgb(247,21,44)" fg:x="2157529" fg:w="408"/><text x="90.6141%" y="431.50"></text></g><g><title>inode_tree_add (11,112 samples, 0.47%)</title><rect x="89.9608%" y="453" width="0.4654%" height="15" fill="rgb(219,210,51)" fg:x="2147900" fg:w="11112"/><text x="90.2108%" y="463.50"></text></g><g><title>rb_insert_color (1,030 samples, 0.04%)</title><rect x="90.3830%" y="437" width="0.0431%" height="15" fill="rgb(209,140,6)" fg:x="2157982" fg:w="1030"/><text x="90.6330%" y="447.50"></text></g><g><title>_raw_spin_lock (709 samples, 0.03%)</title><rect x="90.4339%" y="421" width="0.0297%" height="15" fill="rgb(221,188,24)" fg:x="2159195" fg:w="709"/><text x="90.6839%" y="431.50"></text></g><g><title>insert_inode_locked4 (2,153 samples, 0.09%)</title><rect x="90.4262%" y="453" width="0.0902%" height="15" fill="rgb(232,154,20)" fg:x="2159012" fg:w="2153"/><text x="90.6762%" y="463.50"></text></g><g><title>inode_insert5 (2,127 samples, 0.09%)</title><rect x="90.4273%" y="437" width="0.0891%" height="15" fill="rgb(244,137,50)" fg:x="2159038" fg:w="2127"/><text x="90.6773%" y="447.50"></text></g><g><title>find_inode (1,261 samples, 0.05%)</title><rect x="90.4635%" y="421" width="0.0528%" height="15" fill="rgb(225,185,43)" fg:x="2159904" fg:w="1261"/><text x="90.7135%" y="431.50"></text></g><g><title>kmem_cache_alloc (678 samples, 0.03%)</title><rect x="90.5164%" y="453" width="0.0284%" height="15" fill="rgb(213,205,38)" fg:x="2161165" fg:w="678"/><text x="90.7664%" y="463.50"></text></g><g><title>kmem_cache_free (681 samples, 0.03%)</title><rect x="90.5448%" y="453" width="0.0285%" height="15" fill="rgb(236,73,12)" fg:x="2161843" fg:w="681"/><text x="90.7948%" y="463.50"></text></g><g><title>memzero_extent_buffer (493 samples, 0.02%)</title><rect x="90.5733%" y="453" width="0.0206%" height="15" fill="rgb(235,219,13)" fg:x="2162524" fg:w="493"/><text x="90.8233%" y="463.50"></text></g><g><title>_raw_spin_lock (371 samples, 0.02%)</title><rect x="90.5969%" y="437" width="0.0155%" height="15" fill="rgb(218,59,36)" fg:x="2163089" fg:w="371"/><text x="90.8469%" y="447.50"></text></g><g><title>btrfs_init_metadata_block_rsv (709 samples, 0.03%)</title><rect x="90.6727%" y="405" width="0.0297%" height="15" fill="rgb(205,110,39)" fg:x="2164897" fg:w="709"/><text x="90.9227%" y="415.50"></text></g><g><title>btrfs_find_space_info (554 samples, 0.02%)</title><rect x="90.6792%" y="389" width="0.0232%" height="15" fill="rgb(218,206,42)" fg:x="2165052" fg:w="554"/><text x="90.9292%" y="399.50"></text></g><g><title>kernel_init_free_pages (431 samples, 0.02%)</title><rect x="90.7757%" y="293" width="0.0181%" height="15" fill="rgb(248,125,24)" fg:x="2167357" fg:w="431"/><text x="91.0257%" y="303.50"></text></g><g><title>clear_page_erms (413 samples, 0.02%)</title><rect x="90.7765%" y="277" width="0.0173%" height="15" fill="rgb(242,28,27)" fg:x="2167375" fg:w="413"/><text x="91.0265%" y="287.50"></text></g><g><title>get_page_from_freelist (590 samples, 0.02%)</title><rect x="90.7701%" y="325" width="0.0247%" height="15" fill="rgb(216,228,15)" fg:x="2167223" fg:w="590"/><text x="91.0201%" y="335.50"></text></g><g><title>prep_new_page (465 samples, 0.02%)</title><rect x="90.7753%" y="309" width="0.0195%" height="15" fill="rgb(235,116,46)" fg:x="2167348" fg:w="465"/><text x="91.0253%" y="319.50"></text></g><g><title>__alloc_pages_nodemask (639 samples, 0.03%)</title><rect x="90.7683%" y="341" width="0.0268%" height="15" fill="rgb(224,18,32)" fg:x="2167180" fg:w="639"/><text x="91.0183%" y="351.50"></text></g><g><title>allocate_slab (1,149 samples, 0.05%)</title><rect x="90.7649%" y="357" width="0.0481%" height="15" fill="rgb(252,5,12)" fg:x="2167098" fg:w="1149"/><text x="91.0149%" y="367.50"></text></g><g><title>setup_object.isra.0 (377 samples, 0.02%)</title><rect x="90.7972%" y="341" width="0.0158%" height="15" fill="rgb(251,36,5)" fg:x="2167870" fg:w="377"/><text x="91.0472%" y="351.50"></text></g><g><title>inode_init_once (314 samples, 0.01%)</title><rect x="90.7998%" y="325" width="0.0132%" height="15" fill="rgb(217,53,14)" fg:x="2167933" fg:w="314"/><text x="91.0498%" y="335.50"></text></g><g><title>___slab_alloc (1,457 samples, 0.06%)</title><rect x="90.7551%" y="373" width="0.0610%" height="15" fill="rgb(215,86,45)" fg:x="2166864" fg:w="1457"/><text x="91.0051%" y="383.50"></text></g><g><title>__slab_alloc (1,485 samples, 0.06%)</title><rect x="90.7539%" y="389" width="0.0622%" height="15" fill="rgb(242,169,11)" fg:x="2166837" fg:w="1485"/><text x="91.0039%" y="399.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,266 samples, 0.05%)</title><rect x="90.8162%" y="389" width="0.0530%" height="15" fill="rgb(211,213,45)" fg:x="2168324" fg:w="1266"/><text x="91.0662%" y="399.50"></text></g><g><title>get_obj_cgroup_from_current (514 samples, 0.02%)</title><rect x="90.8836%" y="373" width="0.0215%" height="15" fill="rgb(205,88,11)" fg:x="2169934" fg:w="514"/><text x="91.1336%" y="383.50"></text></g><g><title>__memcg_kmem_charge (329 samples, 0.01%)</title><rect x="90.9233%" y="357" width="0.0138%" height="15" fill="rgb(252,69,26)" fg:x="2170880" fg:w="329"/><text x="91.1733%" y="367.50"></text></g><g><title>try_charge (267 samples, 0.01%)</title><rect x="90.9259%" y="341" width="0.0112%" height="15" fill="rgb(246,123,37)" fg:x="2170942" fg:w="267"/><text x="91.1759%" y="351.50"></text></g><g><title>obj_cgroup_charge (906 samples, 0.04%)</title><rect x="90.9052%" y="373" width="0.0379%" height="15" fill="rgb(212,205,5)" fg:x="2170448" fg:w="906"/><text x="91.1552%" y="383.50"></text></g><g><title>kmem_cache_alloc (5,343 samples, 0.22%)</title><rect x="90.7197%" y="405" width="0.2238%" height="15" fill="rgb(253,148,0)" fg:x="2166019" fg:w="5343"/><text x="90.9697%" y="415.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,767 samples, 0.07%)</title><rect x="90.8694%" y="389" width="0.0740%" height="15" fill="rgb(239,22,4)" fg:x="2169595" fg:w="1767"/><text x="91.1194%" y="399.50"></text></g><g><title>btrfs_alloc_inode (7,455 samples, 0.31%)</title><rect x="90.6312%" y="421" width="0.3122%" height="15" fill="rgb(226,26,53)" fg:x="2163908" fg:w="7455"/><text x="90.8812%" y="431.50"></text></g><g><title>make_kuid (239 samples, 0.01%)</title><rect x="90.9909%" y="405" width="0.0100%" height="15" fill="rgb(225,229,45)" fg:x="2172494" fg:w="239"/><text x="91.2409%" y="415.50"></text></g><g><title>alloc_inode (9,754 samples, 0.41%)</title><rect x="90.6125%" y="437" width="0.4085%" height="15" fill="rgb(220,60,37)" fg:x="2163460" fg:w="9754"/><text x="90.8625%" y="447.50"></text></g><g><title>inode_init_always (1,851 samples, 0.08%)</title><rect x="90.9435%" y="421" width="0.0775%" height="15" fill="rgb(217,180,35)" fg:x="2171363" fg:w="1851"/><text x="91.1935%" y="431.50"></text></g><g><title>security_inode_alloc (481 samples, 0.02%)</title><rect x="91.0009%" y="405" width="0.0201%" height="15" fill="rgb(229,7,53)" fg:x="2172733" fg:w="481"/><text x="91.2509%" y="415.50"></text></g><g><title>new_inode (10,760 samples, 0.45%)</title><rect x="90.5939%" y="453" width="0.4507%" height="15" fill="rgb(254,137,3)" fg:x="2163017" fg:w="10760"/><text x="90.8439%" y="463.50"></text></g><g><title>inode_sb_list_add (563 samples, 0.02%)</title><rect x="91.0210%" y="437" width="0.0236%" height="15" fill="rgb(215,140,41)" fg:x="2173214" fg:w="563"/><text x="91.2710%" y="447.50"></text></g><g><title>_raw_spin_lock (277 samples, 0.01%)</title><rect x="91.0330%" y="421" width="0.0116%" height="15" fill="rgb(250,80,15)" fg:x="2173500" fg:w="277"/><text x="91.2830%" y="431.50"></text></g><g><title>btrfs_new_inode (151,112 samples, 6.33%)</title><rect x="84.7395%" y="469" width="6.3290%" height="15" fill="rgb(252,191,6)" fg:x="2023237" fg:w="151112"/><text x="84.9895%" y="479.50">btrfs_ne..</text></g><g><title>write_extent_buffer (572 samples, 0.02%)</title><rect x="91.0446%" y="453" width="0.0240%" height="15" fill="rgb(246,217,18)" fg:x="2173777" fg:w="572"/><text x="91.2946%" y="463.50"></text></g><g><title>btrfs_set_64 (514 samples, 0.02%)</title><rect x="91.0774%" y="469" width="0.0215%" height="15" fill="rgb(223,93,7)" fg:x="2174561" fg:w="514"/><text x="91.3274%" y="479.50"></text></g><g><title>btrfs_set_8 (430 samples, 0.02%)</title><rect x="91.0990%" y="469" width="0.0180%" height="15" fill="rgb(225,55,52)" fg:x="2175075" fg:w="430"/><text x="91.3490%" y="479.50"></text></g><g><title>__list_add_valid (425 samples, 0.02%)</title><rect x="91.2424%" y="421" width="0.0178%" height="15" fill="rgb(240,31,24)" fg:x="2178499" fg:w="425"/><text x="91.4924%" y="431.50"></text></g><g><title>_raw_spin_lock (333 samples, 0.01%)</title><rect x="91.2602%" y="421" width="0.0139%" height="15" fill="rgb(205,56,52)" fg:x="2178924" fg:w="333"/><text x="91.5102%" y="431.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,341 samples, 0.10%)</title><rect x="91.1920%" y="437" width="0.0980%" height="15" fill="rgb(246,146,12)" fg:x="2177296" fg:w="2341"/><text x="91.4420%" y="447.50"></text></g><g><title>btrfs_block_rsv_migrate (1,314 samples, 0.06%)</title><rect x="91.2902%" y="437" width="0.0550%" height="15" fill="rgb(239,84,36)" fg:x="2179641" fg:w="1314"/><text x="91.5402%" y="447.50"></text></g><g><title>_raw_spin_lock (1,152 samples, 0.05%)</title><rect x="91.2970%" y="421" width="0.0482%" height="15" fill="rgb(207,41,40)" fg:x="2179803" fg:w="1152"/><text x="91.5470%" y="431.50"></text></g><g><title>__radix_tree_preload (328 samples, 0.01%)</title><rect x="91.3760%" y="421" width="0.0137%" height="15" fill="rgb(241,179,25)" fg:x="2181689" fg:w="328"/><text x="91.6260%" y="431.50"></text></g><g><title>_raw_spin_lock (280 samples, 0.01%)</title><rect x="91.3897%" y="421" width="0.0117%" height="15" fill="rgb(210,0,34)" fg:x="2182017" fg:w="280"/><text x="91.6397%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,553 samples, 0.11%)</title><rect x="91.4104%" y="405" width="0.1069%" height="15" fill="rgb(225,217,29)" fg:x="2182511" fg:w="2553"/><text x="91.6604%" y="415.50"></text></g><g><title>_raw_spin_lock (533 samples, 0.02%)</title><rect x="91.5173%" y="405" width="0.0223%" height="15" fill="rgb(216,191,38)" fg:x="2185064" fg:w="533"/><text x="91.7673%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (319 samples, 0.01%)</title><rect x="91.5263%" y="389" width="0.0134%" height="15" fill="rgb(232,140,52)" fg:x="2185278" fg:w="319"/><text x="91.7763%" y="399.50"></text></g><g><title>btrfs_get_delayed_node (3,302 samples, 0.14%)</title><rect x="91.4016%" y="421" width="0.1383%" height="15" fill="rgb(223,158,51)" fg:x="2182301" fg:w="3302"/><text x="91.6516%" y="431.50"></text></g><g><title>get_page_from_freelist (306 samples, 0.01%)</title><rect x="91.5816%" y="341" width="0.0128%" height="15" fill="rgb(235,29,51)" fg:x="2186598" fg:w="306"/><text x="91.8316%" y="351.50"></text></g><g><title>__alloc_pages_nodemask (358 samples, 0.01%)</title><rect x="91.5796%" y="357" width="0.0150%" height="15" fill="rgb(215,181,18)" fg:x="2186551" fg:w="358"/><text x="91.8296%" y="367.50"></text></g><g><title>allocate_slab (535 samples, 0.02%)</title><rect x="91.5762%" y="373" width="0.0224%" height="15" fill="rgb(227,125,34)" fg:x="2186469" fg:w="535"/><text x="91.8262%" y="383.50"></text></g><g><title>___slab_alloc (822 samples, 0.03%)</title><rect x="91.5656%" y="389" width="0.0344%" height="15" fill="rgb(230,197,49)" fg:x="2186216" fg:w="822"/><text x="91.8156%" y="399.50"></text></g><g><title>__slab_alloc (858 samples, 0.04%)</title><rect x="91.5642%" y="405" width="0.0359%" height="15" fill="rgb(239,141,16)" fg:x="2186182" fg:w="858"/><text x="91.8142%" y="415.50"></text></g><g><title>__schedule (344 samples, 0.01%)</title><rect x="91.6165%" y="373" width="0.0144%" height="15" fill="rgb(225,105,43)" fg:x="2187431" fg:w="344"/><text x="91.8665%" y="383.50"></text></g><g><title>_cond_resched (365 samples, 0.02%)</title><rect x="91.6158%" y="389" width="0.0153%" height="15" fill="rgb(214,131,14)" fg:x="2187416" fg:w="365"/><text x="91.8658%" y="399.50"></text></g><g><title>kmem_cache_alloc (2,190 samples, 0.09%)</title><rect x="91.5399%" y="421" width="0.0917%" height="15" fill="rgb(229,177,11)" fg:x="2185603" fg:w="2190"/><text x="91.7899%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (445 samples, 0.02%)</title><rect x="91.6130%" y="405" width="0.0186%" height="15" fill="rgb(231,180,14)" fg:x="2187348" fg:w="445"/><text x="91.8630%" y="415.50"></text></g><g><title>radix_tree_insert (923 samples, 0.04%)</title><rect x="91.6316%" y="421" width="0.0387%" height="15" fill="rgb(232,88,2)" fg:x="2187793" fg:w="923"/><text x="91.8816%" y="431.50"></text></g><g><title>btrfs_get_or_create_delayed_node (7,853 samples, 0.33%)</title><rect x="91.3452%" y="437" width="0.3289%" height="15" fill="rgb(205,220,8)" fg:x="2180955" fg:w="7853"/><text x="91.5952%" y="447.50"></text></g><g><title>inode_get_bytes (245 samples, 0.01%)</title><rect x="91.6842%" y="421" width="0.0103%" height="15" fill="rgb(225,23,53)" fg:x="2189049" fg:w="245"/><text x="91.9342%" y="431.50"></text></g><g><title>fill_stack_inode_item (641 samples, 0.03%)</title><rect x="91.6741%" y="437" width="0.0268%" height="15" fill="rgb(213,62,29)" fg:x="2188808" fg:w="641"/><text x="91.9241%" y="447.50"></text></g><g><title>mutex_lock (481 samples, 0.02%)</title><rect x="91.7010%" y="437" width="0.0201%" height="15" fill="rgb(227,75,7)" fg:x="2189449" fg:w="481"/><text x="91.9510%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (13,643 samples, 0.57%)</title><rect x="91.1559%" y="453" width="0.5714%" height="15" fill="rgb(207,105,14)" fg:x="2176435" fg:w="13643"/><text x="91.4059%" y="463.50"></text></g><g><title>_raw_spin_lock (549 samples, 0.02%)</title><rect x="91.7305%" y="437" width="0.0230%" height="15" fill="rgb(245,62,29)" fg:x="2190154" fg:w="549"/><text x="91.9805%" y="447.50"></text></g><g><title>btrfs_update_inode (15,517 samples, 0.65%)</title><rect x="91.1215%" y="469" width="0.6499%" height="15" fill="rgb(236,202,4)" fg:x="2175613" fg:w="15517"/><text x="91.3715%" y="479.50"></text></g><g><title>btrfs_update_root_times (1,052 samples, 0.04%)</title><rect x="91.7273%" y="453" width="0.0441%" height="15" fill="rgb(250,67,1)" fg:x="2190078" fg:w="1052"/><text x="91.9773%" y="463.50"></text></g><g><title>ktime_get_real_ts64 (427 samples, 0.02%)</title><rect x="91.7535%" y="437" width="0.0179%" height="15" fill="rgb(253,115,44)" fg:x="2190703" fg:w="427"/><text x="92.0035%" y="447.50"></text></g><g><title>__d_instantiate (932 samples, 0.04%)</title><rect x="91.7919%" y="453" width="0.0390%" height="15" fill="rgb(251,139,18)" fg:x="2191620" fg:w="932"/><text x="92.0419%" y="463.50"></text></g><g><title>d_flags_for_inode (426 samples, 0.02%)</title><rect x="91.8131%" y="437" width="0.0178%" height="15" fill="rgb(218,22,32)" fg:x="2192126" fg:w="426"/><text x="92.0631%" y="447.50"></text></g><g><title>security_d_instantiate (379 samples, 0.02%)</title><rect x="91.8402%" y="453" width="0.0159%" height="15" fill="rgb(243,53,5)" fg:x="2192774" fg:w="379"/><text x="92.0902%" y="463.50"></text></g><g><title>d_instantiate_new (2,021 samples, 0.08%)</title><rect x="91.7794%" y="469" width="0.0846%" height="15" fill="rgb(227,56,16)" fg:x="2191321" fg:w="2021"/><text x="92.0294%" y="479.50"></text></g><g><title>__schedule (306 samples, 0.01%)</title><rect x="91.9147%" y="421" width="0.0128%" height="15" fill="rgb(245,53,0)" fg:x="2194552" fg:w="306"/><text x="92.1647%" y="431.50"></text></g><g><title>_cond_resched (426 samples, 0.02%)</title><rect x="91.9117%" y="437" width="0.0178%" height="15" fill="rgb(216,170,35)" fg:x="2194479" fg:w="426"/><text x="92.1617%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,325 samples, 0.06%)</title><rect x="91.8745%" y="469" width="0.0555%" height="15" fill="rgb(211,200,8)" fg:x="2193591" fg:w="1325"/><text x="92.1245%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (560 samples, 0.02%)</title><rect x="91.9065%" y="453" width="0.0235%" height="15" fill="rgb(228,204,44)" fg:x="2194356" fg:w="560"/><text x="92.1565%" y="463.50"></text></g><g><title>kmem_cache_free (662 samples, 0.03%)</title><rect x="91.9300%" y="469" width="0.0277%" height="15" fill="rgb(214,121,17)" fg:x="2194916" fg:w="662"/><text x="92.1800%" y="479.50"></text></g><g><title>security_inode_init_security (561 samples, 0.02%)</title><rect x="91.9580%" y="469" width="0.0235%" height="15" fill="rgb(233,64,38)" fg:x="2195585" fg:w="561"/><text x="92.2080%" y="479.50"></text></g><g><title>_raw_spin_lock (695 samples, 0.03%)</title><rect x="92.0788%" y="437" width="0.0291%" height="15" fill="rgb(253,54,19)" fg:x="2198470" fg:w="695"/><text x="92.3288%" y="447.50"></text></g><g><title>_raw_spin_lock (1,280 samples, 0.05%)</title><rect x="92.1547%" y="405" width="0.0536%" height="15" fill="rgb(253,94,18)" fg:x="2200283" fg:w="1280"/><text x="92.4047%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (536 samples, 0.02%)</title><rect x="92.1859%" y="389" width="0.0224%" height="15" fill="rgb(227,57,52)" fg:x="2201027" fg:w="536"/><text x="92.4359%" y="399.50"></text></g><g><title>btrfs_get_alloc_profile (256 samples, 0.01%)</title><rect x="92.2486%" y="389" width="0.0107%" height="15" fill="rgb(230,228,50)" fg:x="2202524" fg:w="256"/><text x="92.4986%" y="399.50"></text></g><g><title>_raw_spin_lock (354 samples, 0.01%)</title><rect x="92.2806%" y="373" width="0.0148%" height="15" fill="rgb(217,205,27)" fg:x="2203289" fg:w="354"/><text x="92.5306%" y="383.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (2,083 samples, 0.09%)</title><rect x="92.2084%" y="405" width="0.0872%" height="15" fill="rgb(252,71,50)" fg:x="2201565" fg:w="2083"/><text x="92.4584%" y="415.50"></text></g><g><title>btrfs_reduce_alloc_profile (868 samples, 0.04%)</title><rect x="92.2593%" y="389" width="0.0364%" height="15" fill="rgb(209,86,4)" fg:x="2202780" fg:w="868"/><text x="92.5093%" y="399.50"></text></g><g><title>btrfs_get_alloc_profile (285 samples, 0.01%)</title><rect x="92.3095%" y="389" width="0.0119%" height="15" fill="rgb(229,94,0)" fg:x="2203978" fg:w="285"/><text x="92.5595%" y="399.50"></text></g><g><title>_raw_spin_lock (349 samples, 0.01%)</title><rect x="92.3322%" y="373" width="0.0146%" height="15" fill="rgb(252,223,21)" fg:x="2204520" fg:w="349"/><text x="92.5822%" y="383.50"></text></g><g><title>__reserve_bytes (5,236 samples, 0.22%)</title><rect x="92.1276%" y="421" width="0.2193%" height="15" fill="rgb(230,210,4)" fg:x="2199634" fg:w="5236"/><text x="92.3776%" y="431.50"></text></g><g><title>calc_available_free_space.isra.0 (1,222 samples, 0.05%)</title><rect x="92.2957%" y="405" width="0.0512%" height="15" fill="rgb(240,149,38)" fg:x="2203648" fg:w="1222"/><text x="92.5457%" y="415.50"></text></g><g><title>btrfs_reduce_alloc_profile (607 samples, 0.03%)</title><rect x="92.3214%" y="389" width="0.0254%" height="15" fill="rgb(254,105,20)" fg:x="2204263" fg:w="607"/><text x="92.5714%" y="399.50"></text></g><g><title>btrfs_block_rsv_add (6,533 samples, 0.27%)</title><rect x="92.0735%" y="453" width="0.2736%" height="15" fill="rgb(253,87,46)" fg:x="2198343" fg:w="6533"/><text x="92.3235%" y="463.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,710 samples, 0.24%)</title><rect x="92.1080%" y="437" width="0.2392%" height="15" fill="rgb(253,116,33)" fg:x="2199166" fg:w="5710"/><text x="92.3580%" y="447.50"></text></g><g><title>_raw_spin_lock (461 samples, 0.02%)</title><rect x="92.3721%" y="437" width="0.0193%" height="15" fill="rgb(229,198,5)" fg:x="2205473" fg:w="461"/><text x="92.6221%" y="447.50"></text></g><g><title>join_transaction (998 samples, 0.04%)</title><rect x="92.3497%" y="453" width="0.0418%" height="15" fill="rgb(242,38,37)" fg:x="2204938" fg:w="998"/><text x="92.5997%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,051 samples, 0.04%)</title><rect x="92.3915%" y="453" width="0.0440%" height="15" fill="rgb(242,69,53)" fg:x="2205936" fg:w="1051"/><text x="92.6415%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (293 samples, 0.01%)</title><rect x="92.4233%" y="437" width="0.0123%" height="15" fill="rgb(249,80,16)" fg:x="2206694" fg:w="293"/><text x="92.6733%" y="447.50"></text></g><g><title>_raw_spin_lock (677 samples, 0.03%)</title><rect x="92.4470%" y="437" width="0.0284%" height="15" fill="rgb(206,128,11)" fg:x="2207261" fg:w="677"/><text x="92.6970%" y="447.50"></text></g><g><title>start_transaction (11,795 samples, 0.49%)</title><rect x="91.9815%" y="469" width="0.4940%" height="15" fill="rgb(212,35,20)" fg:x="2196146" fg:w="11795"/><text x="92.2315%" y="479.50"></text></g><g><title>wait_current_trans (954 samples, 0.04%)</title><rect x="92.4355%" y="453" width="0.0400%" height="15" fill="rgb(236,79,13)" fg:x="2206987" fg:w="954"/><text x="92.6855%" y="463.50"></text></g><g><title>strlen (3,245 samples, 0.14%)</title><rect x="92.4755%" y="469" width="0.1359%" height="15" fill="rgb(233,123,3)" fg:x="2207941" fg:w="3245"/><text x="92.7255%" y="479.50"></text></g><g><title>btrfs_symlink (471,450 samples, 19.75%)</title><rect x="72.8970%" y="485" width="19.7458%" height="15" fill="rgb(214,93,52)" fg:x="1740485" fg:w="471450"/><text x="73.1470%" y="495.50">btrfs_symlink</text></g><g><title>write_extent_buffer (749 samples, 0.03%)</title><rect x="92.6114%" y="469" width="0.0314%" height="15" fill="rgb(251,37,40)" fg:x="2211186" fg:w="749"/><text x="92.8614%" y="479.50"></text></g><g><title>fsnotify (576 samples, 0.02%)</title><rect x="92.6440%" y="485" width="0.0241%" height="15" fill="rgb(227,80,54)" fg:x="2211965" fg:w="576"/><text x="92.8940%" y="495.50"></text></g><g><title>btrfs_permission (404 samples, 0.02%)</title><rect x="92.6792%" y="469" width="0.0169%" height="15" fill="rgb(254,48,11)" fg:x="2212805" fg:w="404"/><text x="92.9292%" y="479.50"></text></g><g><title>inode_permission.part.0 (719 samples, 0.03%)</title><rect x="92.6681%" y="485" width="0.0301%" height="15" fill="rgb(235,193,26)" fg:x="2212541" fg:w="719"/><text x="92.9181%" y="495.50"></text></g><g><title>do_symlinkat (593,388 samples, 24.85%)</title><rect x="67.8607%" y="517" width="24.8529%" height="15" fill="rgb(229,99,21)" fg:x="1620239" fg:w="593388"/><text x="68.1107%" y="527.50">do_symlinkat</text></g><g><title>vfs_symlink (473,866 samples, 19.85%)</title><rect x="72.8666%" y="501" width="19.8470%" height="15" fill="rgb(211,140,41)" fg:x="1739761" fg:w="473866"/><text x="73.1166%" y="511.50">vfs_symlink</text></g><g><title>do_syscall_64 (594,357 samples, 24.89%)</title><rect x="67.8347%" y="533" width="24.8935%" height="15" fill="rgb(240,227,30)" fg:x="1619619" fg:w="594357"/><text x="68.0847%" y="543.50">do_syscall_64</text></g><g><title>syscall_enter_from_user_mode (349 samples, 0.01%)</title><rect x="92.7136%" y="517" width="0.0146%" height="15" fill="rgb(215,224,45)" fg:x="2213627" fg:w="349"/><text x="92.9636%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (596,239 samples, 24.97%)</title><rect x="67.8121%" y="549" width="24.9724%" height="15" fill="rgb(206,123,31)" fg:x="1619078" fg:w="596239"/><text x="68.0621%" y="559.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (1,341 samples, 0.06%)</title><rect x="92.7283%" y="533" width="0.0562%" height="15" fill="rgb(210,138,16)" fg:x="2213976" fg:w="1341"/><text x="92.9783%" y="543.50"></text></g><g><title>exit_to_user_mode_prepare (1,209 samples, 0.05%)</title><rect x="92.7338%" y="517" width="0.0506%" height="15" fill="rgb(228,57,28)" fg:x="2214108" fg:w="1209"/><text x="92.9838%" y="527.50"></text></g><g><title>switch_fpu_return (811 samples, 0.03%)</title><rect x="92.7504%" y="501" width="0.0340%" height="15" fill="rgb(242,170,10)" fg:x="2214506" fg:w="811"/><text x="93.0004%" y="511.50"></text></g><g><title>copy_kernel_to_fpregs (290 samples, 0.01%)</title><rect x="92.7723%" y="485" width="0.0121%" height="15" fill="rgb(228,214,39)" fg:x="2215027" fg:w="290"/><text x="93.0223%" y="495.50"></text></g><g><title>syscall_return_via_sysret (419 samples, 0.02%)</title><rect x="92.7920%" y="549" width="0.0175%" height="15" fill="rgb(218,179,33)" fg:x="2215498" fg:w="419"/><text x="93.0420%" y="559.50"></text></g><g><title>__symlink (598,537 samples, 25.07%)</title><rect x="67.7415%" y="565" width="25.0686%" height="15" fill="rgb(235,193,39)" fg:x="1617394" fg:w="598537"/><text x="67.9915%" y="575.50">__symlink</text></g><g><title>_int_free (751 samples, 0.03%)</title><rect x="92.8101%" y="565" width="0.0315%" height="15" fill="rgb(219,221,36)" fg:x="2215931" fg:w="751"/><text x="93.0601%" y="575.50"></text></g><g><title>free@plt (508 samples, 0.02%)</title><rect x="92.8436%" y="565" width="0.0213%" height="15" fill="rgb(248,218,19)" fg:x="2216731" fg:w="508"/><text x="93.0936%" y="575.50"></text></g><g><title>jni_ExceptionOccurred (431 samples, 0.02%)</title><rect x="92.8650%" y="565" width="0.0181%" height="15" fill="rgb(205,50,9)" fg:x="2217240" fg:w="431"/><text x="93.1150%" y="575.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (538 samples, 0.02%)</title><rect x="92.9071%" y="549" width="0.0225%" height="15" fill="rgb(238,81,28)" fg:x="2218247" fg:w="538"/><text x="93.1571%" y="559.50"></text></g><g><title>ThreadStateTransition::transition_from_native (426 samples, 0.02%)</title><rect x="92.9297%" y="549" width="0.0178%" height="15" fill="rgb(235,110,19)" fg:x="2218785" fg:w="426"/><text x="93.1797%" y="559.50"></text></g><g><title>[libc-2.31.so] (511 samples, 0.02%)</title><rect x="92.9475%" y="549" width="0.0214%" height="15" fill="rgb(214,7,14)" fg:x="2219211" fg:w="511"/><text x="93.1975%" y="559.50"></text></g><g><title>check_bounds (878 samples, 0.04%)</title><rect x="92.9690%" y="549" width="0.0368%" height="15" fill="rgb(211,77,3)" fg:x="2219723" fg:w="878"/><text x="93.2190%" y="559.50"></text></g><g><title>jni_GetByteArrayRegion (3,365 samples, 0.14%)</title><rect x="92.8830%" y="565" width="0.1409%" height="15" fill="rgb(229,5,9)" fg:x="2217671" fg:w="3365"/><text x="93.1330%" y="575.50"></text></g><g><title>memmove@plt (435 samples, 0.02%)</title><rect x="93.0057%" y="549" width="0.0182%" height="15" fill="rgb(225,90,11)" fg:x="2220601" fg:w="435"/><text x="93.2557%" y="559.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (956 samples, 0.04%)</title><rect x="93.0572%" y="533" width="0.0400%" height="15" fill="rgb(242,56,8)" fg:x="2221831" fg:w="956"/><text x="93.3072%" y="543.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (852 samples, 0.04%)</title><rect x="93.0616%" y="517" width="0.0357%" height="15" fill="rgb(249,212,39)" fg:x="2221935" fg:w="852"/><text x="93.3116%" y="527.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<802934ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 802934ul>::oop_access_barrier (1,137 samples, 0.05%)</title><rect x="93.0497%" y="549" width="0.0476%" height="15" fill="rgb(236,90,9)" fg:x="2221652" fg:w="1137"/><text x="93.2997%" y="559.50"></text></g><g><title>HandleMark::pop_and_restore (668 samples, 0.03%)</title><rect x="93.0974%" y="549" width="0.0280%" height="15" fill="rgb(206,88,35)" fg:x="2222789" fg:w="668"/><text x="93.3474%" y="559.50"></text></g><g><title>JNIHandles::make_local (1,574 samples, 0.07%)</title><rect x="93.1253%" y="549" width="0.0659%" height="15" fill="rgb(205,126,30)" fg:x="2223457" fg:w="1574"/><text x="93.3753%" y="559.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (445 samples, 0.02%)</title><rect x="93.1917%" y="549" width="0.0186%" height="15" fill="rgb(230,176,12)" fg:x="2225041" fg:w="445"/><text x="93.4417%" y="559.50"></text></g><g><title>ThreadStateTransition::transition_from_native (522 samples, 0.02%)</title><rect x="93.2103%" y="549" width="0.0219%" height="15" fill="rgb(243,19,9)" fg:x="2225486" fg:w="522"/><text x="93.4603%" y="559.50"></text></g><g><title>jni_GetObjectField (4,975 samples, 0.21%)</title><rect x="93.0241%" y="565" width="0.2084%" height="15" fill="rgb(245,171,17)" fg:x="2221040" fg:w="4975"/><text x="93.2741%" y="575.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (423 samples, 0.02%)</title><rect x="93.2850%" y="549" width="0.0177%" height="15" fill="rgb(227,52,21)" fg:x="2227270" fg:w="423"/><text x="93.5350%" y="559.50"></text></g><g><title>ThreadStateTransition::transition_from_native (800 samples, 0.03%)</title><rect x="93.3028%" y="549" width="0.0335%" height="15" fill="rgb(238,69,14)" fg:x="2227693" fg:w="800"/><text x="93.5528%" y="559.50"></text></g><g><title>jni_GetStringLength (2,481 samples, 0.10%)</title><rect x="93.2325%" y="565" width="0.1039%" height="15" fill="rgb(241,156,39)" fg:x="2226015" fg:w="2481"/><text x="93.4825%" y="575.50"></text></g><g><title>operator delete@plt (598 samples, 0.03%)</title><rect x="93.3529%" y="565" width="0.0250%" height="15" fill="rgb(212,227,28)" fg:x="2228890" fg:w="598"/><text x="93.6029%" y="575.50"></text></g><g><title>__GI___libc_malloc (795 samples, 0.03%)</title><rect x="93.3883%" y="549" width="0.0333%" height="15" fill="rgb(209,118,27)" fg:x="2229736" fg:w="795"/><text x="93.6383%" y="559.50"></text></g><g><title>tcache_get (284 samples, 0.01%)</title><rect x="93.4097%" y="533" width="0.0119%" height="15" fill="rgb(226,102,5)" fg:x="2230247" fg:w="284"/><text x="93.6597%" y="543.50"></text></g><g><title>operator new (971 samples, 0.04%)</title><rect x="93.3878%" y="565" width="0.0407%" height="15" fill="rgb(223,34,3)" fg:x="2229724" fg:w="971"/><text x="93.6378%" y="575.50"></text></g><g><title>operator new@plt (500 samples, 0.02%)</title><rect x="93.4285%" y="565" width="0.0209%" height="15" fill="rgb(221,81,38)" fg:x="2230695" fg:w="500"/><text x="93.6785%" y="575.50"></text></g><g><title>operator new[] (246 samples, 0.01%)</title><rect x="93.4494%" y="565" width="0.0103%" height="15" fill="rgb(236,219,28)" fg:x="2231195" fg:w="246"/><text x="93.6994%" y="575.50"></text></g><g><title>_int_malloc (402 samples, 0.02%)</title><rect x="93.4842%" y="517" width="0.0168%" height="15" fill="rgb(213,200,14)" fg:x="2232025" fg:w="402"/><text x="93.7342%" y="527.50"></text></g><g><title>__GI___libc_malloc (883 samples, 0.04%)</title><rect x="93.4673%" y="533" width="0.0370%" height="15" fill="rgb(240,33,19)" fg:x="2231621" fg:w="883"/><text x="93.7173%" y="543.50"></text></g><g><title>operator new (918 samples, 0.04%)</title><rect x="93.4670%" y="549" width="0.0384%" height="15" fill="rgb(233,113,27)" fg:x="2231614" fg:w="918"/><text x="93.7170%" y="559.50"></text></g><g><title>[libunix_jni.so] (2,089,449 samples, 87.51%)</title><rect x="5.9953%" y="581" width="87.5127%" height="15" fill="rgb(220,221,18)" fg:x="143143" fg:w="2089449"/><text x="6.2453%" y="591.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (1,048 samples, 0.04%)</title><rect x="93.4641%" y="565" width="0.0439%" height="15" fill="rgb(238,92,8)" fg:x="2231544" fg:w="1048"/><text x="93.7141%" y="575.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (291 samples, 0.01%)</title><rect x="99.5557%" y="549" width="0.0122%" height="15" fill="rgb(222,164,16)" fg:x="2376987" fg:w="291"/><text x="99.8057%" y="559.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (407 samples, 0.02%)</title><rect x="99.5537%" y="565" width="0.0170%" height="15" fill="rgb(241,119,3)" fg:x="2376941" fg:w="407"/><text x="99.8037%" y="575.50"></text></g><g><title>SymbolTable::lookup_only (265 samples, 0.01%)</title><rect x="99.5969%" y="421" width="0.0111%" height="15" fill="rgb(241,44,8)" fg:x="2377971" fg:w="265"/><text x="99.8469%" y="431.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (308 samples, 0.01%)</title><rect x="99.5951%" y="437" width="0.0129%" height="15" fill="rgb(230,36,40)" fg:x="2377929" fg:w="308"/><text x="99.8451%" y="447.50"></text></g><g><title>ClassFileParser::parse_constant_pool (316 samples, 0.01%)</title><rect x="99.5949%" y="453" width="0.0132%" height="15" fill="rgb(243,16,36)" fg:x="2377924" fg:w="316"/><text x="99.8449%" y="463.50"></text></g><g><title>ClassFileParser::ClassFileParser (429 samples, 0.02%)</title><rect x="99.5947%" y="485" width="0.0180%" height="15" fill="rgb(231,4,26)" fg:x="2377918" fg:w="429"/><text x="99.8447%" y="495.50"></text></g><g><title>ClassFileParser::parse_stream (426 samples, 0.02%)</title><rect x="99.5948%" y="469" width="0.0178%" height="15" fill="rgb(240,9,31)" fg:x="2377921" fg:w="426"/><text x="99.8448%" y="479.50"></text></g><g><title>KlassFactory::create_from_stream (526 samples, 0.02%)</title><rect x="99.5947%" y="501" width="0.0220%" height="15" fill="rgb(207,173,15)" fg:x="2377918" fg:w="526"/><text x="99.8447%" y="511.50"></text></g><g><title>JVM_DefineClassWithSource (551 samples, 0.02%)</title><rect x="99.5943%" y="549" width="0.0231%" height="15" fill="rgb(224,192,53)" fg:x="2377909" fg:w="551"/><text x="99.8443%" y="559.50"></text></g><g><title>jvm_define_class_common (551 samples, 0.02%)</title><rect x="99.5943%" y="533" width="0.0231%" height="15" fill="rgb(223,67,28)" fg:x="2377909" fg:w="551"/><text x="99.8443%" y="543.50"></text></g><g><title>SystemDictionary::resolve_from_stream (542 samples, 0.02%)</title><rect x="99.5947%" y="517" width="0.0227%" height="15" fill="rgb(211,20,47)" fg:x="2377918" fg:w="542"/><text x="99.8447%" y="527.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (567 samples, 0.02%)</title><rect x="99.5942%" y="565" width="0.0237%" height="15" fill="rgb(240,228,2)" fg:x="2377908" fg:w="567"/><text x="99.8442%" y="575.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (281 samples, 0.01%)</title><rect x="99.6231%" y="565" width="0.0118%" height="15" fill="rgb(248,151,12)" fg:x="2378598" fg:w="281"/><text x="99.8731%" y="575.50"></text></g><g><title>vforkChild (260 samples, 0.01%)</title><rect x="99.6240%" y="549" width="0.0109%" height="15" fill="rgb(244,8,39)" fg:x="2378619" fg:w="260"/><text x="99.8740%" y="559.50"></text></g><g><title>__x64_sys_futex (267 samples, 0.01%)</title><rect x="99.6922%" y="485" width="0.0112%" height="15" fill="rgb(222,26,8)" fg:x="2380246" fg:w="267"/><text x="99.9422%" y="495.50"></text></g><g><title>do_futex (265 samples, 0.01%)</title><rect x="99.6922%" y="469" width="0.0111%" height="15" fill="rgb(213,106,44)" fg:x="2380248" fg:w="265"/><text x="99.9422%" y="479.50"></text></g><g><title>futex_wake (256 samples, 0.01%)</title><rect x="99.6926%" y="453" width="0.0107%" height="15" fill="rgb(214,129,20)" fg:x="2380257" fg:w="256"/><text x="99.9426%" y="463.50"></text></g><g><title>do_syscall_64 (269 samples, 0.01%)</title><rect x="99.6921%" y="501" width="0.0113%" height="15" fill="rgb(212,32,13)" fg:x="2380245" fg:w="269"/><text x="99.9421%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (287 samples, 0.01%)</title><rect x="99.6921%" y="517" width="0.0120%" height="15" fill="rgb(208,168,33)" fg:x="2380245" fg:w="287"/><text x="99.9421%" y="527.50"></text></g><g><title>__pthread_cond_signal (312 samples, 0.01%)</title><rect x="99.6912%" y="549" width="0.0131%" height="15" fill="rgb(231,207,8)" fg:x="2380223" fg:w="312"/><text x="99.9412%" y="559.50"></text></g><g><title>futex_wake (301 samples, 0.01%)</title><rect x="99.6917%" y="533" width="0.0126%" height="15" fill="rgb(235,219,23)" fg:x="2380234" fg:w="301"/><text x="99.9417%" y="543.50"></text></g><g><title>Unsafe_Unpark (378 samples, 0.02%)</title><rect x="99.6888%" y="565" width="0.0158%" height="15" fill="rgb(226,216,26)" fg:x="2380166" fg:w="378"/><text x="99.9388%" y="575.50"></text></g><g><title>do_shrink_slab (256 samples, 0.01%)</title><rect x="99.7299%" y="389" width="0.0107%" height="15" fill="rgb(239,137,16)" fg:x="2381148" fg:w="256"/><text x="99.9799%" y="399.50"></text></g><g><title>do_try_to_free_pages (429 samples, 0.02%)</title><rect x="99.7228%" y="437" width="0.0180%" height="15" fill="rgb(207,12,36)" fg:x="2380977" fg:w="429"/><text x="99.9728%" y="447.50"></text></g><g><title>shrink_node (428 samples, 0.02%)</title><rect x="99.7228%" y="421" width="0.0179%" height="15" fill="rgb(210,214,24)" fg:x="2380978" fg:w="428"/><text x="99.9728%" y="431.50"></text></g><g><title>shrink_slab (259 samples, 0.01%)</title><rect x="99.7299%" y="405" width="0.0108%" height="15" fill="rgb(206,56,30)" fg:x="2381147" fg:w="259"/><text x="99.9799%" y="415.50"></text></g><g><title>try_to_free_pages (430 samples, 0.02%)</title><rect x="99.7228%" y="453" width="0.0180%" height="15" fill="rgb(228,143,26)" fg:x="2380977" fg:w="430"/><text x="99.9728%" y="463.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (443 samples, 0.02%)</title><rect x="99.7223%" y="469" width="0.0186%" height="15" fill="rgb(216,218,46)" fg:x="2380966" fg:w="443"/><text x="99.9723%" y="479.50"></text></g><g><title>alloc_pages_vma (573 samples, 0.02%)</title><rect x="99.7216%" y="501" width="0.0240%" height="15" fill="rgb(206,6,19)" fg:x="2380949" fg:w="573"/><text x="99.9716%" y="511.50"></text></g><g><title>__alloc_pages_nodemask (569 samples, 0.02%)</title><rect x="99.7218%" y="485" width="0.0238%" height="15" fill="rgb(239,177,51)" fg:x="2380953" fg:w="569"/><text x="99.9718%" y="495.50"></text></g><g><title>handle_mm_fault (755 samples, 0.03%)</title><rect x="99.7189%" y="517" width="0.0316%" height="15" fill="rgb(216,55,25)" fg:x="2380884" fg:w="755"/><text x="99.9689%" y="527.50"></text></g><g><title>exc_page_fault (783 samples, 0.03%)</title><rect x="99.7178%" y="549" width="0.0328%" height="15" fill="rgb(231,163,29)" fg:x="2380858" fg:w="783"/><text x="99.9678%" y="559.50"></text></g><g><title>do_user_addr_fault (778 samples, 0.03%)</title><rect x="99.7180%" y="533" width="0.0326%" height="15" fill="rgb(232,149,50)" fg:x="2380863" fg:w="778"/><text x="99.9680%" y="543.50"></text></g><g><title>asm_exc_page_fault (794 samples, 0.03%)</title><rect x="99.7177%" y="565" width="0.0333%" height="15" fill="rgb(223,142,48)" fg:x="2380855" fg:w="794"/><text x="99.9677%" y="575.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (336 samples, 0.01%)</title><rect x="99.7509%" y="565" width="0.0141%" height="15" fill="rgb(245,83,23)" fg:x="2381649" fg:w="336"/><text x="100.0009%" y="575.50"></text></g><g><title>sysvec_apic_timer_interrupt (305 samples, 0.01%)</title><rect x="99.7522%" y="549" width="0.0128%" height="15" fill="rgb(224,63,2)" fg:x="2381680" fg:w="305"/><text x="100.0022%" y="559.50"></text></g><g><title>do_filp_open (275 samples, 0.01%)</title><rect x="99.7897%" y="469" width="0.0115%" height="15" fill="rgb(218,65,53)" fg:x="2382576" fg:w="275"/><text x="100.0397%" y="479.50"></text></g><g><title>path_openat (267 samples, 0.01%)</title><rect x="99.7901%" y="453" width="0.0112%" height="15" fill="rgb(221,84,29)" fg:x="2382584" fg:w="267"/><text x="100.0401%" y="463.50"></text></g><g><title>__x64_sys_openat (340 samples, 0.01%)</title><rect x="99.7887%" y="501" width="0.0142%" height="15" fill="rgb(234,0,32)" fg:x="2382551" fg:w="340"/><text x="100.0387%" y="511.50"></text></g><g><title>do_sys_openat2 (338 samples, 0.01%)</title><rect x="99.7888%" y="485" width="0.0142%" height="15" fill="rgb(206,20,16)" fg:x="2382553" fg:w="338"/><text x="100.0388%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (342 samples, 0.01%)</title><rect x="99.7887%" y="533" width="0.0143%" height="15" fill="rgb(244,172,18)" fg:x="2382550" fg:w="342"/><text x="100.0387%" y="543.50"></text></g><g><title>do_syscall_64 (341 samples, 0.01%)</title><rect x="99.7887%" y="517" width="0.0143%" height="15" fill="rgb(254,133,1)" fg:x="2382551" fg:w="341"/><text x="100.0387%" y="527.50"></text></g><g><title>__libc_open64 (355 samples, 0.01%)</title><rect x="99.7882%" y="549" width="0.0149%" height="15" fill="rgb(222,206,41)" fg:x="2382539" fg:w="355"/><text x="100.0382%" y="559.50"></text></g><g><title>fileOpen (536 samples, 0.02%)</title><rect x="99.7818%" y="565" width="0.0224%" height="15" fill="rgb(212,3,42)" fg:x="2382386" fg:w="536"/><text x="100.0318%" y="575.50"></text></g><g><title>[perf-31879.map] (150,554 samples, 6.31%)</title><rect x="93.5079%" y="581" width="6.3057%" height="15" fill="rgb(241,11,4)" fg:x="2232592" fg:w="150554"/><text x="93.7579%" y="591.50">[perf-31..</text></g><g><title>SharedRuntime::resolve_sub_helper (277 samples, 0.01%)</title><rect x="99.8194%" y="565" width="0.0116%" height="15" fill="rgb(205,19,26)" fg:x="2383283" fg:w="277"/><text x="100.0694%" y="575.50"></text></g><g><title>copy_user_enhanced_fast_string (726 samples, 0.03%)</title><rect x="99.8639%" y="389" width="0.0304%" height="15" fill="rgb(210,179,32)" fg:x="2384346" fg:w="726"/><text x="100.1139%" y="399.50"></text></g><g><title>copy_page_to_iter (782 samples, 0.03%)</title><rect x="99.8617%" y="405" width="0.0328%" height="15" fill="rgb(227,116,49)" fg:x="2384293" fg:w="782"/><text x="100.1117%" y="415.50"></text></g><g><title>generic_file_buffered_read (1,114 samples, 0.05%)</title><rect x="99.8583%" y="421" width="0.0467%" height="15" fill="rgb(211,146,6)" fg:x="2384213" fg:w="1114"/><text x="100.1083%" y="431.50"></text></g><g><title>new_sync_read (1,136 samples, 0.05%)</title><rect x="99.8576%" y="437" width="0.0476%" height="15" fill="rgb(219,44,39)" fg:x="2384195" fg:w="1136"/><text x="100.1076%" y="447.50"></text></g><g><title>ksys_read (1,323 samples, 0.06%)</title><rect x="99.8517%" y="469" width="0.0554%" height="15" fill="rgb(234,128,11)" fg:x="2384056" fg:w="1323"/><text x="100.1017%" y="479.50"></text></g><g><title>vfs_read (1,240 samples, 0.05%)</title><rect x="99.8552%" y="453" width="0.0519%" height="15" fill="rgb(220,183,53)" fg:x="2384139" fg:w="1240"/><text x="100.1052%" y="463.50"></text></g><g><title>do_syscall_64 (1,348 samples, 0.06%)</title><rect x="99.8514%" y="485" width="0.0565%" height="15" fill="rgb(213,219,32)" fg:x="2384047" fg:w="1348"/><text x="100.1014%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,370 samples, 0.06%)</title><rect x="99.8511%" y="501" width="0.0574%" height="15" fill="rgb(232,156,16)" fg:x="2384042" fg:w="1370"/><text x="100.1011%" y="511.50"></text></g><g><title>__libc_read (1,459 samples, 0.06%)</title><rect x="99.8478%" y="533" width="0.0611%" height="15" fill="rgb(246,135,34)" fg:x="2383962" fg:w="1459"/><text x="100.0978%" y="543.50"></text></g><g><title>__libc_read (1,458 samples, 0.06%)</title><rect x="99.8478%" y="517" width="0.0611%" height="15" fill="rgb(241,99,0)" fg:x="2383963" fg:w="1458"/><text x="100.0978%" y="527.50"></text></g><g><title>handleRead (1,472 samples, 0.06%)</title><rect x="99.8477%" y="549" width="0.0617%" height="15" fill="rgb(222,103,45)" fg:x="2383960" fg:w="1472"/><text x="100.0977%" y="559.50"></text></g><g><title>readBytes (2,054 samples, 0.09%)</title><rect x="99.8462%" y="565" width="0.0860%" height="15" fill="rgb(212,57,4)" fg:x="2383923" fg:w="2054"/><text x="100.0962%" y="575.50"></text></g><g><title>jni_SetByteArrayRegion (308 samples, 0.01%)</title><rect x="99.9193%" y="549" width="0.0129%" height="15" fill="rgb(215,68,47)" fg:x="2385669" fg:w="308"/><text x="100.1693%" y="559.50"></text></g><g><title>[unknown] (2,872 samples, 0.12%)</title><rect x="99.8136%" y="581" width="0.1203%" height="15" fill="rgb(230,84,2)" fg:x="2383146" fg:w="2872"/><text x="100.0636%" y="591.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (607 samples, 0.03%)</title><rect x="99.9555%" y="581" width="0.0254%" height="15" fill="rgb(220,102,14)" fg:x="2386533" fg:w="607"/><text x="100.2055%" y="591.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<573558ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 573558ul>::oop_access_barrier (252 samples, 0.01%)</title><rect x="99.9819%" y="565" width="0.0106%" height="15" fill="rgb(240,10,32)" fg:x="2387164" fg:w="252"/><text x="100.2319%" y="575.50"></text></g><g><title>jni_GetStringLength (275 samples, 0.01%)</title><rect x="99.9810%" y="581" width="0.0115%" height="15" fill="rgb(215,47,27)" fg:x="2387142" fg:w="275"/><text x="100.2310%" y="591.50"></text></g><g><title>skyframe-evalua (2,249,972 samples, 94.24%)</title><rect x="5.7600%" y="597" width="94.2359%" height="15" fill="rgb(233,188,43)" fg:x="137526" fg:w="2249972"/><text x="6.0100%" y="607.50">skyframe-evalua</text></g><g><title>all (2,387,596 samples, 100%)</title><rect x="0.0000%" y="613" width="100.0000%" height="15" fill="rgb(253,190,1)" fg:x="0" fg:w="2387596"/><text x="0.2500%" y="623.50"></text></g></svg></svg> |