491 lines
810 KiB
XML
491 lines
810 KiB
XML
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="694" onload="init(evt)" viewBox="0 0 1200 694" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
|
|
text { font-family:monospace; font-size:12px }
|
|
#title { text-anchor:middle; font-size:17px; }
|
|
#matched { text-anchor:end; }
|
|
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
|
|
#search:hover, #search.show { opacity:1; }
|
|
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
|
|
#unzoom { cursor:pointer; }
|
|
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
|
|
.hide { display:none; }
|
|
.parent { opacity:0.5; }
|
|
</style><script type="text/ecmascript"><![CDATA[
|
|
var nametype = 'Function:';
|
|
var fontsize = 12;
|
|
var fontwidth = 0.59;
|
|
var xpad = 10;
|
|
var inverted = false;
|
|
var searchcolor = 'rgb(230,0,230)';
|
|
var fluiddrawing = true;
|
|
var truncate_text_right = false;
|
|
]]><![CDATA["use strict";
|
|
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
|
|
function init(evt) {
|
|
details = document.getElementById("details").firstChild;
|
|
searchbtn = document.getElementById("search");
|
|
unzoombtn = document.getElementById("unzoom");
|
|
matchedtxt = document.getElementById("matched");
|
|
svg = document.getElementsByTagName("svg")[0];
|
|
frames = document.getElementById("frames");
|
|
known_font_width = get_monospace_width(frames);
|
|
total_samples = parseInt(frames.attributes.total_samples.value);
|
|
searching = 0;
|
|
|
|
// Use GET parameters to restore a flamegraph's state.
|
|
var restore_state = function() {
|
|
var params = get_params();
|
|
if (params.x && params.y)
|
|
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
|
|
if (params.s)
|
|
search(params.s);
|
|
};
|
|
|
|
if (fluiddrawing) {
|
|
// Make width dynamic so the SVG fits its parent's width.
|
|
svg.removeAttribute("width");
|
|
// Edge requires us to have a viewBox that gets updated with size changes.
|
|
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
|
|
if (!isEdge) {
|
|
svg.removeAttribute("viewBox");
|
|
}
|
|
var update_for_width_change = function() {
|
|
if (isEdge) {
|
|
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
|
|
}
|
|
|
|
// Keep consistent padding on left and right of frames container.
|
|
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
|
|
|
|
// Text truncation needs to be adjusted for the current width.
|
|
update_text_for_elements(frames.children);
|
|
|
|
// Keep search elements at a fixed distance from right edge.
|
|
var svgWidth = svg.width.baseVal.value;
|
|
searchbtn.attributes.x.value = svgWidth - xpad;
|
|
matchedtxt.attributes.x.value = svgWidth - xpad;
|
|
};
|
|
window.addEventListener('resize', function() {
|
|
update_for_width_change();
|
|
});
|
|
// This needs to be done asynchronously for Safari to work.
|
|
setTimeout(function() {
|
|
unzoom();
|
|
update_for_width_change();
|
|
restore_state();
|
|
}, 0);
|
|
} else {
|
|
restore_state();
|
|
}
|
|
}
|
|
// event listeners
|
|
window.addEventListener("click", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) {
|
|
if (target.nodeName == "a") {
|
|
if (e.ctrlKey === false) return;
|
|
e.preventDefault();
|
|
}
|
|
if (target.classList.contains("parent")) unzoom();
|
|
zoom(target);
|
|
|
|
// set parameters for zoom state
|
|
var el = target.querySelector("rect");
|
|
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
|
|
var params = get_params()
|
|
params.x = el.attributes["fg:x"].value;
|
|
params.y = el.attributes.y.value;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
}
|
|
else if (e.target.id == "unzoom") {
|
|
unzoom();
|
|
|
|
// remove zoom state
|
|
var params = get_params();
|
|
if (params.x) delete params.x;
|
|
if (params.y) delete params.y;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
else if (e.target.id == "search") search_prompt();
|
|
}, false)
|
|
// mouse-over for info
|
|
// show
|
|
window.addEventListener("mouseover", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = nametype + " " + g_to_text(target);
|
|
}, false)
|
|
// clear
|
|
window.addEventListener("mouseout", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = ' ';
|
|
}, false)
|
|
// ctrl-F for search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
|
e.preventDefault();
|
|
search_prompt();
|
|
}
|
|
}, false)
|
|
// functions
|
|
function get_params() {
|
|
var params = {};
|
|
var paramsarr = window.location.search.substr(1).split('&');
|
|
for (var i = 0; i < paramsarr.length; ++i) {
|
|
var tmp = paramsarr[i].split("=");
|
|
if (!tmp[0] || !tmp[1]) continue;
|
|
params[tmp[0]] = decodeURIComponent(tmp[1]);
|
|
}
|
|
return params;
|
|
}
|
|
function parse_params(params) {
|
|
var uri = "?";
|
|
for (var key in params) {
|
|
uri += key + '=' + encodeURIComponent(params[key]) + '&';
|
|
}
|
|
if (uri.slice(-1) == "&")
|
|
uri = uri.substring(0, uri.length - 1);
|
|
if (uri == '?')
|
|
uri = window.location.href.split('?')[0];
|
|
return uri;
|
|
}
|
|
function find_child(node, selector) {
|
|
var children = node.querySelectorAll(selector);
|
|
if (children.length) return children[0];
|
|
return;
|
|
}
|
|
function find_group(node) {
|
|
var parent = node.parentElement;
|
|
if (!parent) return;
|
|
if (parent.id == "frames") return node;
|
|
return find_group(parent);
|
|
}
|
|
function orig_save(e, attr, val) {
|
|
if (e.attributes["fg:orig_" + attr] != undefined) return;
|
|
if (e.attributes[attr] == undefined) return;
|
|
if (val == undefined) val = e.attributes[attr].value;
|
|
e.setAttribute("fg:orig_" + attr, val);
|
|
}
|
|
function orig_load(e, attr) {
|
|
if (e.attributes["fg:orig_"+attr] == undefined) return;
|
|
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
|
|
e.removeAttribute("fg:orig_" + attr);
|
|
}
|
|
function g_to_text(e) {
|
|
var text = find_child(e, "title").firstChild.nodeValue;
|
|
return (text)
|
|
}
|
|
function g_to_func(e) {
|
|
var func = g_to_text(e);
|
|
// if there's any manipulation we want to do to the function
|
|
// name before it's searched, do it here before returning.
|
|
return (func);
|
|
}
|
|
function get_monospace_width(frames) {
|
|
// Given the id="frames" element, return the width of text characters if
|
|
// this is a monospace font, otherwise return 0.
|
|
text = find_child(frames.children[0], "text");
|
|
originalContent = text.textContent;
|
|
text.textContent = "!";
|
|
bangWidth = text.getComputedTextLength();
|
|
text.textContent = "W";
|
|
wWidth = text.getComputedTextLength();
|
|
text.textContent = originalContent;
|
|
if (bangWidth === wWidth) {
|
|
return bangWidth;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
function update_text_for_elements(elements) {
|
|
// In order to render quickly in the browser, you want to do one pass of
|
|
// reading attributes, and one pass of mutating attributes. See
|
|
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
|
|
|
|
// Fall back to inefficient calculation, if we're variable-width font.
|
|
// TODO This should be optimized somehow too.
|
|
if (known_font_width === 0) {
|
|
for (var i = 0; i < elements.length; i++) {
|
|
update_text(elements[i]);
|
|
}
|
|
return;
|
|
}
|
|
|
|
var textElemNewAttributes = [];
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * known_font_width) {
|
|
textElemNewAttributes.push([newX, ""]);
|
|
continue;
|
|
}
|
|
|
|
// Fit in full text width
|
|
if (txt.length * known_font_width < w) {
|
|
textElemNewAttributes.push([newX, txt]);
|
|
continue;
|
|
}
|
|
|
|
var substringLength = Math.floor(w / known_font_width) - 2;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
|
|
continue;
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
|
|
|
|
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
var values = textElemNewAttributes[i];
|
|
var t = find_child(e, "text");
|
|
t.attributes.x.value = values[0];
|
|
t.textContent = values[1];
|
|
}
|
|
}
|
|
|
|
function update_text(e) {
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * fontsize * fontwidth) {
|
|
t.textContent = "";
|
|
return;
|
|
}
|
|
t.textContent = txt;
|
|
// Fit in full text width
|
|
if (t.getComputedTextLength() < w)
|
|
return;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
for (var x = txt.length - 2; x > 0; x--) {
|
|
if (t.getSubStringLength(0, x + 2) <= w) {
|
|
t.textContent = txt.substring(0, x) + "..";
|
|
return;
|
|
}
|
|
}
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
for (var x = 2; x < txt.length; x++) {
|
|
if (t.getSubStringLength(x - 2, txt.length) <= w) {
|
|
t.textContent = ".." + txt.substring(x, txt.length);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
t.textContent = "";
|
|
}
|
|
// zoom
|
|
function zoom_reset(e) {
|
|
if (e.tagName == "rect") {
|
|
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
|
|
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_reset(c[i]);
|
|
}
|
|
}
|
|
function zoom_child(e, x, zoomed_width_samples) {
|
|
if (e.tagName == "text") {
|
|
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
|
|
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
|
|
} else if (e.tagName == "rect") {
|
|
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
|
|
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_child(c[i], x, zoomed_width_samples);
|
|
}
|
|
}
|
|
function zoom_parent(e) {
|
|
if (e.attributes) {
|
|
if (e.attributes.x != undefined) {
|
|
e.attributes.x.value = "0.0%";
|
|
}
|
|
if (e.attributes.width != undefined) {
|
|
e.attributes.width.value = "100.0%";
|
|
}
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_parent(c[i]);
|
|
}
|
|
}
|
|
function zoom(node) {
|
|
var attr = find_child(node, "rect").attributes;
|
|
var width = parseInt(attr["fg:w"].value);
|
|
var xmin = parseInt(attr["fg:x"].value);
|
|
var xmax = xmin + width;
|
|
var ymin = parseFloat(attr.y.value);
|
|
unzoombtn.classList.remove("hide");
|
|
var el = frames.children;
|
|
var to_update_text = [];
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
var a = find_child(e, "rect").attributes;
|
|
var ex = parseInt(a["fg:x"].value);
|
|
var ew = parseInt(a["fg:w"].value);
|
|
// Is it an ancestor
|
|
if (!inverted) {
|
|
var upstack = parseFloat(a.y.value) > ymin;
|
|
} else {
|
|
var upstack = parseFloat(a.y.value) < ymin;
|
|
}
|
|
if (upstack) {
|
|
// Direct ancestor
|
|
if (ex <= xmin && (ex+ew) >= xmax) {
|
|
e.classList.add("parent");
|
|
zoom_parent(e);
|
|
to_update_text.push(e);
|
|
}
|
|
// not in current path
|
|
else
|
|
e.classList.add("hide");
|
|
}
|
|
// Children maybe
|
|
else {
|
|
// no common path
|
|
if (ex < xmin || ex >= xmax) {
|
|
e.classList.add("hide");
|
|
}
|
|
else {
|
|
zoom_child(e, xmin, width);
|
|
to_update_text.push(e);
|
|
}
|
|
}
|
|
}
|
|
update_text_for_elements(to_update_text);
|
|
}
|
|
function unzoom() {
|
|
unzoombtn.classList.add("hide");
|
|
var el = frames.children;
|
|
for(var i = 0; i < el.length; i++) {
|
|
el[i].classList.remove("parent");
|
|
el[i].classList.remove("hide");
|
|
zoom_reset(el[i]);
|
|
}
|
|
update_text_for_elements(el);
|
|
}
|
|
// search
|
|
function reset_search() {
|
|
var el = document.querySelectorAll("#frames rect");
|
|
for (var i = 0; i < el.length; i++) {
|
|
orig_load(el[i], "fill")
|
|
}
|
|
var params = get_params();
|
|
delete params.s;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
function search_prompt() {
|
|
if (!searching) {
|
|
var term = prompt("Enter a search term (regexp " +
|
|
"allowed, eg: ^ext4_)", "");
|
|
if (term != null) {
|
|
search(term)
|
|
}
|
|
} else {
|
|
reset_search();
|
|
searching = 0;
|
|
searchbtn.classList.remove("show");
|
|
searchbtn.firstChild.nodeValue = "Search"
|
|
matchedtxt.classList.add("hide");
|
|
matchedtxt.firstChild.nodeValue = ""
|
|
}
|
|
}
|
|
function search(term) {
|
|
var re = new RegExp(term);
|
|
var el = frames.children;
|
|
var matches = new Object();
|
|
var maxwidth = 0;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
// Skip over frames which are either not visible, or below the zoomed-to frame
|
|
if (e.classList.contains("hide") || e.classList.contains("parent")) {
|
|
continue;
|
|
}
|
|
var func = g_to_func(e);
|
|
var rect = find_child(e, "rect");
|
|
if (func == null || rect == null)
|
|
continue;
|
|
// Save max width. Only works as we have a root frame
|
|
var w = parseInt(rect.attributes["fg:w"].value);
|
|
if (w > maxwidth)
|
|
maxwidth = w;
|
|
if (func.match(re)) {
|
|
// highlight
|
|
var x = parseInt(rect.attributes["fg:x"].value);
|
|
orig_save(rect, "fill");
|
|
rect.attributes.fill.value = searchcolor;
|
|
// remember matches
|
|
if (matches[x] == undefined) {
|
|
matches[x] = w;
|
|
} else {
|
|
if (w > matches[x]) {
|
|
// overwrite with parent
|
|
matches[x] = w;
|
|
}
|
|
}
|
|
searching = 1;
|
|
}
|
|
}
|
|
if (!searching)
|
|
return;
|
|
var params = get_params();
|
|
params.s = term;
|
|
history.replaceState(null, null, parse_params(params));
|
|
|
|
searchbtn.classList.add("show");
|
|
searchbtn.firstChild.nodeValue = "Reset Search";
|
|
// calculate percent matched, excluding vertical overlap
|
|
var count = 0;
|
|
var lastx = -1;
|
|
var lastw = 0;
|
|
var keys = Array();
|
|
for (k in matches) {
|
|
if (matches.hasOwnProperty(k))
|
|
keys.push(k);
|
|
}
|
|
// sort the matched frames by their x location
|
|
// ascending, then width descending
|
|
keys.sort(function(a, b){
|
|
return a - b;
|
|
});
|
|
// Step through frames saving only the biggest bottom-up frames
|
|
// thanks to the sort order. This relies on the tree property
|
|
// where children are always smaller than their parents.
|
|
for (var k in keys) {
|
|
var x = parseInt(keys[k]);
|
|
var w = matches[keys[k]];
|
|
if (x >= lastx + lastw) {
|
|
count += w;
|
|
lastx = x;
|
|
lastw = w;
|
|
}
|
|
}
|
|
// display matched percent
|
|
matchedtxt.classList.remove("hide");
|
|
var pct = 100 * count / maxwidth;
|
|
if (pct != 100) pct = pct.toFixed(1);
|
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
|
|
}
|
|
function format_percent(n) {
|
|
return n.toFixed(4) + "%";
|
|
}
|
|
]]></script><rect x="0" y="0" width="100%" height="694" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="677.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="677.00"> </text><svg id="frames" x="10" width="1180" total_samples="2403600"><g><title>[anon] (1,369 samples, 0.06%)</title><rect x="0.0055%" y="613" width="0.0570%" height="15" fill="rgb(227,0,7)" fg:x="131" fg:w="1369"/><text x="0.2555%" y="623.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (406 samples, 0.02%)</title><rect x="0.0876%" y="421" width="0.0169%" height="15" fill="rgb(217,0,24)" fg:x="2106" fg:w="406"/><text x="0.3376%" y="431.50"></text></g><g><title>GraphBuilder::invoke (253 samples, 0.01%)</title><rect x="0.1699%" y="117" width="0.0105%" height="15" fill="rgb(221,193,54)" fg:x="4084" fg:w="253"/><text x="0.4199%" y="127.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (339 samples, 0.01%)</title><rect x="0.1671%" y="149" width="0.0141%" height="15" fill="rgb(248,212,6)" fg:x="4017" fg:w="339"/><text x="0.4171%" y="159.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (336 samples, 0.01%)</title><rect x="0.1672%" y="133" width="0.0140%" height="15" fill="rgb(208,68,35)" fg:x="4020" fg:w="336"/><text x="0.4172%" y="143.50"></text></g><g><title>GraphBuilder::try_inline_full (442 samples, 0.02%)</title><rect x="0.1667%" y="165" width="0.0184%" height="15" fill="rgb(232,128,0)" fg:x="4006" fg:w="442"/><text x="0.4167%" y="175.50"></text></g><g><title>GraphBuilder::try_inline (474 samples, 0.02%)</title><rect x="0.1665%" y="181" width="0.0197%" height="15" fill="rgb(207,160,47)" fg:x="4003" fg:w="474"/><text x="0.4165%" y="191.50"></text></g><g><title>GraphBuilder::invoke (633 samples, 0.03%)</title><rect x="0.1655%" y="197" width="0.0263%" height="15" fill="rgb(228,23,34)" fg:x="3977" fg:w="633"/><text x="0.4155%" y="207.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (841 samples, 0.03%)</title><rect x="0.1586%" y="229" width="0.0350%" height="15" fill="rgb(218,30,26)" fg:x="3811" fg:w="841"/><text x="0.4086%" y="239.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (832 samples, 0.03%)</title><rect x="0.1589%" y="213" width="0.0346%" height="15" fill="rgb(220,122,19)" fg:x="3820" fg:w="832"/><text x="0.4089%" y="223.50"></text></g><g><title>GraphBuilder::try_inline_full (1,066 samples, 0.04%)</title><rect x="0.1574%" y="245" width="0.0444%" height="15" fill="rgb(250,228,42)" fg:x="3783" fg:w="1066"/><text x="0.4074%" y="255.50"></text></g><g><title>GraphBuilder::try_inline (1,112 samples, 0.05%)</title><rect x="0.1573%" y="261" width="0.0463%" height="15" fill="rgb(240,193,28)" fg:x="3780" fg:w="1112"/><text x="0.4073%" y="271.50"></text></g><g><title>GraphBuilder::invoke (1,401 samples, 0.06%)</title><rect x="0.1556%" y="277" width="0.0583%" height="15" fill="rgb(216,20,37)" fg:x="3740" fg:w="1401"/><text x="0.4056%" y="287.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,790 samples, 0.07%)</title><rect x="0.1427%" y="309" width="0.0745%" height="15" fill="rgb(206,188,39)" fg:x="3430" fg:w="1790"/><text x="0.3927%" y="319.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,774 samples, 0.07%)</title><rect x="0.1434%" y="293" width="0.0738%" height="15" fill="rgb(217,207,13)" fg:x="3446" fg:w="1774"/><text x="0.3934%" y="303.50"></text></g><g><title>GraphBuilder::try_inline_full (2,229 samples, 0.09%)</title><rect x="0.1397%" y="325" width="0.0927%" height="15" fill="rgb(231,73,38)" fg:x="3359" fg:w="2229"/><text x="0.3897%" y="335.50"></text></g><g><title>GraphBuilder::try_inline (2,251 samples, 0.09%)</title><rect x="0.1393%" y="341" width="0.0937%" height="15" fill="rgb(225,20,46)" fg:x="3349" fg:w="2251"/><text x="0.3893%" y="351.50"></text></g><g><title>ciEnv::get_method_by_index_impl (322 samples, 0.01%)</title><rect x="0.2369%" y="325" width="0.0134%" height="15" fill="rgb(210,31,41)" fg:x="5695" fg:w="322"/><text x="0.4869%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (351 samples, 0.01%)</title><rect x="0.2359%" y="341" width="0.0146%" height="15" fill="rgb(221,200,47)" fg:x="5669" fg:w="351"/><text x="0.4859%" y="351.50"></text></g><g><title>GraphBuilder::invoke (2,837 samples, 0.12%)</title><rect x="0.1355%" y="357" width="0.1180%" height="15" fill="rgb(226,26,5)" fg:x="3256" fg:w="2837"/><text x="0.3855%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,354 samples, 0.14%)</title><rect x="0.1175%" y="373" width="0.1395%" height="15" fill="rgb(249,33,26)" fg:x="2824" fg:w="3354"/><text x="0.3675%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,396 samples, 0.14%)</title><rect x="0.1162%" y="389" width="0.1413%" height="15" fill="rgb(235,183,28)" fg:x="2794" fg:w="3396"/><text x="0.3662%" y="399.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,728 samples, 0.16%)</title><rect x="0.1046%" y="405" width="0.1551%" height="15" fill="rgb(221,5,38)" fg:x="2515" fg:w="3728"/><text x="0.3546%" y="415.50"></text></g><g><title>IR::IR (3,742 samples, 0.16%)</title><rect x="0.1045%" y="421" width="0.1557%" height="15" fill="rgb(247,18,42)" fg:x="2512" fg:w="3742"/><text x="0.3545%" y="431.50"></text></g><g><title>Compilation::build_hir (4,705 samples, 0.20%)</title><rect x="0.0873%" y="437" width="0.1957%" height="15" fill="rgb(241,131,45)" fg:x="2098" fg:w="4705"/><text x="0.3373%" y="447.50"></text></g><g><title>LIR_Assembler::emit_code (673 samples, 0.03%)</title><rect x="0.2837%" y="421" width="0.0280%" height="15" fill="rgb(249,31,29)" fg:x="6820" fg:w="673"/><text x="0.5337%" y="431.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (382 samples, 0.02%)</title><rect x="0.3145%" y="421" width="0.0159%" height="15" fill="rgb(225,111,53)" fg:x="7559" fg:w="382"/><text x="0.5645%" y="431.50"></text></g><g><title>Compilation::emit_code_body (1,150 samples, 0.05%)</title><rect x="0.2830%" y="437" width="0.0478%" height="15" fill="rgb(238,160,17)" fg:x="6803" fg:w="1150"/><text x="0.5330%" y="447.50"></text></g><g><title>LIRGenerator::do_Goto (260 samples, 0.01%)</title><rect x="0.3380%" y="389" width="0.0108%" height="15" fill="rgb(214,148,48)" fg:x="8124" fg:w="260"/><text x="0.5880%" y="399.50"></text></g><g><title>LIRGenerator::block_do (927 samples, 0.04%)</title><rect x="0.3311%" y="405" width="0.0386%" height="15" fill="rgb(232,36,49)" fg:x="7959" fg:w="927"/><text x="0.5811%" y="415.50"></text></g><g><title>BlockList::iterate_forward (932 samples, 0.04%)</title><rect x="0.3310%" y="421" width="0.0388%" height="15" fill="rgb(209,103,24)" fg:x="7955" fg:w="932"/><text x="0.5810%" y="431.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (451 samples, 0.02%)</title><rect x="0.3830%" y="357" width="0.0188%" height="15" fill="rgb(229,88,8)" fg:x="9205" fg:w="451"/><text x="0.6330%" y="367.50"></text></g><g><title>LinearScanWalker::activate_current (711 samples, 0.03%)</title><rect x="0.3818%" y="373" width="0.0296%" height="15" fill="rgb(213,181,19)" fg:x="9176" fg:w="711"/><text x="0.6318%" y="383.50"></text></g><g><title>IntervalWalker::walk_to (915 samples, 0.04%)</title><rect x="0.3734%" y="389" width="0.0381%" height="15" fill="rgb(254,191,54)" fg:x="8974" fg:w="915"/><text x="0.6234%" y="399.50"></text></g><g><title>LinearScan::allocate_registers (999 samples, 0.04%)</title><rect x="0.3731%" y="405" width="0.0416%" height="15" fill="rgb(241,83,37)" fg:x="8969" fg:w="999"/><text x="0.6231%" y="415.50"></text></g><g><title>LinearScan::assign_reg_num (708 samples, 0.03%)</title><rect x="0.4150%" y="389" width="0.0295%" height="15" fill="rgb(233,36,39)" fg:x="9976" fg:w="708"/><text x="0.6650%" y="399.50"></text></g><g><title>LinearScan::assign_reg_num (745 samples, 0.03%)</title><rect x="0.4147%" y="405" width="0.0310%" height="15" fill="rgb(226,3,54)" fg:x="9968" fg:w="745"/><text x="0.6647%" y="415.50"></text></g><g><title>LinearScan::build_intervals (813 samples, 0.03%)</title><rect x="0.4457%" y="405" width="0.0338%" height="15" fill="rgb(245,192,40)" fg:x="10713" fg:w="813"/><text x="0.6957%" y="415.50"></text></g><g><title>LinearScan::compute_local_live_sets (291 samples, 0.01%)</title><rect x="0.4823%" y="405" width="0.0121%" height="15" fill="rgb(238,167,29)" fg:x="11592" fg:w="291"/><text x="0.7323%" y="415.50"></text></g><g><title>LinearScan::do_linear_scan (3,317 samples, 0.14%)</title><rect x="0.3720%" y="421" width="0.1380%" height="15" fill="rgb(232,182,51)" fg:x="8941" fg:w="3317"/><text x="0.6220%" y="431.50"></text></g><g><title>Compilation::emit_lir (4,310 samples, 0.18%)</title><rect x="0.3309%" y="437" width="0.1793%" height="15" fill="rgb(231,60,39)" fg:x="7953" fg:w="4310"/><text x="0.5809%" y="447.50"></text></g><g><title>Compilation::compile_java_method (10,315 samples, 0.43%)</title><rect x="0.0869%" y="453" width="0.4291%" height="15" fill="rgb(208,69,12)" fg:x="2089" fg:w="10315"/><text x="0.3369%" y="463.50"></text></g><g><title>nmethod::nmethod (281 samples, 0.01%)</title><rect x="0.5307%" y="421" width="0.0117%" height="15" fill="rgb(235,93,37)" fg:x="12756" fg:w="281"/><text x="0.7807%" y="431.50"></text></g><g><title>nmethod::new_nmethod (517 samples, 0.02%)</title><rect x="0.5209%" y="437" width="0.0215%" height="15" fill="rgb(213,116,39)" fg:x="12521" fg:w="517"/><text x="0.7709%" y="447.50"></text></g><g><title>ciEnv::register_method (581 samples, 0.02%)</title><rect x="0.5183%" y="453" width="0.0242%" height="15" fill="rgb(222,207,29)" fg:x="12458" fg:w="581"/><text x="0.7683%" y="463.50"></text></g><g><title>Compilation::compile_method (10,961 samples, 0.46%)</title><rect x="0.0866%" y="469" width="0.4560%" height="15" fill="rgb(206,96,30)" fg:x="2082" fg:w="10961"/><text x="0.3366%" y="479.50"></text></g><g><title>Compilation::Compilation (10,979 samples, 0.46%)</title><rect x="0.0862%" y="485" width="0.4568%" height="15" fill="rgb(218,138,4)" fg:x="2073" fg:w="10979"/><text x="0.3362%" y="495.50"></text></g><g><title>Compiler::compile_method (11,000 samples, 0.46%)</title><rect x="0.0854%" y="501" width="0.4576%" height="15" fill="rgb(250,191,14)" fg:x="2053" fg:w="11000"/><text x="0.3354%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,538 samples, 0.48%)</title><rect x="0.0752%" y="517" width="0.4800%" height="15" fill="rgb(239,60,40)" fg:x="1808" fg:w="11538"/><text x="0.3252%" y="527.50"></text></g><g><title>CompileQueue::get (262 samples, 0.01%)</title><rect x="0.5574%" y="517" width="0.0109%" height="15" fill="rgb(206,27,48)" fg:x="13397" fg:w="262"/><text x="0.8074%" y="527.50"></text></g><g><title>__GI___clone (11,883 samples, 0.49%)</title><rect x="0.0744%" y="613" width="0.4944%" height="15" fill="rgb(225,35,8)" fg:x="1789" fg:w="11883"/><text x="0.3244%" y="623.50"></text></g><g><title>start_thread (11,874 samples, 0.49%)</title><rect x="0.0748%" y="597" width="0.4940%" height="15" fill="rgb(250,213,24)" fg:x="1798" fg:w="11874"/><text x="0.3248%" y="607.50"></text></g><g><title>thread_native_entry (11,874 samples, 0.49%)</title><rect x="0.0748%" y="581" width="0.4940%" height="15" fill="rgb(247,123,22)" fg:x="1798" fg:w="11874"/><text x="0.3248%" y="591.50"></text></g><g><title>Thread::call_run (11,873 samples, 0.49%)</title><rect x="0.0748%" y="565" width="0.4940%" height="15" fill="rgb(231,138,38)" fg:x="1799" fg:w="11873"/><text x="0.3248%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (11,871 samples, 0.49%)</title><rect x="0.0749%" y="549" width="0.4939%" height="15" fill="rgb(231,145,46)" fg:x="1801" fg:w="11871"/><text x="0.3249%" y="559.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,871 samples, 0.49%)</title><rect x="0.0749%" y="533" width="0.4939%" height="15" fill="rgb(251,118,11)" fg:x="1801" fg:w="11871"/><text x="0.3249%" y="543.50"></text></g><g><title>C1_CompilerThre (13,676 samples, 0.57%)</title><rect x="0.0027%" y="629" width="0.5690%" height="15" fill="rgb(217,147,25)" fg:x="64" fg:w="13676"/><text x="0.2527%" y="639.50"></text></g><g><title>_dl_update_slotinfo (271 samples, 0.01%)</title><rect x="0.7133%" y="597" width="0.0113%" height="15" fill="rgb(247,81,37)" fg:x="17146" fg:w="271"/><text x="0.9633%" y="607.50"></text></g><g><title>[anon] (4,073 samples, 0.17%)</title><rect x="0.5878%" y="613" width="0.1695%" height="15" fill="rgb(209,12,38)" fg:x="14129" fg:w="4073"/><text x="0.8378%" y="623.50"></text></g><g><title>Parse::do_one_block (389 samples, 0.02%)</title><rect x="0.7968%" y="229" width="0.0162%" height="15" fill="rgb(227,1,9)" fg:x="19151" fg:w="389"/><text x="1.0468%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (381 samples, 0.02%)</title><rect x="0.7971%" y="213" width="0.0159%" height="15" fill="rgb(248,47,43)" fg:x="19159" fg:w="381"/><text x="1.0471%" y="223.50"></text></g><g><title>Parse::do_all_blocks (400 samples, 0.02%)</title><rect x="0.7967%" y="245" width="0.0166%" height="15" fill="rgb(221,10,30)" fg:x="19149" fg:w="400"/><text x="1.0467%" y="255.50"></text></g><g><title>ParseGenerator::generate (471 samples, 0.02%)</title><rect x="0.7951%" y="277" width="0.0196%" height="15" fill="rgb(210,229,1)" fg:x="19111" fg:w="471"/><text x="1.0451%" y="287.50"></text></g><g><title>Parse::Parse (471 samples, 0.02%)</title><rect x="0.7951%" y="261" width="0.0196%" height="15" fill="rgb(222,148,37)" fg:x="19111" fg:w="471"/><text x="1.0451%" y="271.50"></text></g><g><title>Parse::do_call (729 samples, 0.03%)</title><rect x="0.7882%" y="293" width="0.0303%" height="15" fill="rgb(234,67,33)" fg:x="18944" fg:w="729"/><text x="1.0382%" y="303.50"></text></g><g><title>Parse::do_one_block (1,032 samples, 0.04%)</title><rect x="0.7857%" y="325" width="0.0429%" height="15" fill="rgb(247,98,35)" fg:x="18886" fg:w="1032"/><text x="1.0357%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (1,017 samples, 0.04%)</title><rect x="0.7864%" y="309" width="0.0423%" height="15" fill="rgb(247,138,52)" fg:x="18901" fg:w="1017"/><text x="1.0364%" y="319.50"></text></g><g><title>Parse::do_all_blocks (1,044 samples, 0.04%)</title><rect x="0.7857%" y="341" width="0.0434%" height="15" fill="rgb(213,79,30)" fg:x="18885" fg:w="1044"/><text x="1.0357%" y="351.50"></text></g><g><title>ParseGenerator::generate (1,139 samples, 0.05%)</title><rect x="0.7832%" y="373" width="0.0474%" height="15" fill="rgb(246,177,23)" fg:x="18826" fg:w="1139"/><text x="1.0332%" y="383.50"></text></g><g><title>Parse::Parse (1,139 samples, 0.05%)</title><rect x="0.7832%" y="357" width="0.0474%" height="15" fill="rgb(230,62,27)" fg:x="18826" fg:w="1139"/><text x="1.0332%" y="367.50"></text></g><g><title>Parse::do_call (1,668 samples, 0.07%)</title><rect x="0.7718%" y="389" width="0.0694%" height="15" fill="rgb(216,154,8)" fg:x="18550" fg:w="1668"/><text x="1.0218%" y="399.50"></text></g><g><title>Parse::do_all_blocks (1,924 samples, 0.08%)</title><rect x="0.7699%" y="437" width="0.0800%" height="15" fill="rgb(244,35,45)" fg:x="18506" fg:w="1924"/><text x="1.0199%" y="447.50"></text></g><g><title>Parse::do_one_block (1,923 samples, 0.08%)</title><rect x="0.7700%" y="421" width="0.0800%" height="15" fill="rgb(251,115,12)" fg:x="18507" fg:w="1923"/><text x="1.0200%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (1,912 samples, 0.08%)</title><rect x="0.7704%" y="405" width="0.0795%" height="15" fill="rgb(240,54,50)" fg:x="18518" fg:w="1912"/><text x="1.0204%" y="415.50"></text></g><g><title>ParseGenerator::generate (1,944 samples, 0.08%)</title><rect x="0.7692%" y="469" width="0.0809%" height="15" fill="rgb(233,84,52)" fg:x="18488" fg:w="1944"/><text x="1.0192%" y="479.50"></text></g><g><title>Parse::Parse (1,944 samples, 0.08%)</title><rect x="0.7692%" y="453" width="0.0809%" height="15" fill="rgb(207,117,47)" fg:x="18488" fg:w="1944"/><text x="1.0192%" y="463.50"></text></g><g><title>ParseGenerator::generate (257 samples, 0.01%)</title><rect x="0.8531%" y="357" width="0.0107%" height="15" fill="rgb(249,43,39)" fg:x="20506" fg:w="257"/><text x="1.1031%" y="367.50"></text></g><g><title>Parse::Parse (255 samples, 0.01%)</title><rect x="0.8532%" y="341" width="0.0106%" height="15" fill="rgb(209,38,44)" fg:x="20508" fg:w="255"/><text x="1.1032%" y="351.50"></text></g><g><title>Parse::do_call (347 samples, 0.01%)</title><rect x="0.8511%" y="373" width="0.0144%" height="15" fill="rgb(236,212,23)" fg:x="20456" fg:w="347"/><text x="1.1011%" y="383.50"></text></g><g><title>Parse::do_one_block (427 samples, 0.02%)</title><rect x="0.8503%" y="405" width="0.0178%" height="15" fill="rgb(242,79,21)" fg:x="20438" fg:w="427"/><text x="1.1003%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (423 samples, 0.02%)</title><rect x="0.8505%" y="389" width="0.0176%" height="15" fill="rgb(211,96,35)" fg:x="20442" fg:w="423"/><text x="1.1005%" y="399.50"></text></g><g><title>Parse::do_all_blocks (431 samples, 0.02%)</title><rect x="0.8503%" y="421" width="0.0179%" height="15" fill="rgb(253,215,40)" fg:x="20438" fg:w="431"/><text x="1.1003%" y="431.50"></text></g><g><title>ParseGenerator::generate (440 samples, 0.02%)</title><rect x="0.8501%" y="453" width="0.0183%" height="15" fill="rgb(211,81,21)" fg:x="20433" fg:w="440"/><text x="1.1001%" y="463.50"></text></g><g><title>Parse::Parse (440 samples, 0.02%)</title><rect x="0.8501%" y="437" width="0.0183%" height="15" fill="rgb(208,190,38)" fg:x="20433" fg:w="440"/><text x="1.1001%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (528 samples, 0.02%)</title><rect x="0.8501%" y="469" width="0.0220%" height="15" fill="rgb(235,213,38)" fg:x="20432" fg:w="528"/><text x="1.1001%" y="479.50"></text></g><g><title>Parse::do_call (2,712 samples, 0.11%)</title><rect x="0.7599%" y="485" width="0.1128%" height="15" fill="rgb(237,122,38)" fg:x="18265" fg:w="2712"/><text x="1.0099%" y="495.50"></text></g><g><title>Parse::do_all_blocks (2,736 samples, 0.11%)</title><rect x="0.7599%" y="533" width="0.1138%" height="15" fill="rgb(244,218,35)" fg:x="18265" fg:w="2736"/><text x="1.0099%" y="543.50"></text></g><g><title>Parse::do_one_block (2,736 samples, 0.11%)</title><rect x="0.7599%" y="517" width="0.1138%" height="15" fill="rgb(240,68,47)" fg:x="18265" fg:w="2736"/><text x="1.0099%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (2,736 samples, 0.11%)</title><rect x="0.7599%" y="501" width="0.1138%" height="15" fill="rgb(210,16,53)" fg:x="18265" fg:w="2736"/><text x="1.0099%" y="511.50"></text></g><g><title>C2Compiler::compile_method (2,764 samples, 0.11%)</title><rect x="0.7588%" y="597" width="0.1150%" height="15" fill="rgb(235,124,12)" fg:x="18238" fg:w="2764"/><text x="1.0088%" y="607.50"></text></g><g><title>Compile::Compile (2,764 samples, 0.11%)</title><rect x="0.7588%" y="581" width="0.1150%" height="15" fill="rgb(224,169,11)" fg:x="18238" fg:w="2764"/><text x="1.0088%" y="591.50"></text></g><g><title>ParseGenerator::generate (2,737 samples, 0.11%)</title><rect x="0.7599%" y="565" width="0.1139%" height="15" fill="rgb(250,166,2)" fg:x="18265" fg:w="2737"/><text x="1.0099%" y="575.50"></text></g><g><title>Parse::Parse (2,737 samples, 0.11%)</title><rect x="0.7599%" y="549" width="0.1139%" height="15" fill="rgb(242,216,29)" fg:x="18265" fg:w="2737"/><text x="1.0099%" y="559.50"></text></g><g><title>PhaseCFG::sched_call (244 samples, 0.01%)</title><rect x="0.8808%" y="533" width="0.0102%" height="15" fill="rgb(230,116,27)" fg:x="21170" fg:w="244"/><text x="1.1308%" y="543.50"></text></g><g><title>PhaseCFG::schedule_local (246 samples, 0.01%)</title><rect x="0.8808%" y="549" width="0.0102%" height="15" fill="rgb(228,99,48)" fg:x="21170" fg:w="246"/><text x="1.1308%" y="559.50"></text></g><g><title>PhaseCFG::do_global_code_motion (328 samples, 0.01%)</title><rect x="0.8776%" y="581" width="0.0136%" height="15" fill="rgb(253,11,6)" fg:x="21093" fg:w="328"/><text x="1.1276%" y="591.50"></text></g><g><title>PhaseCFG::global_code_motion (328 samples, 0.01%)</title><rect x="0.8776%" y="565" width="0.0136%" height="15" fill="rgb(247,143,39)" fg:x="21093" fg:w="328"/><text x="1.1276%" y="575.50"></text></g><g><title>Compile::Code_Gen (506 samples, 0.02%)</title><rect x="0.8740%" y="597" width="0.0211%" height="15" fill="rgb(236,97,10)" fg:x="21007" fg:w="506"/><text x="1.1240%" y="607.50"></text></g><g><title>OopFlow::compute_reach (253 samples, 0.01%)</title><rect x="0.9202%" y="533" width="0.0105%" height="15" fill="rgb(233,208,19)" fg:x="22117" fg:w="253"/><text x="1.1702%" y="543.50"></text></g><g><title>Compile::BuildOopMaps (947 samples, 0.04%)</title><rect x="0.8957%" y="549" width="0.0394%" height="15" fill="rgb(216,164,2)" fg:x="21529" fg:w="947"/><text x="1.1457%" y="559.50"></text></g><g><title>Compile::init_buffer (490 samples, 0.02%)</title><rect x="0.9351%" y="549" width="0.0204%" height="15" fill="rgb(220,129,5)" fg:x="22476" fg:w="490"/><text x="1.1851%" y="559.50"></text></g><g><title>Compile::shorten_branches (412 samples, 0.02%)</title><rect x="0.9383%" y="533" width="0.0171%" height="15" fill="rgb(242,17,10)" fg:x="22554" fg:w="412"/><text x="1.1883%" y="543.50"></text></g><g><title>Compile::Output (1,450 samples, 0.06%)</title><rect x="0.8952%" y="565" width="0.0603%" height="15" fill="rgb(242,107,0)" fg:x="21517" fg:w="1450"/><text x="1.1452%" y="575.50"></text></g><g><title>Compile::Process_OopMap_Node (277 samples, 0.01%)</title><rect x="0.9641%" y="549" width="0.0115%" height="15" fill="rgb(251,28,31)" fg:x="23173" fg:w="277"/><text x="1.2141%" y="559.50"></text></g><g><title>Compile::fill_buffer (718 samples, 0.03%)</title><rect x="0.9557%" y="565" width="0.0299%" height="15" fill="rgb(233,223,10)" fg:x="22971" fg:w="718"/><text x="1.2057%" y="575.50"></text></g><g><title>Matcher::find_shared (437 samples, 0.02%)</title><rect x="0.9899%" y="549" width="0.0182%" height="15" fill="rgb(215,21,27)" fg:x="23794" fg:w="437"/><text x="1.2399%" y="559.50"></text></g><g><title>Arena::contains (603 samples, 0.03%)</title><rect x="1.0281%" y="533" width="0.0251%" height="15" fill="rgb(232,23,21)" fg:x="24711" fg:w="603"/><text x="1.2781%" y="543.50"></text></g><g><title>Matcher::Label_Root (387 samples, 0.02%)</title><rect x="1.0794%" y="501" width="0.0161%" height="15" fill="rgb(244,5,23)" fg:x="25945" fg:w="387"/><text x="1.3294%" y="511.50"></text></g><g><title>Matcher::Label_Root (581 samples, 0.02%)</title><rect x="1.0746%" y="517" width="0.0242%" height="15" fill="rgb(226,81,46)" fg:x="25829" fg:w="581"/><text x="1.3246%" y="527.50"></text></g><g><title>Matcher::ReduceInst_Interior (244 samples, 0.01%)</title><rect x="1.1006%" y="501" width="0.0102%" height="15" fill="rgb(247,70,30)" fg:x="26453" fg:w="244"/><text x="1.3506%" y="511.50"></text></g><g><title>Matcher::ReduceInst (423 samples, 0.02%)</title><rect x="1.0988%" y="517" width="0.0176%" height="15" fill="rgb(212,68,19)" fg:x="26410" fg:w="423"/><text x="1.3488%" y="527.50"></text></g><g><title>Matcher::match_tree (1,282 samples, 0.05%)</title><rect x="1.0634%" y="533" width="0.0533%" height="15" fill="rgb(240,187,13)" fg:x="25561" fg:w="1282"/><text x="1.3134%" y="543.50"></text></g><g><title>Matcher::xform (2,786 samples, 0.12%)</title><rect x="1.0086%" y="549" width="0.1159%" height="15" fill="rgb(223,113,26)" fg:x="24242" fg:w="2786"/><text x="1.2586%" y="559.50"></text></g><g><title>Matcher::match (3,342 samples, 0.14%)</title><rect x="0.9858%" y="565" width="0.1390%" height="15" fill="rgb(206,192,2)" fg:x="23695" fg:w="3342"/><text x="1.2358%" y="575.50"></text></g><g><title>Node_Backward_Iterator::next (305 samples, 0.01%)</title><rect x="1.1786%" y="517" width="0.0127%" height="15" fill="rgb(241,108,4)" fg:x="28330" fg:w="305"/><text x="1.4286%" y="527.50"></text></g><g><title>PhaseCFG::schedule_late (871 samples, 0.04%)</title><rect x="1.1722%" y="533" width="0.0362%" height="15" fill="rgb(247,173,49)" fg:x="28176" fg:w="871"/><text x="1.4222%" y="543.50"></text></g><g><title>PhaseCFG::schedule_local (704 samples, 0.03%)</title><rect x="1.2085%" y="533" width="0.0293%" height="15" fill="rgb(224,114,35)" fg:x="29047" fg:w="704"/><text x="1.4585%" y="543.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (538 samples, 0.02%)</title><rect x="1.2399%" y="533" width="0.0224%" height="15" fill="rgb(245,159,27)" fg:x="29803" fg:w="538"/><text x="1.4899%" y="543.50"></text></g><g><title>PhaseLive::add_liveout (497 samples, 0.02%)</title><rect x="1.3025%" y="517" width="0.0207%" height="15" fill="rgb(245,172,44)" fg:x="31307" fg:w="497"/><text x="1.5525%" y="527.50"></text></g><g><title>PhaseLive::compute (1,118 samples, 0.05%)</title><rect x="1.2770%" y="533" width="0.0465%" height="15" fill="rgb(236,23,11)" fg:x="30693" fg:w="1118"/><text x="1.5270%" y="543.50"></text></g><g><title>PhaseCFG::global_code_motion (4,217 samples, 0.18%)</title><rect x="1.1490%" y="549" width="0.1754%" height="15" fill="rgb(205,117,38)" fg:x="27617" fg:w="4217"/><text x="1.3990%" y="559.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,418 samples, 0.18%)</title><rect x="1.1407%" y="565" width="0.1838%" height="15" fill="rgb(237,72,25)" fg:x="27419" fg:w="4418"/><text x="1.3907%" y="575.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,367 samples, 0.06%)</title><rect x="1.3371%" y="549" width="0.0569%" height="15" fill="rgb(244,70,9)" fg:x="32138" fg:w="1367"/><text x="1.5871%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (357 samples, 0.01%)</title><rect x="1.4223%" y="533" width="0.0149%" height="15" fill="rgb(217,125,39)" fg:x="34186" fg:w="357"/><text x="1.6723%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (424 samples, 0.02%)</title><rect x="1.4685%" y="517" width="0.0176%" height="15" fill="rgb(235,36,10)" fg:x="35297" fg:w="424"/><text x="1.7185%" y="527.50"></text></g><g><title>PhaseIFG::re_insert (975 samples, 0.04%)</title><rect x="1.4462%" y="533" width="0.0406%" height="15" fill="rgb(251,123,47)" fg:x="34761" fg:w="975"/><text x="1.6962%" y="543.50"></text></g><g><title>PhaseChaitin::Select (2,445 samples, 0.10%)</title><rect x="1.3940%" y="549" width="0.1017%" height="15" fill="rgb(221,13,13)" fg:x="33505" fg:w="2445"/><text x="1.6440%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (366 samples, 0.02%)</title><rect x="1.5091%" y="533" width="0.0152%" height="15" fill="rgb(238,131,9)" fg:x="36273" fg:w="366"/><text x="1.7591%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (500 samples, 0.02%)</title><rect x="1.5476%" y="517" width="0.0208%" height="15" fill="rgb(211,50,8)" fg:x="37199" fg:w="500"/><text x="1.7976%" y="527.50"></text></g><g><title>PhaseIFG::remove_node (1,063 samples, 0.04%)</title><rect x="1.5243%" y="533" width="0.0442%" height="15" fill="rgb(245,182,24)" fg:x="36639" fg:w="1063"/><text x="1.7743%" y="543.50"></text></g><g><title>PhaseChaitin::Simplify (1,753 samples, 0.07%)</title><rect x="1.4957%" y="549" width="0.0729%" height="15" fill="rgb(242,14,37)" fg:x="35950" fg:w="1753"/><text x="1.7457%" y="559.50"></text></g><g><title>PhaseChaitin::Split (4,114 samples, 0.17%)</title><rect x="1.5686%" y="549" width="0.1712%" height="15" fill="rgb(246,228,12)" fg:x="37703" fg:w="4114"/><text x="1.8186%" y="559.50"></text></g><g><title>IndexSet::IndexSet (343 samples, 0.01%)</title><rect x="1.7849%" y="533" width="0.0143%" height="15" fill="rgb(213,55,15)" fg:x="42901" fg:w="343"/><text x="2.0349%" y="543.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (934 samples, 0.04%)</title><rect x="1.8045%" y="533" width="0.0389%" height="15" fill="rgb(209,9,3)" fg:x="43372" fg:w="934"/><text x="2.0545%" y="543.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (653 samples, 0.03%)</title><rect x="1.8479%" y="533" width="0.0272%" height="15" fill="rgb(230,59,30)" fg:x="44417" fg:w="653"/><text x="2.0979%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (987 samples, 0.04%)</title><rect x="1.9751%" y="517" width="0.0411%" height="15" fill="rgb(209,121,21)" fg:x="47473" fg:w="987"/><text x="2.2251%" y="527.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,397 samples, 0.14%)</title><rect x="1.8751%" y="533" width="0.1413%" height="15" fill="rgb(220,109,13)" fg:x="45070" fg:w="3397"/><text x="2.1251%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (251 samples, 0.01%)</title><rect x="2.0474%" y="517" width="0.0104%" height="15" fill="rgb(232,18,1)" fg:x="49211" fg:w="251"/><text x="2.2974%" y="527.50"></text></g><g><title>RegMask::Size (437 samples, 0.02%)</title><rect x="2.0578%" y="517" width="0.0182%" height="15" fill="rgb(215,41,42)" fg:x="49462" fg:w="437"/><text x="2.3078%" y="527.50"></text></g><g><title>RegMask::smear_to_sets (799 samples, 0.03%)</title><rect x="2.0760%" y="517" width="0.0332%" height="15" fill="rgb(224,123,36)" fg:x="49899" fg:w="799"/><text x="2.3260%" y="527.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,103 samples, 0.09%)</title><rect x="2.0224%" y="533" width="0.0875%" height="15" fill="rgb(240,125,3)" fg:x="48611" fg:w="2103"/><text x="2.2724%" y="543.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (9,005 samples, 0.37%)</title><rect x="1.7399%" y="549" width="0.3746%" height="15" fill="rgb(205,98,50)" fg:x="41821" fg:w="9005"/><text x="1.9899%" y="559.50"></text></g><g><title>PhaseChaitin::interfere_with_live (409 samples, 0.02%)</title><rect x="2.1230%" y="533" width="0.0170%" height="15" fill="rgb(205,185,37)" fg:x="51028" fg:w="409"/><text x="2.3730%" y="543.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (612 samples, 0.03%)</title><rect x="2.1146%" y="549" width="0.0255%" height="15" fill="rgb(238,207,15)" fg:x="50826" fg:w="612"/><text x="2.3646%" y="559.50"></text></g><g><title>RegMask::Size (1,490 samples, 0.06%)</title><rect x="2.2599%" y="533" width="0.0620%" height="15" fill="rgb(213,199,42)" fg:x="54318" fg:w="1490"/><text x="2.5099%" y="543.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,847 samples, 0.20%)</title><rect x="2.1561%" y="549" width="0.2017%" height="15" fill="rgb(235,201,11)" fg:x="51823" fg:w="4847"/><text x="2.4061%" y="559.50"></text></g><g><title>PhaseChaitin::merge_multidefs (625 samples, 0.03%)</title><rect x="2.3578%" y="549" width="0.0260%" height="15" fill="rgb(207,46,11)" fg:x="56673" fg:w="625"/><text x="2.6078%" y="559.50"></text></g><g><title>PhaseChaitin::elide_copy (2,539 samples, 0.11%)</title><rect x="2.4791%" y="533" width="0.1056%" height="15" fill="rgb(241,35,35)" fg:x="59588" fg:w="2539"/><text x="2.7291%" y="543.50"></text></g><g><title>find_lowest_bit (441 samples, 0.02%)</title><rect x="2.5921%" y="533" width="0.0183%" height="15" fill="rgb(243,32,47)" fg:x="62303" fg:w="441"/><text x="2.8421%" y="543.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,454 samples, 0.23%)</title><rect x="2.3838%" y="549" width="0.2269%" height="15" fill="rgb(247,202,23)" fg:x="57298" fg:w="5454"/><text x="2.6338%" y="559.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (250 samples, 0.01%)</title><rect x="2.6108%" y="549" width="0.0104%" height="15" fill="rgb(219,102,11)" fg:x="62752" fg:w="250"/><text x="2.8608%" y="559.50"></text></g><g><title>IndexSet::lrg_union (383 samples, 0.02%)</title><rect x="2.6415%" y="501" width="0.0159%" height="15" fill="rgb(243,110,44)" fg:x="63492" fg:w="383"/><text x="2.8915%" y="511.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (269 samples, 0.01%)</title><rect x="2.6586%" y="501" width="0.0112%" height="15" fill="rgb(222,74,54)" fg:x="63903" fg:w="269"/><text x="2.9086%" y="511.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (860 samples, 0.04%)</title><rect x="2.6392%" y="517" width="0.0358%" height="15" fill="rgb(216,99,12)" fg:x="63435" fg:w="860"/><text x="2.8892%" y="527.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,293 samples, 0.05%)</title><rect x="2.6212%" y="549" width="0.0538%" height="15" fill="rgb(226,22,26)" fg:x="63003" fg:w="1293"/><text x="2.8712%" y="559.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,089 samples, 0.05%)</title><rect x="2.6297%" y="533" width="0.0453%" height="15" fill="rgb(217,163,10)" fg:x="63207" fg:w="1089"/><text x="2.8797%" y="543.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,083 samples, 0.05%)</title><rect x="2.6750%" y="549" width="0.0451%" height="15" fill="rgb(213,25,53)" fg:x="64297" fg:w="1083"/><text x="2.9250%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (545 samples, 0.02%)</title><rect x="2.6974%" y="533" width="0.0227%" height="15" fill="rgb(252,105,26)" fg:x="64835" fg:w="545"/><text x="2.9474%" y="543.50"></text></g><g><title>PhaseIFG::SquareUp (1,021 samples, 0.04%)</title><rect x="2.7201%" y="549" width="0.0425%" height="15" fill="rgb(220,39,43)" fg:x="65380" fg:w="1021"/><text x="2.9701%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (481 samples, 0.02%)</title><rect x="2.7426%" y="533" width="0.0200%" height="15" fill="rgb(229,68,48)" fg:x="65920" fg:w="481"/><text x="2.9926%" y="543.50"></text></g><g><title>PhaseIFG::init (427 samples, 0.02%)</title><rect x="2.7626%" y="549" width="0.0178%" height="15" fill="rgb(252,8,32)" fg:x="66401" fg:w="427"/><text x="3.0126%" y="559.50"></text></g><g><title>IndexSet::alloc_block_containing (270 samples, 0.01%)</title><rect x="2.8870%" y="517" width="0.0112%" height="15" fill="rgb(223,20,43)" fg:x="69392" fg:w="270"/><text x="3.1370%" y="527.50"></text></g><g><title>IndexSetIterator::advance_and_next (354 samples, 0.01%)</title><rect x="2.9008%" y="517" width="0.0147%" height="15" fill="rgb(229,81,49)" fg:x="69723" fg:w="354"/><text x="3.1508%" y="527.50"></text></g><g><title>PhaseLive::add_liveout (1,600 samples, 0.07%)</title><rect x="2.8503%" y="533" width="0.0666%" height="15" fill="rgb(236,28,36)" fg:x="68509" fg:w="1600"/><text x="3.1003%" y="543.50"></text></g><g><title>PhaseLive::compute (3,292 samples, 0.14%)</title><rect x="2.7805%" y="549" width="0.1370%" height="15" fill="rgb(249,185,26)" fg:x="66831" fg:w="3292"/><text x="3.0305%" y="559.50"></text></g><g><title>PhaseChaitin::Register_Allocate (38,315 samples, 1.59%)</title><rect x="1.3304%" y="565" width="1.5941%" height="15" fill="rgb(249,174,33)" fg:x="31977" fg:w="38315"/><text x="1.5804%" y="575.50"></text></g><g><title>Compile::Code_Gen (48,833 samples, 2.03%)</title><rect x="0.8950%" y="581" width="2.0317%" height="15" fill="rgb(233,201,37)" fg:x="21513" fg:w="48833"/><text x="1.1450%" y="591.50">C..</text></g><g><title>Parse::do_one_block (318 samples, 0.01%)</title><rect x="2.9351%" y="53" width="0.0132%" height="15" fill="rgb(221,78,26)" fg:x="70549" fg:w="318"/><text x="3.1851%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (310 samples, 0.01%)</title><rect x="2.9355%" y="37" width="0.0129%" height="15" fill="rgb(250,127,30)" fg:x="70557" fg:w="310"/><text x="3.1855%" y="47.50"></text></g><g><title>Parse::do_all_blocks (323 samples, 0.01%)</title><rect x="2.9351%" y="69" width="0.0134%" height="15" fill="rgb(230,49,44)" fg:x="70549" fg:w="323"/><text x="3.1851%" y="79.50"></text></g><g><title>ParseGenerator::generate (349 samples, 0.01%)</title><rect x="2.9343%" y="101" width="0.0145%" height="15" fill="rgb(229,67,23)" fg:x="70529" fg:w="349"/><text x="3.1843%" y="111.50"></text></g><g><title>Parse::Parse (349 samples, 0.01%)</title><rect x="2.9343%" y="85" width="0.0145%" height="15" fill="rgb(249,83,47)" fg:x="70529" fg:w="349"/><text x="3.1843%" y="95.50"></text></g><g><title>Parse::do_call (474 samples, 0.02%)</title><rect x="2.9314%" y="117" width="0.0197%" height="15" fill="rgb(215,43,3)" fg:x="70460" fg:w="474"/><text x="3.1814%" y="127.50"></text></g><g><title>ParseGenerator::generate (569 samples, 0.02%)</title><rect x="2.9307%" y="197" width="0.0237%" height="15" fill="rgb(238,154,13)" fg:x="70443" fg:w="569"/><text x="3.1807%" y="207.50"></text></g><g><title>Parse::Parse (569 samples, 0.02%)</title><rect x="2.9307%" y="181" width="0.0237%" height="15" fill="rgb(219,56,2)" fg:x="70443" fg:w="569"/><text x="3.1807%" y="191.50"></text></g><g><title>Parse::do_all_blocks (567 samples, 0.02%)</title><rect x="2.9308%" y="165" width="0.0236%" height="15" fill="rgb(233,0,4)" fg:x="70445" fg:w="567"/><text x="3.1808%" y="175.50"></text></g><g><title>Parse::do_one_block (567 samples, 0.02%)</title><rect x="2.9308%" y="149" width="0.0236%" height="15" fill="rgb(235,30,7)" fg:x="70445" fg:w="567"/><text x="3.1808%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (564 samples, 0.02%)</title><rect x="2.9309%" y="133" width="0.0235%" height="15" fill="rgb(250,79,13)" fg:x="70448" fg:w="564"/><text x="3.1809%" y="143.50"></text></g><g><title>Parse::do_call (705 samples, 0.03%)</title><rect x="2.9286%" y="213" width="0.0293%" height="15" fill="rgb(211,146,34)" fg:x="70392" fg:w="705"/><text x="3.1786%" y="223.50"></text></g><g><title>ParseGenerator::generate (720 samples, 0.03%)</title><rect x="2.9284%" y="293" width="0.0300%" height="15" fill="rgb(228,22,38)" fg:x="70388" fg:w="720"/><text x="3.1784%" y="303.50"></text></g><g><title>Parse::Parse (720 samples, 0.03%)</title><rect x="2.9284%" y="277" width="0.0300%" height="15" fill="rgb(235,168,5)" fg:x="70388" fg:w="720"/><text x="3.1784%" y="287.50"></text></g><g><title>Parse::do_all_blocks (718 samples, 0.03%)</title><rect x="2.9285%" y="261" width="0.0299%" height="15" fill="rgb(221,155,16)" fg:x="70390" fg:w="718"/><text x="3.1785%" y="271.50"></text></g><g><title>Parse::do_one_block (718 samples, 0.03%)</title><rect x="2.9285%" y="245" width="0.0299%" height="15" fill="rgb(215,215,53)" fg:x="70390" fg:w="718"/><text x="3.1785%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (718 samples, 0.03%)</title><rect x="2.9285%" y="229" width="0.0299%" height="15" fill="rgb(223,4,10)" fg:x="70390" fg:w="718"/><text x="3.1785%" y="239.50"></text></g><g><title>Parse::do_call (897 samples, 0.04%)</title><rect x="2.9272%" y="309" width="0.0373%" height="15" fill="rgb(234,103,6)" fg:x="70358" fg:w="897"/><text x="3.1772%" y="319.50"></text></g><g><title>ParseGenerator::generate (900 samples, 0.04%)</title><rect x="2.9272%" y="389" width="0.0374%" height="15" fill="rgb(227,97,0)" fg:x="70357" fg:w="900"/><text x="3.1772%" y="399.50"></text></g><g><title>Parse::Parse (900 samples, 0.04%)</title><rect x="2.9272%" y="373" width="0.0374%" height="15" fill="rgb(234,150,53)" fg:x="70357" fg:w="900"/><text x="3.1772%" y="383.50"></text></g><g><title>Parse::do_all_blocks (899 samples, 0.04%)</title><rect x="2.9272%" y="357" width="0.0374%" height="15" fill="rgb(228,201,54)" fg:x="70358" fg:w="899"/><text x="3.1772%" y="367.50"></text></g><g><title>Parse::do_one_block (899 samples, 0.04%)</title><rect x="2.9272%" y="341" width="0.0374%" height="15" fill="rgb(222,22,37)" fg:x="70358" fg:w="899"/><text x="3.1772%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (899 samples, 0.04%)</title><rect x="2.9272%" y="325" width="0.0374%" height="15" fill="rgb(237,53,32)" fg:x="70358" fg:w="899"/><text x="3.1772%" y="335.50"></text></g><g><title>ParseGenerator::generate (1,086 samples, 0.05%)</title><rect x="2.9270%" y="485" width="0.0452%" height="15" fill="rgb(233,25,53)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="495.50"></text></g><g><title>Parse::Parse (1,086 samples, 0.05%)</title><rect x="2.9270%" y="469" width="0.0452%" height="15" fill="rgb(210,40,34)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="479.50"></text></g><g><title>Parse::do_all_blocks (1,086 samples, 0.05%)</title><rect x="2.9270%" y="453" width="0.0452%" height="15" fill="rgb(241,220,44)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="463.50"></text></g><g><title>Parse::do_one_block (1,086 samples, 0.05%)</title><rect x="2.9270%" y="437" width="0.0452%" height="15" fill="rgb(235,28,35)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (1,086 samples, 0.05%)</title><rect x="2.9270%" y="421" width="0.0452%" height="15" fill="rgb(210,56,17)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="431.50"></text></g><g><title>Parse::do_call (1,086 samples, 0.05%)</title><rect x="2.9270%" y="405" width="0.0452%" height="15" fill="rgb(224,130,29)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="415.50"></text></g><g><title>Parse::do_call (241 samples, 0.01%)</title><rect x="2.9725%" y="197" width="0.0100%" height="15" fill="rgb(235,212,8)" fg:x="71447" fg:w="241"/><text x="3.2225%" y="207.50"></text></g><g><title>ParseGenerator::generate (251 samples, 0.01%)</title><rect x="2.9724%" y="277" width="0.0104%" height="15" fill="rgb(223,33,50)" fg:x="71444" fg:w="251"/><text x="3.2224%" y="287.50"></text></g><g><title>Parse::Parse (251 samples, 0.01%)</title><rect x="2.9724%" y="261" width="0.0104%" height="15" fill="rgb(219,149,13)" fg:x="71444" fg:w="251"/><text x="3.2224%" y="271.50"></text></g><g><title>Parse::do_all_blocks (250 samples, 0.01%)</title><rect x="2.9724%" y="245" width="0.0104%" height="15" fill="rgb(250,156,29)" fg:x="71445" fg:w="250"/><text x="3.2224%" y="255.50"></text></g><g><title>Parse::do_one_block (250 samples, 0.01%)</title><rect x="2.9724%" y="229" width="0.0104%" height="15" fill="rgb(216,193,19)" fg:x="71445" fg:w="250"/><text x="3.2224%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (250 samples, 0.01%)</title><rect x="2.9724%" y="213" width="0.0104%" height="15" fill="rgb(216,135,14)" fg:x="71445" fg:w="250"/><text x="3.2224%" y="223.50"></text></g><g><title>Parse::do_call (265 samples, 0.01%)</title><rect x="2.9722%" y="293" width="0.0110%" height="15" fill="rgb(241,47,5)" fg:x="71439" fg:w="265"/><text x="3.2222%" y="303.50"></text></g><g><title>ParseGenerator::generate (266 samples, 0.01%)</title><rect x="2.9722%" y="373" width="0.0111%" height="15" fill="rgb(233,42,35)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="383.50"></text></g><g><title>Parse::Parse (266 samples, 0.01%)</title><rect x="2.9722%" y="357" width="0.0111%" height="15" fill="rgb(231,13,6)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="367.50"></text></g><g><title>Parse::do_all_blocks (266 samples, 0.01%)</title><rect x="2.9722%" y="341" width="0.0111%" height="15" fill="rgb(207,181,40)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="351.50"></text></g><g><title>Parse::do_one_block (266 samples, 0.01%)</title><rect x="2.9722%" y="325" width="0.0111%" height="15" fill="rgb(254,173,49)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (266 samples, 0.01%)</title><rect x="2.9722%" y="309" width="0.0111%" height="15" fill="rgb(221,1,38)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="319.50"></text></g><g><title>ParseGenerator::generate (306 samples, 0.01%)</title><rect x="2.9722%" y="469" width="0.0127%" height="15" fill="rgb(206,124,46)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="479.50"></text></g><g><title>Parse::Parse (306 samples, 0.01%)</title><rect x="2.9722%" y="453" width="0.0127%" height="15" fill="rgb(249,21,11)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="463.50"></text></g><g><title>Parse::do_all_blocks (306 samples, 0.01%)</title><rect x="2.9722%" y="437" width="0.0127%" height="15" fill="rgb(222,201,40)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="447.50"></text></g><g><title>Parse::do_one_block (306 samples, 0.01%)</title><rect x="2.9722%" y="421" width="0.0127%" height="15" fill="rgb(235,61,29)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (306 samples, 0.01%)</title><rect x="2.9722%" y="405" width="0.0127%" height="15" fill="rgb(219,207,3)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="415.50"></text></g><g><title>Parse::do_call (306 samples, 0.01%)</title><rect x="2.9722%" y="389" width="0.0127%" height="15" fill="rgb(222,56,46)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="399.50"></text></g><g><title>ParseGenerator::generate (1,459 samples, 0.06%)</title><rect x="2.9270%" y="581" width="0.0607%" height="15" fill="rgb(239,76,54)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="591.50"></text></g><g><title>Parse::Parse (1,459 samples, 0.06%)</title><rect x="2.9270%" y="565" width="0.0607%" height="15" fill="rgb(231,124,27)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,459 samples, 0.06%)</title><rect x="2.9270%" y="549" width="0.0607%" height="15" fill="rgb(249,195,6)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="559.50"></text></g><g><title>Parse::do_one_block (1,459 samples, 0.06%)</title><rect x="2.9270%" y="533" width="0.0607%" height="15" fill="rgb(237,174,47)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,459 samples, 0.06%)</title><rect x="2.9270%" y="517" width="0.0607%" height="15" fill="rgb(206,201,31)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="527.50"></text></g><g><title>Parse::do_call (1,459 samples, 0.06%)</title><rect x="2.9270%" y="501" width="0.0607%" height="15" fill="rgb(231,57,52)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (373 samples, 0.02%)</title><rect x="2.9722%" y="485" width="0.0155%" height="15" fill="rgb(248,177,22)" fg:x="71439" fg:w="373"/><text x="3.2222%" y="495.50"></text></g><g><title>Compile::Compile (50,306 samples, 2.09%)</title><rect x="0.8950%" y="597" width="2.0929%" height="15" fill="rgb(215,211,37)" fg:x="21513" fg:w="50306"/><text x="1.1450%" y="607.50">C..</text></g><g><title>Compile::final_graph_reshaping_walk (344 samples, 0.01%)</title><rect x="2.9886%" y="565" width="0.0143%" height="15" fill="rgb(241,128,51)" fg:x="71833" fg:w="344"/><text x="3.2386%" y="575.50"></text></g><g><title>Compile::final_graph_reshaping (352 samples, 0.01%)</title><rect x="2.9883%" y="581" width="0.0146%" height="15" fill="rgb(227,165,31)" fg:x="71826" fg:w="352"/><text x="3.2383%" y="591.50"></text></g><g><title>Compile::remove_speculative_types (339 samples, 0.01%)</title><rect x="3.0087%" y="581" width="0.0141%" height="15" fill="rgb(228,167,24)" fg:x="72318" fg:w="339"/><text x="3.2587%" y="591.50"></text></g><g><title>ConnectionGraph::compute_escape (666 samples, 0.03%)</title><rect x="3.0231%" y="565" width="0.0277%" height="15" fill="rgb(228,143,12)" fg:x="72664" fg:w="666"/><text x="3.2731%" y="575.50"></text></g><g><title>ConnectionGraph::do_analysis (673 samples, 0.03%)</title><rect x="3.0230%" y="581" width="0.0280%" height="15" fill="rgb(249,149,8)" fg:x="72660" fg:w="673"/><text x="3.2730%" y="591.50"></text></g><g><title>PhaseCCP::analyze (865 samples, 0.04%)</title><rect x="3.0512%" y="581" width="0.0360%" height="15" fill="rgb(243,35,44)" fg:x="73338" fg:w="865"/><text x="3.3012%" y="591.50"></text></g><g><title>PhaseCCP::do_transform (263 samples, 0.01%)</title><rect x="3.0872%" y="581" width="0.0109%" height="15" fill="rgb(246,89,9)" fg:x="74203" fg:w="263"/><text x="3.3372%" y="591.50"></text></g><g><title>PhaseCCP::transform (263 samples, 0.01%)</title><rect x="3.0872%" y="565" width="0.0109%" height="15" fill="rgb(233,213,13)" fg:x="74203" fg:w="263"/><text x="3.3372%" y="575.50"></text></g><g><title>IdealLoopTree::iteration_split (264 samples, 0.01%)</title><rect x="3.1035%" y="565" width="0.0110%" height="15" fill="rgb(233,141,41)" fg:x="74596" fg:w="264"/><text x="3.3535%" y="575.50"></text></g><g><title>IdealLoopTree::loop_predication (307 samples, 0.01%)</title><rect x="3.1145%" y="565" width="0.0128%" height="15" fill="rgb(239,167,4)" fg:x="74860" fg:w="307"/><text x="3.3645%" y="575.50"></text></g><g><title>NTarjan::DFS (369 samples, 0.02%)</title><rect x="3.1640%" y="549" width="0.0154%" height="15" fill="rgb(209,217,16)" fg:x="76050" fg:w="369"/><text x="3.4140%" y="559.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,265 samples, 0.05%)</title><rect x="3.1291%" y="565" width="0.0526%" height="15" fill="rgb(219,88,35)" fg:x="75212" fg:w="1265"/><text x="3.3791%" y="575.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (447 samples, 0.02%)</title><rect x="3.2351%" y="549" width="0.0186%" height="15" fill="rgb(220,193,23)" fg:x="77760" fg:w="447"/><text x="3.4851%" y="559.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (406 samples, 0.02%)</title><rect x="3.2369%" y="533" width="0.0169%" height="15" fill="rgb(230,90,52)" fg:x="77801" fg:w="406"/><text x="3.4869%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,822 samples, 0.08%)</title><rect x="3.1818%" y="565" width="0.0758%" height="15" fill="rgb(252,106,19)" fg:x="76477" fg:w="1822"/><text x="3.4318%" y="575.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (290 samples, 0.01%)</title><rect x="3.3814%" y="501" width="0.0121%" height="15" fill="rgb(206,74,20)" fg:x="81275" fg:w="290"/><text x="3.6314%" y="511.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (444 samples, 0.02%)</title><rect x="3.3770%" y="517" width="0.0185%" height="15" fill="rgb(230,138,44)" fg:x="81169" fg:w="444"/><text x="3.6270%" y="527.50"></text></g><g><title>PhaseIdealLoop::dom_depth (719 samples, 0.03%)</title><rect x="3.5124%" y="501" width="0.0299%" height="15" fill="rgb(235,182,43)" fg:x="84424" fg:w="719"/><text x="3.7624%" y="511.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,339 samples, 0.14%)</title><rect x="3.4036%" y="517" width="0.1389%" height="15" fill="rgb(242,16,51)" fg:x="81809" fg:w="3339"/><text x="3.6536%" y="527.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,559 samples, 0.19%)</title><rect x="3.3537%" y="533" width="0.1897%" height="15" fill="rgb(248,9,4)" fg:x="80610" fg:w="4559"/><text x="3.6037%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,513 samples, 0.23%)</title><rect x="3.3179%" y="549" width="0.2294%" height="15" fill="rgb(210,31,22)" fg:x="79748" fg:w="5513"/><text x="3.5679%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,981 samples, 0.29%)</title><rect x="3.2576%" y="565" width="0.2904%" height="15" fill="rgb(239,54,39)" fg:x="78299" fg:w="6981"/><text x="3.5076%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (289 samples, 0.01%)</title><rect x="3.5788%" y="549" width="0.0120%" height="15" fill="rgb(230,99,41)" fg:x="86021" fg:w="289"/><text x="3.8288%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,041 samples, 0.04%)</title><rect x="3.5481%" y="565" width="0.0433%" height="15" fill="rgb(253,106,12)" fg:x="85282" fg:w="1041"/><text x="3.7981%" y="575.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (286 samples, 0.01%)</title><rect x="3.6200%" y="549" width="0.0119%" height="15" fill="rgb(213,46,41)" fg:x="87011" fg:w="286"/><text x="3.8700%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (871 samples, 0.04%)</title><rect x="3.6319%" y="549" width="0.0362%" height="15" fill="rgb(215,133,35)" fg:x="87297" fg:w="871"/><text x="3.8819%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,776 samples, 0.07%)</title><rect x="3.5945%" y="565" width="0.0739%" height="15" fill="rgb(213,28,5)" fg:x="86398" fg:w="1776"/><text x="3.8445%" y="575.50"></text></g><g><title>RegionNode::Ideal (247 samples, 0.01%)</title><rect x="3.7159%" y="533" width="0.0103%" height="15" fill="rgb(215,77,49)" fg:x="89315" fg:w="247"/><text x="3.9659%" y="543.50"></text></g><g><title>PhaseIterGVN::transform_old (1,502 samples, 0.06%)</title><rect x="3.6714%" y="549" width="0.0625%" height="15" fill="rgb(248,100,22)" fg:x="88245" fg:w="1502"/><text x="3.9214%" y="559.50"></text></g><g><title>PhaseIterGVN::optimize (1,584 samples, 0.07%)</title><rect x="3.6685%" y="565" width="0.0659%" height="15" fill="rgb(208,67,9)" fg:x="88177" fg:w="1584"/><text x="3.9185%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (15,413 samples, 0.64%)</title><rect x="3.0989%" y="581" width="0.6412%" height="15" fill="rgb(219,133,21)" fg:x="74484" fg:w="15413"/><text x="3.3489%" y="591.50"></text></g><g><title>IfNode::Ideal (348 samples, 0.01%)</title><rect x="3.7639%" y="549" width="0.0145%" height="15" fill="rgb(246,46,29)" fg:x="90468" fg:w="348"/><text x="4.0139%" y="559.50"></text></g><g><title>PhaseIterGVN::subsume_node (244 samples, 0.01%)</title><rect x="3.8054%" y="549" width="0.0102%" height="15" fill="rgb(246,185,52)" fg:x="91466" fg:w="244"/><text x="4.0554%" y="559.50"></text></g><g><title>RegionNode::Ideal (424 samples, 0.02%)</title><rect x="3.8272%" y="549" width="0.0176%" height="15" fill="rgb(252,136,11)" fg:x="91991" fg:w="424"/><text x="4.0772%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (252 samples, 0.01%)</title><rect x="3.8460%" y="405" width="0.0105%" height="15" fill="rgb(219,138,53)" fg:x="92442" fg:w="252"/><text x="4.0960%" y="415.50"></text></g><g><title>InitializeNode::detect_init_independence (262 samples, 0.01%)</title><rect x="3.8460%" y="421" width="0.0109%" height="15" fill="rgb(211,51,23)" fg:x="92442" fg:w="262"/><text x="4.0960%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (276 samples, 0.01%)</title><rect x="3.8459%" y="437" width="0.0115%" height="15" fill="rgb(247,221,28)" fg:x="92441" fg:w="276"/><text x="4.0959%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (295 samples, 0.01%)</title><rect x="3.8459%" y="453" width="0.0123%" height="15" fill="rgb(251,222,45)" fg:x="92441" fg:w="295"/><text x="4.0959%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (309 samples, 0.01%)</title><rect x="3.8459%" y="469" width="0.0129%" height="15" fill="rgb(217,162,53)" fg:x="92441" fg:w="309"/><text x="4.0959%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (342 samples, 0.01%)</title><rect x="3.8459%" y="485" width="0.0142%" height="15" fill="rgb(229,93,14)" fg:x="92441" fg:w="342"/><text x="4.0959%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (371 samples, 0.02%)</title><rect x="3.8459%" y="501" width="0.0154%" height="15" fill="rgb(209,67,49)" fg:x="92441" fg:w="371"/><text x="4.0959%" y="511.50"></text></g><g><title>InitializeNode::can_capture_store (372 samples, 0.02%)</title><rect x="3.8459%" y="533" width="0.0155%" height="15" fill="rgb(213,87,29)" fg:x="92441" fg:w="372"/><text x="4.0959%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (372 samples, 0.02%)</title><rect x="3.8459%" y="517" width="0.0155%" height="15" fill="rgb(205,151,52)" fg:x="92441" fg:w="372"/><text x="4.0959%" y="527.50"></text></g><g><title>StoreNode::Ideal (414 samples, 0.02%)</title><rect x="3.8457%" y="549" width="0.0172%" height="15" fill="rgb(253,215,39)" fg:x="92435" fg:w="414"/><text x="4.0957%" y="559.50"></text></g><g><title>PhaseIterGVN::transform_old (2,786 samples, 0.12%)</title><rect x="3.7495%" y="565" width="0.1159%" height="15" fill="rgb(221,220,41)" fg:x="90122" fg:w="2786"/><text x="3.9995%" y="575.50"></text></g><g><title>PhaseIterGVN::optimize (2,894 samples, 0.12%)</title><rect x="3.7459%" y="581" width="0.1204%" height="15" fill="rgb(218,133,21)" fg:x="90037" fg:w="2894"/><text x="3.9959%" y="591.50"></text></g><g><title>PhaseIterGVN::transform_old (296 samples, 0.01%)</title><rect x="3.8686%" y="549" width="0.0123%" height="15" fill="rgb(221,193,43)" fg:x="92986" fg:w="296"/><text x="4.1186%" y="559.50"></text></g><g><title>PhaseIterGVN::optimize (312 samples, 0.01%)</title><rect x="3.8681%" y="565" width="0.0130%" height="15" fill="rgb(240,128,52)" fg:x="92973" fg:w="312"/><text x="4.1181%" y="575.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (456 samples, 0.02%)</title><rect x="3.8679%" y="581" width="0.0190%" height="15" fill="rgb(253,114,12)" fg:x="92970" fg:w="456"/><text x="4.1179%" y="591.50"></text></g><g><title>Compile::Optimize (21,819 samples, 0.91%)</title><rect x="2.9880%" y="597" width="0.9078%" height="15" fill="rgb(215,223,47)" fg:x="71819" fg:w="21819"/><text x="3.2380%" y="607.50"></text></g><g><title>CompileBroker::compiler_thread_loop (255 samples, 0.01%)</title><rect x="3.8962%" y="597" width="0.0106%" height="15" fill="rgb(248,225,23)" fg:x="93650" fg:w="255"/><text x="4.1462%" y="607.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (255 samples, 0.01%)</title><rect x="3.8962%" y="581" width="0.0106%" height="15" fill="rgb(250,108,0)" fg:x="93650" fg:w="255"/><text x="4.1462%" y="591.50"></text></g><g><title>C2Compiler::compile_method (255 samples, 0.01%)</title><rect x="3.8962%" y="565" width="0.0106%" height="15" fill="rgb(228,208,7)" fg:x="93650" fg:w="255"/><text x="4.1462%" y="575.50"></text></g><g><title>Compile::Compile (255 samples, 0.01%)</title><rect x="3.8962%" y="549" width="0.0106%" height="15" fill="rgb(244,45,10)" fg:x="93650" fg:w="255"/><text x="4.1462%" y="559.50"></text></g><g><title>Parse::Parse (249 samples, 0.01%)</title><rect x="3.9203%" y="437" width="0.0104%" height="15" fill="rgb(207,125,25)" fg:x="94228" fg:w="249"/><text x="4.1703%" y="447.50"></text></g><g><title>ParseGenerator::generate (252 samples, 0.01%)</title><rect x="3.9202%" y="453" width="0.0105%" height="15" fill="rgb(210,195,18)" fg:x="94227" fg:w="252"/><text x="4.1702%" y="463.50"></text></g><g><title>Parse::do_call (553 samples, 0.02%)</title><rect x="3.9129%" y="469" width="0.0230%" height="15" fill="rgb(249,80,12)" fg:x="94051" fg:w="553"/><text x="4.1629%" y="479.50"></text></g><g><title>Parse::do_all_blocks (792 samples, 0.03%)</title><rect x="3.9107%" y="517" width="0.0330%" height="15" fill="rgb(221,65,9)" fg:x="93998" fg:w="792"/><text x="4.1607%" y="527.50"></text></g><g><title>Parse::do_one_block (791 samples, 0.03%)</title><rect x="3.9108%" y="501" width="0.0329%" height="15" fill="rgb(235,49,36)" fg:x="93999" fg:w="791"/><text x="4.1608%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (783 samples, 0.03%)</title><rect x="3.9111%" y="485" width="0.0326%" height="15" fill="rgb(225,32,20)" fg:x="94007" fg:w="783"/><text x="4.1611%" y="495.50"></text></g><g><title>ParseGenerator::generate (811 samples, 0.03%)</title><rect x="3.9107%" y="549" width="0.0337%" height="15" fill="rgb(215,141,46)" fg:x="93998" fg:w="811"/><text x="4.1607%" y="559.50"></text></g><g><title>Parse::Parse (811 samples, 0.03%)</title><rect x="3.9107%" y="533" width="0.0337%" height="15" fill="rgb(250,160,47)" fg:x="93998" fg:w="811"/><text x="4.1607%" y="543.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (940 samples, 0.04%)</title><rect x="3.9068%" y="597" width="0.0391%" height="15" fill="rgb(216,222,40)" fg:x="93905" fg:w="940"/><text x="4.1568%" y="607.50"></text></g><g><title>C2Compiler::compile_method (940 samples, 0.04%)</title><rect x="3.9068%" y="581" width="0.0391%" height="15" fill="rgb(234,217,39)" fg:x="93905" fg:w="940"/><text x="4.1568%" y="591.50"></text></g><g><title>Compile::Compile (940 samples, 0.04%)</title><rect x="3.9068%" y="565" width="0.0391%" height="15" fill="rgb(207,178,40)" fg:x="93905" fg:w="940"/><text x="4.1568%" y="575.50"></text></g><g><title>ParseGenerator::generate (247 samples, 0.01%)</title><rect x="3.9659%" y="597" width="0.0103%" height="15" fill="rgb(221,136,13)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="607.50"></text></g><g><title>Parse::Parse (247 samples, 0.01%)</title><rect x="3.9659%" y="581" width="0.0103%" height="15" fill="rgb(249,199,10)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="591.50"></text></g><g><title>Parse::do_all_blocks (247 samples, 0.01%)</title><rect x="3.9659%" y="565" width="0.0103%" height="15" fill="rgb(249,222,13)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="575.50"></text></g><g><title>Parse::do_one_block (247 samples, 0.01%)</title><rect x="3.9659%" y="549" width="0.0103%" height="15" fill="rgb(244,185,38)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (247 samples, 0.01%)</title><rect x="3.9659%" y="533" width="0.0103%" height="15" fill="rgb(236,202,9)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="543.50"></text></g><g><title>Parse::do_call (247 samples, 0.01%)</title><rect x="3.9659%" y="517" width="0.0103%" height="15" fill="rgb(250,229,37)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="527.50"></text></g><g><title>[unknown] (77,733 samples, 3.23%)</title><rect x="0.7587%" y="613" width="3.2340%" height="15" fill="rgb(206,174,23)" fg:x="18235" fg:w="77733"/><text x="1.0087%" y="623.50">[un..</text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (514 samples, 0.02%)</title><rect x="4.0025%" y="469" width="0.0214%" height="15" fill="rgb(211,33,43)" fg:x="96205" fg:w="514"/><text x="4.2525%" y="479.50"></text></g><g><title>Compile::Compile (766 samples, 0.03%)</title><rect x="3.9948%" y="485" width="0.0319%" height="15" fill="rgb(245,58,50)" fg:x="96018" fg:w="766"/><text x="4.2448%" y="495.50"></text></g><g><title>C2Compiler::compile_method (780 samples, 0.03%)</title><rect x="3.9942%" y="501" width="0.0325%" height="15" fill="rgb(244,68,36)" fg:x="96005" fg:w="780"/><text x="4.2442%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (958 samples, 0.04%)</title><rect x="3.9940%" y="517" width="0.0399%" height="15" fill="rgb(232,229,15)" fg:x="95999" fg:w="958"/><text x="4.2440%" y="527.50"></text></g><g><title>Monitor::IWait (258 samples, 0.01%)</title><rect x="4.0350%" y="485" width="0.0107%" height="15" fill="rgb(254,30,23)" fg:x="96985" fg:w="258"/><text x="4.2850%" y="495.50"></text></g><g><title>Monitor::wait (269 samples, 0.01%)</title><rect x="4.0346%" y="501" width="0.0112%" height="15" fill="rgb(235,160,14)" fg:x="96975" fg:w="269"/><text x="4.2846%" y="511.50"></text></g><g><title>CompileQueue::get (331 samples, 0.01%)</title><rect x="4.0342%" y="517" width="0.0138%" height="15" fill="rgb(212,155,44)" fg:x="96965" fg:w="331"/><text x="4.2842%" y="527.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,303 samples, 0.05%)</title><rect x="3.9938%" y="533" width="0.0542%" height="15" fill="rgb(226,2,50)" fg:x="95996" fg:w="1303"/><text x="4.2438%" y="543.50"></text></g><g><title>Thread::call_run (1,308 samples, 0.05%)</title><rect x="3.9938%" y="565" width="0.0544%" height="15" fill="rgb(234,177,6)" fg:x="95995" fg:w="1308"/><text x="4.2438%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (1,307 samples, 0.05%)</title><rect x="3.9938%" y="549" width="0.0544%" height="15" fill="rgb(217,24,9)" fg:x="95996" fg:w="1307"/><text x="4.2438%" y="559.50"></text></g><g><title>__GI___clone (1,317 samples, 0.05%)</title><rect x="3.9935%" y="613" width="0.0548%" height="15" fill="rgb(220,13,46)" fg:x="95987" fg:w="1317"/><text x="4.2435%" y="623.50"></text></g><g><title>start_thread (1,311 samples, 0.05%)</title><rect x="3.9937%" y="597" width="0.0545%" height="15" fill="rgb(239,221,27)" fg:x="95993" fg:w="1311"/><text x="4.2437%" y="607.50"></text></g><g><title>thread_native_entry (1,309 samples, 0.05%)</title><rect x="3.9938%" y="581" width="0.0545%" height="15" fill="rgb(222,198,25)" fg:x="95995" fg:w="1309"/><text x="4.2438%" y="591.50"></text></g><g><title>C2_CompilerThre (83,690 samples, 3.48%)</title><rect x="0.5716%" y="629" width="3.4819%" height="15" fill="rgb(211,99,13)" fg:x="13740" fg:w="83690"/><text x="0.8216%" y="639.50">C2_..</text></g><g><title>__pthread_cond_timedwait (243 samples, 0.01%)</title><rect x="4.0920%" y="565" width="0.0101%" height="15" fill="rgb(232,111,31)" fg:x="98356" fg:w="243"/><text x="4.3420%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (243 samples, 0.01%)</title><rect x="4.0920%" y="549" width="0.0101%" height="15" fill="rgb(245,82,37)" fg:x="98356" fg:w="243"/><text x="4.3420%" y="559.50"></text></g><g><title>Parker::park (380 samples, 0.02%)</title><rect x="4.0909%" y="581" width="0.0158%" height="15" fill="rgb(227,149,46)" fg:x="98328" fg:w="380"/><text x="4.3409%" y="591.50"></text></g><g><title>Unsafe_Park (390 samples, 0.02%)</title><rect x="4.0906%" y="597" width="0.0162%" height="15" fill="rgb(218,36,50)" fg:x="98321" fg:w="390"/><text x="4.3406%" y="607.50"></text></g><g><title>[perf-996087.map] (1,060 samples, 0.04%)</title><rect x="4.0632%" y="613" width="0.0441%" height="15" fill="rgb(226,80,48)" fg:x="97662" fg:w="1060"/><text x="4.3132%" y="623.50"></text></g><g><title>ForkJoinPool.co (1,084 samples, 0.05%)</title><rect x="4.0626%" y="629" width="0.0451%" height="15" fill="rgb(238,224,15)" fg:x="97648" fg:w="1084"/><text x="4.3126%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue (371 samples, 0.02%)</title><rect x="4.1400%" y="501" width="0.0154%" height="15" fill="rgb(241,136,10)" fg:x="99510" fg:w="371"/><text x="4.3900%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (435 samples, 0.02%)</title><rect x="4.1394%" y="517" width="0.0181%" height="15" fill="rgb(208,32,45)" fg:x="99494" fg:w="435"/><text x="4.3894%" y="527.50"></text></g><g><title>frame::oops_interpreted_do (243 samples, 0.01%)</title><rect x="4.1717%" y="437" width="0.0101%" height="15" fill="rgb(207,135,9)" fg:x="100271" fg:w="243"/><text x="4.4217%" y="447.50"></text></g><g><title>G1RootProcessor::process_java_roots (260 samples, 0.01%)</title><rect x="4.1710%" y="501" width="0.0108%" height="15" fill="rgb(206,86,44)" fg:x="100255" fg:w="260"/><text x="4.4210%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (260 samples, 0.01%)</title><rect x="4.1710%" y="485" width="0.0108%" height="15" fill="rgb(245,177,15)" fg:x="100255" fg:w="260"/><text x="4.4210%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (260 samples, 0.01%)</title><rect x="4.1710%" y="469" width="0.0108%" height="15" fill="rgb(206,64,50)" fg:x="100255" fg:w="260"/><text x="4.4210%" y="479.50"></text></g><g><title>JavaThread::oops_do (260 samples, 0.01%)</title><rect x="4.1710%" y="453" width="0.0108%" height="15" fill="rgb(234,36,40)" fg:x="100255" fg:w="260"/><text x="4.4210%" y="463.50"></text></g><g><title>G1ParTask::work (1,028 samples, 0.04%)</title><rect x="4.1394%" y="533" width="0.0428%" height="15" fill="rgb(213,64,8)" fg:x="99494" fg:w="1028"/><text x="4.3894%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (270 samples, 0.01%)</title><rect x="4.1709%" y="517" width="0.0112%" height="15" fill="rgb(210,75,36)" fg:x="100252" fg:w="270"/><text x="4.4209%" y="527.50"></text></g><g><title>__GI___clone (1,274 samples, 0.05%)</title><rect x="4.1385%" y="613" width="0.0530%" height="15" fill="rgb(229,88,21)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="623.50"></text></g><g><title>start_thread (1,274 samples, 0.05%)</title><rect x="4.1385%" y="597" width="0.0530%" height="15" fill="rgb(252,204,47)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="607.50"></text></g><g><title>thread_native_entry (1,274 samples, 0.05%)</title><rect x="4.1385%" y="581" width="0.0530%" height="15" fill="rgb(208,77,27)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="591.50"></text></g><g><title>Thread::call_run (1,274 samples, 0.05%)</title><rect x="4.1385%" y="565" width="0.0530%" height="15" fill="rgb(221,76,26)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="575.50"></text></g><g><title>GangWorker::loop (1,274 samples, 0.05%)</title><rect x="4.1385%" y="549" width="0.0530%" height="15" fill="rgb(225,139,18)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="559.50"></text></g><g><title>GC_Thread#0 (1,296 samples, 0.05%)</title><rect x="4.1376%" y="629" width="0.0539%" height="15" fill="rgb(230,137,11)" fg:x="99451" fg:w="1296"/><text x="4.3876%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (298 samples, 0.01%)</title><rect x="4.2015%" y="485" width="0.0124%" height="15" fill="rgb(212,28,1)" fg:x="100987" fg:w="298"/><text x="4.4515%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (479 samples, 0.02%)</title><rect x="4.1946%" y="501" width="0.0199%" height="15" fill="rgb(248,164,17)" fg:x="100822" fg:w="479"/><text x="4.4446%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (548 samples, 0.02%)</title><rect x="4.1943%" y="517" width="0.0228%" height="15" fill="rgb(222,171,42)" fg:x="100815" fg:w="548"/><text x="4.4443%" y="527.50"></text></g><g><title>G1ParTask::work (1,062 samples, 0.04%)</title><rect x="4.1943%" y="533" width="0.0442%" height="15" fill="rgb(243,84,45)" fg:x="100815" fg:w="1062"/><text x="4.4443%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (275 samples, 0.01%)</title><rect x="4.2271%" y="517" width="0.0114%" height="15" fill="rgb(252,49,23)" fg:x="101602" fg:w="275"/><text x="4.4771%" y="527.50"></text></g><g><title>__GI___clone (1,333 samples, 0.06%)</title><rect x="4.1925%" y="613" width="0.0555%" height="15" fill="rgb(215,19,7)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="623.50"></text></g><g><title>start_thread (1,333 samples, 0.06%)</title><rect x="4.1925%" y="597" width="0.0555%" height="15" fill="rgb(238,81,41)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="607.50"></text></g><g><title>thread_native_entry (1,333 samples, 0.06%)</title><rect x="4.1925%" y="581" width="0.0555%" height="15" fill="rgb(210,199,37)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="591.50"></text></g><g><title>Thread::call_run (1,333 samples, 0.06%)</title><rect x="4.1925%" y="565" width="0.0555%" height="15" fill="rgb(244,192,49)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="575.50"></text></g><g><title>GangWorker::loop (1,333 samples, 0.06%)</title><rect x="4.1925%" y="549" width="0.0555%" height="15" fill="rgb(226,211,11)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="559.50"></text></g><g><title>GC_Thread#1 (1,357 samples, 0.06%)</title><rect x="4.1915%" y="629" width="0.0565%" height="15" fill="rgb(236,162,54)" fg:x="100747" fg:w="1357"/><text x="4.4415%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (264 samples, 0.01%)</title><rect x="4.2554%" y="485" width="0.0110%" height="15" fill="rgb(220,229,9)" fg:x="102283" fg:w="264"/><text x="4.5054%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (418 samples, 0.02%)</title><rect x="4.2498%" y="501" width="0.0174%" height="15" fill="rgb(250,87,22)" fg:x="102149" fg:w="418"/><text x="4.4998%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (489 samples, 0.02%)</title><rect x="4.2495%" y="517" width="0.0203%" height="15" fill="rgb(239,43,17)" fg:x="102142" fg:w="489"/><text x="4.4995%" y="527.50"></text></g><g><title>InterpreterOopMap::iterate_oop (250 samples, 0.01%)</title><rect x="4.2853%" y="421" width="0.0104%" height="15" fill="rgb(231,177,25)" fg:x="103002" fg:w="250"/><text x="4.5353%" y="431.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (249 samples, 0.01%)</title><rect x="4.2854%" y="405" width="0.0104%" height="15" fill="rgb(219,179,1)" fg:x="103003" fg:w="249"/><text x="4.5354%" y="415.50"></text></g><g><title>frame::oops_interpreted_do (252 samples, 0.01%)</title><rect x="4.2853%" y="437" width="0.0105%" height="15" fill="rgb(238,219,53)" fg:x="103002" fg:w="252"/><text x="4.5353%" y="447.50"></text></g><g><title>G1RootProcessor::process_java_roots (402 samples, 0.02%)</title><rect x="4.2792%" y="501" width="0.0167%" height="15" fill="rgb(232,167,36)" fg:x="102854" fg:w="402"/><text x="4.5292%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (322 samples, 0.01%)</title><rect x="4.2825%" y="485" width="0.0134%" height="15" fill="rgb(244,19,51)" fg:x="102934" fg:w="322"/><text x="4.5325%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (322 samples, 0.01%)</title><rect x="4.2825%" y="469" width="0.0134%" height="15" fill="rgb(224,6,22)" fg:x="102934" fg:w="322"/><text x="4.5325%" y="479.50"></text></g><g><title>JavaThread::oops_do (321 samples, 0.01%)</title><rect x="4.2825%" y="453" width="0.0134%" height="15" fill="rgb(224,145,5)" fg:x="102935" fg:w="321"/><text x="4.5325%" y="463.50"></text></g><g><title>G1ParTask::work (1,127 samples, 0.05%)</title><rect x="4.2495%" y="533" width="0.0469%" height="15" fill="rgb(234,130,49)" fg:x="102142" fg:w="1127"/><text x="4.4995%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (416 samples, 0.02%)</title><rect x="4.2791%" y="517" width="0.0173%" height="15" fill="rgb(254,6,2)" fg:x="102853" fg:w="416"/><text x="4.5291%" y="527.50"></text></g><g><title>__GI___clone (1,395 samples, 0.06%)</title><rect x="4.2491%" y="613" width="0.0580%" height="15" fill="rgb(208,96,46)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="623.50"></text></g><g><title>start_thread (1,395 samples, 0.06%)</title><rect x="4.2491%" y="597" width="0.0580%" height="15" fill="rgb(239,3,39)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="607.50"></text></g><g><title>thread_native_entry (1,395 samples, 0.06%)</title><rect x="4.2491%" y="581" width="0.0580%" height="15" fill="rgb(233,210,1)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="591.50"></text></g><g><title>Thread::call_run (1,395 samples, 0.06%)</title><rect x="4.2491%" y="565" width="0.0580%" height="15" fill="rgb(244,137,37)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="575.50"></text></g><g><title>GangWorker::loop (1,395 samples, 0.06%)</title><rect x="4.2491%" y="549" width="0.0580%" height="15" fill="rgb(240,136,2)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="559.50"></text></g><g><title>GC_Thread#2 (1,423 samples, 0.06%)</title><rect x="4.2480%" y="629" width="0.0592%" height="15" fill="rgb(239,18,37)" fg:x="102104" fg:w="1423"/><text x="4.4980%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (257 samples, 0.01%)</title><rect x="4.3174%" y="485" width="0.0107%" height="15" fill="rgb(218,185,22)" fg:x="103774" fg:w="257"/><text x="4.5674%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (418 samples, 0.02%)</title><rect x="4.3110%" y="501" width="0.0174%" height="15" fill="rgb(225,218,4)" fg:x="103620" fg:w="418"/><text x="4.5610%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (488 samples, 0.02%)</title><rect x="4.3104%" y="517" width="0.0203%" height="15" fill="rgb(230,182,32)" fg:x="103604" fg:w="488"/><text x="4.5604%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (276 samples, 0.01%)</title><rect x="4.3367%" y="501" width="0.0115%" height="15" fill="rgb(242,56,43)" fg:x="104237" fg:w="276"/><text x="4.5867%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (276 samples, 0.01%)</title><rect x="4.3367%" y="485" width="0.0115%" height="15" fill="rgb(233,99,24)" fg:x="104237" fg:w="276"/><text x="4.5867%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (276 samples, 0.01%)</title><rect x="4.3367%" y="469" width="0.0115%" height="15" fill="rgb(234,209,42)" fg:x="104237" fg:w="276"/><text x="4.5867%" y="479.50"></text></g><g><title>JavaThread::oops_do (276 samples, 0.01%)</title><rect x="4.3367%" y="453" width="0.0115%" height="15" fill="rgb(227,7,12)" fg:x="104237" fg:w="276"/><text x="4.5867%" y="463.50"></text></g><g><title>G1ParTask::work (920 samples, 0.04%)</title><rect x="4.3104%" y="533" width="0.0383%" height="15" fill="rgb(245,203,43)" fg:x="103604" fg:w="920"/><text x="4.5604%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (288 samples, 0.01%)</title><rect x="4.3367%" y="517" width="0.0120%" height="15" fill="rgb(238,205,33)" fg:x="104236" fg:w="288"/><text x="4.5867%" y="527.50"></text></g><g><title>__GI___clone (1,230 samples, 0.05%)</title><rect x="4.3082%" y="613" width="0.0512%" height="15" fill="rgb(231,56,7)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="623.50"></text></g><g><title>start_thread (1,230 samples, 0.05%)</title><rect x="4.3082%" y="597" width="0.0512%" height="15" fill="rgb(244,186,29)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="607.50"></text></g><g><title>thread_native_entry (1,230 samples, 0.05%)</title><rect x="4.3082%" y="581" width="0.0512%" height="15" fill="rgb(234,111,31)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="591.50"></text></g><g><title>Thread::call_run (1,230 samples, 0.05%)</title><rect x="4.3082%" y="565" width="0.0512%" height="15" fill="rgb(241,149,10)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="575.50"></text></g><g><title>GangWorker::loop (1,230 samples, 0.05%)</title><rect x="4.3082%" y="549" width="0.0512%" height="15" fill="rgb(249,206,44)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="559.50"></text></g><g><title>GC_Thread#3 (1,259 samples, 0.05%)</title><rect x="4.3072%" y="629" width="0.0524%" height="15" fill="rgb(251,153,30)" fg:x="103527" fg:w="1259"/><text x="4.5572%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (262 samples, 0.01%)</title><rect x="4.3680%" y="485" width="0.0109%" height="15" fill="rgb(239,152,38)" fg:x="104989" fg:w="262"/><text x="4.6180%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (409 samples, 0.02%)</title><rect x="4.3622%" y="501" width="0.0170%" height="15" fill="rgb(249,139,47)" fg:x="104850" fg:w="409"/><text x="4.6122%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (477 samples, 0.02%)</title><rect x="4.3616%" y="517" width="0.0198%" height="15" fill="rgb(244,64,35)" fg:x="104835" fg:w="477"/><text x="4.6116%" y="527.50"></text></g><g><title>G1ParTask::work (1,012 samples, 0.04%)</title><rect x="4.3615%" y="533" width="0.0421%" height="15" fill="rgb(216,46,15)" fg:x="104834" fg:w="1012"/><text x="4.6115%" y="543.50"></text></g><g><title>__GI___clone (1,273 samples, 0.05%)</title><rect x="4.3607%" y="613" width="0.0530%" height="15" fill="rgb(250,74,19)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="623.50"></text></g><g><title>start_thread (1,273 samples, 0.05%)</title><rect x="4.3607%" y="597" width="0.0530%" height="15" fill="rgb(249,42,33)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="607.50"></text></g><g><title>thread_native_entry (1,273 samples, 0.05%)</title><rect x="4.3607%" y="581" width="0.0530%" height="15" fill="rgb(242,149,17)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="591.50"></text></g><g><title>Thread::call_run (1,273 samples, 0.05%)</title><rect x="4.3607%" y="565" width="0.0530%" height="15" fill="rgb(244,29,21)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="575.50"></text></g><g><title>GangWorker::loop (1,273 samples, 0.05%)</title><rect x="4.3607%" y="549" width="0.0530%" height="15" fill="rgb(220,130,37)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="559.50"></text></g><g><title>GC_Thread#4 (1,304 samples, 0.05%)</title><rect x="4.3595%" y="629" width="0.0543%" height="15" fill="rgb(211,67,2)" fg:x="104786" fg:w="1304"/><text x="4.6095%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue (355 samples, 0.01%)</title><rect x="4.4156%" y="501" width="0.0148%" height="15" fill="rgb(235,68,52)" fg:x="106134" fg:w="355"/><text x="4.6656%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (414 samples, 0.02%)</title><rect x="4.4153%" y="517" width="0.0172%" height="15" fill="rgb(246,142,3)" fg:x="106125" fg:w="414"/><text x="4.6653%" y="527.50"></text></g><g><title>G1ParTask::work (935 samples, 0.04%)</title><rect x="4.4153%" y="533" width="0.0389%" height="15" fill="rgb(241,25,7)" fg:x="106125" fg:w="935"/><text x="4.6653%" y="543.50"></text></g><g><title>__GI___clone (1,239 samples, 0.05%)</title><rect x="4.4145%" y="613" width="0.0515%" height="15" fill="rgb(242,119,39)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="623.50"></text></g><g><title>start_thread (1,239 samples, 0.05%)</title><rect x="4.4145%" y="597" width="0.0515%" height="15" fill="rgb(241,98,45)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="607.50"></text></g><g><title>thread_native_entry (1,239 samples, 0.05%)</title><rect x="4.4145%" y="581" width="0.0515%" height="15" fill="rgb(254,28,30)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="591.50"></text></g><g><title>Thread::call_run (1,239 samples, 0.05%)</title><rect x="4.4145%" y="565" width="0.0515%" height="15" fill="rgb(241,142,54)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="575.50"></text></g><g><title>GangWorker::loop (1,239 samples, 0.05%)</title><rect x="4.4145%" y="549" width="0.0515%" height="15" fill="rgb(222,85,15)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="559.50"></text></g><g><title>GC_Thread#5 (1,257 samples, 0.05%)</title><rect x="4.4138%" y="629" width="0.0523%" height="15" fill="rgb(210,85,47)" fg:x="106090" fg:w="1257"/><text x="4.6638%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue (313 samples, 0.01%)</title><rect x="4.4679%" y="501" width="0.0130%" height="15" fill="rgb(224,206,25)" fg:x="107391" fg:w="313"/><text x="4.7179%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (368 samples, 0.02%)</title><rect x="4.4676%" y="517" width="0.0153%" height="15" fill="rgb(243,201,19)" fg:x="107384" fg:w="368"/><text x="4.7176%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (290 samples, 0.01%)</title><rect x="4.4946%" y="501" width="0.0121%" height="15" fill="rgb(236,59,4)" fg:x="108033" fg:w="290"/><text x="4.7446%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (286 samples, 0.01%)</title><rect x="4.4948%" y="485" width="0.0119%" height="15" fill="rgb(254,179,45)" fg:x="108037" fg:w="286"/><text x="4.7448%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (286 samples, 0.01%)</title><rect x="4.4948%" y="469" width="0.0119%" height="15" fill="rgb(226,14,10)" fg:x="108037" fg:w="286"/><text x="4.7448%" y="479.50"></text></g><g><title>JavaThread::oops_do (286 samples, 0.01%)</title><rect x="4.4948%" y="453" width="0.0119%" height="15" fill="rgb(244,27,41)" fg:x="108037" fg:w="286"/><text x="4.7448%" y="463.50"></text></g><g><title>G1ParTask::work (951 samples, 0.04%)</title><rect x="4.4676%" y="533" width="0.0396%" height="15" fill="rgb(235,35,32)" fg:x="107384" fg:w="951"/><text x="4.7176%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (312 samples, 0.01%)</title><rect x="4.4942%" y="517" width="0.0130%" height="15" fill="rgb(218,68,31)" fg:x="108023" fg:w="312"/><text x="4.7442%" y="527.50"></text></g><g><title>__GI___clone (1,212 samples, 0.05%)</title><rect x="4.4669%" y="613" width="0.0504%" height="15" fill="rgb(207,120,37)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="623.50"></text></g><g><title>start_thread (1,212 samples, 0.05%)</title><rect x="4.4669%" y="597" width="0.0504%" height="15" fill="rgb(227,98,0)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="607.50"></text></g><g><title>thread_native_entry (1,212 samples, 0.05%)</title><rect x="4.4669%" y="581" width="0.0504%" height="15" fill="rgb(207,7,3)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="591.50"></text></g><g><title>Thread::call_run (1,212 samples, 0.05%)</title><rect x="4.4669%" y="565" width="0.0504%" height="15" fill="rgb(206,98,19)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="575.50"></text></g><g><title>GangWorker::loop (1,212 samples, 0.05%)</title><rect x="4.4669%" y="549" width="0.0504%" height="15" fill="rgb(217,5,26)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="559.50"></text></g><g><title>GC_Thread#6 (1,232 samples, 0.05%)</title><rect x="4.4661%" y="629" width="0.0513%" height="15" fill="rgb(235,190,38)" fg:x="107347" fg:w="1232"/><text x="4.7161%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (267 samples, 0.01%)</title><rect x="4.5264%" y="485" width="0.0111%" height="15" fill="rgb(247,86,24)" fg:x="108796" fg:w="267"/><text x="4.7764%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (424 samples, 0.02%)</title><rect x="4.5204%" y="501" width="0.0176%" height="15" fill="rgb(205,101,16)" fg:x="108652" fg:w="424"/><text x="4.7704%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (469 samples, 0.02%)</title><rect x="4.5201%" y="517" width="0.0195%" height="15" fill="rgb(246,168,33)" fg:x="108645" fg:w="469"/><text x="4.7701%" y="527.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (243 samples, 0.01%)</title><rect x="4.5396%" y="517" width="0.0101%" height="15" fill="rgb(231,114,1)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="527.50"></text></g><g><title>G1RemSet::update_rem_set (243 samples, 0.01%)</title><rect x="4.5396%" y="501" width="0.0101%" height="15" fill="rgb(207,184,53)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="511.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (243 samples, 0.01%)</title><rect x="4.5396%" y="485" width="0.0101%" height="15" fill="rgb(224,95,51)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="495.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (243 samples, 0.01%)</title><rect x="4.5396%" y="469" width="0.0101%" height="15" fill="rgb(212,188,45)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="479.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (243 samples, 0.01%)</title><rect x="4.5396%" y="453" width="0.0101%" height="15" fill="rgb(223,154,38)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="463.50"></text></g><g><title>G1ParTask::work (978 samples, 0.04%)</title><rect x="4.5201%" y="533" width="0.0407%" height="15" fill="rgb(251,22,52)" fg:x="108645" fg:w="978"/><text x="4.7701%" y="543.50"></text></g><g><title>__GI___clone (1,249 samples, 0.05%)</title><rect x="4.5181%" y="613" width="0.0520%" height="15" fill="rgb(229,209,22)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="623.50"></text></g><g><title>start_thread (1,249 samples, 0.05%)</title><rect x="4.5181%" y="597" width="0.0520%" height="15" fill="rgb(234,138,34)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="607.50"></text></g><g><title>thread_native_entry (1,249 samples, 0.05%)</title><rect x="4.5181%" y="581" width="0.0520%" height="15" fill="rgb(212,95,11)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="591.50"></text></g><g><title>Thread::call_run (1,249 samples, 0.05%)</title><rect x="4.5181%" y="565" width="0.0520%" height="15" fill="rgb(240,179,47)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="575.50"></text></g><g><title>GangWorker::loop (1,249 samples, 0.05%)</title><rect x="4.5181%" y="549" width="0.0520%" height="15" fill="rgb(240,163,11)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="559.50"></text></g><g><title>GC_Thread#7 (1,267 samples, 0.05%)</title><rect x="4.5173%" y="629" width="0.0527%" height="15" fill="rgb(236,37,12)" fg:x="108579" fg:w="1267"/><text x="4.7673%" y="639.50"></text></g><g><title>futex_wait_queue_me (269 samples, 0.01%)</title><rect x="4.5848%" y="341" width="0.0112%" height="15" fill="rgb(232,164,16)" fg:x="110201" fg:w="269"/><text x="4.8348%" y="351.50"></text></g><g><title>schedule (248 samples, 0.01%)</title><rect x="4.5857%" y="325" width="0.0103%" height="15" fill="rgb(244,205,15)" fg:x="110222" fg:w="248"/><text x="4.8357%" y="335.50"></text></g><g><title>__schedule (246 samples, 0.01%)</title><rect x="4.5858%" y="309" width="0.0102%" height="15" fill="rgb(223,117,47)" fg:x="110224" fg:w="246"/><text x="4.8358%" y="319.50"></text></g><g><title>do_futex (288 samples, 0.01%)</title><rect x="4.5847%" y="373" width="0.0120%" height="15" fill="rgb(244,107,35)" fg:x="110197" fg:w="288"/><text x="4.8347%" y="383.50"></text></g><g><title>futex_wait (287 samples, 0.01%)</title><rect x="4.5847%" y="357" width="0.0119%" height="15" fill="rgb(205,140,8)" fg:x="110198" fg:w="287"/><text x="4.8347%" y="367.50"></text></g><g><title>do_syscall_64 (293 samples, 0.01%)</title><rect x="4.5845%" y="405" width="0.0122%" height="15" fill="rgb(228,84,46)" fg:x="110194" fg:w="293"/><text x="4.8345%" y="415.50"></text></g><g><title>__x64_sys_futex (293 samples, 0.01%)</title><rect x="4.5845%" y="389" width="0.0122%" height="15" fill="rgb(254,188,9)" fg:x="110194" fg:w="293"/><text x="4.8345%" y="399.50"></text></g><g><title>__pthread_cond_timedwait (324 samples, 0.01%)</title><rect x="4.5835%" y="469" width="0.0135%" height="15" fill="rgb(206,112,54)" fg:x="110170" fg:w="324"/><text x="4.8335%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (322 samples, 0.01%)</title><rect x="4.5836%" y="453" width="0.0134%" height="15" fill="rgb(216,84,49)" fg:x="110172" fg:w="322"/><text x="4.8336%" y="463.50"></text></g><g><title>futex_abstimed_wait_cancelable (315 samples, 0.01%)</title><rect x="4.5839%" y="437" width="0.0131%" height="15" fill="rgb(214,194,35)" fg:x="110179" fg:w="315"/><text x="4.8339%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (305 samples, 0.01%)</title><rect x="4.5843%" y="421" width="0.0127%" height="15" fill="rgb(249,28,3)" fg:x="110189" fg:w="305"/><text x="4.8343%" y="431.50"></text></g><g><title>Monitor::wait (387 samples, 0.02%)</title><rect x="4.5827%" y="517" width="0.0161%" height="15" fill="rgb(222,56,52)" fg:x="110149" fg:w="387"/><text x="4.8327%" y="527.50"></text></g><g><title>Monitor::IWait (384 samples, 0.02%)</title><rect x="4.5828%" y="501" width="0.0160%" height="15" fill="rgb(245,217,50)" fg:x="110152" fg:w="384"/><text x="4.8328%" y="511.50"></text></g><g><title>os::PlatformEvent::park (373 samples, 0.02%)</title><rect x="4.5833%" y="485" width="0.0155%" height="15" fill="rgb(213,201,24)" fg:x="110163" fg:w="373"/><text x="4.8333%" y="495.50"></text></g><g><title>__GI___clone (616 samples, 0.03%)</title><rect x="4.5822%" y="613" width="0.0256%" height="15" fill="rgb(248,116,28)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="623.50"></text></g><g><title>start_thread (616 samples, 0.03%)</title><rect x="4.5822%" y="597" width="0.0256%" height="15" fill="rgb(219,72,43)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="607.50"></text></g><g><title>thread_native_entry (616 samples, 0.03%)</title><rect x="4.5822%" y="581" width="0.0256%" height="15" fill="rgb(209,138,14)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="591.50"></text></g><g><title>Thread::call_run (616 samples, 0.03%)</title><rect x="4.5822%" y="565" width="0.0256%" height="15" fill="rgb(222,18,33)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (616 samples, 0.03%)</title><rect x="4.5822%" y="549" width="0.0256%" height="15" fill="rgb(213,199,7)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="559.50"></text></g><g><title>NMethodSweeper::sweeper_loop (615 samples, 0.03%)</title><rect x="4.5823%" y="533" width="0.0256%" height="15" fill="rgb(250,110,10)" fg:x="110139" fg:w="615"/><text x="4.8323%" y="543.50"></text></g><g><title>Sweeper_thread (641 samples, 0.03%)</title><rect x="4.5813%" y="629" width="0.0267%" height="15" fill="rgb(248,123,6)" fg:x="110117" fg:w="641"/><text x="4.8313%" y="639.50"></text></g><g><title>[perf-996087.map] (950 samples, 0.04%)</title><rect x="4.6102%" y="613" width="0.0395%" height="15" fill="rgb(206,91,31)" fg:x="110810" fg:w="950"/><text x="4.8602%" y="623.50"></text></g><g><title>Thread-0 (1,074 samples, 0.04%)</title><rect x="4.6080%" y="629" width="0.0447%" height="15" fill="rgb(211,154,13)" fg:x="110758" fg:w="1074"/><text x="4.8580%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (241 samples, 0.01%)</title><rect x="4.6580%" y="469" width="0.0100%" height="15" fill="rgb(225,148,7)" fg:x="111959" fg:w="241"/><text x="4.9080%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (241 samples, 0.01%)</title><rect x="4.6580%" y="453" width="0.0100%" height="15" fill="rgb(220,160,43)" fg:x="111959" fg:w="241"/><text x="4.9080%" y="463.50"></text></g><g><title>Monitor::wait (283 samples, 0.01%)</title><rect x="4.6570%" y="517" width="0.0118%" height="15" fill="rgb(213,52,39)" fg:x="111936" fg:w="283"/><text x="4.9070%" y="527.50"></text></g><g><title>Monitor::IWait (280 samples, 0.01%)</title><rect x="4.6571%" y="501" width="0.0116%" height="15" fill="rgb(243,137,7)" fg:x="111939" fg:w="280"/><text x="4.9071%" y="511.50"></text></g><g><title>os::PlatformEvent::park (269 samples, 0.01%)</title><rect x="4.6576%" y="485" width="0.0112%" height="15" fill="rgb(230,79,13)" fg:x="111950" fg:w="269"/><text x="4.9076%" y="495.50"></text></g><g><title>__GI___clone (369 samples, 0.02%)</title><rect x="4.6536%" y="613" width="0.0154%" height="15" fill="rgb(247,105,23)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="623.50"></text></g><g><title>start_thread (369 samples, 0.02%)</title><rect x="4.6536%" y="597" width="0.0154%" height="15" fill="rgb(223,179,41)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="607.50"></text></g><g><title>thread_native_entry (369 samples, 0.02%)</title><rect x="4.6536%" y="581" width="0.0154%" height="15" fill="rgb(218,9,34)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="591.50"></text></g><g><title>Thread::call_run (369 samples, 0.02%)</title><rect x="4.6536%" y="565" width="0.0154%" height="15" fill="rgb(222,106,8)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="575.50"></text></g><g><title>WatcherThread::run (369 samples, 0.02%)</title><rect x="4.6536%" y="549" width="0.0154%" height="15" fill="rgb(211,220,0)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="559.50"></text></g><g><title>WatcherThread::sleep (294 samples, 0.01%)</title><rect x="4.6568%" y="533" width="0.0122%" height="15" fill="rgb(229,52,16)" fg:x="111930" fg:w="294"/><text x="4.9068%" y="543.50"></text></g><g><title>VM_Periodic_Tas (393 samples, 0.02%)</title><rect x="4.6527%" y="629" width="0.0164%" height="15" fill="rgb(212,155,18)" fg:x="111832" fg:w="393"/><text x="4.9027%" y="639.50"></text></g><g><title>SafepointSynchronize::begin (449 samples, 0.02%)</title><rect x="4.6795%" y="517" width="0.0187%" height="15" fill="rgb(242,21,14)" fg:x="112476" fg:w="449"/><text x="4.9295%" y="527.50"></text></g><g><title>__GI___clone (791 samples, 0.03%)</title><rect x="4.6747%" y="613" width="0.0329%" height="15" fill="rgb(222,19,48)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="623.50"></text></g><g><title>start_thread (791 samples, 0.03%)</title><rect x="4.6747%" y="597" width="0.0329%" height="15" fill="rgb(232,45,27)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="607.50"></text></g><g><title>thread_native_entry (791 samples, 0.03%)</title><rect x="4.6747%" y="581" width="0.0329%" height="15" fill="rgb(249,103,42)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="591.50"></text></g><g><title>Thread::call_run (791 samples, 0.03%)</title><rect x="4.6747%" y="565" width="0.0329%" height="15" fill="rgb(246,81,33)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="575.50"></text></g><g><title>VMThread::run (791 samples, 0.03%)</title><rect x="4.6747%" y="549" width="0.0329%" height="15" fill="rgb(252,33,42)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="559.50"></text></g><g><title>VMThread::loop (791 samples, 0.03%)</title><rect x="4.6747%" y="533" width="0.0329%" height="15" fill="rgb(209,212,41)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="543.50"></text></g><g><title>VM_Thread (931 samples, 0.04%)</title><rect x="4.6690%" y="629" width="0.0387%" height="15" fill="rgb(207,154,6)" fg:x="112225" fg:w="931"/><text x="4.9190%" y="639.50"></text></g><g><title>do_syscall_64 (245 samples, 0.01%)</title><rect x="4.7170%" y="581" width="0.0102%" height="15" fill="rgb(223,64,47)" fg:x="113378" fg:w="245"/><text x="4.9670%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (258 samples, 0.01%)</title><rect x="4.7170%" y="597" width="0.0107%" height="15" fill="rgb(211,161,38)" fg:x="113378" fg:w="258"/><text x="4.9670%" y="607.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (490 samples, 0.02%)</title><rect x="4.7089%" y="613" width="0.0204%" height="15" fill="rgb(219,138,40)" fg:x="113182" fg:w="490"/><text x="4.9589%" y="623.50"></text></g><g><title>bazel (524 samples, 0.02%)</title><rect x="4.7089%" y="629" width="0.0218%" height="15" fill="rgb(241,228,46)" fg:x="113182" fg:w="524"/><text x="4.9589%" y="639.50"></text></g><g><title>[ld-2.31.so] (254 samples, 0.01%)</title><rect x="4.7357%" y="549" width="0.0106%" height="15" fill="rgb(223,209,38)" fg:x="113827" fg:w="254"/><text x="4.9857%" y="559.50"></text></g><g><title>_dl_start_final (259 samples, 0.01%)</title><rect x="4.7357%" y="581" width="0.0108%" height="15" fill="rgb(236,164,45)" fg:x="113827" fg:w="259"/><text x="4.9857%" y="591.50"></text></g><g><title>_dl_sysdep_start (259 samples, 0.01%)</title><rect x="4.7357%" y="565" width="0.0108%" height="15" fill="rgb(231,15,5)" fg:x="113827" fg:w="259"/><text x="4.9857%" y="575.50"></text></g><g><title>_dl_start (260 samples, 0.01%)</title><rect x="4.7357%" y="597" width="0.0108%" height="15" fill="rgb(252,35,15)" fg:x="113827" fg:w="260"/><text x="4.9857%" y="607.50"></text></g><g><title>_start (316 samples, 0.01%)</title><rect x="4.7334%" y="613" width="0.0131%" height="15" fill="rgb(248,181,18)" fg:x="113772" fg:w="316"/><text x="4.9834%" y="623.50"></text></g><g><title>build-runfiles (449 samples, 0.02%)</title><rect x="4.7307%" y="629" width="0.0187%" height="15" fill="rgb(233,39,42)" fg:x="113706" fg:w="449"/><text x="4.9807%" y="639.50"></text></g><g><title>load_elf_binary (336 samples, 0.01%)</title><rect x="4.7823%" y="197" width="0.0140%" height="15" fill="rgb(238,110,33)" fg:x="114947" fg:w="336"/><text x="5.0323%" y="207.50"></text></g><g><title>__perf_event_task_sched_in (476 samples, 0.02%)</title><rect x="4.7997%" y="117" width="0.0198%" height="15" fill="rgb(233,195,10)" fg:x="115366" fg:w="476"/><text x="5.0497%" y="127.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (472 samples, 0.02%)</title><rect x="4.7999%" y="101" width="0.0196%" height="15" fill="rgb(254,105,3)" fg:x="115370" fg:w="472"/><text x="5.0499%" y="111.50"></text></g><g><title>native_write_msr (470 samples, 0.02%)</title><rect x="4.8000%" y="85" width="0.0196%" height="15" fill="rgb(221,225,9)" fg:x="115372" fg:w="470"/><text x="5.0500%" y="95.50"></text></g><g><title>finish_task_switch (495 samples, 0.02%)</title><rect x="4.7995%" y="133" width="0.0206%" height="15" fill="rgb(224,227,45)" fg:x="115361" fg:w="495"/><text x="5.0495%" y="143.50"></text></g><g><title>_cond_resched (502 samples, 0.02%)</title><rect x="4.7994%" y="165" width="0.0209%" height="15" fill="rgb(229,198,43)" fg:x="115358" fg:w="502"/><text x="5.0494%" y="175.50"></text></g><g><title>__schedule (502 samples, 0.02%)</title><rect x="4.7994%" y="149" width="0.0209%" height="15" fill="rgb(206,209,35)" fg:x="115358" fg:w="502"/><text x="5.0494%" y="159.50"></text></g><g><title>sched_exec (551 samples, 0.02%)</title><rect x="4.7975%" y="197" width="0.0229%" height="15" fill="rgb(245,195,53)" fg:x="115313" fg:w="551"/><text x="5.0475%" y="207.50"></text></g><g><title>stop_one_cpu (514 samples, 0.02%)</title><rect x="4.7991%" y="181" width="0.0214%" height="15" fill="rgb(240,92,26)" fg:x="115350" fg:w="514"/><text x="5.0491%" y="191.50"></text></g><g><title>bprm_execve (1,266 samples, 0.05%)</title><rect x="4.7775%" y="213" width="0.0527%" height="15" fill="rgb(207,40,23)" fg:x="114831" fg:w="1266"/><text x="5.0275%" y="223.50"></text></g><g><title>do_execveat_common (1,450 samples, 0.06%)</title><rect x="4.7760%" y="229" width="0.0603%" height="15" fill="rgb(223,111,35)" fg:x="114796" fg:w="1450"/><text x="5.0260%" y="239.50"></text></g><g><title>__x64_sys_execve (1,460 samples, 0.06%)</title><rect x="4.7759%" y="245" width="0.0607%" height="15" fill="rgb(229,147,28)" fg:x="114794" fg:w="1460"/><text x="5.0259%" y="255.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,461 samples, 0.06%)</title><rect x="4.7759%" y="277" width="0.0608%" height="15" fill="rgb(211,29,28)" fg:x="114794" fg:w="1461"/><text x="5.0259%" y="287.50"></text></g><g><title>do_syscall_64 (1,461 samples, 0.06%)</title><rect x="4.7759%" y="261" width="0.0608%" height="15" fill="rgb(228,72,33)" fg:x="114794" fg:w="1461"/><text x="5.0259%" y="271.50"></text></g><g><title>__GI_execve (1,463 samples, 0.06%)</title><rect x="4.7759%" y="293" width="0.0609%" height="15" fill="rgb(205,214,31)" fg:x="114793" fg:w="1463"/><text x="5.0259%" y="303.50"></text></g><g><title>[dash] (1,767 samples, 0.07%)</title><rect x="4.7676%" y="309" width="0.0735%" height="15" fill="rgb(224,111,15)" fg:x="114593" fg:w="1767"/><text x="5.0176%" y="319.50"></text></g><g><title>__perf_event_task_sched_in (5,062 samples, 0.21%)</title><rect x="4.8598%" y="181" width="0.2106%" height="15" fill="rgb(253,21,26)" fg:x="116809" fg:w="5062"/><text x="5.1098%" y="191.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,993 samples, 0.21%)</title><rect x="4.8626%" y="165" width="0.2077%" height="15" fill="rgb(245,139,43)" fg:x="116878" fg:w="4993"/><text x="5.1126%" y="175.50"></text></g><g><title>native_write_msr (4,953 samples, 0.21%)</title><rect x="4.8643%" y="149" width="0.2061%" height="15" fill="rgb(252,170,7)" fg:x="116918" fg:w="4953"/><text x="5.1143%" y="159.50"></text></g><g><title>finish_task_switch (5,494 samples, 0.23%)</title><rect x="4.8520%" y="197" width="0.2286%" height="15" fill="rgb(231,118,14)" fg:x="116623" fg:w="5494"/><text x="5.1020%" y="207.50"></text></g><g><title>schedule (5,578 samples, 0.23%)</title><rect x="4.8503%" y="229" width="0.2321%" height="15" fill="rgb(238,83,0)" fg:x="116583" fg:w="5578"/><text x="5.1003%" y="239.50"></text></g><g><title>__schedule (5,573 samples, 0.23%)</title><rect x="4.8506%" y="213" width="0.2319%" height="15" fill="rgb(221,39,39)" fg:x="116588" fg:w="5573"/><text x="5.1006%" y="223.50"></text></g><g><title>release_task (307 samples, 0.01%)</title><rect x="5.0857%" y="213" width="0.0128%" height="15" fill="rgb(222,119,46)" fg:x="122241" fg:w="307"/><text x="5.3357%" y="223.50"></text></g><g><title>do_syscall_64 (6,082 samples, 0.25%)</title><rect x="4.8466%" y="277" width="0.2530%" height="15" fill="rgb(222,165,49)" fg:x="116492" fg:w="6082"/><text x="5.0966%" y="287.50"></text></g><g><title>kernel_wait4 (6,052 samples, 0.25%)</title><rect x="4.8478%" y="261" width="0.2518%" height="15" fill="rgb(219,113,52)" fg:x="116522" fg:w="6052"/><text x="5.0978%" y="271.50"></text></g><g><title>do_wait (6,043 samples, 0.25%)</title><rect x="4.8482%" y="245" width="0.2514%" height="15" fill="rgb(214,7,15)" fg:x="116531" fg:w="6043"/><text x="5.0982%" y="255.50"></text></g><g><title>wait_consider_task (413 samples, 0.02%)</title><rect x="5.0824%" y="229" width="0.0172%" height="15" fill="rgb(235,32,4)" fg:x="122161" fg:w="413"/><text x="5.3324%" y="239.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (6,243 samples, 0.26%)</title><rect x="4.8465%" y="293" width="0.2597%" height="15" fill="rgb(238,90,54)" fg:x="116491" fg:w="6243"/><text x="5.0965%" y="303.50"></text></g><g><title>__GI___wait4 (6,329 samples, 0.26%)</title><rect x="4.8450%" y="309" width="0.2633%" height="15" fill="rgb(213,208,19)" fg:x="116454" fg:w="6329"/><text x="5.0950%" y="319.50"></text></g><g><title>[dash] (8,510 samples, 0.35%)</title><rect x="4.7658%" y="325" width="0.3541%" height="15" fill="rgb(233,156,4)" fg:x="114550" fg:w="8510"/><text x="5.0158%" y="335.50"></text></g><g><title>[dash] (8,795 samples, 0.37%)</title><rect x="4.7631%" y="341" width="0.3659%" height="15" fill="rgb(207,194,5)" fg:x="114487" fg:w="8795"/><text x="5.0131%" y="351.50"></text></g><g><title>dup_mm (808 samples, 0.03%)</title><rect x="5.1657%" y="229" width="0.0336%" height="15" fill="rgb(206,111,30)" fg:x="124162" fg:w="808"/><text x="5.4157%" y="239.50"></text></g><g><title>inherit_task_group.isra.0 (306 samples, 0.01%)</title><rect x="5.2043%" y="213" width="0.0127%" height="15" fill="rgb(243,70,54)" fg:x="125090" fg:w="306"/><text x="5.4543%" y="223.50"></text></g><g><title>inherit_event.constprop.0 (294 samples, 0.01%)</title><rect x="5.2048%" y="197" width="0.0122%" height="15" fill="rgb(242,28,8)" fg:x="125102" fg:w="294"/><text x="5.4548%" y="207.50"></text></g><g><title>perf_event_init_task (325 samples, 0.01%)</title><rect x="5.2040%" y="229" width="0.0135%" height="15" fill="rgb(219,106,18)" fg:x="125083" fg:w="325"/><text x="5.4540%" y="239.50"></text></g><g><title>copy_process (1,570 samples, 0.07%)</title><rect x="5.1534%" y="245" width="0.0653%" height="15" fill="rgb(244,222,10)" fg:x="123866" fg:w="1570"/><text x="5.4034%" y="255.50"></text></g><g><title>__do_sys_clone (1,658 samples, 0.07%)</title><rect x="5.1533%" y="277" width="0.0690%" height="15" fill="rgb(236,179,52)" fg:x="123864" fg:w="1658"/><text x="5.4033%" y="287.50"></text></g><g><title>kernel_clone (1,656 samples, 0.07%)</title><rect x="5.1534%" y="261" width="0.0689%" height="15" fill="rgb(213,23,39)" fg:x="123866" fg:w="1656"/><text x="5.4034%" y="271.50"></text></g><g><title>do_syscall_64 (1,660 samples, 0.07%)</title><rect x="5.1532%" y="293" width="0.0691%" height="15" fill="rgb(238,48,10)" fg:x="123863" fg:w="1660"/><text x="5.4032%" y="303.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,662 samples, 0.07%)</title><rect x="5.1532%" y="309" width="0.0691%" height="15" fill="rgb(251,196,23)" fg:x="123862" fg:w="1662"/><text x="5.4032%" y="319.50"></text></g><g><title>exc_page_fault (290 samples, 0.01%)</title><rect x="5.2317%" y="245" width="0.0121%" height="15" fill="rgb(250,152,24)" fg:x="125750" fg:w="290"/><text x="5.4817%" y="255.50"></text></g><g><title>do_user_addr_fault (283 samples, 0.01%)</title><rect x="5.2320%" y="229" width="0.0118%" height="15" fill="rgb(209,150,17)" fg:x="125757" fg:w="283"/><text x="5.4820%" y="239.50"></text></g><g><title>__put_user_nocheck_4 (445 samples, 0.02%)</title><rect x="5.2254%" y="277" width="0.0185%" height="15" fill="rgb(234,202,34)" fg:x="125597" fg:w="445"/><text x="5.4754%" y="287.50"></text></g><g><title>asm_exc_page_fault (423 samples, 0.02%)</title><rect x="5.2263%" y="261" width="0.0176%" height="15" fill="rgb(253,148,53)" fg:x="125619" fg:w="423"/><text x="5.4763%" y="271.50"></text></g><g><title>__perf_event_task_sched_in (5,722 samples, 0.24%)</title><rect x="5.2517%" y="261" width="0.2381%" height="15" fill="rgb(218,129,16)" fg:x="126230" fg:w="5722"/><text x="5.5017%" y="271.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,600 samples, 0.23%)</title><rect x="5.2568%" y="245" width="0.2330%" height="15" fill="rgb(216,85,19)" fg:x="126352" fg:w="5600"/><text x="5.5068%" y="255.50"></text></g><g><title>native_write_msr (5,569 samples, 0.23%)</title><rect x="5.2581%" y="229" width="0.2317%" height="15" fill="rgb(235,228,7)" fg:x="126383" fg:w="5569"/><text x="5.5081%" y="239.50"></text></g><g><title>schedule_tail (6,544 samples, 0.27%)</title><rect x="5.2245%" y="293" width="0.2723%" height="15" fill="rgb(245,175,0)" fg:x="125577" fg:w="6544"/><text x="5.4745%" y="303.50"></text></g><g><title>finish_task_switch (6,045 samples, 0.25%)</title><rect x="5.2453%" y="277" width="0.2515%" height="15" fill="rgb(208,168,36)" fg:x="126076" fg:w="6045"/><text x="5.4953%" y="287.50"></text></g><g><title>ret_from_fork (6,597 samples, 0.27%)</title><rect x="5.2238%" y="309" width="0.2745%" height="15" fill="rgb(246,171,24)" fg:x="125560" fg:w="6597"/><text x="5.4738%" y="319.50"></text></g><g><title>arch_fork (8,542 samples, 0.36%)</title><rect x="5.1430%" y="325" width="0.3554%" height="15" fill="rgb(215,142,24)" fg:x="123616" fg:w="8542"/><text x="5.3930%" y="335.50"></text></g><g><title>__libc_fork (8,879 samples, 0.37%)</title><rect x="5.1372%" y="341" width="0.3694%" height="15" fill="rgb(250,187,7)" fg:x="123477" fg:w="8879"/><text x="5.3872%" y="351.50"></text></g><g><title>[dash] (18,005 samples, 0.75%)</title><rect x="4.7623%" y="357" width="0.7491%" height="15" fill="rgb(228,66,33)" fg:x="114466" fg:w="18005"/><text x="5.0123%" y="367.50"></text></g><g><title>[dash] (18,195 samples, 0.76%)</title><rect x="4.7617%" y="373" width="0.7570%" height="15" fill="rgb(234,215,21)" fg:x="114452" fg:w="18195"/><text x="5.0117%" y="383.50"></text></g><g><title>[dash] (18,308 samples, 0.76%)</title><rect x="4.7611%" y="389" width="0.7617%" height="15" fill="rgb(222,191,20)" fg:x="114438" fg:w="18308"/><text x="5.0111%" y="399.50"></text></g><g><title>[dash] (18,488 samples, 0.77%)</title><rect x="4.7601%" y="405" width="0.7692%" height="15" fill="rgb(245,79,54)" fg:x="114413" fg:w="18488"/><text x="5.0101%" y="415.50"></text></g><g><title>finish_task_switch (244 samples, 0.01%)</title><rect x="5.5310%" y="293" width="0.0102%" height="15" fill="rgb(240,10,37)" fg:x="132942" fg:w="244"/><text x="5.7810%" y="303.50"></text></g><g><title>schedule (252 samples, 0.01%)</title><rect x="5.5308%" y="325" width="0.0105%" height="15" fill="rgb(214,192,32)" fg:x="132938" fg:w="252"/><text x="5.7808%" y="335.50"></text></g><g><title>__schedule (252 samples, 0.01%)</title><rect x="5.5308%" y="309" width="0.0105%" height="15" fill="rgb(209,36,54)" fg:x="132938" fg:w="252"/><text x="5.7808%" y="319.50"></text></g><g><title>do_syscall_64 (348 samples, 0.01%)</title><rect x="5.5301%" y="373" width="0.0145%" height="15" fill="rgb(220,10,11)" fg:x="132922" fg:w="348"/><text x="5.7801%" y="383.50"></text></g><g><title>kernel_wait4 (343 samples, 0.01%)</title><rect x="5.5303%" y="357" width="0.0143%" height="15" fill="rgb(221,106,17)" fg:x="132927" fg:w="343"/><text x="5.7803%" y="367.50"></text></g><g><title>do_wait (341 samples, 0.01%)</title><rect x="5.5304%" y="341" width="0.0142%" height="15" fill="rgb(251,142,44)" fg:x="132929" fg:w="341"/><text x="5.7804%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (361 samples, 0.02%)</title><rect x="5.5301%" y="389" width="0.0150%" height="15" fill="rgb(238,13,15)" fg:x="132922" fg:w="361"/><text x="5.7801%" y="399.50"></text></g><g><title>__GI___wait4 (394 samples, 0.02%)</title><rect x="5.5294%" y="405" width="0.0164%" height="15" fill="rgb(208,107,27)" fg:x="132904" fg:w="394"/><text x="5.7794%" y="415.50"></text></g><g><title>[dash] (19,063 samples, 0.79%)</title><rect x="4.7581%" y="421" width="0.7931%" height="15" fill="rgb(205,136,37)" fg:x="114365" fg:w="19063"/><text x="5.0081%" y="431.50"></text></g><g><title>dup_mm (547 samples, 0.02%)</title><rect x="5.5650%" y="309" width="0.0228%" height="15" fill="rgb(250,205,27)" fg:x="133761" fg:w="547"/><text x="5.8150%" y="319.50"></text></g><g><title>copy_process (887 samples, 0.04%)</title><rect x="5.5593%" y="325" width="0.0369%" height="15" fill="rgb(210,80,43)" fg:x="133624" fg:w="887"/><text x="5.8093%" y="335.50"></text></g><g><title>do_syscall_64 (934 samples, 0.04%)</title><rect x="5.5592%" y="373" width="0.0389%" height="15" fill="rgb(247,160,36)" fg:x="133622" fg:w="934"/><text x="5.8092%" y="383.50"></text></g><g><title>__do_sys_clone (934 samples, 0.04%)</title><rect x="5.5592%" y="357" width="0.0389%" height="15" fill="rgb(234,13,49)" fg:x="133622" fg:w="934"/><text x="5.8092%" y="367.50"></text></g><g><title>kernel_clone (934 samples, 0.04%)</title><rect x="5.5592%" y="341" width="0.0389%" height="15" fill="rgb(234,122,0)" fg:x="133622" fg:w="934"/><text x="5.8092%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (936 samples, 0.04%)</title><rect x="5.5592%" y="389" width="0.0389%" height="15" fill="rgb(207,146,38)" fg:x="133622" fg:w="936"/><text x="5.8092%" y="399.50"></text></g><g><title>__put_user_nocheck_4 (314 samples, 0.01%)</title><rect x="5.5995%" y="357" width="0.0131%" height="15" fill="rgb(207,177,25)" fg:x="134589" fg:w="314"/><text x="5.8495%" y="367.50"></text></g><g><title>asm_exc_page_fault (304 samples, 0.01%)</title><rect x="5.5999%" y="341" width="0.0126%" height="15" fill="rgb(211,178,42)" fg:x="134599" fg:w="304"/><text x="5.8499%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (3,250 samples, 0.14%)</title><rect x="5.6175%" y="341" width="0.1352%" height="15" fill="rgb(230,69,54)" fg:x="135022" fg:w="3250"/><text x="5.8675%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,189 samples, 0.13%)</title><rect x="5.6200%" y="325" width="0.1327%" height="15" fill="rgb(214,135,41)" fg:x="135083" fg:w="3189"/><text x="5.8700%" y="335.50"></text></g><g><title>native_write_msr (3,167 samples, 0.13%)</title><rect x="5.6209%" y="309" width="0.1318%" height="15" fill="rgb(237,67,25)" fg:x="135105" fg:w="3167"/><text x="5.8709%" y="319.50"></text></g><g><title>schedule_tail (3,790 samples, 0.16%)</title><rect x="5.5992%" y="373" width="0.1577%" height="15" fill="rgb(222,189,50)" fg:x="134583" fg:w="3790"/><text x="5.8492%" y="383.50"></text></g><g><title>finish_task_switch (3,448 samples, 0.14%)</title><rect x="5.6135%" y="357" width="0.1435%" height="15" fill="rgb(245,148,34)" fg:x="134925" fg:w="3448"/><text x="5.8635%" y="367.50"></text></g><g><title>ret_from_fork (3,804 samples, 0.16%)</title><rect x="5.5989%" y="389" width="0.1583%" height="15" fill="rgb(222,29,6)" fg:x="134575" fg:w="3804"/><text x="5.8489%" y="399.50"></text></g><g><title>arch_fork (4,888 samples, 0.20%)</title><rect x="5.5539%" y="405" width="0.2034%" height="15" fill="rgb(221,189,43)" fg:x="133493" fg:w="4888"/><text x="5.8039%" y="415.50"></text></g><g><title>__libc_fork (5,053 samples, 0.21%)</title><rect x="5.5512%" y="421" width="0.2102%" height="15" fill="rgb(207,36,27)" fg:x="133428" fg:w="5053"/><text x="5.8012%" y="431.50"></text></g><g><title>[dash] (24,214 samples, 1.01%)</title><rect x="4.7564%" y="437" width="1.0074%" height="15" fill="rgb(217,90,24)" fg:x="114325" fg:w="24214"/><text x="5.0064%" y="447.50"></text></g><g><title>[dash] (24,366 samples, 1.01%)</title><rect x="4.7557%" y="453" width="1.0137%" height="15" fill="rgb(224,66,35)" fg:x="114308" fg:w="24366"/><text x="5.0057%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (3,052 samples, 0.13%)</title><rect x="5.7847%" y="293" width="0.1270%" height="15" fill="rgb(221,13,50)" fg:x="139041" fg:w="3052"/><text x="6.0347%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,022 samples, 0.13%)</title><rect x="5.7859%" y="277" width="0.1257%" height="15" fill="rgb(236,68,49)" fg:x="139071" fg:w="3022"/><text x="6.0359%" y="287.50"></text></g><g><title>native_write_msr (3,004 samples, 0.12%)</title><rect x="5.7867%" y="261" width="0.1250%" height="15" fill="rgb(229,146,28)" fg:x="139089" fg:w="3004"/><text x="6.0367%" y="271.50"></text></g><g><title>finish_task_switch (3,290 samples, 0.14%)</title><rect x="5.7822%" y="309" width="0.1369%" height="15" fill="rgb(225,31,38)" fg:x="138982" fg:w="3290"/><text x="6.0322%" y="319.50"></text></g><g><title>schedule (3,378 samples, 0.14%)</title><rect x="5.7802%" y="341" width="0.1405%" height="15" fill="rgb(250,208,3)" fg:x="138932" fg:w="3378"/><text x="6.0302%" y="351.50"></text></g><g><title>__schedule (3,374 samples, 0.14%)</title><rect x="5.7803%" y="325" width="0.1404%" height="15" fill="rgb(246,54,23)" fg:x="138936" fg:w="3374"/><text x="6.0303%" y="335.50"></text></g><g><title>new_sync_read (3,503 samples, 0.15%)</title><rect x="5.7755%" y="373" width="0.1457%" height="15" fill="rgb(243,76,11)" fg:x="138820" fg:w="3503"/><text x="6.0255%" y="383.50"></text></g><g><title>pipe_read (3,491 samples, 0.15%)</title><rect x="5.7760%" y="357" width="0.1452%" height="15" fill="rgb(245,21,50)" fg:x="138832" fg:w="3491"/><text x="6.0260%" y="367.50"></text></g><g><title>ksys_read (3,530 samples, 0.15%)</title><rect x="5.7746%" y="405" width="0.1469%" height="15" fill="rgb(228,9,43)" fg:x="138799" fg:w="3530"/><text x="6.0246%" y="415.50"></text></g><g><title>vfs_read (3,528 samples, 0.15%)</title><rect x="5.7747%" y="389" width="0.1468%" height="15" fill="rgb(208,100,47)" fg:x="138801" fg:w="3528"/><text x="6.0247%" y="399.50"></text></g><g><title>do_syscall_64 (3,537 samples, 0.15%)</title><rect x="5.7744%" y="421" width="0.1472%" height="15" fill="rgb(232,26,8)" fg:x="138793" fg:w="3537"/><text x="6.0244%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,636 samples, 0.15%)</title><rect x="5.7744%" y="437" width="0.1513%" height="15" fill="rgb(216,166,38)" fg:x="138793" fg:w="3636"/><text x="6.0244%" y="447.50"></text></g><g><title>__GI___libc_read (3,704 samples, 0.15%)</title><rect x="5.7742%" y="453" width="0.1541%" height="15" fill="rgb(251,202,51)" fg:x="138788" fg:w="3704"/><text x="6.0242%" y="463.50"></text></g><g><title>[dash] (28,411 samples, 1.18%)</title><rect x="4.7537%" y="469" width="1.1820%" height="15" fill="rgb(254,216,34)" fg:x="114260" fg:w="28411"/><text x="5.0037%" y="479.50"></text></g><g><title>[dash] (28,452 samples, 1.18%)</title><rect x="4.7530%" y="485" width="1.1837%" height="15" fill="rgb(251,32,27)" fg:x="114244" fg:w="28452"/><text x="5.0030%" y="495.50"></text></g><g><title>[dash] (28,480 samples, 1.18%)</title><rect x="4.7526%" y="501" width="1.1849%" height="15" fill="rgb(208,127,28)" fg:x="114233" fg:w="28480"/><text x="5.0026%" y="511.50"></text></g><g><title>[dash] (28,492 samples, 1.19%)</title><rect x="4.7523%" y="517" width="1.1854%" height="15" fill="rgb(224,137,22)" fg:x="114226" fg:w="28492"/><text x="5.0023%" y="527.50"></text></g><g><title>[dash] (28,536 samples, 1.19%)</title><rect x="4.7522%" y="533" width="1.1872%" height="15" fill="rgb(254,70,32)" fg:x="114223" fg:w="28536"/><text x="5.0022%" y="543.50"></text></g><g><title>[dash] (28,541 samples, 1.19%)</title><rect x="4.7520%" y="549" width="1.1874%" height="15" fill="rgb(229,75,37)" fg:x="114220" fg:w="28541"/><text x="5.0020%" y="559.50"></text></g><g><title>[dash] (28,612 samples, 1.19%)</title><rect x="4.7520%" y="565" width="1.1904%" height="15" fill="rgb(252,64,23)" fg:x="114218" fg:w="28612"/><text x="5.0020%" y="575.50"></text></g><g><title>[dash] (28,646 samples, 1.19%)</title><rect x="4.7517%" y="581" width="1.1918%" height="15" fill="rgb(232,162,48)" fg:x="114213" fg:w="28646"/><text x="5.0017%" y="591.50"></text></g><g><title>__libc_start_main (28,649 samples, 1.19%)</title><rect x="4.7517%" y="597" width="1.1919%" height="15" fill="rgb(246,160,12)" fg:x="114213" fg:w="28649"/><text x="5.0017%" y="607.50"></text></g><g><title>[dash] (28,674 samples, 1.19%)</title><rect x="4.7510%" y="613" width="1.1930%" height="15" fill="rgb(247,166,0)" fg:x="114194" fg:w="28674"/><text x="5.0010%" y="623.50"></text></g><g><title>asm_exc_page_fault (429 samples, 0.02%)</title><rect x="5.9529%" y="613" width="0.0178%" height="15" fill="rgb(249,219,21)" fg:x="143083" fg:w="429"/><text x="6.2029%" y="623.50"></text></g><g><title>exit_mmap (553 samples, 0.02%)</title><rect x="5.9723%" y="485" width="0.0230%" height="15" fill="rgb(205,209,3)" fg:x="143550" fg:w="553"/><text x="6.2223%" y="495.50"></text></g><g><title>mmput (556 samples, 0.02%)</title><rect x="5.9723%" y="501" width="0.0231%" height="15" fill="rgb(243,44,1)" fg:x="143550" fg:w="556"/><text x="6.2223%" y="511.50"></text></g><g><title>begin_new_exec (607 samples, 0.03%)</title><rect x="5.9714%" y="517" width="0.0253%" height="15" fill="rgb(206,159,16)" fg:x="143528" fg:w="607"/><text x="6.2214%" y="527.50"></text></g><g><title>__x64_sys_execve (649 samples, 0.03%)</title><rect x="5.9710%" y="581" width="0.0270%" height="15" fill="rgb(244,77,30)" fg:x="143518" fg:w="649"/><text x="6.2210%" y="591.50"></text></g><g><title>do_execveat_common (649 samples, 0.03%)</title><rect x="5.9710%" y="565" width="0.0270%" height="15" fill="rgb(218,69,12)" fg:x="143518" fg:w="649"/><text x="6.2210%" y="575.50"></text></g><g><title>bprm_execve (649 samples, 0.03%)</title><rect x="5.9710%" y="549" width="0.0270%" height="15" fill="rgb(212,87,7)" fg:x="143518" fg:w="649"/><text x="6.2210%" y="559.50"></text></g><g><title>load_elf_binary (649 samples, 0.03%)</title><rect x="5.9710%" y="533" width="0.0270%" height="15" fill="rgb(245,114,25)" fg:x="143518" fg:w="649"/><text x="6.2210%" y="543.50"></text></g><g><title>free_pgtables (253 samples, 0.01%)</title><rect x="6.0005%" y="501" width="0.0105%" height="15" fill="rgb(210,61,42)" fg:x="144228" fg:w="253"/><text x="6.2505%" y="511.50"></text></g><g><title>unmap_page_range (449 samples, 0.02%)</title><rect x="6.0245%" y="485" width="0.0187%" height="15" fill="rgb(211,52,33)" fg:x="144805" fg:w="449"/><text x="6.2745%" y="495.50"></text></g><g><title>exit_mmap (1,065 samples, 0.04%)</title><rect x="5.9997%" y="517" width="0.0443%" height="15" fill="rgb(234,58,33)" fg:x="144208" fg:w="1065"/><text x="6.2497%" y="527.50"></text></g><g><title>unmap_vmas (477 samples, 0.02%)</title><rect x="6.0241%" y="501" width="0.0198%" height="15" fill="rgb(220,115,36)" fg:x="144796" fg:w="477"/><text x="6.2741%" y="511.50"></text></g><g><title>mmput (1,072 samples, 0.04%)</title><rect x="5.9996%" y="533" width="0.0446%" height="15" fill="rgb(243,153,54)" fg:x="144206" fg:w="1072"/><text x="6.2496%" y="543.50"></text></g><g><title>__x64_sys_exit_group (1,264 samples, 0.05%)</title><rect x="5.9980%" y="581" width="0.0526%" height="15" fill="rgb(251,47,18)" fg:x="144167" fg:w="1264"/><text x="6.2480%" y="591.50"></text></g><g><title>do_group_exit (1,264 samples, 0.05%)</title><rect x="5.9980%" y="565" width="0.0526%" height="15" fill="rgb(242,102,42)" fg:x="144167" fg:w="1264"/><text x="6.2480%" y="575.50"></text></g><g><title>do_exit (1,264 samples, 0.05%)</title><rect x="5.9980%" y="549" width="0.0526%" height="15" fill="rgb(234,31,38)" fg:x="144167" fg:w="1264"/><text x="6.2480%" y="559.50"></text></g><g><title>do_syscall_64 (1,918 samples, 0.08%)</title><rect x="5.9709%" y="597" width="0.0798%" height="15" fill="rgb(221,117,51)" fg:x="143517" fg:w="1918"/><text x="6.2209%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,922 samples, 0.08%)</title><rect x="5.9708%" y="613" width="0.0800%" height="15" fill="rgb(212,20,18)" fg:x="143514" fg:w="1922"/><text x="6.2208%" y="623.50"></text></g><g><title>c++ (31,292 samples, 1.30%)</title><rect x="4.7493%" y="629" width="1.3019%" height="15" fill="rgb(245,133,36)" fg:x="114155" fg:w="31292"/><text x="4.9993%" y="639.50"></text></g><g><title>[perf-996087.map] (563 samples, 0.02%)</title><rect x="6.0535%" y="613" width="0.0234%" height="15" fill="rgb(212,6,19)" fg:x="145503" fg:w="563"/><text x="6.3035%" y="623.50"></text></g><g><title>find-action-loo (620 samples, 0.03%)</title><rect x="6.0532%" y="629" width="0.0258%" height="15" fill="rgb(218,1,36)" fg:x="145494" fg:w="620"/><text x="6.3032%" y="639.50"></text></g><g><title>globbing_pool-1 (368 samples, 0.02%)</title><rect x="6.0828%" y="629" width="0.0153%" height="15" fill="rgb(246,84,54)" fg:x="146207" fg:w="368"/><text x="6.3328%" y="639.50"></text></g><g><title>[perf-996087.map] (359 samples, 0.01%)</title><rect x="6.1014%" y="613" width="0.0149%" height="15" fill="rgb(242,110,6)" fg:x="146653" fg:w="359"/><text x="6.3514%" y="623.50"></text></g><g><title>globbing_pool-2 (537 samples, 0.02%)</title><rect x="6.0981%" y="629" width="0.0223%" height="15" fill="rgb(214,47,5)" fg:x="146575" fg:w="537"/><text x="6.3481%" y="639.50"></text></g><g><title>globbing_pool-5 (326 samples, 0.01%)</title><rect x="6.1331%" y="629" width="0.0136%" height="15" fill="rgb(218,159,25)" fg:x="147415" fg:w="326"/><text x="6.3831%" y="639.50"></text></g><g><title>InterpreterRuntime::_new (290 samples, 0.01%)</title><rect x="6.2690%" y="597" width="0.0121%" height="15" fill="rgb(215,211,28)" fg:x="150682" fg:w="290"/><text x="6.5190%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (288 samples, 0.01%)</title><rect x="6.2921%" y="581" width="0.0120%" height="15" fill="rgb(238,59,32)" fg:x="151236" fg:w="288"/><text x="6.5421%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (460 samples, 0.02%)</title><rect x="6.2881%" y="597" width="0.0191%" height="15" fill="rgb(226,82,3)" fg:x="151141" fg:w="460"/><text x="6.5381%" y="607.50"></text></g><g><title>SymbolTable::lookup_only (426 samples, 0.02%)</title><rect x="6.3242%" y="453" width="0.0177%" height="15" fill="rgb(240,164,32)" fg:x="152009" fg:w="426"/><text x="6.5742%" y="463.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (506 samples, 0.02%)</title><rect x="6.3211%" y="469" width="0.0211%" height="15" fill="rgb(232,46,7)" fg:x="151934" fg:w="506"/><text x="6.5711%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (526 samples, 0.02%)</title><rect x="6.3206%" y="485" width="0.0219%" height="15" fill="rgb(229,129,53)" fg:x="151921" fg:w="526"/><text x="6.5706%" y="495.50"></text></g><g><title>ClassFileParser::ClassFileParser (728 samples, 0.03%)</title><rect x="6.3203%" y="517" width="0.0303%" height="15" fill="rgb(234,188,29)" fg:x="151914" fg:w="728"/><text x="6.5703%" y="527.50"></text></g><g><title>ClassFileParser::parse_stream (727 samples, 0.03%)</title><rect x="6.3203%" y="501" width="0.0302%" height="15" fill="rgb(246,141,4)" fg:x="151915" fg:w="727"/><text x="6.5703%" y="511.50"></text></g><g><title>KlassFactory::create_from_stream (956 samples, 0.04%)</title><rect x="6.3202%" y="533" width="0.0398%" height="15" fill="rgb(229,23,39)" fg:x="151912" fg:w="956"/><text x="6.5702%" y="543.50"></text></g><g><title>JVM_DefineClassWithSource (989 samples, 0.04%)</title><rect x="6.3196%" y="581" width="0.0411%" height="15" fill="rgb(206,12,3)" fg:x="151899" fg:w="989"/><text x="6.5696%" y="591.50"></text></g><g><title>jvm_define_class_common (988 samples, 0.04%)</title><rect x="6.3197%" y="565" width="0.0411%" height="15" fill="rgb(252,226,20)" fg:x="151900" fg:w="988"/><text x="6.5697%" y="575.50"></text></g><g><title>SystemDictionary::resolve_from_stream (976 samples, 0.04%)</title><rect x="6.3202%" y="549" width="0.0406%" height="15" fill="rgb(216,123,35)" fg:x="151912" fg:w="976"/><text x="6.5702%" y="559.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,034 samples, 0.04%)</title><rect x="6.3196%" y="597" width="0.0430%" height="15" fill="rgb(212,68,40)" fg:x="151897" fg:w="1034"/><text x="6.5696%" y="607.50"></text></g><g><title>[perf-996087.map] (4,660 samples, 0.19%)</title><rect x="6.1819%" y="613" width="0.1939%" height="15" fill="rgb(254,125,32)" fg:x="148588" fg:w="4660"/><text x="6.4319%" y="623.50"></text></g><g><title>__GI___clone (349 samples, 0.01%)</title><rect x="6.3819%" y="613" width="0.0145%" height="15" fill="rgb(253,97,22)" fg:x="153396" fg:w="349"/><text x="6.6319%" y="623.50"></text></g><g><title>java (5,456 samples, 0.23%)</title><rect x="6.1707%" y="629" width="0.2270%" height="15" fill="rgb(241,101,14)" fg:x="148320" fg:w="5456"/><text x="6.4207%" y="639.50"></text></g><g><title>[unknown] (264 samples, 0.01%)</title><rect x="6.4011%" y="613" width="0.0110%" height="15" fill="rgb(238,103,29)" fg:x="153856" fg:w="264"/><text x="6.6511%" y="623.50"></text></g><g><title>execute_command (263 samples, 0.01%)</title><rect x="6.4256%" y="517" width="0.0109%" height="15" fill="rgb(233,195,47)" fg:x="154446" fg:w="263"/><text x="6.6756%" y="527.50"></text></g><g><title>execute_command_internal (263 samples, 0.01%)</title><rect x="6.4256%" y="501" width="0.0109%" height="15" fill="rgb(246,218,30)" fg:x="154446" fg:w="263"/><text x="6.6756%" y="511.50"></text></g><g><title>[bash] (280 samples, 0.01%)</title><rect x="6.4366%" y="453" width="0.0116%" height="15" fill="rgb(219,145,47)" fg:x="154711" fg:w="280"/><text x="6.6866%" y="463.50"></text></g><g><title>command_substitute (276 samples, 0.01%)</title><rect x="6.4368%" y="437" width="0.0115%" height="15" fill="rgb(243,12,26)" fg:x="154715" fg:w="276"/><text x="6.6868%" y="447.50"></text></g><g><title>[bash] (281 samples, 0.01%)</title><rect x="6.4366%" y="469" width="0.0117%" height="15" fill="rgb(214,87,16)" fg:x="154711" fg:w="281"/><text x="6.6866%" y="479.50"></text></g><g><title>[bash] (283 samples, 0.01%)</title><rect x="6.4366%" y="485" width="0.0118%" height="15" fill="rgb(208,99,42)" fg:x="154710" fg:w="283"/><text x="6.6866%" y="495.50"></text></g><g><title>expand_words (289 samples, 0.01%)</title><rect x="6.4366%" y="517" width="0.0120%" height="15" fill="rgb(253,99,2)" fg:x="154709" fg:w="289"/><text x="6.6866%" y="527.50"></text></g><g><title>[bash] (288 samples, 0.01%)</title><rect x="6.4366%" y="501" width="0.0120%" height="15" fill="rgb(220,168,23)" fg:x="154710" fg:w="288"/><text x="6.6866%" y="511.50"></text></g><g><title>execute_command (847 samples, 0.04%)</title><rect x="6.4135%" y="549" width="0.0352%" height="15" fill="rgb(242,38,24)" fg:x="154155" fg:w="847"/><text x="6.6635%" y="559.50"></text></g><g><title>execute_command_internal (846 samples, 0.04%)</title><rect x="6.4135%" y="533" width="0.0352%" height="15" fill="rgb(225,182,9)" fg:x="154156" fg:w="846"/><text x="6.6635%" y="543.50"></text></g><g><title>[bash] (404 samples, 0.02%)</title><rect x="6.4507%" y="501" width="0.0168%" height="15" fill="rgb(243,178,37)" fg:x="155048" fg:w="404"/><text x="6.7007%" y="511.50"></text></g><g><title>reader_loop (1,356 samples, 0.06%)</title><rect x="6.4126%" y="565" width="0.0564%" height="15" fill="rgb(232,139,19)" fg:x="154133" fg:w="1356"/><text x="6.6626%" y="575.50"></text></g><g><title>read_command (487 samples, 0.02%)</title><rect x="6.4487%" y="549" width="0.0203%" height="15" fill="rgb(225,201,24)" fg:x="155002" fg:w="487"/><text x="6.6987%" y="559.50"></text></g><g><title>parse_command (487 samples, 0.02%)</title><rect x="6.4487%" y="533" width="0.0203%" height="15" fill="rgb(221,47,46)" fg:x="155002" fg:w="487"/><text x="6.6987%" y="543.50"></text></g><g><title>yyparse (487 samples, 0.02%)</title><rect x="6.4487%" y="517" width="0.0203%" height="15" fill="rgb(249,23,13)" fg:x="155002" fg:w="487"/><text x="6.6987%" y="527.50"></text></g><g><title>__libc_start_main (1,372 samples, 0.06%)</title><rect x="6.4122%" y="597" width="0.0571%" height="15" fill="rgb(219,9,5)" fg:x="154124" fg:w="1372"/><text x="6.6622%" y="607.50"></text></g><g><title>main (1,372 samples, 0.06%)</title><rect x="6.4122%" y="581" width="0.0571%" height="15" fill="rgb(254,171,16)" fg:x="154124" fg:w="1372"/><text x="6.6622%" y="591.50"></text></g><g><title>_start (1,390 samples, 0.06%)</title><rect x="6.4122%" y="613" width="0.0578%" height="15" fill="rgb(230,171,20)" fg:x="154124" fg:w="1390"/><text x="6.6622%" y="623.50"></text></g><g><title>libtool (1,844 samples, 0.08%)</title><rect x="6.3977%" y="629" width="0.0767%" height="15" fill="rgb(210,71,41)" fg:x="153776" fg:w="1844"/><text x="6.6477%" y="639.50"></text></g><g><title>schedule_tail (250 samples, 0.01%)</title><rect x="6.5044%" y="533" width="0.0104%" height="15" fill="rgb(206,173,20)" fg:x="156339" fg:w="250"/><text x="6.7544%" y="543.50"></text></g><g><title>arch_fork (338 samples, 0.01%)</title><rect x="6.5007%" y="565" width="0.0141%" height="15" fill="rgb(233,88,34)" fg:x="156252" fg:w="338"/><text x="6.7507%" y="575.50"></text></g><g><title>ret_from_fork (251 samples, 0.01%)</title><rect x="6.5044%" y="549" width="0.0104%" height="15" fill="rgb(223,209,46)" fg:x="156339" fg:w="251"/><text x="6.7544%" y="559.50"></text></g><g><title>__libc_fork (355 samples, 0.01%)</title><rect x="6.5005%" y="581" width="0.0148%" height="15" fill="rgb(250,43,18)" fg:x="156246" fg:w="355"/><text x="6.7505%" y="591.50"></text></g><g><title>Pid1Main (968 samples, 0.04%)</title><rect x="6.4830%" y="597" width="0.0403%" height="15" fill="rgb(208,13,10)" fg:x="155825" fg:w="968"/><text x="6.7330%" y="607.50"></text></g><g><title>__GI___clone (1,133 samples, 0.05%)</title><rect x="6.4829%" y="613" width="0.0471%" height="15" fill="rgb(212,200,36)" fg:x="155824" fg:w="1133"/><text x="6.7329%" y="623.50"></text></g><g><title>__libc_start_main (549 samples, 0.02%)</title><rect x="6.5328%" y="597" width="0.0228%" height="15" fill="rgb(225,90,30)" fg:x="157023" fg:w="549"/><text x="6.7828%" y="607.50"></text></g><g><title>main (468 samples, 0.02%)</title><rect x="6.5362%" y="581" width="0.0195%" height="15" fill="rgb(236,182,39)" fg:x="157104" fg:w="468"/><text x="6.7862%" y="591.50"></text></g><g><title>_dl_lookup_symbol_x (294 samples, 0.01%)</title><rect x="6.5689%" y="485" width="0.0122%" height="15" fill="rgb(212,144,35)" fg:x="157889" fg:w="294"/><text x="6.8189%" y="495.50"></text></g><g><title>elf_machine_rela (351 samples, 0.01%)</title><rect x="6.5667%" y="501" width="0.0146%" height="15" fill="rgb(228,63,44)" fg:x="157838" fg:w="351"/><text x="6.8167%" y="511.50"></text></g><g><title>elf_dynamic_do_Rela (402 samples, 0.02%)</title><rect x="6.5654%" y="517" width="0.0167%" height="15" fill="rgb(228,109,6)" fg:x="157806" fg:w="402"/><text x="6.8154%" y="527.50"></text></g><g><title>_dl_relocate_object (428 samples, 0.02%)</title><rect x="6.5645%" y="533" width="0.0178%" height="15" fill="rgb(238,117,24)" fg:x="157784" fg:w="428"/><text x="6.8145%" y="543.50"></text></g><g><title>[ld-2.31.so] (657 samples, 0.03%)</title><rect x="6.5557%" y="549" width="0.0273%" height="15" fill="rgb(242,26,26)" fg:x="157573" fg:w="657"/><text x="6.8057%" y="559.50"></text></g><g><title>_dl_start_final (663 samples, 0.03%)</title><rect x="6.5557%" y="581" width="0.0276%" height="15" fill="rgb(221,92,48)" fg:x="157572" fg:w="663"/><text x="6.8057%" y="591.50"></text></g><g><title>_dl_sysdep_start (663 samples, 0.03%)</title><rect x="6.5557%" y="565" width="0.0276%" height="15" fill="rgb(209,209,32)" fg:x="157572" fg:w="663"/><text x="6.8057%" y="575.50"></text></g><g><title>_dl_start (670 samples, 0.03%)</title><rect x="6.5557%" y="597" width="0.0279%" height="15" fill="rgb(221,70,22)" fg:x="157572" fg:w="670"/><text x="6.8057%" y="607.50"></text></g><g><title>_start (1,225 samples, 0.05%)</title><rect x="6.5327%" y="613" width="0.0510%" height="15" fill="rgb(248,145,5)" fg:x="157021" fg:w="1225"/><text x="6.7827%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (434 samples, 0.02%)</title><rect x="6.5895%" y="613" width="0.0181%" height="15" fill="rgb(226,116,26)" fg:x="158386" fg:w="434"/><text x="6.8395%" y="623.50"></text></g><g><title>do_syscall_64 (434 samples, 0.02%)</title><rect x="6.5895%" y="597" width="0.0181%" height="15" fill="rgb(244,5,17)" fg:x="158386" fg:w="434"/><text x="6.8395%" y="607.50"></text></g><g><title>linux-sandbox (3,202 samples, 0.13%)</title><rect x="6.4745%" y="629" width="0.1332%" height="15" fill="rgb(252,159,33)" fg:x="155620" fg:w="3202"/><text x="6.7245%" y="639.50"></text></g><g><title>do_wait (244 samples, 0.01%)</title><rect x="6.6224%" y="517" width="0.0102%" height="15" fill="rgb(206,71,0)" fg:x="159177" fg:w="244"/><text x="6.8724%" y="527.50"></text></g><g><title>do_syscall_64 (248 samples, 0.01%)</title><rect x="6.6223%" y="549" width="0.0103%" height="15" fill="rgb(233,118,54)" fg:x="159174" fg:w="248"/><text x="6.8723%" y="559.50"></text></g><g><title>kernel_wait4 (245 samples, 0.01%)</title><rect x="6.6224%" y="533" width="0.0102%" height="15" fill="rgb(234,83,48)" fg:x="159177" fg:w="245"/><text x="6.8724%" y="543.50"></text></g><g><title>__GI___wait4 (250 samples, 0.01%)</title><rect x="6.6223%" y="581" width="0.0104%" height="15" fill="rgb(228,3,54)" fg:x="159173" fg:w="250"/><text x="6.8723%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (249 samples, 0.01%)</title><rect x="6.6223%" y="565" width="0.0104%" height="15" fill="rgb(226,155,13)" fg:x="159174" fg:w="249"/><text x="6.8723%" y="575.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (251 samples, 0.01%)</title><rect x="6.6223%" y="597" width="0.0104%" height="15" fill="rgb(241,28,37)" fg:x="159173" fg:w="251"/><text x="6.8723%" y="607.50"></text></g><g><title>[perf-996087.map] (477 samples, 0.02%)</title><rect x="6.6153%" y="613" width="0.0198%" height="15" fill="rgb(233,93,10)" fg:x="159006" fg:w="477"/><text x="6.8653%" y="623.50"></text></g><g><title>process_reaper (487 samples, 0.02%)</title><rect x="6.6151%" y="629" width="0.0203%" height="15" fill="rgb(225,113,19)" fg:x="159001" fg:w="487"/><text x="6.8651%" y="639.50"></text></g><g><title>Unsafe_Park (246 samples, 0.01%)</title><rect x="6.6538%" y="597" width="0.0102%" height="15" fill="rgb(241,2,18)" fg:x="159931" fg:w="246"/><text x="6.9038%" y="607.50"></text></g><g><title>[perf-996087.map] (678 samples, 0.03%)</title><rect x="6.6360%" y="613" width="0.0282%" height="15" fill="rgb(228,207,21)" fg:x="159503" fg:w="678"/><text x="6.8860%" y="623.50"></text></g><g><title>profile-writer- (709 samples, 0.03%)</title><rect x="6.6354%" y="629" width="0.0295%" height="15" fill="rgb(213,211,35)" fg:x="159488" fg:w="709"/><text x="6.8854%" y="639.50"></text></g><g><title>[unknown] (341 samples, 0.01%)</title><rect x="6.6664%" y="613" width="0.0142%" height="15" fill="rgb(209,83,10)" fg:x="160233" fg:w="341"/><text x="6.9164%" y="623.50"></text></g><g><title>python3 (572 samples, 0.02%)</title><rect x="6.6651%" y="629" width="0.0238%" height="15" fill="rgb(209,164,1)" fg:x="160202" fg:w="572"/><text x="6.9151%" y="639.50"></text></g><g><title>[sed] (449 samples, 0.02%)</title><rect x="6.7002%" y="517" width="0.0187%" height="15" fill="rgb(213,184,43)" fg:x="161045" fg:w="449"/><text x="6.9502%" y="527.50"></text></g><g><title>[sed] (504 samples, 0.02%)</title><rect x="6.6987%" y="533" width="0.0210%" height="15" fill="rgb(231,61,34)" fg:x="161009" fg:w="504"/><text x="6.9487%" y="543.50"></text></g><g><title>[sed] (665 samples, 0.03%)</title><rect x="6.6978%" y="549" width="0.0277%" height="15" fill="rgb(235,75,3)" fg:x="160988" fg:w="665"/><text x="6.9478%" y="559.50"></text></g><g><title>[sed] (699 samples, 0.03%)</title><rect x="6.6972%" y="565" width="0.0291%" height="15" fill="rgb(220,106,47)" fg:x="160975" fg:w="699"/><text x="6.9472%" y="575.50"></text></g><g><title>[sed] (821 samples, 0.03%)</title><rect x="6.6971%" y="581" width="0.0342%" height="15" fill="rgb(210,196,33)" fg:x="160971" fg:w="821"/><text x="6.9471%" y="591.50"></text></g><g><title>__libc_start_main (906 samples, 0.04%)</title><rect x="6.6971%" y="597" width="0.0377%" height="15" fill="rgb(229,154,42)" fg:x="160971" fg:w="906"/><text x="6.9471%" y="607.50"></text></g><g><title>[sed] (937 samples, 0.04%)</title><rect x="6.6968%" y="613" width="0.0390%" height="15" fill="rgb(228,114,26)" fg:x="160965" fg:w="937"/><text x="6.9468%" y="623.50"></text></g><g><title>determine_info (246 samples, 0.01%)</title><rect x="6.7611%" y="437" width="0.0102%" height="15" fill="rgb(208,144,1)" fg:x="162509" fg:w="246"/><text x="7.0111%" y="447.50"></text></g><g><title>__GI__dl_addr (272 samples, 0.01%)</title><rect x="6.7601%" y="453" width="0.0113%" height="15" fill="rgb(239,112,37)" fg:x="162485" fg:w="272"/><text x="7.0101%" y="463.50"></text></g><g><title>__fopen_internal (403 samples, 0.02%)</title><rect x="6.7551%" y="517" width="0.0168%" height="15" fill="rgb(210,96,50)" fg:x="162366" fg:w="403"/><text x="7.0051%" y="527.50"></text></g><g><title>malloc_hook_ini (290 samples, 0.01%)</title><rect x="6.7598%" y="501" width="0.0121%" height="15" fill="rgb(222,178,2)" fg:x="162479" fg:w="290"/><text x="7.0098%" y="511.50"></text></g><g><title>ptmalloc_init (290 samples, 0.01%)</title><rect x="6.7598%" y="485" width="0.0121%" height="15" fill="rgb(226,74,18)" fg:x="162479" fg:w="290"/><text x="7.0098%" y="495.50"></text></g><g><title>ptmalloc_init (290 samples, 0.01%)</title><rect x="6.7598%" y="469" width="0.0121%" height="15" fill="rgb(225,67,54)" fg:x="162479" fg:w="290"/><text x="7.0098%" y="479.50"></text></g><g><title>selinuxfs_exists (618 samples, 0.03%)</title><rect x="6.7466%" y="533" width="0.0257%" height="15" fill="rgb(251,92,32)" fg:x="162162" fg:w="618"/><text x="6.9966%" y="543.50"></text></g><g><title>[libselinux.so.1] (770 samples, 0.03%)</title><rect x="6.7403%" y="549" width="0.0320%" height="15" fill="rgb(228,149,22)" fg:x="162011" fg:w="770"/><text x="6.9903%" y="559.50"></text></g><g><title>_dl_start_user (892 samples, 0.04%)</title><rect x="6.7401%" y="613" width="0.0371%" height="15" fill="rgb(243,54,13)" fg:x="162006" fg:w="892"/><text x="6.9901%" y="623.50"></text></g><g><title>_dl_init (892 samples, 0.04%)</title><rect x="6.7401%" y="597" width="0.0371%" height="15" fill="rgb(243,180,28)" fg:x="162006" fg:w="892"/><text x="6.9901%" y="607.50"></text></g><g><title>call_init (891 samples, 0.04%)</title><rect x="6.7402%" y="581" width="0.0371%" height="15" fill="rgb(208,167,24)" fg:x="162007" fg:w="891"/><text x="6.9902%" y="591.50"></text></g><g><title>call_init (890 samples, 0.04%)</title><rect x="6.7402%" y="565" width="0.0370%" height="15" fill="rgb(245,73,45)" fg:x="162008" fg:w="890"/><text x="6.9902%" y="575.50"></text></g><g><title>__vma_adjust (297 samples, 0.01%)</title><rect x="6.8147%" y="277" width="0.0124%" height="15" fill="rgb(237,203,48)" fg:x="163797" fg:w="297"/><text x="7.0647%" y="287.50"></text></g><g><title>__split_vma (398 samples, 0.02%)</title><rect x="6.8142%" y="293" width="0.0166%" height="15" fill="rgb(211,197,16)" fg:x="163785" fg:w="398"/><text x="7.0642%" y="303.50"></text></g><g><title>__do_munmap (616 samples, 0.03%)</title><rect x="6.8134%" y="309" width="0.0256%" height="15" fill="rgb(243,99,51)" fg:x="163768" fg:w="616"/><text x="7.0634%" y="319.50"></text></g><g><title>perf_event_mmap (244 samples, 0.01%)</title><rect x="6.8393%" y="309" width="0.0102%" height="15" fill="rgb(215,123,29)" fg:x="164390" fg:w="244"/><text x="7.0893%" y="319.50"></text></g><g><title>mmap_region (1,091 samples, 0.05%)</title><rect x="6.8117%" y="325" width="0.0454%" height="15" fill="rgb(239,186,37)" fg:x="163727" fg:w="1091"/><text x="7.0617%" y="335.50"></text></g><g><title>do_mmap (1,124 samples, 0.05%)</title><rect x="6.8105%" y="341" width="0.0468%" height="15" fill="rgb(252,136,39)" fg:x="163697" fg:w="1124"/><text x="7.0605%" y="351.50"></text></g><g><title>ksys_mmap_pgoff (1,162 samples, 0.05%)</title><rect x="6.8099%" y="373" width="0.0483%" height="15" fill="rgb(223,213,32)" fg:x="163683" fg:w="1162"/><text x="7.0599%" y="383.50"></text></g><g><title>vm_mmap_pgoff (1,152 samples, 0.05%)</title><rect x="6.8103%" y="357" width="0.0479%" height="15" fill="rgb(233,115,5)" fg:x="163693" fg:w="1152"/><text x="7.0603%" y="367.50"></text></g><g><title>do_syscall_64 (1,237 samples, 0.05%)</title><rect x="6.8097%" y="389" width="0.0515%" height="15" fill="rgb(207,226,44)" fg:x="163679" fg:w="1237"/><text x="7.0597%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,249 samples, 0.05%)</title><rect x="6.8097%" y="405" width="0.0520%" height="15" fill="rgb(208,126,0)" fg:x="163677" fg:w="1249"/><text x="7.0597%" y="415.50"></text></g><g><title>__mmap64 (1,270 samples, 0.05%)</title><rect x="6.8091%" y="437" width="0.0528%" height="15" fill="rgb(244,66,21)" fg:x="163664" fg:w="1270"/><text x="7.0591%" y="447.50"></text></g><g><title>__mmap64 (1,270 samples, 0.05%)</title><rect x="6.8091%" y="421" width="0.0528%" height="15" fill="rgb(222,97,12)" fg:x="163664" fg:w="1270"/><text x="7.0591%" y="431.50"></text></g><g><title>_dl_map_segments (1,482 samples, 0.06%)</title><rect x="6.8004%" y="453" width="0.0617%" height="15" fill="rgb(219,213,19)" fg:x="163455" fg:w="1482"/><text x="7.0504%" y="463.50"></text></g><g><title>_dl_map_object_from_fd (1,878 samples, 0.08%)</title><rect x="6.7976%" y="469" width="0.0781%" height="15" fill="rgb(252,169,30)" fg:x="163388" fg:w="1878"/><text x="7.0476%" y="479.50"></text></g><g><title>open_verify (292 samples, 0.01%)</title><rect x="6.8766%" y="469" width="0.0121%" height="15" fill="rgb(206,32,51)" fg:x="165287" fg:w="292"/><text x="7.1266%" y="479.50"></text></g><g><title>_dl_catch_exception (2,429 samples, 0.10%)</title><rect x="6.7887%" y="517" width="0.1011%" height="15" fill="rgb(250,172,42)" fg:x="163173" fg:w="2429"/><text x="7.0387%" y="527.50"></text></g><g><title>openaux (2,422 samples, 0.10%)</title><rect x="6.7890%" y="501" width="0.1008%" height="15" fill="rgb(209,34,43)" fg:x="163180" fg:w="2422"/><text x="7.0390%" y="511.50"></text></g><g><title>_dl_map_object (2,421 samples, 0.10%)</title><rect x="6.7890%" y="485" width="0.1007%" height="15" fill="rgb(223,11,35)" fg:x="163181" fg:w="2421"/><text x="7.0390%" y="495.50"></text></g><g><title>_dl_map_object_deps (2,505 samples, 0.10%)</title><rect x="6.7878%" y="533" width="0.1042%" height="15" fill="rgb(251,219,26)" fg:x="163152" fg:w="2505"/><text x="7.0378%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (247 samples, 0.01%)</title><rect x="6.8966%" y="485" width="0.0103%" height="15" fill="rgb(231,119,3)" fg:x="165766" fg:w="247"/><text x="7.1466%" y="495.50"></text></g><g><title>do_syscall_64 (247 samples, 0.01%)</title><rect x="6.8966%" y="469" width="0.0103%" height="15" fill="rgb(216,97,11)" fg:x="165766" fg:w="247"/><text x="7.1466%" y="479.50"></text></g><g><title>__x64_sys_mprotect (246 samples, 0.01%)</title><rect x="6.8966%" y="453" width="0.0102%" height="15" fill="rgb(223,59,9)" fg:x="165767" fg:w="246"/><text x="7.1466%" y="463.50"></text></g><g><title>do_mprotect_pkey (246 samples, 0.01%)</title><rect x="6.8966%" y="437" width="0.0102%" height="15" fill="rgb(233,93,31)" fg:x="165767" fg:w="246"/><text x="7.1466%" y="447.50"></text></g><g><title>_dl_protect_relro (257 samples, 0.01%)</title><rect x="6.8962%" y="517" width="0.0107%" height="15" fill="rgb(239,81,33)" fg:x="165757" fg:w="257"/><text x="7.1462%" y="527.50"></text></g><g><title>__mprotect (255 samples, 0.01%)</title><rect x="6.8963%" y="501" width="0.0106%" height="15" fill="rgb(213,120,34)" fg:x="165759" fg:w="255"/><text x="7.1463%" y="511.50"></text></g><g><title>_dl_lookup_symbol_x (765 samples, 0.03%)</title><rect x="6.9176%" y="485" width="0.0318%" height="15" fill="rgb(243,49,53)" fg:x="166272" fg:w="765"/><text x="7.1676%" y="495.50"></text></g><g><title>do_lookup_x (615 samples, 0.03%)</title><rect x="6.9239%" y="469" width="0.0256%" height="15" fill="rgb(247,216,33)" fg:x="166422" fg:w="615"/><text x="7.1739%" y="479.50"></text></g><g><title>elf_machine_rela (911 samples, 0.04%)</title><rect x="6.9123%" y="501" width="0.0379%" height="15" fill="rgb(226,26,14)" fg:x="166143" fg:w="911"/><text x="7.1623%" y="511.50"></text></g><g><title>elf_dynamic_do_Rela (1,105 samples, 0.05%)</title><rect x="6.9069%" y="517" width="0.0460%" height="15" fill="rgb(215,49,53)" fg:x="166014" fg:w="1105"/><text x="7.1569%" y="527.50"></text></g><g><title>_dl_relocate_object (1,398 samples, 0.06%)</title><rect x="6.8957%" y="533" width="0.0582%" height="15" fill="rgb(245,162,40)" fg:x="165746" fg:w="1398"/><text x="7.1457%" y="543.50"></text></g><g><title>[ld-2.31.so] (4,304 samples, 0.18%)</title><rect x="6.7837%" y="549" width="0.1791%" height="15" fill="rgb(229,68,17)" fg:x="163053" fg:w="4304"/><text x="7.0337%" y="559.50"></text></g><g><title>_dl_start_final (4,429 samples, 0.18%)</title><rect x="6.7831%" y="581" width="0.1843%" height="15" fill="rgb(213,182,10)" fg:x="163039" fg:w="4429"/><text x="7.0331%" y="591.50"></text></g><g><title>_dl_sysdep_start (4,425 samples, 0.18%)</title><rect x="6.7833%" y="565" width="0.1841%" height="15" fill="rgb(245,125,30)" fg:x="163043" fg:w="4425"/><text x="7.0333%" y="575.50"></text></g><g><title>_dl_start (4,521 samples, 0.19%)</title><rect x="6.7831%" y="597" width="0.1881%" height="15" fill="rgb(232,202,2)" fg:x="163039" fg:w="4521"/><text x="7.0331%" y="607.50"></text></g><g><title>_start (4,588 samples, 0.19%)</title><rect x="6.7827%" y="613" width="0.1909%" height="15" fill="rgb(237,140,51)" fg:x="163030" fg:w="4588"/><text x="7.0327%" y="623.50"></text></g><g><title>asm_exc_page_fault (281 samples, 0.01%)</title><rect x="6.9736%" y="613" width="0.0117%" height="15" fill="rgb(236,157,25)" fg:x="167618" fg:w="281"/><text x="7.2236%" y="623.50"></text></g><g><title>__x64_sys_execve (525 samples, 0.02%)</title><rect x="6.9856%" y="581" width="0.0218%" height="15" fill="rgb(219,209,0)" fg:x="167905" fg:w="525"/><text x="7.2356%" y="591.50"></text></g><g><title>do_execveat_common (525 samples, 0.02%)</title><rect x="6.9856%" y="565" width="0.0218%" height="15" fill="rgb(240,116,54)" fg:x="167905" fg:w="525"/><text x="7.2356%" y="575.50"></text></g><g><title>bprm_execve (525 samples, 0.02%)</title><rect x="6.9856%" y="549" width="0.0218%" height="15" fill="rgb(216,10,36)" fg:x="167905" fg:w="525"/><text x="7.2356%" y="559.50"></text></g><g><title>load_elf_binary (525 samples, 0.02%)</title><rect x="6.9856%" y="533" width="0.0218%" height="15" fill="rgb(222,72,44)" fg:x="167905" fg:w="525"/><text x="7.2356%" y="543.50"></text></g><g><title>unmap_page_range (315 samples, 0.01%)</title><rect x="7.0216%" y="485" width="0.0131%" height="15" fill="rgb(232,159,9)" fg:x="168771" fg:w="315"/><text x="7.2716%" y="495.50"></text></g><g><title>exit_mmap (646 samples, 0.03%)</title><rect x="7.0080%" y="517" width="0.0269%" height="15" fill="rgb(210,39,32)" fg:x="168444" fg:w="646"/><text x="7.2580%" y="527.50"></text></g><g><title>unmap_vmas (324 samples, 0.01%)</title><rect x="7.0214%" y="501" width="0.0135%" height="15" fill="rgb(216,194,45)" fg:x="168766" fg:w="324"/><text x="7.2714%" y="511.50"></text></g><g><title>mmput (649 samples, 0.03%)</title><rect x="7.0080%" y="533" width="0.0270%" height="15" fill="rgb(218,18,35)" fg:x="168444" fg:w="649"/><text x="7.2580%" y="543.50"></text></g><g><title>do_syscall_64 (1,254 samples, 0.05%)</title><rect x="6.9856%" y="597" width="0.0522%" height="15" fill="rgb(207,83,51)" fg:x="167905" fg:w="1254"/><text x="7.2356%" y="607.50"></text></g><g><title>__x64_sys_exit_group (729 samples, 0.03%)</title><rect x="7.0074%" y="581" width="0.0303%" height="15" fill="rgb(225,63,43)" fg:x="168430" fg:w="729"/><text x="7.2574%" y="591.50"></text></g><g><title>do_group_exit (729 samples, 0.03%)</title><rect x="7.0074%" y="565" width="0.0303%" height="15" fill="rgb(207,57,36)" fg:x="168430" fg:w="729"/><text x="7.2574%" y="575.50"></text></g><g><title>do_exit (729 samples, 0.03%)</title><rect x="7.0074%" y="549" width="0.0303%" height="15" fill="rgb(216,99,33)" fg:x="168430" fg:w="729"/><text x="7.2574%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,259 samples, 0.05%)</title><rect x="6.9854%" y="613" width="0.0524%" height="15" fill="rgb(225,42,16)" fg:x="167902" fg:w="1259"/><text x="7.2354%" y="623.50"></text></g><g><title>sed (8,399 samples, 0.35%)</title><rect x="6.6889%" y="629" width="0.3494%" height="15" fill="rgb(220,201,45)" fg:x="160774" fg:w="8399"/><text x="6.9389%" y="639.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<1097844ul, G1BarrierSet>, (AccessInternal::BarrierType)2, 1097844ul>::oop_access_barrier (245 samples, 0.01%)</title><rect x="7.0456%" y="597" width="0.0102%" height="15" fill="rgb(225,33,4)" fg:x="169348" fg:w="245"/><text x="7.2956%" y="607.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<5292148ul, G1BarrierSet>, (AccessInternal::BarrierType)0, 5292148ul>::oop_access_barrier (429 samples, 0.02%)</title><rect x="7.0559%" y="597" width="0.0178%" height="15" fill="rgb(224,33,50)" fg:x="169595" fg:w="429"/><text x="7.3059%" y="607.50"></text></g><g><title>HandleMark::pop_and_restore (251 samples, 0.01%)</title><rect x="7.0883%" y="597" width="0.0104%" height="15" fill="rgb(246,198,51)" fg:x="170374" fg:w="251"/><text x="7.3383%" y="607.50"></text></g><g><title>JavaThread::is_Java_thread (247 samples, 0.01%)</title><rect x="7.1151%" y="597" width="0.0103%" height="15" fill="rgb(205,22,4)" fg:x="171019" fg:w="247"/><text x="7.3651%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (264 samples, 0.01%)</title><rect x="7.1343%" y="597" width="0.0110%" height="15" fill="rgb(206,3,8)" fg:x="171480" fg:w="264"/><text x="7.3843%" y="607.50"></text></g><g><title>__GI_unlinkat (477 samples, 0.02%)</title><rect x="7.1623%" y="597" width="0.0198%" height="15" fill="rgb(251,23,15)" fg:x="172154" fg:w="477"/><text x="7.4123%" y="607.50"></text></g><g><title>__symlink (290 samples, 0.01%)</title><rect x="7.1855%" y="597" width="0.0121%" height="15" fill="rgb(252,88,28)" fg:x="172710" fg:w="290"/><text x="7.4355%" y="607.50"></text></g><g><title>[anon] (4,721 samples, 0.20%)</title><rect x="7.0394%" y="613" width="0.1964%" height="15" fill="rgb(212,127,14)" fg:x="169199" fg:w="4721"/><text x="7.2894%" y="623.50"></text></g><g><title>[libc-2.31.so] (268 samples, 0.01%)</title><rect x="7.5418%" y="597" width="0.0111%" height="15" fill="rgb(247,145,37)" fg:x="181274" fg:w="268"/><text x="7.7918%" y="607.50"></text></g><g><title>__x64_sys_close (531 samples, 0.02%)</title><rect x="7.5577%" y="549" width="0.0221%" height="15" fill="rgb(209,117,53)" fg:x="181657" fg:w="531"/><text x="7.8077%" y="559.50"></text></g><g><title>filp_close (355 samples, 0.01%)</title><rect x="7.5650%" y="533" width="0.0148%" height="15" fill="rgb(212,90,42)" fg:x="181833" fg:w="355"/><text x="7.8150%" y="543.50"></text></g><g><title>do_syscall_64 (584 samples, 0.02%)</title><rect x="7.5561%" y="565" width="0.0243%" height="15" fill="rgb(218,164,37)" fg:x="181618" fg:w="584"/><text x="7.8061%" y="575.50"></text></g><g><title>btrfs_release_file (654 samples, 0.03%)</title><rect x="7.5930%" y="501" width="0.0272%" height="15" fill="rgb(246,65,34)" fg:x="182505" fg:w="654"/><text x="7.8430%" y="511.50"></text></g><g><title>kfree (515 samples, 0.02%)</title><rect x="7.5988%" y="485" width="0.0214%" height="15" fill="rgb(231,100,33)" fg:x="182644" fg:w="515"/><text x="7.8488%" y="495.50"></text></g><g><title>__fput (1,253 samples, 0.05%)</title><rect x="7.5877%" y="517" width="0.0521%" height="15" fill="rgb(228,126,14)" fg:x="182379" fg:w="1253"/><text x="7.8377%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,097 samples, 0.09%)</title><rect x="7.5556%" y="581" width="0.0872%" height="15" fill="rgb(215,173,21)" fg:x="181607" fg:w="2097"/><text x="7.8056%" y="591.50"></text></g><g><title>syscall_exit_to_user_mode (1,502 samples, 0.06%)</title><rect x="7.5804%" y="565" width="0.0625%" height="15" fill="rgb(210,6,40)" fg:x="182202" fg:w="1502"/><text x="7.8304%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,495 samples, 0.06%)</title><rect x="7.5807%" y="549" width="0.0622%" height="15" fill="rgb(212,48,18)" fg:x="182209" fg:w="1495"/><text x="7.8307%" y="559.50"></text></g><g><title>task_work_run (1,366 samples, 0.06%)</title><rect x="7.5860%" y="533" width="0.0568%" height="15" fill="rgb(230,214,11)" fg:x="182338" fg:w="1366"/><text x="7.8360%" y="543.50"></text></g><g><title>__GI___close_nocancel (2,183 samples, 0.09%)</title><rect x="7.5529%" y="597" width="0.0908%" height="15" fill="rgb(254,105,39)" fg:x="181542" fg:w="2183"/><text x="7.8029%" y="607.50"></text></g><g><title>__GI___libc_free (962 samples, 0.04%)</title><rect x="7.6438%" y="597" width="0.0400%" height="15" fill="rgb(245,158,5)" fg:x="183726" fg:w="962"/><text x="7.8938%" y="607.50"></text></g><g><title>__do_sys_newlstat (343 samples, 0.01%)</title><rect x="7.6841%" y="549" width="0.0143%" height="15" fill="rgb(249,208,11)" fg:x="184696" fg:w="343"/><text x="7.9341%" y="559.50"></text></g><g><title>vfs_statx (329 samples, 0.01%)</title><rect x="7.6847%" y="533" width="0.0137%" height="15" fill="rgb(210,39,28)" fg:x="184710" fg:w="329"/><text x="7.9347%" y="543.50"></text></g><g><title>do_syscall_64 (347 samples, 0.01%)</title><rect x="7.6841%" y="565" width="0.0144%" height="15" fill="rgb(211,56,53)" fg:x="184696" fg:w="347"/><text x="7.9341%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (352 samples, 0.01%)</title><rect x="7.6841%" y="581" width="0.0146%" height="15" fill="rgb(226,201,30)" fg:x="184695" fg:w="352"/><text x="7.9341%" y="591.50"></text></g><g><title>__GI___lxstat (363 samples, 0.02%)</title><rect x="7.6838%" y="597" width="0.0151%" height="15" fill="rgb(239,101,34)" fg:x="184688" fg:w="363"/><text x="7.9338%" y="607.50"></text></g><g><title>dput (351 samples, 0.01%)</title><rect x="7.7097%" y="533" width="0.0146%" height="15" fill="rgb(226,209,5)" fg:x="185311" fg:w="351"/><text x="7.9597%" y="543.50"></text></g><g><title>finish_wait (264 samples, 0.01%)</title><rect x="7.7513%" y="405" width="0.0110%" height="15" fill="rgb(250,105,47)" fg:x="186311" fg:w="264"/><text x="8.0013%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (255 samples, 0.01%)</title><rect x="7.7517%" y="389" width="0.0106%" height="15" fill="rgb(230,72,3)" fg:x="186320" fg:w="255"/><text x="8.0017%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (245 samples, 0.01%)</title><rect x="7.7521%" y="373" width="0.0102%" height="15" fill="rgb(232,218,39)" fg:x="186330" fg:w="245"/><text x="8.0021%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (624 samples, 0.03%)</title><rect x="7.7648%" y="389" width="0.0260%" height="15" fill="rgb(248,166,6)" fg:x="186634" fg:w="624"/><text x="8.0148%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (598 samples, 0.02%)</title><rect x="7.7659%" y="373" width="0.0249%" height="15" fill="rgb(247,89,20)" fg:x="186660" fg:w="598"/><text x="8.0159%" y="383.50"></text></g><g><title>prepare_to_wait_event (693 samples, 0.03%)</title><rect x="7.7623%" y="405" width="0.0288%" height="15" fill="rgb(248,130,54)" fg:x="186575" fg:w="693"/><text x="8.0123%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (648 samples, 0.03%)</title><rect x="7.7911%" y="405" width="0.0270%" height="15" fill="rgb(234,196,4)" fg:x="187268" fg:w="648"/><text x="8.0411%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (480 samples, 0.02%)</title><rect x="7.7981%" y="389" width="0.0200%" height="15" fill="rgb(250,143,31)" fg:x="187436" fg:w="480"/><text x="8.0481%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,296 samples, 0.10%)</title><rect x="7.7472%" y="421" width="0.0955%" height="15" fill="rgb(211,110,34)" fg:x="186211" fg:w="2296"/><text x="7.9972%" y="431.50"></text></g><g><title>schedule (591 samples, 0.02%)</title><rect x="7.8181%" y="405" width="0.0246%" height="15" fill="rgb(215,124,48)" fg:x="187916" fg:w="591"/><text x="8.0681%" y="415.50"></text></g><g><title>__schedule (585 samples, 0.02%)</title><rect x="7.8184%" y="389" width="0.0243%" height="15" fill="rgb(216,46,13)" fg:x="187922" fg:w="585"/><text x="8.0684%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (2,431 samples, 0.10%)</title><rect x="7.7468%" y="437" width="0.1011%" height="15" fill="rgb(205,184,25)" fg:x="186202" fg:w="2431"/><text x="7.9968%" y="447.50"></text></g><g><title>prepare_to_wait_event (246 samples, 0.01%)</title><rect x="7.8526%" y="421" width="0.0102%" height="15" fill="rgb(228,1,10)" fg:x="188744" fg:w="246"/><text x="8.1026%" y="431.50"></text></g><g><title>__schedule (581 samples, 0.02%)</title><rect x="7.8688%" y="405" width="0.0242%" height="15" fill="rgb(213,116,27)" fg:x="189134" fg:w="581"/><text x="8.1188%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,083 samples, 0.05%)</title><rect x="7.8479%" y="437" width="0.0451%" height="15" fill="rgb(241,95,50)" fg:x="188633" fg:w="1083"/><text x="8.0979%" y="447.50"></text></g><g><title>schedule (585 samples, 0.02%)</title><rect x="7.8687%" y="421" width="0.0243%" height="15" fill="rgb(238,48,32)" fg:x="189131" fg:w="585"/><text x="8.1187%" y="431.50"></text></g><g><title>ttwu_do_activate (248 samples, 0.01%)</title><rect x="7.9038%" y="373" width="0.0103%" height="15" fill="rgb(235,113,49)" fg:x="189976" fg:w="248"/><text x="8.1538%" y="383.50"></text></g><g><title>__wake_up_common (549 samples, 0.02%)</title><rect x="7.8932%" y="421" width="0.0228%" height="15" fill="rgb(205,127,43)" fg:x="189722" fg:w="549"/><text x="8.1432%" y="431.50"></text></g><g><title>autoremove_wake_function (540 samples, 0.02%)</title><rect x="7.8936%" y="405" width="0.0225%" height="15" fill="rgb(250,162,2)" fg:x="189731" fg:w="540"/><text x="8.1436%" y="415.50"></text></g><g><title>try_to_wake_up (515 samples, 0.02%)</title><rect x="7.8947%" y="389" width="0.0214%" height="15" fill="rgb(220,13,41)" fg:x="189756" fg:w="515"/><text x="8.1447%" y="399.50"></text></g><g><title>__wake_up_common_lock (566 samples, 0.02%)</title><rect x="7.8930%" y="437" width="0.0235%" height="15" fill="rgb(249,221,25)" fg:x="189716" fg:w="566"/><text x="8.1430%" y="447.50"></text></g><g><title>btrfs_tree_read_lock_atomic (765 samples, 0.03%)</title><rect x="7.9221%" y="437" width="0.0318%" height="15" fill="rgb(215,208,19)" fg:x="190416" fg:w="765"/><text x="8.1721%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (671 samples, 0.03%)</title><rect x="7.9260%" y="421" width="0.0279%" height="15" fill="rgb(236,175,2)" fg:x="190510" fg:w="671"/><text x="8.1760%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (346 samples, 0.01%)</title><rect x="7.9583%" y="437" width="0.0144%" height="15" fill="rgb(241,52,2)" fg:x="191285" fg:w="346"/><text x="8.2083%" y="447.50"></text></g><g><title>find_extent_buffer (449 samples, 0.02%)</title><rect x="7.9826%" y="421" width="0.0187%" height="15" fill="rgb(248,140,14)" fg:x="191870" fg:w="449"/><text x="8.2326%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (765 samples, 0.03%)</title><rect x="7.9727%" y="437" width="0.0318%" height="15" fill="rgb(253,22,42)" fg:x="191631" fg:w="765"/><text x="8.2227%" y="447.50"></text></g><g><title>btrfs_search_slot (6,437 samples, 0.27%)</title><rect x="7.7391%" y="453" width="0.2678%" height="15" fill="rgb(234,61,47)" fg:x="186018" fg:w="6437"/><text x="7.9891%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (6,533 samples, 0.27%)</title><rect x="7.7379%" y="469" width="0.2718%" height="15" fill="rgb(208,226,15)" fg:x="185988" fg:w="6533"/><text x="7.9879%" y="479.50"></text></g><g><title>btrfs_lookup (6,944 samples, 0.29%)</title><rect x="7.7257%" y="501" width="0.2889%" height="15" fill="rgb(217,221,4)" fg:x="185695" fg:w="6944"/><text x="7.9757%" y="511.50"></text></g><g><title>btrfs_lookup_dentry (6,923 samples, 0.29%)</title><rect x="7.7266%" y="485" width="0.2880%" height="15" fill="rgb(212,174,34)" fg:x="185716" fg:w="6923"/><text x="7.9766%" y="495.50"></text></g><g><title>kmem_cache_alloc (388 samples, 0.02%)</title><rect x="8.0170%" y="469" width="0.0161%" height="15" fill="rgb(253,83,4)" fg:x="192696" fg:w="388"/><text x="8.2670%" y="479.50"></text></g><g><title>__d_alloc (448 samples, 0.02%)</title><rect x="8.0149%" y="485" width="0.0186%" height="15" fill="rgb(250,195,49)" fg:x="192646" fg:w="448"/><text x="8.2649%" y="495.50"></text></g><g><title>d_alloc (487 samples, 0.02%)</title><rect x="8.0146%" y="501" width="0.0203%" height="15" fill="rgb(241,192,25)" fg:x="192639" fg:w="487"/><text x="8.2646%" y="511.50"></text></g><g><title>__lookup_hash (7,645 samples, 0.32%)</title><rect x="7.7252%" y="517" width="0.3181%" height="15" fill="rgb(208,124,10)" fg:x="185682" fg:w="7645"/><text x="7.9752%" y="527.50"></text></g><g><title>inode_permission.part.0 (580 samples, 0.02%)</title><rect x="8.0669%" y="469" width="0.0241%" height="15" fill="rgb(222,33,0)" fg:x="193896" fg:w="580"/><text x="8.3169%" y="479.50"></text></g><g><title>__d_lookup_rcu (800 samples, 0.03%)</title><rect x="8.1031%" y="437" width="0.0333%" height="15" fill="rgb(234,209,28)" fg:x="194766" fg:w="800"/><text x="8.3531%" y="447.50"></text></g><g><title>lookup_fast (911 samples, 0.04%)</title><rect x="8.0986%" y="453" width="0.0379%" height="15" fill="rgb(224,11,23)" fg:x="194658" fg:w="911"/><text x="8.3486%" y="463.50"></text></g><g><title>link_path_walk.part.0 (2,175 samples, 0.09%)</title><rect x="8.0523%" y="485" width="0.0905%" height="15" fill="rgb(232,99,1)" fg:x="193545" fg:w="2175"/><text x="8.3023%" y="495.50"></text></g><g><title>walk_component (1,203 samples, 0.05%)</title><rect x="8.0927%" y="469" width="0.0500%" height="15" fill="rgb(237,95,45)" fg:x="194517" fg:w="1203"/><text x="8.3427%" y="479.50"></text></g><g><title>filename_parentat (2,578 samples, 0.11%)</title><rect x="8.0442%" y="517" width="0.1073%" height="15" fill="rgb(208,109,11)" fg:x="193351" fg:w="2578"/><text x="8.2942%" y="527.50"></text></g><g><title>path_parentat (2,531 samples, 0.11%)</title><rect x="8.0462%" y="501" width="0.1053%" height="15" fill="rgb(216,190,48)" fg:x="193398" fg:w="2531"/><text x="8.2962%" y="511.50"></text></g><g><title>filename_create (10,443 samples, 0.43%)</title><rect x="7.7243%" y="533" width="0.4345%" height="15" fill="rgb(251,171,36)" fg:x="185662" fg:w="10443"/><text x="7.9743%" y="543.50"></text></g><g><title>getname_flags.part.0 (497 samples, 0.02%)</title><rect x="8.1592%" y="533" width="0.0207%" height="15" fill="rgb(230,62,22)" fg:x="196114" fg:w="497"/><text x="8.4092%" y="543.50"></text></g><g><title>strncpy_from_user (244 samples, 0.01%)</title><rect x="8.1697%" y="517" width="0.0102%" height="15" fill="rgb(225,114,35)" fg:x="196367" fg:w="244"/><text x="8.4197%" y="527.50"></text></g><g><title>__btrfs_end_transaction (401 samples, 0.02%)</title><rect x="8.1935%" y="501" width="0.0167%" height="15" fill="rgb(215,118,42)" fg:x="196940" fg:w="401"/><text x="8.4435%" y="511.50"></text></g><g><title>btrfs_insert_delayed_dir_index (768 samples, 0.03%)</title><rect x="8.2182%" y="469" width="0.0320%" height="15" fill="rgb(243,119,21)" fg:x="197533" fg:w="768"/><text x="8.4682%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (510 samples, 0.02%)</title><rect x="8.2914%" y="373" width="0.0212%" height="15" fill="rgb(252,177,53)" fg:x="199293" fg:w="510"/><text x="8.5414%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (487 samples, 0.02%)</title><rect x="8.2924%" y="357" width="0.0203%" height="15" fill="rgb(237,209,29)" fg:x="199316" fg:w="487"/><text x="8.5424%" y="367.50"></text></g><g><title>prepare_to_wait_event (589 samples, 0.02%)</title><rect x="8.2886%" y="389" width="0.0245%" height="15" fill="rgb(212,65,23)" fg:x="199225" fg:w="589"/><text x="8.5386%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (597 samples, 0.02%)</title><rect x="8.3131%" y="389" width="0.0248%" height="15" fill="rgb(230,222,46)" fg:x="199814" fg:w="597"/><text x="8.5631%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (439 samples, 0.02%)</title><rect x="8.3197%" y="373" width="0.0183%" height="15" fill="rgb(215,135,32)" fg:x="199972" fg:w="439"/><text x="8.5697%" y="383.50"></text></g><g><title>__schedule (438 samples, 0.02%)</title><rect x="8.3382%" y="373" width="0.0182%" height="15" fill="rgb(246,101,22)" fg:x="200417" fg:w="438"/><text x="8.5882%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (1,927 samples, 0.08%)</title><rect x="8.2763%" y="405" width="0.0802%" height="15" fill="rgb(206,107,13)" fg:x="198929" fg:w="1927"/><text x="8.5263%" y="415.50"></text></g><g><title>schedule (445 samples, 0.02%)</title><rect x="8.3380%" y="389" width="0.0185%" height="15" fill="rgb(250,100,44)" fg:x="200411" fg:w="445"/><text x="8.5880%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (2,036 samples, 0.08%)</title><rect x="8.2758%" y="421" width="0.0847%" height="15" fill="rgb(231,147,38)" fg:x="198916" fg:w="2036"/><text x="8.5258%" y="431.50"></text></g><g><title>prepare_to_wait_event (283 samples, 0.01%)</title><rect x="8.3647%" y="405" width="0.0118%" height="15" fill="rgb(229,8,40)" fg:x="201053" fg:w="283"/><text x="8.6147%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (244 samples, 0.01%)</title><rect x="8.3764%" y="405" width="0.0102%" height="15" fill="rgb(221,135,30)" fg:x="201336" fg:w="244"/><text x="8.6264%" y="415.50"></text></g><g><title>finish_task_switch (244 samples, 0.01%)</title><rect x="8.3951%" y="373" width="0.0102%" height="15" fill="rgb(249,193,18)" fg:x="201784" fg:w="244"/><text x="8.6451%" y="383.50"></text></g><g><title>__btrfs_tree_lock (1,269 samples, 0.05%)</title><rect x="8.3605%" y="421" width="0.0528%" height="15" fill="rgb(209,133,39)" fg:x="200952" fg:w="1269"/><text x="8.6105%" y="431.50"></text></g><g><title>schedule (641 samples, 0.03%)</title><rect x="8.3866%" y="405" width="0.0267%" height="15" fill="rgb(232,100,14)" fg:x="201580" fg:w="641"/><text x="8.6366%" y="415.50"></text></g><g><title>__schedule (635 samples, 0.03%)</title><rect x="8.3868%" y="389" width="0.0264%" height="15" fill="rgb(224,185,1)" fg:x="201586" fg:w="635"/><text x="8.6368%" y="399.50"></text></g><g><title>btrfs_try_tree_write_lock (1,326 samples, 0.06%)</title><rect x="8.4186%" y="421" width="0.0552%" height="15" fill="rgb(223,139,8)" fg:x="202350" fg:w="1326"/><text x="8.6686%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,270 samples, 0.05%)</title><rect x="8.4210%" y="405" width="0.0528%" height="15" fill="rgb(232,213,38)" fg:x="202406" fg:w="1270"/><text x="8.6710%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (437 samples, 0.02%)</title><rect x="8.4556%" y="389" width="0.0182%" height="15" fill="rgb(207,94,22)" fg:x="203239" fg:w="437"/><text x="8.7056%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (344 samples, 0.01%)</title><rect x="8.4738%" y="421" width="0.0143%" height="15" fill="rgb(219,183,54)" fg:x="203676" fg:w="344"/><text x="8.7238%" y="431.50"></text></g><g><title>find_extent_buffer (361 samples, 0.02%)</title><rect x="8.4949%" y="405" width="0.0150%" height="15" fill="rgb(216,185,54)" fg:x="204184" fg:w="361"/><text x="8.7449%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (589 samples, 0.02%)</title><rect x="8.4881%" y="421" width="0.0245%" height="15" fill="rgb(254,217,39)" fg:x="204020" fg:w="589"/><text x="8.7381%" y="431.50"></text></g><g><title>split_leaf (297 samples, 0.01%)</title><rect x="8.5126%" y="421" width="0.0124%" height="15" fill="rgb(240,178,23)" fg:x="204609" fg:w="297"/><text x="8.7626%" y="431.50"></text></g><g><title>ttwu_do_activate (334 samples, 0.01%)</title><rect x="8.5432%" y="341" width="0.0139%" height="15" fill="rgb(218,11,47)" fg:x="205345" fg:w="334"/><text x="8.7932%" y="351.50"></text></g><g><title>__wake_up_common (802 samples, 0.03%)</title><rect x="8.5274%" y="389" width="0.0334%" height="15" fill="rgb(218,51,51)" fg:x="204964" fg:w="802"/><text x="8.7774%" y="399.50"></text></g><g><title>autoremove_wake_function (785 samples, 0.03%)</title><rect x="8.5281%" y="373" width="0.0327%" height="15" fill="rgb(238,126,27)" fg:x="204981" fg:w="785"/><text x="8.7781%" y="383.50"></text></g><g><title>try_to_wake_up (772 samples, 0.03%)</title><rect x="8.5286%" y="357" width="0.0321%" height="15" fill="rgb(249,202,22)" fg:x="204994" fg:w="772"/><text x="8.7786%" y="367.50"></text></g><g><title>__wake_up_common_lock (817 samples, 0.03%)</title><rect x="8.5273%" y="405" width="0.0340%" height="15" fill="rgb(254,195,49)" fg:x="204963" fg:w="817"/><text x="8.7773%" y="415.50"></text></g><g><title>btrfs_search_slot (7,098 samples, 0.30%)</title><rect x="8.2689%" y="437" width="0.2953%" height="15" fill="rgb(208,123,14)" fg:x="198751" fg:w="7098"/><text x="8.5189%" y="447.50"></text></g><g><title>unlock_up (943 samples, 0.04%)</title><rect x="8.5250%" y="421" width="0.0392%" height="15" fill="rgb(224,200,8)" fg:x="204906" fg:w="943"/><text x="8.7750%" y="431.50"></text></g><g><title>btrfs_get_token_32 (636 samples, 0.03%)</title><rect x="8.5724%" y="421" width="0.0265%" height="15" fill="rgb(217,61,36)" fg:x="206046" fg:w="636"/><text x="8.8224%" y="431.50"></text></g><g><title>btrfs_set_token_32 (484 samples, 0.02%)</title><rect x="8.6046%" y="421" width="0.0201%" height="15" fill="rgb(206,35,45)" fg:x="206821" fg:w="484"/><text x="8.8546%" y="431.50"></text></g><g><title>memcpy_extent_buffer (265 samples, 0.01%)</title><rect x="8.6266%" y="421" width="0.0110%" height="15" fill="rgb(217,65,33)" fg:x="207350" fg:w="265"/><text x="8.8766%" y="431.50"></text></g><g><title>insert_with_overflow (9,170 samples, 0.38%)</title><rect x="8.2651%" y="469" width="0.3815%" height="15" fill="rgb(222,158,48)" fg:x="198660" fg:w="9170"/><text x="8.5151%" y="479.50"></text></g><g><title>btrfs_insert_empty_items (9,102 samples, 0.38%)</title><rect x="8.2679%" y="453" width="0.3787%" height="15" fill="rgb(254,2,54)" fg:x="198728" fg:w="9102"/><text x="8.5179%" y="463.50"></text></g><g><title>setup_items_for_insert (1,981 samples, 0.08%)</title><rect x="8.5642%" y="437" width="0.0824%" height="15" fill="rgb(250,143,38)" fg:x="205849" fg:w="1981"/><text x="8.8142%" y="447.50"></text></g><g><title>btrfs_insert_dir_item (10,554 samples, 0.44%)</title><rect x="8.2153%" y="485" width="0.4391%" height="15" fill="rgb(248,25,0)" fg:x="197464" fg:w="10554"/><text x="8.4653%" y="495.50"></text></g><g><title>btrfs_update_inode (345 samples, 0.01%)</title><rect x="8.6544%" y="485" width="0.0144%" height="15" fill="rgb(206,152,27)" fg:x="208018" fg:w="345"/><text x="8.9044%" y="495.50"></text></g><g><title>btrfs_add_link (11,002 samples, 0.46%)</title><rect x="8.2126%" y="501" width="0.4577%" height="15" fill="rgb(240,77,30)" fg:x="197397" fg:w="11002"/><text x="8.4626%" y="511.50"></text></g><g><title>__queue_work (247 samples, 0.01%)</title><rect x="8.6744%" y="469" width="0.0103%" height="15" fill="rgb(231,5,3)" fg:x="208497" fg:w="247"/><text x="8.9244%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (348 samples, 0.01%)</title><rect x="8.6703%" y="501" width="0.0145%" height="15" fill="rgb(207,226,32)" fg:x="208399" fg:w="348"/><text x="8.9203%" y="511.50"></text></g><g><title>queue_work_on (256 samples, 0.01%)</title><rect x="8.6741%" y="485" width="0.0107%" height="15" fill="rgb(222,207,47)" fg:x="208491" fg:w="256"/><text x="8.9241%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (444 samples, 0.02%)</title><rect x="8.7312%" y="405" width="0.0185%" height="15" fill="rgb(229,115,45)" fg:x="209863" fg:w="444"/><text x="8.9812%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (420 samples, 0.02%)</title><rect x="8.7322%" y="389" width="0.0175%" height="15" fill="rgb(224,191,6)" fg:x="209887" fg:w="420"/><text x="8.9822%" y="399.50"></text></g><g><title>prepare_to_wait_event (490 samples, 0.02%)</title><rect x="8.7297%" y="421" width="0.0204%" height="15" fill="rgb(230,227,24)" fg:x="209827" fg:w="490"/><text x="8.9797%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (584 samples, 0.02%)</title><rect x="8.7501%" y="421" width="0.0243%" height="15" fill="rgb(228,80,19)" fg:x="210317" fg:w="584"/><text x="9.0001%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (421 samples, 0.02%)</title><rect x="8.7569%" y="405" width="0.0175%" height="15" fill="rgb(247,229,0)" fg:x="210480" fg:w="421"/><text x="9.0069%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,915 samples, 0.08%)</title><rect x="8.7173%" y="437" width="0.0797%" height="15" fill="rgb(237,194,15)" fg:x="209528" fg:w="1915"/><text x="8.9673%" y="447.50"></text></g><g><title>schedule (542 samples, 0.02%)</title><rect x="8.7744%" y="421" width="0.0225%" height="15" fill="rgb(219,203,20)" fg:x="210901" fg:w="542"/><text x="9.0244%" y="431.50"></text></g><g><title>__schedule (538 samples, 0.02%)</title><rect x="8.7745%" y="405" width="0.0224%" height="15" fill="rgb(234,128,8)" fg:x="210905" fg:w="538"/><text x="9.0245%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (2,003 samples, 0.08%)</title><rect x="8.7171%" y="453" width="0.0833%" height="15" fill="rgb(248,202,8)" fg:x="209525" fg:w="2003"/><text x="8.9671%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (255 samples, 0.01%)</title><rect x="8.8152%" y="437" width="0.0106%" height="15" fill="rgb(206,104,37)" fg:x="211882" fg:w="255"/><text x="9.0652%" y="447.50"></text></g><g><title>finish_task_switch (269 samples, 0.01%)</title><rect x="8.8361%" y="405" width="0.0112%" height="15" fill="rgb(223,8,27)" fg:x="212385" fg:w="269"/><text x="9.0861%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,364 samples, 0.06%)</title><rect x="8.8005%" y="453" width="0.0567%" height="15" fill="rgb(216,217,28)" fg:x="211528" fg:w="1364"/><text x="9.0505%" y="463.50"></text></g><g><title>schedule (755 samples, 0.03%)</title><rect x="8.8258%" y="437" width="0.0314%" height="15" fill="rgb(249,199,1)" fg:x="212137" fg:w="755"/><text x="9.0758%" y="447.50"></text></g><g><title>__schedule (751 samples, 0.03%)</title><rect x="8.8260%" y="421" width="0.0312%" height="15" fill="rgb(240,85,17)" fg:x="212141" fg:w="751"/><text x="9.0760%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (1,253 samples, 0.05%)</title><rect x="8.8629%" y="453" width="0.0521%" height="15" fill="rgb(206,108,45)" fg:x="213029" fg:w="1253"/><text x="9.1129%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (1,190 samples, 0.05%)</title><rect x="8.8655%" y="437" width="0.0495%" height="15" fill="rgb(245,210,41)" fg:x="213092" fg:w="1190"/><text x="9.1155%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (365 samples, 0.02%)</title><rect x="8.8999%" y="421" width="0.0152%" height="15" fill="rgb(206,13,37)" fg:x="213917" fg:w="365"/><text x="9.1499%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (278 samples, 0.01%)</title><rect x="8.9150%" y="453" width="0.0116%" height="15" fill="rgb(250,61,18)" fg:x="214282" fg:w="278"/><text x="9.1650%" y="463.50"></text></g><g><title>find_extent_buffer (367 samples, 0.02%)</title><rect x="8.9341%" y="437" width="0.0153%" height="15" fill="rgb(235,172,48)" fg:x="214741" fg:w="367"/><text x="9.1841%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (599 samples, 0.02%)</title><rect x="8.9266%" y="453" width="0.0249%" height="15" fill="rgb(249,201,17)" fg:x="214560" fg:w="599"/><text x="9.1766%" y="463.50"></text></g><g><title>split_leaf (415 samples, 0.02%)</title><rect x="8.9516%" y="453" width="0.0173%" height="15" fill="rgb(219,208,6)" fg:x="215160" fg:w="415"/><text x="9.2016%" y="463.50"></text></g><g><title>ttwu_do_activate (385 samples, 0.02%)</title><rect x="8.9879%" y="373" width="0.0160%" height="15" fill="rgb(248,31,23)" fg:x="216034" fg:w="385"/><text x="9.2379%" y="383.50"></text></g><g><title>__wake_up_common (866 samples, 0.04%)</title><rect x="8.9724%" y="421" width="0.0360%" height="15" fill="rgb(245,15,42)" fg:x="215661" fg:w="866"/><text x="9.2224%" y="431.50"></text></g><g><title>autoremove_wake_function (849 samples, 0.04%)</title><rect x="8.9731%" y="405" width="0.0353%" height="15" fill="rgb(222,217,39)" fg:x="215678" fg:w="849"/><text x="9.2231%" y="415.50"></text></g><g><title>try_to_wake_up (830 samples, 0.03%)</title><rect x="8.9739%" y="389" width="0.0345%" height="15" fill="rgb(210,219,27)" fg:x="215697" fg:w="830"/><text x="9.2239%" y="399.50"></text></g><g><title>__wake_up_common_lock (887 samples, 0.04%)</title><rect x="8.9723%" y="437" width="0.0369%" height="15" fill="rgb(252,166,36)" fg:x="215658" fg:w="887"/><text x="9.2223%" y="447.50"></text></g><g><title>btrfs_search_slot (7,229 samples, 0.30%)</title><rect x="8.7116%" y="469" width="0.3008%" height="15" fill="rgb(245,132,34)" fg:x="209393" fg:w="7229"/><text x="8.9616%" y="479.50"></text></g><g><title>unlock_up (1,045 samples, 0.04%)</title><rect x="8.9689%" y="453" width="0.0435%" height="15" fill="rgb(236,54,3)" fg:x="215577" fg:w="1045"/><text x="9.2189%" y="463.50"></text></g><g><title>btrfs_get_token_32 (317 samples, 0.01%)</title><rect x="9.0198%" y="453" width="0.0132%" height="15" fill="rgb(241,173,43)" fg:x="216801" fg:w="317"/><text x="9.2698%" y="463.50"></text></g><g><title>btrfs_set_token_32 (295 samples, 0.01%)</title><rect x="9.0404%" y="453" width="0.0123%" height="15" fill="rgb(215,190,9)" fg:x="217294" fg:w="295"/><text x="9.2904%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (8,474 samples, 0.35%)</title><rect x="8.7111%" y="485" width="0.3526%" height="15" fill="rgb(242,101,16)" fg:x="209380" fg:w="8474"/><text x="8.9611%" y="495.50"></text></g><g><title>setup_items_for_insert (1,232 samples, 0.05%)</title><rect x="9.0124%" y="469" width="0.0513%" height="15" fill="rgb(223,190,21)" fg:x="216622" fg:w="1232"/><text x="9.2624%" y="479.50"></text></g><g><title>fill_inode_item (399 samples, 0.02%)</title><rect x="9.0725%" y="485" width="0.0166%" height="15" fill="rgb(215,228,25)" fg:x="218066" fg:w="399"/><text x="9.3225%" y="495.50"></text></g><g><title>inode_tree_add (805 samples, 0.03%)</title><rect x="9.0929%" y="485" width="0.0335%" height="15" fill="rgb(225,36,22)" fg:x="218558" fg:w="805"/><text x="9.3429%" y="495.50"></text></g><g><title>btrfs_alloc_inode (518 samples, 0.02%)</title><rect x="9.1409%" y="453" width="0.0216%" height="15" fill="rgb(251,106,46)" fg:x="219710" fg:w="518"/><text x="9.3909%" y="463.50"></text></g><g><title>kmem_cache_alloc (373 samples, 0.02%)</title><rect x="9.1469%" y="437" width="0.0155%" height="15" fill="rgb(208,90,1)" fg:x="219855" fg:w="373"/><text x="9.3969%" y="447.50"></text></g><g><title>alloc_inode (710 samples, 0.03%)</title><rect x="9.1395%" y="469" width="0.0295%" height="15" fill="rgb(243,10,4)" fg:x="219676" fg:w="710"/><text x="9.3895%" y="479.50"></text></g><g><title>new_inode (781 samples, 0.03%)</title><rect x="9.1383%" y="485" width="0.0325%" height="15" fill="rgb(212,137,27)" fg:x="219647" fg:w="781"/><text x="9.3883%" y="495.50"></text></g><g><title>btrfs_new_inode (11,496 samples, 0.48%)</title><rect x="8.6939%" y="501" width="0.4783%" height="15" fill="rgb(231,220,49)" fg:x="208966" fg:w="11496"/><text x="8.9439%" y="511.50"></text></g><g><title>btrfs_get_or_create_delayed_node (561 samples, 0.02%)</title><rect x="9.1897%" y="469" width="0.0233%" height="15" fill="rgb(237,96,20)" fg:x="220883" fg:w="561"/><text x="9.4397%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (1,028 samples, 0.04%)</title><rect x="9.1742%" y="485" width="0.0428%" height="15" fill="rgb(239,229,30)" fg:x="220510" fg:w="1028"/><text x="9.4242%" y="495.50"></text></g><g><title>btrfs_update_inode (1,112 samples, 0.05%)</title><rect x="9.1726%" y="501" width="0.0463%" height="15" fill="rgb(219,65,33)" fg:x="220472" fg:w="1112"/><text x="9.4226%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (499 samples, 0.02%)</title><rect x="9.2334%" y="485" width="0.0208%" height="15" fill="rgb(243,134,7)" fg:x="221933" fg:w="499"/><text x="9.4834%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (423 samples, 0.02%)</title><rect x="9.2365%" y="469" width="0.0176%" height="15" fill="rgb(216,177,54)" fg:x="222009" fg:w="423"/><text x="9.4865%" y="479.50"></text></g><g><title>__reserve_bytes (386 samples, 0.02%)</title><rect x="9.2381%" y="453" width="0.0161%" height="15" fill="rgb(211,160,20)" fg:x="222046" fg:w="386"/><text x="9.4881%" y="463.50"></text></g><g><title>btrfs_mkdir (25,775 samples, 1.07%)</title><rect x="8.1918%" y="517" width="1.0723%" height="15" fill="rgb(239,85,39)" fg:x="196899" fg:w="25775"/><text x="8.4418%" y="527.50"></text></g><g><title>start_transaction (902 samples, 0.04%)</title><rect x="9.2267%" y="501" width="0.0375%" height="15" fill="rgb(232,125,22)" fg:x="221772" fg:w="902"/><text x="9.4767%" y="511.50"></text></g><g><title>do_mkdirat (37,584 samples, 1.56%)</title><rect x="7.7070%" y="549" width="1.5637%" height="15" fill="rgb(244,57,34)" fg:x="185245" fg:w="37584"/><text x="7.9570%" y="559.50"></text></g><g><title>vfs_mkdir (25,989 samples, 1.08%)</title><rect x="8.1894%" y="533" width="1.0813%" height="15" fill="rgb(214,203,32)" fg:x="196840" fg:w="25989"/><text x="8.4394%" y="543.50"></text></g><g><title>do_syscall_64 (37,644 samples, 1.57%)</title><rect x="7.7054%" y="565" width="1.5662%" height="15" fill="rgb(207,58,43)" fg:x="185207" fg:w="37644"/><text x="7.9554%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37,753 samples, 1.57%)</title><rect x="7.7043%" y="581" width="1.5707%" height="15" fill="rgb(215,193,15)" fg:x="185181" fg:w="37753"/><text x="7.9543%" y="591.50"></text></g><g><title>__GI___mkdir (37,926 samples, 1.58%)</title><rect x="7.6989%" y="597" width="1.5779%" height="15" fill="rgb(232,15,44)" fg:x="185051" fg:w="37926"/><text x="7.9489%" y="607.50"></text></g><g><title>btrfs_filldir (1,084 samples, 0.05%)</title><rect x="9.3534%" y="485" width="0.0451%" height="15" fill="rgb(212,3,48)" fg:x="224818" fg:w="1084"/><text x="9.6034%" y="495.50"></text></g><g><title>filldir64 (1,011 samples, 0.04%)</title><rect x="9.3564%" y="469" width="0.0421%" height="15" fill="rgb(218,128,7)" fg:x="224891" fg:w="1011"/><text x="9.6064%" y="479.50"></text></g><g><title>verify_dirent_name (295 samples, 0.01%)</title><rect x="9.3862%" y="453" width="0.0123%" height="15" fill="rgb(226,216,39)" fg:x="225607" fg:w="295"/><text x="9.6362%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (284 samples, 0.01%)</title><rect x="9.4235%" y="437" width="0.0118%" height="15" fill="rgb(243,47,51)" fg:x="226503" fg:w="284"/><text x="9.6735%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (292 samples, 0.01%)</title><rect x="9.4234%" y="453" width="0.0121%" height="15" fill="rgb(241,183,40)" fg:x="226502" fg:w="292"/><text x="9.6734%" y="463.50"></text></g><g><title>btrfs_search_slot (524 samples, 0.02%)</title><rect x="9.4229%" y="469" width="0.0218%" height="15" fill="rgb(231,217,32)" fg:x="226488" fg:w="524"/><text x="9.6729%" y="479.50"></text></g><g><title>btrfs_next_old_leaf (672 samples, 0.03%)</title><rect x="9.4208%" y="485" width="0.0280%" height="15" fill="rgb(229,61,38)" fg:x="226439" fg:w="672"/><text x="9.6708%" y="495.50"></text></g><g><title>btrfs_readdir_get_delayed_items (444 samples, 0.02%)</title><rect x="9.4493%" y="485" width="0.0185%" height="15" fill="rgb(225,210,5)" fg:x="227124" fg:w="444"/><text x="9.6993%" y="495.50"></text></g><g><title>btrfs_release_path (447 samples, 0.02%)</title><rect x="9.4698%" y="485" width="0.0186%" height="15" fill="rgb(231,79,45)" fg:x="227615" fg:w="447"/><text x="9.7198%" y="495.50"></text></g><g><title>finish_wait (660 samples, 0.03%)</title><rect x="9.5154%" y="437" width="0.0275%" height="15" fill="rgb(224,100,7)" fg:x="228712" fg:w="660"/><text x="9.7654%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (628 samples, 0.03%)</title><rect x="9.5167%" y="421" width="0.0261%" height="15" fill="rgb(241,198,18)" fg:x="228744" fg:w="628"/><text x="9.7667%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (588 samples, 0.02%)</title><rect x="9.5184%" y="405" width="0.0245%" height="15" fill="rgb(252,97,53)" fg:x="228784" fg:w="588"/><text x="9.7684%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (1,568 samples, 0.07%)</title><rect x="9.5499%" y="421" width="0.0652%" height="15" fill="rgb(220,88,7)" fg:x="229542" fg:w="1568"/><text x="9.7999%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,472 samples, 0.06%)</title><rect x="9.5539%" y="405" width="0.0612%" height="15" fill="rgb(213,176,14)" fg:x="229638" fg:w="1472"/><text x="9.8039%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,760 samples, 0.07%)</title><rect x="9.5431%" y="437" width="0.0732%" height="15" fill="rgb(246,73,7)" fg:x="229378" fg:w="1760"/><text x="9.7931%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,823 samples, 0.08%)</title><rect x="9.6163%" y="437" width="0.0758%" height="15" fill="rgb(245,64,36)" fg:x="231138" fg:w="1823"/><text x="9.8663%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,312 samples, 0.05%)</title><rect x="9.6376%" y="421" width="0.0546%" height="15" fill="rgb(245,80,10)" fg:x="231649" fg:w="1312"/><text x="9.8876%" y="431.50"></text></g><g><title>dequeue_entity (282 samples, 0.01%)</title><rect x="9.7019%" y="389" width="0.0117%" height="15" fill="rgb(232,107,50)" fg:x="233196" fg:w="282"/><text x="9.9519%" y="399.50"></text></g><g><title>dequeue_task_fair (340 samples, 0.01%)</title><rect x="9.7006%" y="405" width="0.0141%" height="15" fill="rgb(253,3,0)" fg:x="233163" fg:w="340"/><text x="9.9506%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (501 samples, 0.02%)</title><rect x="9.7173%" y="389" width="0.0208%" height="15" fill="rgb(212,99,53)" fg:x="233566" fg:w="501"/><text x="9.9673%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (494 samples, 0.02%)</title><rect x="9.7176%" y="373" width="0.0206%" height="15" fill="rgb(249,111,54)" fg:x="233573" fg:w="494"/><text x="9.9676%" y="383.50"></text></g><g><title>native_write_msr (490 samples, 0.02%)</title><rect x="9.7178%" y="357" width="0.0204%" height="15" fill="rgb(249,55,30)" fg:x="233577" fg:w="490"/><text x="9.9678%" y="367.50"></text></g><g><title>finish_task_switch (595 samples, 0.02%)</title><rect x="9.7147%" y="405" width="0.0248%" height="15" fill="rgb(237,47,42)" fg:x="233503" fg:w="595"/><text x="9.9647%" y="415.50"></text></g><g><title>psi_task_change (278 samples, 0.01%)</title><rect x="9.7453%" y="405" width="0.0116%" height="15" fill="rgb(211,20,18)" fg:x="234238" fg:w="278"/><text x="9.9953%" y="415.50"></text></g><g><title>__schedule (1,619 samples, 0.07%)</title><rect x="9.6931%" y="421" width="0.0674%" height="15" fill="rgb(231,203,46)" fg:x="232983" fg:w="1619"/><text x="9.9431%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (6,138 samples, 0.26%)</title><rect x="9.5053%" y="453" width="0.2554%" height="15" fill="rgb(237,142,3)" fg:x="228469" fg:w="6138"/><text x="9.7553%" y="463.50"></text></g><g><title>schedule (1,646 samples, 0.07%)</title><rect x="9.6922%" y="437" width="0.0685%" height="15" fill="rgb(241,107,1)" fg:x="232961" fg:w="1646"/><text x="9.9422%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (6,387 samples, 0.27%)</title><rect x="9.5038%" y="469" width="0.2657%" height="15" fill="rgb(229,83,13)" fg:x="228433" fg:w="6387"/><text x="9.7538%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (509 samples, 0.02%)</title><rect x="9.7695%" y="469" width="0.0212%" height="15" fill="rgb(241,91,40)" fg:x="234820" fg:w="509"/><text x="10.0195%" y="479.50"></text></g><g><title>schedule (440 samples, 0.02%)</title><rect x="9.7724%" y="453" width="0.0183%" height="15" fill="rgb(225,3,45)" fg:x="234889" fg:w="440"/><text x="10.0224%" y="463.50"></text></g><g><title>__schedule (437 samples, 0.02%)</title><rect x="9.7725%" y="437" width="0.0182%" height="15" fill="rgb(244,223,14)" fg:x="234892" fg:w="437"/><text x="10.0225%" y="447.50"></text></g><g><title>ttwu_do_activate (366 samples, 0.02%)</title><rect x="9.8055%" y="405" width="0.0152%" height="15" fill="rgb(224,124,37)" fg:x="235686" fg:w="366"/><text x="10.0555%" y="415.50"></text></g><g><title>__wake_up_common (796 samples, 0.03%)</title><rect x="9.7908%" y="453" width="0.0331%" height="15" fill="rgb(251,171,30)" fg:x="235332" fg:w="796"/><text x="10.0408%" y="463.50"></text></g><g><title>autoremove_wake_function (785 samples, 0.03%)</title><rect x="9.7913%" y="437" width="0.0327%" height="15" fill="rgb(236,46,54)" fg:x="235343" fg:w="785"/><text x="10.0413%" y="447.50"></text></g><g><title>try_to_wake_up (753 samples, 0.03%)</title><rect x="9.7926%" y="421" width="0.0313%" height="15" fill="rgb(245,213,5)" fg:x="235375" fg:w="753"/><text x="10.0426%" y="431.50"></text></g><g><title>__wake_up_common_lock (817 samples, 0.03%)</title><rect x="9.7907%" y="469" width="0.0340%" height="15" fill="rgb(230,144,27)" fg:x="235330" fg:w="817"/><text x="10.0407%" y="479.50"></text></g><g><title>btrfs_tree_read_lock_atomic (456 samples, 0.02%)</title><rect x="9.8352%" y="469" width="0.0190%" height="15" fill="rgb(220,86,6)" fg:x="236399" fg:w="456"/><text x="10.0852%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (312 samples, 0.01%)</title><rect x="9.8412%" y="453" width="0.0130%" height="15" fill="rgb(240,20,13)" fg:x="236543" fg:w="312"/><text x="10.0912%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (926 samples, 0.04%)</title><rect x="9.8616%" y="469" width="0.0385%" height="15" fill="rgb(217,89,34)" fg:x="237033" fg:w="926"/><text x="10.1116%" y="479.50"></text></g><g><title>__radix_tree_lookup (459 samples, 0.02%)</title><rect x="9.9278%" y="437" width="0.0191%" height="15" fill="rgb(229,13,5)" fg:x="238624" fg:w="459"/><text x="10.1778%" y="447.50"></text></g><g><title>find_extent_buffer (889 samples, 0.04%)</title><rect x="9.9190%" y="453" width="0.0370%" height="15" fill="rgb(244,67,35)" fg:x="238414" fg:w="889"/><text x="10.1690%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (1,468 samples, 0.06%)</title><rect x="9.9001%" y="469" width="0.0611%" height="15" fill="rgb(221,40,2)" fg:x="237959" fg:w="1468"/><text x="10.1501%" y="479.50"></text></g><g><title>btrfs_search_slot (11,506 samples, 0.48%)</title><rect x="9.4884%" y="485" width="0.4787%" height="15" fill="rgb(237,157,21)" fg:x="228062" fg:w="11506"/><text x="9.7384%" y="495.50"></text></g><g><title>filldir64 (258 samples, 0.01%)</title><rect x="9.9712%" y="485" width="0.0107%" height="15" fill="rgb(222,94,11)" fg:x="239667" fg:w="258"/><text x="10.2212%" y="495.50"></text></g><g><title>btrfs_real_readdir (17,282 samples, 0.72%)</title><rect x="9.3271%" y="501" width="0.7190%" height="15" fill="rgb(249,113,6)" fg:x="224185" fg:w="17282"/><text x="9.5771%" y="511.50"></text></g><g><title>read_extent_buffer (1,136 samples, 0.05%)</title><rect x="9.9988%" y="485" width="0.0473%" height="15" fill="rgb(238,137,36)" fg:x="240331" fg:w="1136"/><text x="10.2488%" y="495.50"></text></g><g><title>security_file_permission (257 samples, 0.01%)</title><rect x="10.0520%" y="501" width="0.0107%" height="15" fill="rgb(210,102,26)" fg:x="241611" fg:w="257"/><text x="10.3020%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (552 samples, 0.02%)</title><rect x="10.1032%" y="437" width="0.0230%" height="15" fill="rgb(218,30,30)" fg:x="242841" fg:w="552"/><text x="10.3532%" y="447.50"></text></g><g><title>btrfs_reserve_metadata_bytes (476 samples, 0.02%)</title><rect x="10.1064%" y="421" width="0.0198%" height="15" fill="rgb(214,67,26)" fg:x="242917" fg:w="476"/><text x="10.3564%" y="431.50"></text></g><g><title>__reserve_bytes (426 samples, 0.02%)</title><rect x="10.1085%" y="405" width="0.0177%" height="15" fill="rgb(251,9,53)" fg:x="242967" fg:w="426"/><text x="10.3585%" y="415.50"></text></g><g><title>btrfs_delayed_update_inode (1,041 samples, 0.04%)</title><rect x="10.0897%" y="453" width="0.0433%" height="15" fill="rgb(228,204,25)" fg:x="242517" fg:w="1041"/><text x="10.3397%" y="463.50"></text></g><g><title>btrfs_update_inode (1,180 samples, 0.05%)</title><rect x="10.0889%" y="469" width="0.0491%" height="15" fill="rgb(207,153,8)" fg:x="242497" fg:w="1180"/><text x="10.3389%" y="479.50"></text></g><g><title>btrfs_dirty_inode (1,849 samples, 0.08%)</title><rect x="10.0782%" y="485" width="0.0769%" height="15" fill="rgb(242,9,16)" fg:x="242239" fg:w="1849"/><text x="10.3282%" y="495.50"></text></g><g><title>start_transaction (329 samples, 0.01%)</title><rect x="10.1414%" y="469" width="0.0137%" height="15" fill="rgb(217,211,10)" fg:x="243759" fg:w="329"/><text x="10.3914%" y="479.50"></text></g><g><title>touch_atime (2,282 samples, 0.09%)</title><rect x="10.0627%" y="501" width="0.0949%" height="15" fill="rgb(219,228,52)" fg:x="241868" fg:w="2282"/><text x="10.3127%" y="511.50"></text></g><g><title>iterate_dir (20,143 samples, 0.84%)</title><rect x="9.3224%" y="517" width="0.8380%" height="15" fill="rgb(231,92,29)" fg:x="224073" fg:w="20143"/><text x="9.5724%" y="527.50"></text></g><g><title>__x64_sys_getdents64 (20,474 samples, 0.85%)</title><rect x="9.3096%" y="533" width="0.8518%" height="15" fill="rgb(232,8,23)" fg:x="223765" fg:w="20474"/><text x="9.5596%" y="543.50"></text></g><g><title>do_syscall_64 (20,521 samples, 0.85%)</title><rect x="9.3081%" y="549" width="0.8538%" height="15" fill="rgb(216,211,34)" fg:x="223730" fg:w="20521"/><text x="9.5581%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20,683 samples, 0.86%)</title><rect x="9.3057%" y="565" width="0.8605%" height="15" fill="rgb(236,151,0)" fg:x="223673" fg:w="20683"/><text x="9.5557%" y="575.50"></text></g><g><title>__GI___getdents64 (20,889 samples, 0.87%)</title><rect x="9.2996%" y="581" width="0.8691%" height="15" fill="rgb(209,168,3)" fg:x="223524" fg:w="20889"/><text x="9.5496%" y="591.50"></text></g><g><title>__GI___readdir64 (21,438 samples, 0.89%)</title><rect x="9.2768%" y="597" width="0.8919%" height="15" fill="rgb(208,129,28)" fg:x="222977" fg:w="21438"/><text x="9.5268%" y="607.50"></text></g><g><title>__do_sys_newstat (254 samples, 0.01%)</title><rect x="10.1692%" y="549" width="0.0106%" height="15" fill="rgb(229,78,22)" fg:x="244426" fg:w="254"/><text x="10.4192%" y="559.50"></text></g><g><title>vfs_statx (242 samples, 0.01%)</title><rect x="10.1697%" y="533" width="0.0101%" height="15" fill="rgb(228,187,13)" fg:x="244438" fg:w="242"/><text x="10.4197%" y="543.50"></text></g><g><title>do_syscall_64 (260 samples, 0.01%)</title><rect x="10.1690%" y="565" width="0.0108%" height="15" fill="rgb(240,119,24)" fg:x="244422" fg:w="260"/><text x="10.4190%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (262 samples, 0.01%)</title><rect x="10.1690%" y="581" width="0.0109%" height="15" fill="rgb(209,194,42)" fg:x="244421" fg:w="262"/><text x="10.4190%" y="591.50"></text></g><g><title>__GI___xstat (270 samples, 0.01%)</title><rect x="10.1687%" y="597" width="0.0112%" height="15" fill="rgb(247,200,46)" fg:x="244415" fg:w="270"/><text x="10.4187%" y="607.50"></text></g><g><title>__switch_to_asm (272 samples, 0.01%)</title><rect x="10.2214%" y="581" width="0.0113%" height="15" fill="rgb(218,76,16)" fg:x="245681" fg:w="272"/><text x="10.4714%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (429 samples, 0.02%)</title><rect x="10.2381%" y="581" width="0.0178%" height="15" fill="rgb(225,21,48)" fg:x="246083" fg:w="429"/><text x="10.4881%" y="591.50"></text></g><g><title>crc32c_pcl_intel_update (495 samples, 0.02%)</title><rect x="10.2652%" y="581" width="0.0206%" height="15" fill="rgb(239,223,50)" fg:x="246735" fg:w="495"/><text x="10.5152%" y="591.50"></text></g><g><title>entry_SYSCALL_64 (484 samples, 0.02%)</title><rect x="10.2858%" y="581" width="0.0201%" height="15" fill="rgb(244,45,21)" fg:x="247230" fg:w="484"/><text x="10.5358%" y="591.50"></text></g><g><title>getname_flags (507 samples, 0.02%)</title><rect x="10.3587%" y="533" width="0.0211%" height="15" fill="rgb(232,33,43)" fg:x="248982" fg:w="507"/><text x="10.6087%" y="543.50"></text></g><g><title>memset_erms (1,986 samples, 0.08%)</title><rect x="10.4234%" y="501" width="0.0826%" height="15" fill="rgb(209,8,3)" fg:x="250536" fg:w="1986"/><text x="10.6734%" y="511.50"></text></g><g><title>kmem_cache_alloc (2,942 samples, 0.12%)</title><rect x="10.3902%" y="517" width="0.1224%" height="15" fill="rgb(214,25,53)" fg:x="249740" fg:w="2942"/><text x="10.6402%" y="527.50"></text></g><g><title>__check_heap_object (264 samples, 0.01%)</title><rect x="10.5829%" y="485" width="0.0110%" height="15" fill="rgb(254,186,54)" fg:x="254370" fg:w="264"/><text x="10.8329%" y="495.50"></text></g><g><title>__virt_addr_valid (1,027 samples, 0.04%)</title><rect x="10.5939%" y="485" width="0.0427%" height="15" fill="rgb(208,174,49)" fg:x="254634" fg:w="1027"/><text x="10.8439%" y="495.50"></text></g><g><title>__check_object_size (1,969 samples, 0.08%)</title><rect x="10.5646%" y="501" width="0.0819%" height="15" fill="rgb(233,191,51)" fg:x="253931" fg:w="1969"/><text x="10.8146%" y="511.50"></text></g><g><title>getname_flags.part.0 (6,423 samples, 0.27%)</title><rect x="10.3798%" y="533" width="0.2672%" height="15" fill="rgb(222,134,10)" fg:x="249489" fg:w="6423"/><text x="10.6298%" y="543.50"></text></g><g><title>strncpy_from_user (3,230 samples, 0.13%)</title><rect x="10.5126%" y="517" width="0.1344%" height="15" fill="rgb(230,226,20)" fg:x="252682" fg:w="3230"/><text x="10.7626%" y="527.50"></text></g><g><title>__x64_sys_unlinkat (6,991 samples, 0.29%)</title><rect x="10.3563%" y="549" width="0.2909%" height="15" fill="rgb(251,111,25)" fg:x="248924" fg:w="6991"/><text x="10.6063%" y="559.50"></text></g><g><title>d_lru_add (261 samples, 0.01%)</title><rect x="10.6667%" y="517" width="0.0109%" height="15" fill="rgb(224,40,46)" fg:x="256385" fg:w="261"/><text x="10.9167%" y="527.50"></text></g><g><title>list_lru_add (252 samples, 0.01%)</title><rect x="10.6671%" y="501" width="0.0105%" height="15" fill="rgb(236,108,47)" fg:x="256394" fg:w="252"/><text x="10.9171%" y="511.50"></text></g><g><title>dput (470 samples, 0.02%)</title><rect x="10.6603%" y="533" width="0.0196%" height="15" fill="rgb(234,93,0)" fg:x="256231" fg:w="470"/><text x="10.9103%" y="543.50"></text></g><g><title>path_init (250 samples, 0.01%)</title><rect x="10.6979%" y="501" width="0.0104%" height="15" fill="rgb(224,213,32)" fg:x="257135" fg:w="250"/><text x="10.9479%" y="511.50"></text></g><g><title>filename_parentat (778 samples, 0.03%)</title><rect x="10.6799%" y="533" width="0.0324%" height="15" fill="rgb(251,11,48)" fg:x="256701" fg:w="778"/><text x="10.9299%" y="543.50"></text></g><g><title>path_parentat (710 samples, 0.03%)</title><rect x="10.6827%" y="517" width="0.0295%" height="15" fill="rgb(236,173,5)" fg:x="256769" fg:w="710"/><text x="10.9327%" y="527.50"></text></g><g><title>security_path_rmdir (288 samples, 0.01%)</title><rect x="10.7274%" y="533" width="0.0120%" height="15" fill="rgb(230,95,12)" fg:x="257843" fg:w="288"/><text x="10.9774%" y="543.50"></text></g><g><title>__btrfs_end_transaction (413 samples, 0.02%)</title><rect x="10.7503%" y="501" width="0.0172%" height="15" fill="rgb(232,209,1)" fg:x="258395" fg:w="413"/><text x="11.0003%" y="511.50"></text></g><g><title>btrfs_free_path (348 samples, 0.01%)</title><rect x="10.7792%" y="469" width="0.0145%" height="15" fill="rgb(232,6,1)" fg:x="259088" fg:w="348"/><text x="11.0292%" y="479.50"></text></g><g><title>btrfs_release_path (342 samples, 0.01%)</title><rect x="10.7794%" y="453" width="0.0142%" height="15" fill="rgb(210,224,50)" fg:x="259094" fg:w="342"/><text x="11.0294%" y="463.50"></text></g><g><title>btrfs_lookup_dir_index_item (732 samples, 0.03%)</title><rect x="10.7936%" y="469" width="0.0305%" height="15" fill="rgb(228,127,35)" fg:x="259436" fg:w="732"/><text x="11.0436%" y="479.50"></text></g><g><title>btrfs_search_slot (721 samples, 0.03%)</title><rect x="10.7941%" y="453" width="0.0300%" height="15" fill="rgb(245,102,45)" fg:x="259447" fg:w="721"/><text x="11.0441%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (282 samples, 0.01%)</title><rect x="10.8288%" y="421" width="0.0117%" height="15" fill="rgb(214,1,49)" fg:x="260281" fg:w="282"/><text x="11.0788%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (301 samples, 0.01%)</title><rect x="10.8288%" y="437" width="0.0125%" height="15" fill="rgb(226,163,40)" fg:x="260280" fg:w="301"/><text x="11.0788%" y="447.50"></text></g><g><title>btrfs_search_slot (995 samples, 0.04%)</title><rect x="10.8251%" y="453" width="0.0414%" height="15" fill="rgb(239,212,28)" fg:x="260191" fg:w="995"/><text x="11.0751%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (1,046 samples, 0.04%)</title><rect x="10.8241%" y="469" width="0.0435%" height="15" fill="rgb(220,20,13)" fg:x="260168" fg:w="1046"/><text x="11.0741%" y="479.50"></text></g><g><title>btrfs_release_path (329 samples, 0.01%)</title><rect x="10.8676%" y="469" width="0.0137%" height="15" fill="rgb(210,164,35)" fg:x="261214" fg:w="329"/><text x="11.1176%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (2,753 samples, 0.11%)</title><rect x="10.7736%" y="485" width="0.1145%" height="15" fill="rgb(248,109,41)" fg:x="258954" fg:w="2753"/><text x="11.0236%" y="495.50"></text></g><g><title>__wake_up_common (481 samples, 0.02%)</title><rect x="10.8940%" y="405" width="0.0200%" height="15" fill="rgb(238,23,50)" fg:x="261847" fg:w="481"/><text x="11.1440%" y="415.50"></text></g><g><title>autoremove_wake_function (472 samples, 0.02%)</title><rect x="10.8943%" y="389" width="0.0196%" height="15" fill="rgb(211,48,49)" fg:x="261856" fg:w="472"/><text x="11.1443%" y="399.50"></text></g><g><title>try_to_wake_up (463 samples, 0.02%)</title><rect x="10.8947%" y="373" width="0.0193%" height="15" fill="rgb(223,36,21)" fg:x="261865" fg:w="463"/><text x="11.1447%" y="383.50"></text></g><g><title>__wake_up_common_lock (608 samples, 0.03%)</title><rect x="10.8939%" y="421" width="0.0253%" height="15" fill="rgb(207,123,46)" fg:x="261846" fg:w="608"/><text x="11.1439%" y="431.50"></text></g><g><title>btrfs_free_path (819 samples, 0.03%)</title><rect x="10.8918%" y="453" width="0.0341%" height="15" fill="rgb(240,218,32)" fg:x="261796" fg:w="819"/><text x="11.1418%" y="463.50"></text></g><g><title>btrfs_release_path (808 samples, 0.03%)</title><rect x="10.8923%" y="437" width="0.0336%" height="15" fill="rgb(252,5,43)" fg:x="261807" fg:w="808"/><text x="11.1423%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (539 samples, 0.02%)</title><rect x="10.9357%" y="421" width="0.0224%" height="15" fill="rgb(252,84,19)" fg:x="262850" fg:w="539"/><text x="11.1857%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (676 samples, 0.03%)</title><rect x="10.9348%" y="437" width="0.0281%" height="15" fill="rgb(243,152,39)" fg:x="262830" fg:w="676"/><text x="11.1848%" y="447.50"></text></g><g><title>__btrfs_tree_lock (286 samples, 0.01%)</title><rect x="10.9684%" y="421" width="0.0119%" height="15" fill="rgb(234,160,15)" fg:x="263636" fg:w="286"/><text x="11.2184%" y="431.50"></text></g><g><title>btrfs_lock_root_node (319 samples, 0.01%)</title><rect x="10.9683%" y="437" width="0.0133%" height="15" fill="rgb(237,34,20)" fg:x="263633" fg:w="319"/><text x="11.2183%" y="447.50"></text></g><g><title>find_extent_buffer (306 samples, 0.01%)</title><rect x="11.0017%" y="421" width="0.0127%" height="15" fill="rgb(229,97,13)" fg:x="264437" fg:w="306"/><text x="11.2517%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (514 samples, 0.02%)</title><rect x="10.9951%" y="437" width="0.0214%" height="15" fill="rgb(234,71,50)" fg:x="264278" fg:w="514"/><text x="11.2451%" y="447.50"></text></g><g><title>btrfs_search_slot (2,272 samples, 0.09%)</title><rect x="10.9259%" y="453" width="0.0945%" height="15" fill="rgb(253,155,4)" fg:x="262615" fg:w="2272"/><text x="11.1759%" y="463.50"></text></g><g><title>btrfs_del_inode_ref (3,447 samples, 0.14%)</title><rect x="10.8902%" y="469" width="0.1434%" height="15" fill="rgb(222,185,37)" fg:x="261758" fg:w="3447"/><text x="11.1402%" y="479.50"></text></g><g><title>btrfs_del_inode_ref_in_log (3,636 samples, 0.15%)</title><rect x="10.8881%" y="485" width="0.1513%" height="15" fill="rgb(251,177,13)" fg:x="261707" fg:w="3636"/><text x="11.1381%" y="495.50"></text></g><g><title>btrfs_get_token_32 (842 samples, 0.04%)</title><rect x="11.0573%" y="469" width="0.0350%" height="15" fill="rgb(250,179,40)" fg:x="265773" fg:w="842"/><text x="11.3073%" y="479.50"></text></g><g><title>btrfs_set_token_32 (572 samples, 0.02%)</title><rect x="11.0944%" y="469" width="0.0238%" height="15" fill="rgb(242,44,2)" fg:x="266666" fg:w="572"/><text x="11.3444%" y="479.50"></text></g><g><title>memmove_extent_buffer (541 samples, 0.02%)</title><rect x="11.1248%" y="469" width="0.0225%" height="15" fill="rgb(216,177,13)" fg:x="267395" fg:w="541"/><text x="11.3748%" y="479.50"></text></g><g><title>memmove (439 samples, 0.02%)</title><rect x="11.1290%" y="453" width="0.0183%" height="15" fill="rgb(216,106,43)" fg:x="267497" fg:w="439"/><text x="11.3790%" y="463.50"></text></g><g><title>btrfs_del_items (2,818 samples, 0.12%)</title><rect x="11.0394%" y="485" width="0.1172%" height="15" fill="rgb(216,183,2)" fg:x="265343" fg:w="2818"/><text x="11.2894%" y="495.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (542 samples, 0.02%)</title><rect x="11.1566%" y="485" width="0.0225%" height="15" fill="rgb(249,75,3)" fg:x="268161" fg:w="542"/><text x="11.4066%" y="495.50"></text></g><g><title>btrfs_delete_delayed_dir_index (729 samples, 0.03%)</title><rect x="11.1792%" y="485" width="0.0303%" height="15" fill="rgb(219,67,39)" fg:x="268703" fg:w="729"/><text x="11.4292%" y="495.50"></text></g><g><title>btrfs_match_dir_item_name (270 samples, 0.01%)</title><rect x="11.2158%" y="469" width="0.0112%" height="15" fill="rgb(253,228,2)" fg:x="269584" fg:w="270"/><text x="11.4658%" y="479.50"></text></g><g><title>finish_wait (269 samples, 0.01%)</title><rect x="11.2419%" y="421" width="0.0112%" height="15" fill="rgb(235,138,27)" fg:x="270211" fg:w="269"/><text x="11.4919%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (261 samples, 0.01%)</title><rect x="11.2423%" y="405" width="0.0109%" height="15" fill="rgb(236,97,51)" fg:x="270219" fg:w="261"/><text x="11.4923%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (244 samples, 0.01%)</title><rect x="11.2430%" y="389" width="0.0102%" height="15" fill="rgb(240,80,30)" fg:x="270236" fg:w="244"/><text x="11.4930%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (590 samples, 0.02%)</title><rect x="11.2559%" y="405" width="0.0245%" height="15" fill="rgb(230,178,19)" fg:x="270548" fg:w="590"/><text x="11.5059%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (562 samples, 0.02%)</title><rect x="11.2571%" y="389" width="0.0234%" height="15" fill="rgb(210,190,27)" fg:x="270576" fg:w="562"/><text x="11.5071%" y="399.50"></text></g><g><title>prepare_to_wait_event (671 samples, 0.03%)</title><rect x="11.2531%" y="421" width="0.0279%" height="15" fill="rgb(222,107,31)" fg:x="270480" fg:w="671"/><text x="11.5031%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (915 samples, 0.04%)</title><rect x="11.2810%" y="421" width="0.0381%" height="15" fill="rgb(216,127,34)" fg:x="271151" fg:w="915"/><text x="11.5310%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (665 samples, 0.03%)</title><rect x="11.2914%" y="405" width="0.0277%" height="15" fill="rgb(234,116,52)" fg:x="271401" fg:w="665"/><text x="11.5414%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (2,606 samples, 0.11%)</title><rect x="11.2359%" y="437" width="0.1084%" height="15" fill="rgb(222,124,15)" fg:x="270066" fg:w="2606"/><text x="11.4859%" y="447.50"></text></g><g><title>schedule (606 samples, 0.03%)</title><rect x="11.3191%" y="421" width="0.0252%" height="15" fill="rgb(231,179,28)" fg:x="272066" fg:w="606"/><text x="11.5691%" y="431.50"></text></g><g><title>__schedule (596 samples, 0.02%)</title><rect x="11.3195%" y="405" width="0.0248%" height="15" fill="rgb(226,93,45)" fg:x="272076" fg:w="596"/><text x="11.5695%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (2,693 samples, 0.11%)</title><rect x="11.2353%" y="453" width="0.1120%" height="15" fill="rgb(215,8,51)" fg:x="270051" fg:w="2693"/><text x="11.4853%" y="463.50"></text></g><g><title>__btrfs_tree_lock (280 samples, 0.01%)</title><rect x="11.3473%" y="453" width="0.0116%" height="15" fill="rgb(223,106,5)" fg:x="272744" fg:w="280"/><text x="11.5973%" y="463.50"></text></g><g><title>schedule (244 samples, 0.01%)</title><rect x="11.3488%" y="437" width="0.0102%" height="15" fill="rgb(250,191,5)" fg:x="272780" fg:w="244"/><text x="11.5988%" y="447.50"></text></g><g><title>__schedule (241 samples, 0.01%)</title><rect x="11.3489%" y="421" width="0.0100%" height="15" fill="rgb(242,132,44)" fg:x="272783" fg:w="241"/><text x="11.5989%" y="431.50"></text></g><g><title>finish_wait (443 samples, 0.02%)</title><rect x="11.3696%" y="421" width="0.0184%" height="15" fill="rgb(251,152,29)" fg:x="273280" fg:w="443"/><text x="11.6196%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (418 samples, 0.02%)</title><rect x="11.3707%" y="405" width="0.0174%" height="15" fill="rgb(218,179,5)" fg:x="273305" fg:w="418"/><text x="11.6207%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (385 samples, 0.02%)</title><rect x="11.3720%" y="389" width="0.0160%" height="15" fill="rgb(227,67,19)" fg:x="273338" fg:w="385"/><text x="11.6220%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,318 samples, 0.05%)</title><rect x="11.3947%" y="405" width="0.0548%" height="15" fill="rgb(233,119,31)" fg:x="273882" fg:w="1318"/><text x="11.6447%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,233 samples, 0.05%)</title><rect x="11.3982%" y="389" width="0.0513%" height="15" fill="rgb(241,120,22)" fg:x="273967" fg:w="1233"/><text x="11.6482%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,503 samples, 0.06%)</title><rect x="11.3883%" y="421" width="0.0625%" height="15" fill="rgb(224,102,30)" fg:x="273729" fg:w="1503"/><text x="11.6383%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,709 samples, 0.07%)</title><rect x="11.4508%" y="421" width="0.0711%" height="15" fill="rgb(210,164,37)" fg:x="275232" fg:w="1709"/><text x="11.7008%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (833 samples, 0.03%)</title><rect x="11.4873%" y="405" width="0.0347%" height="15" fill="rgb(226,191,16)" fg:x="276108" fg:w="833"/><text x="11.7373%" y="415.50"></text></g><g><title>dequeue_entity (303 samples, 0.01%)</title><rect x="11.5303%" y="373" width="0.0126%" height="15" fill="rgb(214,40,45)" fg:x="277143" fg:w="303"/><text x="11.7803%" y="383.50"></text></g><g><title>dequeue_task_fair (360 samples, 0.01%)</title><rect x="11.5287%" y="389" width="0.0150%" height="15" fill="rgb(244,29,26)" fg:x="277105" fg:w="360"/><text x="11.7787%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (464 samples, 0.02%)</title><rect x="11.5468%" y="373" width="0.0193%" height="15" fill="rgb(216,16,5)" fg:x="277540" fg:w="464"/><text x="11.7968%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (439 samples, 0.02%)</title><rect x="11.5479%" y="357" width="0.0183%" height="15" fill="rgb(249,76,35)" fg:x="277565" fg:w="439"/><text x="11.7979%" y="367.50"></text></g><g><title>native_write_msr (433 samples, 0.02%)</title><rect x="11.5481%" y="341" width="0.0180%" height="15" fill="rgb(207,11,44)" fg:x="277571" fg:w="433"/><text x="11.7981%" y="351.50"></text></g><g><title>finish_task_switch (563 samples, 0.02%)</title><rect x="11.5437%" y="389" width="0.0234%" height="15" fill="rgb(228,190,49)" fg:x="277465" fg:w="563"/><text x="11.7937%" y="399.50"></text></g><g><title>psi_task_change (255 samples, 0.01%)</title><rect x="11.5727%" y="389" width="0.0106%" height="15" fill="rgb(214,173,12)" fg:x="278161" fg:w="255"/><text x="11.8227%" y="399.50"></text></g><g><title>__btrfs_tree_lock (5,414 samples, 0.23%)</title><rect x="11.3610%" y="437" width="0.2252%" height="15" fill="rgb(218,26,35)" fg:x="273073" fg:w="5414"/><text x="11.6110%" y="447.50"></text></g><g><title>schedule (1,546 samples, 0.06%)</title><rect x="11.5219%" y="421" width="0.0643%" height="15" fill="rgb(220,200,19)" fg:x="276941" fg:w="1546"/><text x="11.7719%" y="431.50"></text></g><g><title>__schedule (1,521 samples, 0.06%)</title><rect x="11.5230%" y="405" width="0.0633%" height="15" fill="rgb(239,95,49)" fg:x="276966" fg:w="1521"/><text x="11.7730%" y="415.50"></text></g><g><title>btrfs_lock_root_node (5,458 samples, 0.23%)</title><rect x="11.3608%" y="453" width="0.2271%" height="15" fill="rgb(235,85,53)" fg:x="273068" fg:w="5458"/><text x="11.6108%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (264 samples, 0.01%)</title><rect x="11.5914%" y="453" width="0.0110%" height="15" fill="rgb(233,133,31)" fg:x="278610" fg:w="264"/><text x="11.8414%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (487 samples, 0.02%)</title><rect x="11.6047%" y="453" width="0.0203%" height="15" fill="rgb(218,25,20)" fg:x="278931" fg:w="487"/><text x="11.8547%" y="463.50"></text></g><g><title>__radix_tree_lookup (253 samples, 0.01%)</title><rect x="11.6393%" y="421" width="0.0105%" height="15" fill="rgb(252,210,38)" fg:x="279762" fg:w="253"/><text x="11.8893%" y="431.50"></text></g><g><title>find_extent_buffer (509 samples, 0.02%)</title><rect x="11.6343%" y="437" width="0.0212%" height="15" fill="rgb(242,134,21)" fg:x="279642" fg:w="509"/><text x="11.8843%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (789 samples, 0.03%)</title><rect x="11.6250%" y="453" width="0.0328%" height="15" fill="rgb(213,28,48)" fg:x="279418" fg:w="789"/><text x="11.8750%" y="463.50"></text></g><g><title>reada_for_balance (311 samples, 0.01%)</title><rect x="11.6578%" y="453" width="0.0129%" height="15" fill="rgb(250,196,2)" fg:x="280207" fg:w="311"/><text x="11.9078%" y="463.50"></text></g><g><title>select_task_rq_fair (281 samples, 0.01%)</title><rect x="11.7089%" y="373" width="0.0117%" height="15" fill="rgb(227,5,17)" fg:x="281436" fg:w="281"/><text x="11.9589%" y="383.50"></text></g><g><title>enqueue_entity (254 samples, 0.01%)</title><rect x="11.7249%" y="341" width="0.0106%" height="15" fill="rgb(221,226,24)" fg:x="281819" fg:w="254"/><text x="11.9749%" y="351.50"></text></g><g><title>enqueue_task_fair (325 samples, 0.01%)</title><rect x="11.7227%" y="357" width="0.0135%" height="15" fill="rgb(211,5,48)" fg:x="281766" fg:w="325"/><text x="11.9727%" y="367.50"></text></g><g><title>ttwu_do_activate (686 samples, 0.03%)</title><rect x="11.7218%" y="373" width="0.0285%" height="15" fill="rgb(219,150,6)" fg:x="281745" fg:w="686"/><text x="11.9718%" y="383.50"></text></g><g><title>psi_task_change (339 samples, 0.01%)</title><rect x="11.7362%" y="357" width="0.0141%" height="15" fill="rgb(251,46,16)" fg:x="282092" fg:w="339"/><text x="11.9862%" y="367.50"></text></g><g><title>psi_group_change (308 samples, 0.01%)</title><rect x="11.7375%" y="341" width="0.0128%" height="15" fill="rgb(220,204,40)" fg:x="282123" fg:w="308"/><text x="11.9875%" y="351.50"></text></g><g><title>__wake_up_common (2,003 samples, 0.08%)</title><rect x="11.6744%" y="421" width="0.0833%" height="15" fill="rgb(211,85,2)" fg:x="280607" fg:w="2003"/><text x="11.9244%" y="431.50"></text></g><g><title>autoremove_wake_function (1,948 samples, 0.08%)</title><rect x="11.6767%" y="405" width="0.0810%" height="15" fill="rgb(229,17,7)" fg:x="280662" fg:w="1948"/><text x="11.9267%" y="415.50"></text></g><g><title>try_to_wake_up (1,908 samples, 0.08%)</title><rect x="11.6784%" y="389" width="0.0794%" height="15" fill="rgb(239,72,28)" fg:x="280702" fg:w="1908"/><text x="11.9284%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (323 samples, 0.01%)</title><rect x="11.7578%" y="421" width="0.0134%" height="15" fill="rgb(230,47,54)" fg:x="282610" fg:w="323"/><text x="12.0078%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (299 samples, 0.01%)</title><rect x="11.7588%" y="405" width="0.0124%" height="15" fill="rgb(214,50,8)" fg:x="282634" fg:w="299"/><text x="12.0088%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,353 samples, 0.10%)</title><rect x="11.6742%" y="437" width="0.0979%" height="15" fill="rgb(216,198,43)" fg:x="280602" fg:w="2353"/><text x="11.9242%" y="447.50"></text></g><g><title>btrfs_search_slot (13,148 samples, 0.55%)</title><rect x="11.2271%" y="469" width="0.5470%" height="15" fill="rgb(234,20,35)" fg:x="269854" fg:w="13148"/><text x="11.4771%" y="479.50"></text></g><g><title>unlock_up (2,476 samples, 0.10%)</title><rect x="11.6711%" y="453" width="0.1030%" height="15" fill="rgb(254,45,19)" fg:x="280526" fg:w="2476"/><text x="11.9211%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (13,602 samples, 0.57%)</title><rect x="11.2135%" y="485" width="0.5659%" height="15" fill="rgb(219,14,44)" fg:x="269527" fg:w="13602"/><text x="11.4635%" y="495.50"></text></g><g><title>__wake_up_common (433 samples, 0.02%)</title><rect x="11.7803%" y="453" width="0.0180%" height="15" fill="rgb(217,220,26)" fg:x="283152" fg:w="433"/><text x="12.0303%" y="463.50"></text></g><g><title>autoremove_wake_function (422 samples, 0.02%)</title><rect x="11.7808%" y="437" width="0.0176%" height="15" fill="rgb(213,158,28)" fg:x="283163" fg:w="422"/><text x="12.0308%" y="447.50"></text></g><g><title>try_to_wake_up (412 samples, 0.02%)</title><rect x="11.7812%" y="421" width="0.0171%" height="15" fill="rgb(252,51,52)" fg:x="283173" fg:w="412"/><text x="12.0312%" y="431.50"></text></g><g><title>__wake_up_common_lock (453 samples, 0.02%)</title><rect x="11.7803%" y="469" width="0.0188%" height="15" fill="rgb(246,89,16)" fg:x="283151" fg:w="453"/><text x="12.0303%" y="479.50"></text></g><g><title>btrfs_release_path (632 samples, 0.03%)</title><rect x="11.7794%" y="485" width="0.0263%" height="15" fill="rgb(216,158,49)" fg:x="283129" fg:w="632"/><text x="12.0294%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (448 samples, 0.02%)</title><rect x="11.8078%" y="469" width="0.0186%" height="15" fill="rgb(236,107,19)" fg:x="283812" fg:w="448"/><text x="12.0578%" y="479.50"></text></g><g><title>btrfs_update_inode (597 samples, 0.02%)</title><rect x="11.8057%" y="485" width="0.0248%" height="15" fill="rgb(228,185,30)" fg:x="283761" fg:w="597"/><text x="12.0557%" y="495.50"></text></g><g><title>__btrfs_unlink_inode (25,703 samples, 1.07%)</title><rect x="10.7675%" y="501" width="1.0694%" height="15" fill="rgb(246,134,8)" fg:x="258808" fg:w="25703"/><text x="11.0175%" y="511.50"></text></g><g><title>__wake_up_common (328 samples, 0.01%)</title><rect x="11.8538%" y="421" width="0.0136%" height="15" fill="rgb(214,143,50)" fg:x="284919" fg:w="328"/><text x="12.1038%" y="431.50"></text></g><g><title>autoremove_wake_function (324 samples, 0.01%)</title><rect x="11.8540%" y="405" width="0.0135%" height="15" fill="rgb(228,75,8)" fg:x="284923" fg:w="324"/><text x="12.1040%" y="415.50"></text></g><g><title>try_to_wake_up (323 samples, 0.01%)</title><rect x="11.8541%" y="389" width="0.0134%" height="15" fill="rgb(207,175,4)" fg:x="284924" fg:w="323"/><text x="12.1041%" y="399.50"></text></g><g><title>__wake_up_common_lock (346 samples, 0.01%)</title><rect x="11.8536%" y="437" width="0.0144%" height="15" fill="rgb(205,108,24)" fg:x="284913" fg:w="346"/><text x="12.1036%" y="447.50"></text></g><g><title>btrfs_free_path (633 samples, 0.03%)</title><rect x="11.8518%" y="469" width="0.0263%" height="15" fill="rgb(244,120,49)" fg:x="284870" fg:w="633"/><text x="12.1018%" y="479.50"></text></g><g><title>btrfs_release_path (609 samples, 0.03%)</title><rect x="11.8528%" y="453" width="0.0253%" height="15" fill="rgb(223,47,38)" fg:x="284894" fg:w="609"/><text x="12.1028%" y="463.50"></text></g><g><title>finish_wait (344 samples, 0.01%)</title><rect x="11.8947%" y="405" width="0.0143%" height="15" fill="rgb(229,179,11)" fg:x="285900" fg:w="344"/><text x="12.1447%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (329 samples, 0.01%)</title><rect x="11.8953%" y="389" width="0.0137%" height="15" fill="rgb(231,122,1)" fg:x="285915" fg:w="329"/><text x="12.1453%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (312 samples, 0.01%)</title><rect x="11.8960%" y="373" width="0.0130%" height="15" fill="rgb(245,119,9)" fg:x="285932" fg:w="312"/><text x="12.1460%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (868 samples, 0.04%)</title><rect x="11.9124%" y="389" width="0.0361%" height="15" fill="rgb(241,163,25)" fg:x="286327" fg:w="868"/><text x="12.1624%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (824 samples, 0.03%)</title><rect x="11.9143%" y="373" width="0.0343%" height="15" fill="rgb(217,214,3)" fg:x="286371" fg:w="824"/><text x="12.1643%" y="383.50"></text></g><g><title>prepare_to_wait_event (969 samples, 0.04%)</title><rect x="11.9090%" y="405" width="0.0403%" height="15" fill="rgb(240,86,28)" fg:x="286244" fg:w="969"/><text x="12.1590%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (876 samples, 0.04%)</title><rect x="11.9493%" y="405" width="0.0364%" height="15" fill="rgb(215,47,9)" fg:x="287213" fg:w="876"/><text x="12.1993%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (634 samples, 0.03%)</title><rect x="11.9594%" y="389" width="0.0264%" height="15" fill="rgb(252,25,45)" fg:x="287455" fg:w="634"/><text x="12.2094%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (294 samples, 0.01%)</title><rect x="11.9989%" y="357" width="0.0122%" height="15" fill="rgb(251,164,9)" fg:x="288406" fg:w="294"/><text x="12.2489%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (288 samples, 0.01%)</title><rect x="11.9992%" y="341" width="0.0120%" height="15" fill="rgb(233,194,0)" fg:x="288412" fg:w="288"/><text x="12.2492%" y="351.50"></text></g><g><title>native_write_msr (284 samples, 0.01%)</title><rect x="11.9993%" y="325" width="0.0118%" height="15" fill="rgb(249,111,24)" fg:x="288416" fg:w="284"/><text x="12.2493%" y="335.50"></text></g><g><title>finish_task_switch (357 samples, 0.01%)</title><rect x="11.9971%" y="373" width="0.0149%" height="15" fill="rgb(250,223,3)" fg:x="288363" fg:w="357"/><text x="12.2471%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (3,203 samples, 0.13%)</title><rect x="11.8892%" y="421" width="0.1333%" height="15" fill="rgb(236,178,37)" fg:x="285770" fg:w="3203"/><text x="12.1392%" y="431.50"></text></g><g><title>schedule (884 samples, 0.04%)</title><rect x="11.9857%" y="405" width="0.0368%" height="15" fill="rgb(241,158,50)" fg:x="288089" fg:w="884"/><text x="12.2357%" y="415.50"></text></g><g><title>__schedule (870 samples, 0.04%)</title><rect x="11.9863%" y="389" width="0.0362%" height="15" fill="rgb(213,121,41)" fg:x="288103" fg:w="870"/><text x="12.2363%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,318 samples, 0.14%)</title><rect x="11.8888%" y="437" width="0.1380%" height="15" fill="rgb(240,92,3)" fg:x="285759" fg:w="3318"/><text x="12.1388%" y="447.50"></text></g><g><title>finish_task_switch (264 samples, 0.01%)</title><rect x="12.0466%" y="389" width="0.0110%" height="15" fill="rgb(205,123,3)" fg:x="289553" fg:w="264"/><text x="12.2966%" y="399.50"></text></g><g><title>__btrfs_tree_lock (906 samples, 0.04%)</title><rect x="12.0268%" y="437" width="0.0377%" height="15" fill="rgb(205,97,47)" fg:x="289077" fg:w="906"/><text x="12.2768%" y="447.50"></text></g><g><title>schedule (633 samples, 0.03%)</title><rect x="12.0382%" y="421" width="0.0263%" height="15" fill="rgb(247,152,14)" fg:x="289350" fg:w="633"/><text x="12.2882%" y="431.50"></text></g><g><title>__schedule (631 samples, 0.03%)</title><rect x="12.0383%" y="405" width="0.0263%" height="15" fill="rgb(248,195,53)" fg:x="289352" fg:w="631"/><text x="12.2883%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (771 samples, 0.03%)</title><rect x="12.0733%" y="437" width="0.0321%" height="15" fill="rgb(226,201,16)" fg:x="290193" fg:w="771"/><text x="12.3233%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (705 samples, 0.03%)</title><rect x="12.0760%" y="421" width="0.0293%" height="15" fill="rgb(205,98,0)" fg:x="290259" fg:w="705"/><text x="12.3260%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (320 samples, 0.01%)</title><rect x="12.1053%" y="437" width="0.0133%" height="15" fill="rgb(214,191,48)" fg:x="290964" fg:w="320"/><text x="12.3553%" y="447.50"></text></g><g><title>find_extent_buffer (491 samples, 0.02%)</title><rect x="12.1289%" y="421" width="0.0204%" height="15" fill="rgb(237,112,39)" fg:x="291530" fg:w="491"/><text x="12.3789%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (797 samples, 0.03%)</title><rect x="12.1187%" y="437" width="0.0332%" height="15" fill="rgb(247,203,27)" fg:x="291284" fg:w="797"/><text x="12.3687%" y="447.50"></text></g><g><title>ttwu_do_activate (359 samples, 0.01%)</title><rect x="12.1731%" y="357" width="0.0149%" height="15" fill="rgb(235,124,28)" fg:x="292592" fg:w="359"/><text x="12.4231%" y="367.50"></text></g><g><title>__wake_up_common (821 samples, 0.03%)</title><rect x="12.1575%" y="405" width="0.0342%" height="15" fill="rgb(208,207,46)" fg:x="292217" fg:w="821"/><text x="12.4075%" y="415.50"></text></g><g><title>autoremove_wake_function (802 samples, 0.03%)</title><rect x="12.1583%" y="389" width="0.0334%" height="15" fill="rgb(234,176,4)" fg:x="292236" fg:w="802"/><text x="12.4083%" y="399.50"></text></g><g><title>try_to_wake_up (778 samples, 0.03%)</title><rect x="12.1593%" y="373" width="0.0324%" height="15" fill="rgb(230,133,28)" fg:x="292260" fg:w="778"/><text x="12.4093%" y="383.50"></text></g><g><title>__wake_up_common_lock (840 samples, 0.03%)</title><rect x="12.1573%" y="421" width="0.0349%" height="15" fill="rgb(211,137,40)" fg:x="292213" fg:w="840"/><text x="12.4073%" y="431.50"></text></g><g><title>btrfs_search_slot (7,628 samples, 0.32%)</title><rect x="11.8796%" y="453" width="0.3174%" height="15" fill="rgb(254,35,13)" fg:x="285538" fg:w="7628"/><text x="12.1296%" y="463.50"></text></g><g><title>unlock_up (1,048 samples, 0.04%)</title><rect x="12.1534%" y="437" width="0.0436%" height="15" fill="rgb(225,49,51)" fg:x="292118" fg:w="1048"/><text x="12.4034%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (8,262 samples, 0.34%)</title><rect x="11.8781%" y="469" width="0.3437%" height="15" fill="rgb(251,10,15)" fg:x="285503" fg:w="8262"/><text x="12.1281%" y="479.50"></text></g><g><title>setup_items_for_insert (599 samples, 0.02%)</title><rect x="12.1970%" y="453" width="0.0249%" height="15" fill="rgb(228,207,15)" fg:x="293166" fg:w="599"/><text x="12.4470%" y="463.50"></text></g><g><title>btrfs_orphan_add (9,069 samples, 0.38%)</title><rect x="11.8499%" y="501" width="0.3773%" height="15" fill="rgb(241,99,19)" fg:x="284823" fg:w="9069"/><text x="12.0999%" y="511.50"></text></g><g><title>btrfs_insert_orphan_item (9,046 samples, 0.38%)</title><rect x="11.8508%" y="485" width="0.3764%" height="15" fill="rgb(207,104,49)" fg:x="284846" fg:w="9046"/><text x="12.1008%" y="495.50"></text></g><g><title>btrfs_update_inode (292 samples, 0.01%)</title><rect x="12.2278%" y="501" width="0.0121%" height="15" fill="rgb(234,99,18)" fg:x="293908" fg:w="292"/><text x="12.4778%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (508 samples, 0.02%)</title><rect x="12.2494%" y="485" width="0.0211%" height="15" fill="rgb(213,191,49)" fg:x="294427" fg:w="508"/><text x="12.4994%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (443 samples, 0.02%)</title><rect x="12.2521%" y="469" width="0.0184%" height="15" fill="rgb(210,226,19)" fg:x="294492" fg:w="443"/><text x="12.5021%" y="479.50"></text></g><g><title>__reserve_bytes (396 samples, 0.02%)</title><rect x="12.2541%" y="453" width="0.0165%" height="15" fill="rgb(229,97,18)" fg:x="294539" fg:w="396"/><text x="12.5041%" y="463.50"></text></g><g><title>btrfs_rmdir (36,890 samples, 1.53%)</title><rect x="10.7447%" y="517" width="1.5348%" height="15" fill="rgb(211,167,15)" fg:x="258259" fg:w="36890"/><text x="10.9947%" y="527.50"></text></g><g><title>start_transaction (877 samples, 0.04%)</title><rect x="12.2430%" y="501" width="0.0365%" height="15" fill="rgb(210,169,34)" fg:x="294272" fg:w="877"/><text x="12.4930%" y="511.50"></text></g><g><title>dentry_unlink_inode (243 samples, 0.01%)</title><rect x="12.2854%" y="517" width="0.0101%" height="15" fill="rgb(241,121,31)" fg:x="295293" fg:w="243"/><text x="12.5354%" y="527.50"></text></g><g><title>__destroy_inode (271 samples, 0.01%)</title><rect x="12.2960%" y="501" width="0.0113%" height="15" fill="rgb(232,40,11)" fg:x="295546" fg:w="271"/><text x="12.5460%" y="511.50"></text></g><g><title>btrfs_drop_extent_cache (394 samples, 0.02%)</title><rect x="12.3101%" y="485" width="0.0164%" height="15" fill="rgb(205,86,26)" fg:x="295886" fg:w="394"/><text x="12.5601%" y="495.50"></text></g><g><title>clear_record_extent_bits (256 samples, 0.01%)</title><rect x="12.3386%" y="469" width="0.0107%" height="15" fill="rgb(231,126,28)" fg:x="296570" fg:w="256"/><text x="12.5886%" y="479.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (340 samples, 0.01%)</title><rect x="12.3372%" y="485" width="0.0141%" height="15" fill="rgb(219,221,18)" fg:x="296536" fg:w="340"/><text x="12.5872%" y="495.50"></text></g><g><title>btrfs_destroy_inode (1,367 samples, 0.06%)</title><rect x="12.3072%" y="501" width="0.0569%" height="15" fill="rgb(211,40,0)" fg:x="295817" fg:w="1367"/><text x="12.5572%" y="511.50"></text></g><g><title>rb_erase (308 samples, 0.01%)</title><rect x="12.3513%" y="485" width="0.0128%" height="15" fill="rgb(239,85,43)" fg:x="296876" fg:w="308"/><text x="12.6013%" y="495.50"></text></g><g><title>destroy_inode (1,686 samples, 0.07%)</title><rect x="12.2956%" y="517" width="0.0701%" height="15" fill="rgb(231,55,21)" fg:x="295536" fg:w="1686"/><text x="12.5456%" y="527.50"></text></g><g><title>_raw_spin_lock (258 samples, 0.01%)</title><rect x="12.4010%" y="437" width="0.0107%" height="15" fill="rgb(225,184,43)" fg:x="298070" fg:w="258"/><text x="12.6510%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (416 samples, 0.02%)</title><rect x="12.3952%" y="469" width="0.0173%" height="15" fill="rgb(251,158,41)" fg:x="297932" fg:w="416"/><text x="12.6452%" y="479.50"></text></g><g><title>btrfs_block_rsv_release (387 samples, 0.02%)</title><rect x="12.3964%" y="453" width="0.0161%" height="15" fill="rgb(234,159,37)" fg:x="297961" fg:w="387"/><text x="12.6464%" y="463.50"></text></g><g><title>__btrfs_end_transaction (806 samples, 0.03%)</title><rect x="12.3833%" y="485" width="0.0335%" height="15" fill="rgb(216,204,22)" fg:x="297644" fg:w="806"/><text x="12.6333%" y="495.50"></text></g><g><title>__radix_tree_lookup (273 samples, 0.01%)</title><rect x="12.4289%" y="453" width="0.0114%" height="15" fill="rgb(214,17,3)" fg:x="298742" fg:w="273"/><text x="12.6789%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (570 samples, 0.02%)</title><rect x="12.4168%" y="485" width="0.0237%" height="15" fill="rgb(212,111,17)" fg:x="298450" fg:w="570"/><text x="12.6668%" y="495.50"></text></g><g><title>radix_tree_delete_item (319 samples, 0.01%)</title><rect x="12.4272%" y="469" width="0.0133%" height="15" fill="rgb(221,157,24)" fg:x="298701" fg:w="319"/><text x="12.6772%" y="479.50"></text></g><g><title>__btrfs_end_transaction (273 samples, 0.01%)</title><rect x="12.4574%" y="469" width="0.0114%" height="15" fill="rgb(252,16,13)" fg:x="299426" fg:w="273"/><text x="12.7074%" y="479.50"></text></g><g><title>btrfs_get_token_32 (1,060 samples, 0.04%)</title><rect x="12.4974%" y="437" width="0.0441%" height="15" fill="rgb(221,62,2)" fg:x="300388" fg:w="1060"/><text x="12.7474%" y="447.50"></text></g><g><title>btrfs_set_token_32 (718 samples, 0.03%)</title><rect x="12.5435%" y="437" width="0.0299%" height="15" fill="rgb(247,87,22)" fg:x="301496" fg:w="718"/><text x="12.7935%" y="447.50"></text></g><g><title>memmove_extent_buffer (556 samples, 0.02%)</title><rect x="12.5813%" y="437" width="0.0231%" height="15" fill="rgb(215,73,9)" fg:x="302403" fg:w="556"/><text x="12.8313%" y="447.50"></text></g><g><title>memmove (452 samples, 0.02%)</title><rect x="12.5856%" y="421" width="0.0188%" height="15" fill="rgb(207,175,33)" fg:x="302507" fg:w="452"/><text x="12.8356%" y="431.50"></text></g><g><title>btrfs_del_items (3,005 samples, 0.13%)</title><rect x="12.4828%" y="453" width="0.1250%" height="15" fill="rgb(243,129,54)" fg:x="300037" fg:w="3005"/><text x="12.7328%" y="463.50"></text></g><g><title>finish_wait (359 samples, 0.01%)</title><rect x="12.6336%" y="389" width="0.0149%" height="15" fill="rgb(227,119,45)" fg:x="303661" fg:w="359"/><text x="12.8836%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (340 samples, 0.01%)</title><rect x="12.6344%" y="373" width="0.0141%" height="15" fill="rgb(205,109,36)" fg:x="303680" fg:w="340"/><text x="12.8844%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (325 samples, 0.01%)</title><rect x="12.6350%" y="357" width="0.0135%" height="15" fill="rgb(205,6,39)" fg:x="303695" fg:w="325"/><text x="12.8850%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (803 samples, 0.03%)</title><rect x="12.6516%" y="373" width="0.0334%" height="15" fill="rgb(221,32,16)" fg:x="304093" fg:w="803"/><text x="12.9016%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (766 samples, 0.03%)</title><rect x="12.6531%" y="357" width="0.0319%" height="15" fill="rgb(228,144,50)" fg:x="304130" fg:w="766"/><text x="12.9031%" y="367.50"></text></g><g><title>prepare_to_wait_event (899 samples, 0.04%)</title><rect x="12.6486%" y="389" width="0.0374%" height="15" fill="rgb(229,201,53)" fg:x="304021" fg:w="899"/><text x="12.8986%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (814 samples, 0.03%)</title><rect x="12.6860%" y="389" width="0.0339%" height="15" fill="rgb(249,153,27)" fg:x="304920" fg:w="814"/><text x="12.9360%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (573 samples, 0.02%)</title><rect x="12.6960%" y="373" width="0.0238%" height="15" fill="rgb(227,106,25)" fg:x="305161" fg:w="573"/><text x="12.9460%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (307 samples, 0.01%)</title><rect x="12.7318%" y="341" width="0.0128%" height="15" fill="rgb(230,65,29)" fg:x="306021" fg:w="307"/><text x="12.9818%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.01%)</title><rect x="12.7323%" y="325" width="0.0122%" height="15" fill="rgb(221,57,46)" fg:x="306034" fg:w="294"/><text x="12.9823%" y="335.50"></text></g><g><title>native_write_msr (292 samples, 0.01%)</title><rect x="12.7324%" y="309" width="0.0121%" height="15" fill="rgb(229,161,17)" fg:x="306036" fg:w="292"/><text x="12.9824%" y="319.50"></text></g><g><title>finish_task_switch (346 samples, 0.01%)</title><rect x="12.7305%" y="357" width="0.0144%" height="15" fill="rgb(222,213,11)" fg:x="305991" fg:w="346"/><text x="12.9805%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (3,013 samples, 0.13%)</title><rect x="12.6286%" y="405" width="0.1254%" height="15" fill="rgb(235,35,13)" fg:x="303540" fg:w="3013"/><text x="12.8786%" y="415.50"></text></g><g><title>schedule (819 samples, 0.03%)</title><rect x="12.7198%" y="389" width="0.0341%" height="15" fill="rgb(233,158,34)" fg:x="305734" fg:w="819"/><text x="12.9698%" y="399.50"></text></g><g><title>__schedule (815 samples, 0.03%)</title><rect x="12.7200%" y="373" width="0.0339%" height="15" fill="rgb(215,151,48)" fg:x="305738" fg:w="815"/><text x="12.9700%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (3,116 samples, 0.13%)</title><rect x="12.6280%" y="421" width="0.1296%" height="15" fill="rgb(229,84,14)" fg:x="303526" fg:w="3116"/><text x="12.8780%" y="431.50"></text></g><g><title>__btrfs_tree_lock (436 samples, 0.02%)</title><rect x="12.7576%" y="421" width="0.0181%" height="15" fill="rgb(229,68,14)" fg:x="306642" fg:w="436"/><text x="13.0076%" y="431.50"></text></g><g><title>schedule (396 samples, 0.02%)</title><rect x="12.7593%" y="405" width="0.0165%" height="15" fill="rgb(243,106,26)" fg:x="306682" fg:w="396"/><text x="13.0093%" y="415.50"></text></g><g><title>__schedule (394 samples, 0.02%)</title><rect x="12.7594%" y="389" width="0.0164%" height="15" fill="rgb(206,45,38)" fg:x="306684" fg:w="394"/><text x="13.0094%" y="399.50"></text></g><g><title>finish_wait (339 samples, 0.01%)</title><rect x="12.7841%" y="389" width="0.0141%" height="15" fill="rgb(226,6,15)" fg:x="307279" fg:w="339"/><text x="13.0341%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (322 samples, 0.01%)</title><rect x="12.7848%" y="373" width="0.0134%" height="15" fill="rgb(232,22,54)" fg:x="307296" fg:w="322"/><text x="13.0348%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (306 samples, 0.01%)</title><rect x="12.7855%" y="357" width="0.0127%" height="15" fill="rgb(229,222,32)" fg:x="307312" fg:w="306"/><text x="13.0355%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (847 samples, 0.04%)</title><rect x="12.8030%" y="373" width="0.0352%" height="15" fill="rgb(228,62,29)" fg:x="307733" fg:w="847"/><text x="13.0530%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (775 samples, 0.03%)</title><rect x="12.8060%" y="357" width="0.0322%" height="15" fill="rgb(251,103,34)" fg:x="307805" fg:w="775"/><text x="13.0560%" y="367.50"></text></g><g><title>prepare_to_wait_event (981 samples, 0.04%)</title><rect x="12.7985%" y="389" width="0.0408%" height="15" fill="rgb(233,12,30)" fg:x="307624" fg:w="981"/><text x="13.0485%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,419 samples, 0.06%)</title><rect x="12.8393%" y="389" width="0.0590%" height="15" fill="rgb(238,52,0)" fg:x="308605" fg:w="1419"/><text x="13.0893%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (655 samples, 0.03%)</title><rect x="12.8711%" y="373" width="0.0273%" height="15" fill="rgb(223,98,5)" fg:x="309369" fg:w="655"/><text x="13.1211%" y="383.50"></text></g><g><title>dequeue_entity (242 samples, 0.01%)</title><rect x="12.9046%" y="341" width="0.0101%" height="15" fill="rgb(228,75,37)" fg:x="310174" fg:w="242"/><text x="13.1546%" y="351.50"></text></g><g><title>dequeue_task_fair (282 samples, 0.01%)</title><rect x="12.9035%" y="357" width="0.0117%" height="15" fill="rgb(205,115,49)" fg:x="310148" fg:w="282"/><text x="13.1535%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (360 samples, 0.01%)</title><rect x="12.9172%" y="341" width="0.0150%" height="15" fill="rgb(250,154,43)" fg:x="310478" fg:w="360"/><text x="13.1672%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (345 samples, 0.01%)</title><rect x="12.9178%" y="325" width="0.0144%" height="15" fill="rgb(226,43,29)" fg:x="310493" fg:w="345"/><text x="13.1678%" y="335.50"></text></g><g><title>native_write_msr (337 samples, 0.01%)</title><rect x="12.9182%" y="309" width="0.0140%" height="15" fill="rgb(249,228,39)" fg:x="310501" fg:w="337"/><text x="13.1682%" y="319.50"></text></g><g><title>finish_task_switch (428 samples, 0.02%)</title><rect x="12.9152%" y="357" width="0.0178%" height="15" fill="rgb(216,79,43)" fg:x="310430" fg:w="428"/><text x="13.1652%" y="367.50"></text></g><g><title>__schedule (1,200 samples, 0.05%)</title><rect x="12.8990%" y="373" width="0.0499%" height="15" fill="rgb(228,95,12)" fg:x="310040" fg:w="1200"/><text x="13.1490%" y="383.50"></text></g><g><title>__btrfs_tree_lock (4,127 samples, 0.17%)</title><rect x="12.7773%" y="405" width="0.1717%" height="15" fill="rgb(249,221,15)" fg:x="307114" fg:w="4127"/><text x="13.0273%" y="415.50"></text></g><g><title>schedule (1,217 samples, 0.05%)</title><rect x="12.8983%" y="389" width="0.0506%" height="15" fill="rgb(233,34,13)" fg:x="310024" fg:w="1217"/><text x="13.1483%" y="399.50"></text></g><g><title>btrfs_lock_root_node (4,181 samples, 0.17%)</title><rect x="12.7770%" y="421" width="0.1739%" height="15" fill="rgb(214,103,39)" fg:x="307107" fg:w="4181"/><text x="13.0270%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (273 samples, 0.01%)</title><rect x="12.9544%" y="421" width="0.0114%" height="15" fill="rgb(251,126,39)" fg:x="311373" fg:w="273"/><text x="13.2044%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (400 samples, 0.02%)</title><rect x="12.9680%" y="421" width="0.0166%" height="15" fill="rgb(214,216,36)" fg:x="311700" fg:w="400"/><text x="13.2180%" y="431.50"></text></g><g><title>find_extent_buffer (425 samples, 0.02%)</title><rect x="12.9922%" y="405" width="0.0177%" height="15" fill="rgb(220,221,8)" fg:x="312281" fg:w="425"/><text x="13.2422%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (672 samples, 0.03%)</title><rect x="12.9847%" y="421" width="0.0280%" height="15" fill="rgb(240,216,3)" fg:x="312100" fg:w="672"/><text x="13.2347%" y="431.50"></text></g><g><title>reada_for_balance (325 samples, 0.01%)</title><rect x="13.0126%" y="421" width="0.0135%" height="15" fill="rgb(232,218,17)" fg:x="312772" fg:w="325"/><text x="13.2626%" y="431.50"></text></g><g><title>select_task_rq_fair (291 samples, 0.01%)</title><rect x="13.0632%" y="341" width="0.0121%" height="15" fill="rgb(229,163,45)" fg:x="313986" fg:w="291"/><text x="13.3132%" y="351.50"></text></g><g><title>enqueue_entity (263 samples, 0.01%)</title><rect x="13.0797%" y="309" width="0.0109%" height="15" fill="rgb(231,110,42)" fg:x="314384" fg:w="263"/><text x="13.3297%" y="319.50"></text></g><g><title>enqueue_task_fair (352 samples, 0.01%)</title><rect x="13.0769%" y="325" width="0.0146%" height="15" fill="rgb(208,170,48)" fg:x="314317" fg:w="352"/><text x="13.3269%" y="335.50"></text></g><g><title>ttwu_do_activate (705 samples, 0.03%)</title><rect x="13.0761%" y="341" width="0.0293%" height="15" fill="rgb(239,116,25)" fg:x="314296" fg:w="705"/><text x="13.3261%" y="351.50"></text></g><g><title>psi_task_change (332 samples, 0.01%)</title><rect x="13.0916%" y="325" width="0.0138%" height="15" fill="rgb(219,200,50)" fg:x="314669" fg:w="332"/><text x="13.3416%" y="335.50"></text></g><g><title>psi_group_change (303 samples, 0.01%)</title><rect x="13.0928%" y="309" width="0.0126%" height="15" fill="rgb(245,200,0)" fg:x="314698" fg:w="303"/><text x="13.3428%" y="319.50"></text></g><g><title>__wake_up_common (2,010 samples, 0.08%)</title><rect x="13.0296%" y="389" width="0.0836%" height="15" fill="rgb(245,119,33)" fg:x="313179" fg:w="2010"/><text x="13.2796%" y="399.50"></text></g><g><title>autoremove_wake_function (1,959 samples, 0.08%)</title><rect x="13.0317%" y="373" width="0.0815%" height="15" fill="rgb(231,125,12)" fg:x="313230" fg:w="1959"/><text x="13.2817%" y="383.50"></text></g><g><title>try_to_wake_up (1,909 samples, 0.08%)</title><rect x="13.0338%" y="357" width="0.0794%" height="15" fill="rgb(216,96,41)" fg:x="313280" fg:w="1909"/><text x="13.2838%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (400 samples, 0.02%)</title><rect x="13.1132%" y="389" width="0.0166%" height="15" fill="rgb(248,43,45)" fg:x="315189" fg:w="400"/><text x="13.3632%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (383 samples, 0.02%)</title><rect x="13.1139%" y="373" width="0.0159%" height="15" fill="rgb(217,222,7)" fg:x="315206" fg:w="383"/><text x="13.3639%" y="383.50"></text></g><g><title>__wake_up_common_lock (2,442 samples, 0.10%)</title><rect x="13.0293%" y="405" width="0.1016%" height="15" fill="rgb(233,28,6)" fg:x="313172" fg:w="2442"/><text x="13.2793%" y="415.50"></text></g><g><title>btrfs_lookup_inode (12,385 samples, 0.52%)</title><rect x="12.6179%" y="453" width="0.5153%" height="15" fill="rgb(231,218,15)" fg:x="303283" fg:w="12385"/><text x="12.8679%" y="463.50"></text></g><g><title>btrfs_search_slot (12,342 samples, 0.51%)</title><rect x="12.6197%" y="437" width="0.5135%" height="15" fill="rgb(226,171,48)" fg:x="303326" fg:w="12342"/><text x="12.8697%" y="447.50"></text></g><g><title>unlock_up (2,565 samples, 0.11%)</title><rect x="13.0264%" y="421" width="0.1067%" height="15" fill="rgb(235,201,9)" fg:x="313103" fg:w="2565"/><text x="13.2764%" y="431.50"></text></g><g><title>__wake_up_common (398 samples, 0.02%)</title><rect x="13.1375%" y="421" width="0.0166%" height="15" fill="rgb(217,80,15)" fg:x="315773" fg:w="398"/><text x="13.3875%" y="431.50"></text></g><g><title>autoremove_wake_function (392 samples, 0.02%)</title><rect x="13.1378%" y="405" width="0.0163%" height="15" fill="rgb(219,152,8)" fg:x="315779" fg:w="392"/><text x="13.3878%" y="415.50"></text></g><g><title>try_to_wake_up (384 samples, 0.02%)</title><rect x="13.1381%" y="389" width="0.0160%" height="15" fill="rgb(243,107,38)" fg:x="315787" fg:w="384"/><text x="13.3881%" y="399.50"></text></g><g><title>__wake_up_common_lock (428 samples, 0.02%)</title><rect x="13.1373%" y="437" width="0.0178%" height="15" fill="rgb(231,17,5)" fg:x="315768" fg:w="428"/><text x="13.3873%" y="447.50"></text></g><g><title>btrfs_release_path (607 samples, 0.03%)</title><rect x="13.1365%" y="453" width="0.0253%" height="15" fill="rgb(209,25,54)" fg:x="315750" fg:w="607"/><text x="13.3865%" y="463.50"></text></g><g><title>__btrfs_update_delayed_inode (16,724 samples, 0.70%)</title><rect x="12.4787%" y="469" width="0.6958%" height="15" fill="rgb(219,0,2)" fg:x="299939" fg:w="16724"/><text x="12.7287%" y="479.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (18,073 samples, 0.75%)</title><rect x="12.4558%" y="485" width="0.7519%" height="15" fill="rgb(246,9,5)" fg:x="299387" fg:w="18073"/><text x="12.7058%" y="495.50"></text></g><g><title>start_transaction (268 samples, 0.01%)</title><rect x="13.1965%" y="469" width="0.0111%" height="15" fill="rgb(226,159,4)" fg:x="317192" fg:w="268"/><text x="13.4465%" y="479.50"></text></g><g><title>btrfs_del_items (406 samples, 0.02%)</title><rect x="13.2084%" y="469" width="0.0169%" height="15" fill="rgb(219,175,34)" fg:x="317478" fg:w="406"/><text x="13.4584%" y="479.50"></text></g><g><title>__wake_up_common (865 samples, 0.04%)</title><rect x="13.2263%" y="421" width="0.0360%" height="15" fill="rgb(236,10,46)" fg:x="317907" fg:w="865"/><text x="13.4763%" y="431.50"></text></g><g><title>autoremove_wake_function (854 samples, 0.04%)</title><rect x="13.2267%" y="405" width="0.0355%" height="15" fill="rgb(240,211,16)" fg:x="317918" fg:w="854"/><text x="13.4767%" y="415.50"></text></g><g><title>try_to_wake_up (840 samples, 0.03%)</title><rect x="13.2273%" y="389" width="0.0349%" height="15" fill="rgb(205,3,43)" fg:x="317932" fg:w="840"/><text x="13.4773%" y="399.50"></text></g><g><title>__wake_up_common_lock (892 samples, 0.04%)</title><rect x="13.2261%" y="437" width="0.0371%" height="15" fill="rgb(245,7,22)" fg:x="317902" fg:w="892"/><text x="13.4761%" y="447.50"></text></g><g><title>btrfs_free_path (1,134 samples, 0.05%)</title><rect x="13.2253%" y="469" width="0.0472%" height="15" fill="rgb(239,132,32)" fg:x="317884" fg:w="1134"/><text x="13.4753%" y="479.50"></text></g><g><title>btrfs_release_path (1,134 samples, 0.05%)</title><rect x="13.2253%" y="453" width="0.0472%" height="15" fill="rgb(228,202,34)" fg:x="317884" fg:w="1134"/><text x="13.4753%" y="463.50"></text></g><g><title>finish_wait (454 samples, 0.02%)</title><rect x="13.2891%" y="421" width="0.0189%" height="15" fill="rgb(254,200,22)" fg:x="319417" fg:w="454"/><text x="13.5391%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (438 samples, 0.02%)</title><rect x="13.2898%" y="405" width="0.0182%" height="15" fill="rgb(219,10,39)" fg:x="319433" fg:w="438"/><text x="13.5398%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (418 samples, 0.02%)</title><rect x="13.2906%" y="389" width="0.0174%" height="15" fill="rgb(226,210,39)" fg:x="319453" fg:w="418"/><text x="13.5406%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,224 samples, 0.05%)</title><rect x="13.3128%" y="405" width="0.0509%" height="15" fill="rgb(208,219,16)" fg:x="319986" fg:w="1224"/><text x="13.5628%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,184 samples, 0.05%)</title><rect x="13.3144%" y="389" width="0.0493%" height="15" fill="rgb(216,158,51)" fg:x="320026" fg:w="1184"/><text x="13.5644%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,353 samples, 0.06%)</title><rect x="13.3081%" y="421" width="0.0563%" height="15" fill="rgb(233,14,44)" fg:x="319874" fg:w="1353"/><text x="13.5581%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (861 samples, 0.04%)</title><rect x="13.3644%" y="421" width="0.0358%" height="15" fill="rgb(237,97,39)" fg:x="321227" fg:w="861"/><text x="13.6144%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (624 samples, 0.03%)</title><rect x="13.3743%" y="405" width="0.0260%" height="15" fill="rgb(218,198,43)" fg:x="321464" fg:w="624"/><text x="13.6243%" y="415.50"></text></g><g><title>dequeue_task_fair (248 samples, 0.01%)</title><rect x="13.4049%" y="389" width="0.0103%" height="15" fill="rgb(231,104,20)" fg:x="322200" fg:w="248"/><text x="13.6549%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (362 samples, 0.02%)</title><rect x="13.4171%" y="373" width="0.0151%" height="15" fill="rgb(254,36,13)" fg:x="322494" fg:w="362"/><text x="13.6671%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (350 samples, 0.01%)</title><rect x="13.4176%" y="357" width="0.0146%" height="15" fill="rgb(248,14,50)" fg:x="322506" fg:w="350"/><text x="13.6676%" y="367.50"></text></g><g><title>native_write_msr (347 samples, 0.01%)</title><rect x="13.4177%" y="341" width="0.0144%" height="15" fill="rgb(217,107,29)" fg:x="322509" fg:w="347"/><text x="13.6677%" y="351.50"></text></g><g><title>finish_task_switch (428 samples, 0.02%)</title><rect x="13.4152%" y="389" width="0.0178%" height="15" fill="rgb(251,169,33)" fg:x="322448" fg:w="428"/><text x="13.6652%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (3,895 samples, 0.16%)</title><rect x="13.2830%" y="437" width="0.1620%" height="15" fill="rgb(217,108,32)" fg:x="319270" fg:w="3895"/><text x="13.5330%" y="447.50"></text></g><g><title>schedule (1,077 samples, 0.04%)</title><rect x="13.4002%" y="421" width="0.0448%" height="15" fill="rgb(219,66,42)" fg:x="322088" fg:w="1077"/><text x="13.6502%" y="431.50"></text></g><g><title>__schedule (1,062 samples, 0.04%)</title><rect x="13.4009%" y="405" width="0.0442%" height="15" fill="rgb(206,180,7)" fg:x="322103" fg:w="1062"/><text x="13.6509%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (4,000 samples, 0.17%)</title><rect x="13.2821%" y="453" width="0.1664%" height="15" fill="rgb(208,226,31)" fg:x="319248" fg:w="4000"/><text x="13.5321%" y="463.50"></text></g><g><title>__btrfs_tree_lock (496 samples, 0.02%)</title><rect x="13.4485%" y="453" width="0.0206%" height="15" fill="rgb(218,26,49)" fg:x="323248" fg:w="496"/><text x="13.6985%" y="463.50"></text></g><g><title>schedule (430 samples, 0.02%)</title><rect x="13.4512%" y="437" width="0.0179%" height="15" fill="rgb(233,197,48)" fg:x="323314" fg:w="430"/><text x="13.7012%" y="447.50"></text></g><g><title>__schedule (427 samples, 0.02%)</title><rect x="13.4514%" y="421" width="0.0178%" height="15" fill="rgb(252,181,51)" fg:x="323317" fg:w="427"/><text x="13.7014%" y="431.50"></text></g><g><title>finish_wait (401 samples, 0.02%)</title><rect x="13.4790%" y="421" width="0.0167%" height="15" fill="rgb(253,90,19)" fg:x="323981" fg:w="401"/><text x="13.7290%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (377 samples, 0.02%)</title><rect x="13.4800%" y="405" width="0.0157%" height="15" fill="rgb(215,171,30)" fg:x="324005" fg:w="377"/><text x="13.7300%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (357 samples, 0.01%)</title><rect x="13.4808%" y="389" width="0.0149%" height="15" fill="rgb(214,222,9)" fg:x="324025" fg:w="357"/><text x="13.7308%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,000 samples, 0.04%)</title><rect x="13.5019%" y="405" width="0.0416%" height="15" fill="rgb(223,3,22)" fg:x="324532" fg:w="1000"/><text x="13.7519%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (929 samples, 0.04%)</title><rect x="13.5049%" y="389" width="0.0387%" height="15" fill="rgb(225,196,46)" fg:x="324603" fg:w="929"/><text x="13.7549%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,173 samples, 0.05%)</title><rect x="13.4958%" y="421" width="0.0488%" height="15" fill="rgb(209,110,37)" fg:x="324386" fg:w="1173"/><text x="13.7458%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,584 samples, 0.07%)</title><rect x="13.5446%" y="421" width="0.0659%" height="15" fill="rgb(249,89,12)" fg:x="325559" fg:w="1584"/><text x="13.7946%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (745 samples, 0.03%)</title><rect x="13.5795%" y="405" width="0.0310%" height="15" fill="rgb(226,27,33)" fg:x="326398" fg:w="745"/><text x="13.8295%" y="415.50"></text></g><g><title>dequeue_entity (253 samples, 0.01%)</title><rect x="13.6182%" y="373" width="0.0105%" height="15" fill="rgb(213,82,22)" fg:x="327326" fg:w="253"/><text x="13.8682%" y="383.50"></text></g><g><title>dequeue_task_fair (318 samples, 0.01%)</title><rect x="13.6164%" y="389" width="0.0132%" height="15" fill="rgb(248,140,0)" fg:x="327283" fg:w="318"/><text x="13.8664%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (441 samples, 0.02%)</title><rect x="13.6319%" y="373" width="0.0183%" height="15" fill="rgb(228,106,3)" fg:x="327656" fg:w="441"/><text x="13.8819%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (425 samples, 0.02%)</title><rect x="13.6326%" y="357" width="0.0177%" height="15" fill="rgb(209,23,37)" fg:x="327672" fg:w="425"/><text x="13.8826%" y="367.50"></text></g><g><title>native_write_msr (421 samples, 0.02%)</title><rect x="13.6327%" y="341" width="0.0175%" height="15" fill="rgb(241,93,50)" fg:x="327676" fg:w="421"/><text x="13.8827%" y="351.50"></text></g><g><title>finish_task_switch (514 samples, 0.02%)</title><rect x="13.6296%" y="389" width="0.0214%" height="15" fill="rgb(253,46,43)" fg:x="327601" fg:w="514"/><text x="13.8796%" y="399.50"></text></g><g><title>__btrfs_tree_lock (4,735 samples, 0.20%)</title><rect x="13.4698%" y="437" width="0.1970%" height="15" fill="rgb(226,206,43)" fg:x="323761" fg:w="4735"/><text x="13.7198%" y="447.50"></text></g><g><title>schedule (1,353 samples, 0.06%)</title><rect x="13.6105%" y="421" width="0.0563%" height="15" fill="rgb(217,54,7)" fg:x="327143" fg:w="1353"/><text x="13.8605%" y="431.50"></text></g><g><title>__schedule (1,338 samples, 0.06%)</title><rect x="13.6112%" y="405" width="0.0557%" height="15" fill="rgb(223,5,52)" fg:x="327158" fg:w="1338"/><text x="13.8612%" y="415.50"></text></g><g><title>btrfs_lock_root_node (4,783 samples, 0.20%)</title><rect x="13.4697%" y="453" width="0.1990%" height="15" fill="rgb(206,52,46)" fg:x="323757" fg:w="4783"/><text x="13.7197%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (343 samples, 0.01%)</title><rect x="13.6742%" y="453" width="0.0143%" height="15" fill="rgb(253,136,11)" fg:x="328672" fg:w="343"/><text x="13.9242%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (261 samples, 0.01%)</title><rect x="13.6776%" y="437" width="0.0109%" height="15" fill="rgb(208,106,33)" fg:x="328754" fg:w="261"/><text x="13.9276%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (352 samples, 0.01%)</title><rect x="13.6900%" y="453" width="0.0146%" height="15" fill="rgb(206,54,4)" fg:x="329053" fg:w="352"/><text x="13.9400%" y="463.50"></text></g><g><title>find_extent_buffer (492 samples, 0.02%)</title><rect x="13.7133%" y="437" width="0.0205%" height="15" fill="rgb(213,3,15)" fg:x="329612" fg:w="492"/><text x="13.9633%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (778 samples, 0.03%)</title><rect x="13.7047%" y="453" width="0.0324%" height="15" fill="rgb(252,211,39)" fg:x="329405" fg:w="778"/><text x="13.9547%" y="463.50"></text></g><g><title>ttwu_do_activate (473 samples, 0.02%)</title><rect x="13.7597%" y="373" width="0.0197%" height="15" fill="rgb(223,6,36)" fg:x="330727" fg:w="473"/><text x="14.0097%" y="383.50"></text></g><g><title>__wake_up_common (1,040 samples, 0.04%)</title><rect x="13.7405%" y="421" width="0.0433%" height="15" fill="rgb(252,169,45)" fg:x="330266" fg:w="1040"/><text x="13.9905%" y="431.50"></text></g><g><title>autoremove_wake_function (1,025 samples, 0.04%)</title><rect x="13.7411%" y="405" width="0.0426%" height="15" fill="rgb(212,48,26)" fg:x="330281" fg:w="1025"/><text x="13.9911%" y="415.50"></text></g><g><title>try_to_wake_up (983 samples, 0.04%)</title><rect x="13.7428%" y="389" width="0.0409%" height="15" fill="rgb(251,102,48)" fg:x="330323" fg:w="983"/><text x="13.9928%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,089 samples, 0.05%)</title><rect x="13.7403%" y="437" width="0.0453%" height="15" fill="rgb(243,208,16)" fg:x="330263" fg:w="1089"/><text x="13.9903%" y="447.50"></text></g><g><title>btrfs_search_slot (12,369 samples, 0.51%)</title><rect x="13.2725%" y="469" width="0.5146%" height="15" fill="rgb(219,96,24)" fg:x="319018" fg:w="12369"/><text x="13.5225%" y="479.50"></text></g><g><title>unlock_up (1,200 samples, 0.05%)</title><rect x="13.7372%" y="453" width="0.0499%" height="15" fill="rgb(219,33,29)" fg:x="330187" fg:w="1200"/><text x="13.9872%" y="463.50"></text></g><g><title>btrfs_del_orphan_item (14,058 samples, 0.58%)</title><rect x="13.2077%" y="485" width="0.5849%" height="15" fill="rgb(223,176,5)" fg:x="317460" fg:w="14058"/><text x="13.4577%" y="495.50"></text></g><g><title>clear_state_bit (292 samples, 0.01%)</title><rect x="13.8278%" y="453" width="0.0121%" height="15" fill="rgb(228,140,14)" fg:x="332366" fg:w="292"/><text x="14.0778%" y="463.50"></text></g><g><title>__clear_extent_bit (607 samples, 0.03%)</title><rect x="13.8171%" y="469" width="0.0253%" height="15" fill="rgb(217,179,31)" fg:x="332109" fg:w="607"/><text x="14.0671%" y="479.50"></text></g><g><title>__btrfs_add_free_space (293 samples, 0.01%)</title><rect x="13.8558%" y="421" width="0.0122%" height="15" fill="rgb(230,9,30)" fg:x="333038" fg:w="293"/><text x="14.1058%" y="431.50"></text></g><g><title>btrfs_free_tree_block (430 samples, 0.02%)</title><rect x="13.8557%" y="437" width="0.0179%" height="15" fill="rgb(230,136,20)" fg:x="333035" fg:w="430"/><text x="14.1057%" y="447.50"></text></g><g><title>btrfs_del_leaf (485 samples, 0.02%)</title><rect x="13.8555%" y="453" width="0.0202%" height="15" fill="rgb(215,210,22)" fg:x="333031" fg:w="485"/><text x="14.1055%" y="463.50"></text></g><g><title>btrfs_get_token_32 (1,078 samples, 0.04%)</title><rect x="13.8808%" y="453" width="0.0448%" height="15" fill="rgb(218,43,5)" fg:x="333639" fg:w="1078"/><text x="14.1308%" y="463.50"></text></g><g><title>btrfs_set_token_32 (790 samples, 0.03%)</title><rect x="13.9282%" y="453" width="0.0329%" height="15" fill="rgb(216,11,5)" fg:x="334778" fg:w="790"/><text x="14.1782%" y="463.50"></text></g><g><title>memmove_extent_buffer (546 samples, 0.02%)</title><rect x="13.9714%" y="453" width="0.0227%" height="15" fill="rgb(209,82,29)" fg:x="335816" fg:w="546"/><text x="14.2214%" y="463.50"></text></g><g><title>memmove (415 samples, 0.02%)</title><rect x="13.9768%" y="437" width="0.0173%" height="15" fill="rgb(244,115,12)" fg:x="335947" fg:w="415"/><text x="14.2268%" y="447.50"></text></g><g><title>btrfs_del_items (4,101 samples, 0.17%)</title><rect x="13.8425%" y="469" width="0.1706%" height="15" fill="rgb(222,82,18)" fg:x="332718" fg:w="4101"/><text x="14.0925%" y="479.50"></text></g><g><title>alloc_extent_map (243 samples, 0.01%)</title><rect x="14.0162%" y="453" width="0.0101%" height="15" fill="rgb(249,227,8)" fg:x="336893" fg:w="243"/><text x="14.2662%" y="463.50"></text></g><g><title>btrfs_drop_extent_cache (470 samples, 0.02%)</title><rect x="14.0131%" y="469" width="0.0196%" height="15" fill="rgb(253,141,45)" fg:x="336819" fg:w="470"/><text x="14.2631%" y="479.50"></text></g><g><title>ttwu_do_activate (262 samples, 0.01%)</title><rect x="14.0471%" y="373" width="0.0109%" height="15" fill="rgb(234,184,4)" fg:x="337635" fg:w="262"/><text x="14.2971%" y="383.50"></text></g><g><title>__wake_up_common (655 samples, 0.03%)</title><rect x="14.0339%" y="421" width="0.0273%" height="15" fill="rgb(218,194,23)" fg:x="337320" fg:w="655"/><text x="14.2839%" y="431.50"></text></g><g><title>autoremove_wake_function (639 samples, 0.03%)</title><rect x="14.0346%" y="405" width="0.0266%" height="15" fill="rgb(235,66,41)" fg:x="337336" fg:w="639"/><text x="14.2846%" y="415.50"></text></g><g><title>try_to_wake_up (627 samples, 0.03%)</title><rect x="14.0351%" y="389" width="0.0261%" height="15" fill="rgb(245,217,1)" fg:x="337348" fg:w="627"/><text x="14.2851%" y="399.50"></text></g><g><title>__wake_up_common_lock (679 samples, 0.03%)</title><rect x="14.0338%" y="437" width="0.0282%" height="15" fill="rgb(229,91,1)" fg:x="337317" fg:w="679"/><text x="14.2838%" y="447.50"></text></g><g><title>btrfs_free_path (924 samples, 0.04%)</title><rect x="14.0327%" y="469" width="0.0384%" height="15" fill="rgb(207,101,30)" fg:x="337289" fg:w="924"/><text x="14.2827%" y="479.50"></text></g><g><title>btrfs_release_path (923 samples, 0.04%)</title><rect x="14.0327%" y="453" width="0.0384%" height="15" fill="rgb(223,82,49)" fg:x="337290" fg:w="923"/><text x="14.2827%" y="463.50"></text></g><g><title>btrfs_block_rsv_release (311 samples, 0.01%)</title><rect x="14.0803%" y="437" width="0.0129%" height="15" fill="rgb(218,167,17)" fg:x="338433" fg:w="311"/><text x="14.3303%" y="447.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (392 samples, 0.02%)</title><rect x="14.0932%" y="437" width="0.0163%" height="15" fill="rgb(208,103,14)" fg:x="338744" fg:w="392"/><text x="14.3432%" y="447.50"></text></g><g><title>kfree (292 samples, 0.01%)</title><rect x="14.1095%" y="437" width="0.0121%" height="15" fill="rgb(238,20,8)" fg:x="339136" fg:w="292"/><text x="14.3595%" y="447.50"></text></g><g><title>__btrfs_kill_delayed_node (1,145 samples, 0.05%)</title><rect x="14.0766%" y="453" width="0.0476%" height="15" fill="rgb(218,80,54)" fg:x="338345" fg:w="1145"/><text x="14.3266%" y="463.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,206 samples, 0.05%)</title><rect x="14.0761%" y="469" width="0.0502%" height="15" fill="rgb(240,144,17)" fg:x="338332" fg:w="1206"/><text x="14.3261%" y="479.50"></text></g><g><title>finish_wait (437 samples, 0.02%)</title><rect x="14.1420%" y="421" width="0.0182%" height="15" fill="rgb(245,27,50)" fg:x="339916" fg:w="437"/><text x="14.3920%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (420 samples, 0.02%)</title><rect x="14.1427%" y="405" width="0.0175%" height="15" fill="rgb(251,51,7)" fg:x="339933" fg:w="420"/><text x="14.3927%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (405 samples, 0.02%)</title><rect x="14.1433%" y="389" width="0.0168%" height="15" fill="rgb(245,217,29)" fg:x="339948" fg:w="405"/><text x="14.3933%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,140 samples, 0.05%)</title><rect x="14.1645%" y="405" width="0.0474%" height="15" fill="rgb(221,176,29)" fg:x="340458" fg:w="1140"/><text x="14.4145%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,085 samples, 0.05%)</title><rect x="14.1668%" y="389" width="0.0451%" height="15" fill="rgb(212,180,24)" fg:x="340513" fg:w="1085"/><text x="14.4168%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,259 samples, 0.05%)</title><rect x="14.1602%" y="421" width="0.0524%" height="15" fill="rgb(254,24,2)" fg:x="340355" fg:w="1259"/><text x="14.4102%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (952 samples, 0.04%)</title><rect x="14.2126%" y="421" width="0.0396%" height="15" fill="rgb(230,100,2)" fg:x="341614" fg:w="952"/><text x="14.4626%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (708 samples, 0.03%)</title><rect x="14.2227%" y="405" width="0.0295%" height="15" fill="rgb(219,142,25)" fg:x="341858" fg:w="708"/><text x="14.4727%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (298 samples, 0.01%)</title><rect x="14.2659%" y="373" width="0.0124%" height="15" fill="rgb(240,73,43)" fg:x="342896" fg:w="298"/><text x="14.5159%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (285 samples, 0.01%)</title><rect x="14.2665%" y="357" width="0.0119%" height="15" fill="rgb(214,114,15)" fg:x="342909" fg:w="285"/><text x="14.5165%" y="367.50"></text></g><g><title>native_write_msr (281 samples, 0.01%)</title><rect x="14.2666%" y="341" width="0.0117%" height="15" fill="rgb(207,130,4)" fg:x="342913" fg:w="281"/><text x="14.5166%" y="351.50"></text></g><g><title>finish_task_switch (338 samples, 0.01%)</title><rect x="14.2648%" y="389" width="0.0141%" height="15" fill="rgb(221,25,40)" fg:x="342868" fg:w="338"/><text x="14.5148%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (3,684 samples, 0.15%)</title><rect x="14.1369%" y="437" width="0.1533%" height="15" fill="rgb(241,184,7)" fg:x="339794" fg:w="3684"/><text x="14.3869%" y="447.50"></text></g><g><title>schedule (912 samples, 0.04%)</title><rect x="14.2522%" y="421" width="0.0379%" height="15" fill="rgb(235,159,4)" fg:x="342566" fg:w="912"/><text x="14.5022%" y="431.50"></text></g><g><title>__schedule (909 samples, 0.04%)</title><rect x="14.2523%" y="405" width="0.0378%" height="15" fill="rgb(214,87,48)" fg:x="342569" fg:w="909"/><text x="14.5023%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (3,779 samples, 0.16%)</title><rect x="14.1363%" y="453" width="0.1572%" height="15" fill="rgb(246,198,24)" fg:x="339780" fg:w="3779"/><text x="14.3863%" y="463.50"></text></g><g><title>__btrfs_tree_lock (338 samples, 0.01%)</title><rect x="14.2935%" y="453" width="0.0141%" height="15" fill="rgb(209,66,40)" fg:x="343559" fg:w="338"/><text x="14.5435%" y="463.50"></text></g><g><title>schedule (285 samples, 0.01%)</title><rect x="14.2957%" y="437" width="0.0119%" height="15" fill="rgb(233,147,39)" fg:x="343612" fg:w="285"/><text x="14.5457%" y="447.50"></text></g><g><title>__schedule (280 samples, 0.01%)</title><rect x="14.2959%" y="421" width="0.0116%" height="15" fill="rgb(231,145,52)" fg:x="343617" fg:w="280"/><text x="14.5459%" y="431.50"></text></g><g><title>finish_wait (364 samples, 0.02%)</title><rect x="14.3187%" y="421" width="0.0151%" height="15" fill="rgb(206,20,26)" fg:x="344164" fg:w="364"/><text x="14.5687%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (340 samples, 0.01%)</title><rect x="14.3197%" y="405" width="0.0141%" height="15" fill="rgb(238,220,4)" fg:x="344188" fg:w="340"/><text x="14.5697%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (311 samples, 0.01%)</title><rect x="14.3209%" y="389" width="0.0129%" height="15" fill="rgb(252,195,42)" fg:x="344217" fg:w="311"/><text x="14.5709%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (913 samples, 0.04%)</title><rect x="14.3392%" y="405" width="0.0380%" height="15" fill="rgb(209,10,6)" fg:x="344658" fg:w="913"/><text x="14.5892%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (857 samples, 0.04%)</title><rect x="14.3416%" y="389" width="0.0357%" height="15" fill="rgb(229,3,52)" fg:x="344714" fg:w="857"/><text x="14.5916%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,051 samples, 0.04%)</title><rect x="14.3340%" y="421" width="0.0437%" height="15" fill="rgb(253,49,37)" fg:x="344533" fg:w="1051"/><text x="14.5840%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,511 samples, 0.06%)</title><rect x="14.3778%" y="421" width="0.0629%" height="15" fill="rgb(240,103,49)" fg:x="345584" fg:w="1511"/><text x="14.6278%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (731 samples, 0.03%)</title><rect x="14.4102%" y="405" width="0.0304%" height="15" fill="rgb(250,182,30)" fg:x="346364" fg:w="731"/><text x="14.6602%" y="415.50"></text></g><g><title>dequeue_task_fair (271 samples, 0.01%)</title><rect x="14.4459%" y="389" width="0.0113%" height="15" fill="rgb(248,8,30)" fg:x="347221" fg:w="271"/><text x="14.6959%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (418 samples, 0.02%)</title><rect x="14.4591%" y="373" width="0.0174%" height="15" fill="rgb(237,120,30)" fg:x="347540" fg:w="418"/><text x="14.7091%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (399 samples, 0.02%)</title><rect x="14.4599%" y="357" width="0.0166%" height="15" fill="rgb(221,146,34)" fg:x="347559" fg:w="399"/><text x="14.7099%" y="367.50"></text></g><g><title>native_write_msr (393 samples, 0.02%)</title><rect x="14.4602%" y="341" width="0.0164%" height="15" fill="rgb(242,55,13)" fg:x="347565" fg:w="393"/><text x="14.7102%" y="351.50"></text></g><g><title>finish_task_switch (488 samples, 0.02%)</title><rect x="14.4571%" y="389" width="0.0203%" height="15" fill="rgb(242,112,31)" fg:x="347492" fg:w="488"/><text x="14.7071%" y="399.50"></text></g><g><title>__btrfs_tree_lock (4,387 samples, 0.18%)</title><rect x="14.3107%" y="437" width="0.1825%" height="15" fill="rgb(249,192,27)" fg:x="343971" fg:w="4387"/><text x="14.5607%" y="447.50"></text></g><g><title>schedule (1,263 samples, 0.05%)</title><rect x="14.4406%" y="421" width="0.0525%" height="15" fill="rgb(208,204,44)" fg:x="347095" fg:w="1263"/><text x="14.6906%" y="431.50"></text></g><g><title>__schedule (1,248 samples, 0.05%)</title><rect x="14.4413%" y="405" width="0.0519%" height="15" fill="rgb(208,93,54)" fg:x="347110" fg:w="1248"/><text x="14.6913%" y="415.50"></text></g><g><title>btrfs_lock_root_node (4,432 samples, 0.18%)</title><rect x="14.3105%" y="453" width="0.1844%" height="15" fill="rgb(242,1,31)" fg:x="343967" fg:w="4432"/><text x="14.5605%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (356 samples, 0.01%)</title><rect x="14.5013%" y="453" width="0.0148%" height="15" fill="rgb(241,83,25)" fg:x="348554" fg:w="356"/><text x="14.7513%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (333 samples, 0.01%)</title><rect x="14.5023%" y="437" width="0.0139%" height="15" fill="rgb(205,169,50)" fg:x="348577" fg:w="333"/><text x="14.7523%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (405 samples, 0.02%)</title><rect x="14.5188%" y="453" width="0.0168%" height="15" fill="rgb(239,186,37)" fg:x="348973" fg:w="405"/><text x="14.7688%" y="463.50"></text></g><g><title>find_extent_buffer (405 samples, 0.02%)</title><rect x="14.5448%" y="437" width="0.0168%" height="15" fill="rgb(205,221,10)" fg:x="349599" fg:w="405"/><text x="14.7948%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (703 samples, 0.03%)</title><rect x="14.5356%" y="453" width="0.0292%" height="15" fill="rgb(218,196,15)" fg:x="349378" fg:w="703"/><text x="14.7856%" y="463.50"></text></g><g><title>reada_for_balance (332 samples, 0.01%)</title><rect x="14.5649%" y="453" width="0.0138%" height="15" fill="rgb(218,196,35)" fg:x="350081" fg:w="332"/><text x="14.8149%" y="463.50"></text></g><g><title>select_task_rq_fair (296 samples, 0.01%)</title><rect x="14.6166%" y="373" width="0.0123%" height="15" fill="rgb(233,63,24)" fg:x="351325" fg:w="296"/><text x="14.8666%" y="383.50"></text></g><g><title>enqueue_entity (263 samples, 0.01%)</title><rect x="14.6335%" y="341" width="0.0109%" height="15" fill="rgb(225,8,4)" fg:x="351731" fg:w="263"/><text x="14.8835%" y="351.50"></text></g><g><title>enqueue_task_fair (349 samples, 0.01%)</title><rect x="14.6311%" y="357" width="0.0145%" height="15" fill="rgb(234,105,35)" fg:x="351672" fg:w="349"/><text x="14.8811%" y="367.50"></text></g><g><title>ttwu_do_activate (695 samples, 0.03%)</title><rect x="14.6300%" y="373" width="0.0289%" height="15" fill="rgb(236,21,32)" fg:x="351646" fg:w="695"/><text x="14.8800%" y="383.50"></text></g><g><title>psi_task_change (318 samples, 0.01%)</title><rect x="14.6457%" y="357" width="0.0132%" height="15" fill="rgb(228,109,6)" fg:x="352023" fg:w="318"/><text x="14.8957%" y="367.50"></text></g><g><title>psi_group_change (290 samples, 0.01%)</title><rect x="14.6468%" y="341" width="0.0121%" height="15" fill="rgb(229,215,31)" fg:x="352051" fg:w="290"/><text x="14.8968%" y="351.50"></text></g><g><title>__wake_up_common (2,010 samples, 0.08%)</title><rect x="14.5829%" y="421" width="0.0836%" height="15" fill="rgb(221,52,54)" fg:x="350514" fg:w="2010"/><text x="14.8329%" y="431.50"></text></g><g><title>autoremove_wake_function (1,960 samples, 0.08%)</title><rect x="14.5850%" y="405" width="0.0815%" height="15" fill="rgb(252,129,43)" fg:x="350564" fg:w="1960"/><text x="14.8350%" y="415.50"></text></g><g><title>try_to_wake_up (1,919 samples, 0.08%)</title><rect x="14.5867%" y="389" width="0.0798%" height="15" fill="rgb(248,183,27)" fg:x="350605" fg:w="1919"/><text x="14.8367%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (357 samples, 0.01%)</title><rect x="14.6665%" y="421" width="0.0149%" height="15" fill="rgb(250,0,22)" fg:x="352524" fg:w="357"/><text x="14.9165%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (337 samples, 0.01%)</title><rect x="14.6673%" y="405" width="0.0140%" height="15" fill="rgb(213,166,10)" fg:x="352544" fg:w="337"/><text x="14.9173%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,394 samples, 0.10%)</title><rect x="14.5827%" y="437" width="0.0996%" height="15" fill="rgb(207,163,36)" fg:x="350510" fg:w="2394"/><text x="14.8327%" y="447.50"></text></g><g><title>btrfs_search_slot (13,398 samples, 0.56%)</title><rect x="14.1279%" y="469" width="0.5574%" height="15" fill="rgb(208,122,22)" fg:x="339579" fg:w="13398"/><text x="14.3779%" y="479.50"></text></g><g><title>unlock_up (2,559 samples, 0.11%)</title><rect x="14.5789%" y="453" width="0.1065%" height="15" fill="rgb(207,104,49)" fg:x="350418" fg:w="2559"/><text x="14.8289%" y="463.50"></text></g><g><title>lock_extent_bits (404 samples, 0.02%)</title><rect x="14.6901%" y="469" width="0.0168%" height="15" fill="rgb(248,211,50)" fg:x="353091" fg:w="404"/><text x="14.9401%" y="479.50"></text></g><g><title>__set_extent_bit (379 samples, 0.02%)</title><rect x="14.6911%" y="453" width="0.0158%" height="15" fill="rgb(217,13,45)" fg:x="353116" fg:w="379"/><text x="14.9411%" y="463.50"></text></g><g><title>btrfs_truncate_inode_items (21,966 samples, 0.91%)</title><rect x="13.7991%" y="485" width="0.9139%" height="15" fill="rgb(211,216,49)" fg:x="331674" fg:w="21966"/><text x="14.0491%" y="495.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (298 samples, 0.01%)</title><rect x="14.7351%" y="421" width="0.0124%" height="15" fill="rgb(221,58,53)" fg:x="354174" fg:w="298"/><text x="14.9851%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (976 samples, 0.04%)</title><rect x="14.7193%" y="469" width="0.0406%" height="15" fill="rgb(220,112,41)" fg:x="353792" fg:w="976"/><text x="14.9693%" y="479.50"></text></g><g><title>btrfs_reserve_metadata_bytes (817 samples, 0.03%)</title><rect x="14.7259%" y="453" width="0.0340%" height="15" fill="rgb(236,38,28)" fg:x="353951" fg:w="817"/><text x="14.9759%" y="463.50"></text></g><g><title>__reserve_bytes (789 samples, 0.03%)</title><rect x="14.7270%" y="437" width="0.0328%" height="15" fill="rgb(227,195,22)" fg:x="353979" fg:w="789"/><text x="14.9770%" y="447.50"></text></g><g><title>calc_available_free_space.isra.0 (296 samples, 0.01%)</title><rect x="14.7475%" y="421" width="0.0123%" height="15" fill="rgb(214,55,33)" fg:x="354472" fg:w="296"/><text x="14.9975%" y="431.50"></text></g><g><title>evict_refill_and_join (1,632 samples, 0.07%)</title><rect x="14.7129%" y="485" width="0.0679%" height="15" fill="rgb(248,80,13)" fg:x="353640" fg:w="1632"/><text x="14.9629%" y="495.50"></text></g><g><title>start_transaction (481 samples, 0.02%)</title><rect x="14.7608%" y="469" width="0.0200%" height="15" fill="rgb(238,52,6)" fg:x="354791" fg:w="481"/><text x="15.0108%" y="479.50"></text></g><g><title>btrfs_evict_inode (58,082 samples, 2.42%)</title><rect x="12.3795%" y="501" width="2.4165%" height="15" fill="rgb(224,198,47)" fg:x="297553" fg:w="58082"/><text x="12.6295%" y="511.50">bt..</text></g><g><title>evict (58,453 samples, 2.43%)</title><rect x="12.3682%" y="517" width="2.4319%" height="15" fill="rgb(233,171,20)" fg:x="297282" fg:w="58453"/><text x="12.6182%" y="527.50">ev..</text></g><g><title>_raw_spin_lock (320 samples, 0.01%)</title><rect x="14.8358%" y="485" width="0.0133%" height="15" fill="rgb(241,30,25)" fg:x="356593" fg:w="320"/><text x="15.0858%" y="495.50"></text></g><g><title>__list_del_entry_valid (470 samples, 0.02%)</title><rect x="14.8731%" y="437" width="0.0196%" height="15" fill="rgb(207,171,38)" fg:x="357490" fg:w="470"/><text x="15.1231%" y="447.50"></text></g><g><title>_raw_spin_lock (270 samples, 0.01%)</title><rect x="14.8927%" y="437" width="0.0112%" height="15" fill="rgb(234,70,1)" fg:x="357960" fg:w="270"/><text x="15.1427%" y="447.50"></text></g><g><title>d_lru_del (1,937 samples, 0.08%)</title><rect x="14.8538%" y="469" width="0.0806%" height="15" fill="rgb(232,178,18)" fg:x="357026" fg:w="1937"/><text x="15.1038%" y="479.50"></text></g><g><title>list_lru_del (1,889 samples, 0.08%)</title><rect x="14.8558%" y="453" width="0.0786%" height="15" fill="rgb(241,78,40)" fg:x="357074" fg:w="1889"/><text x="15.1058%" y="463.50"></text></g><g><title>mem_cgroup_from_obj (728 samples, 0.03%)</title><rect x="14.9041%" y="437" width="0.0303%" height="15" fill="rgb(222,35,25)" fg:x="358235" fg:w="728"/><text x="15.1541%" y="447.50"></text></g><g><title>d_walk (2,969 samples, 0.12%)</title><rect x="14.8138%" y="501" width="0.1235%" height="15" fill="rgb(207,92,16)" fg:x="356065" fg:w="2969"/><text x="15.0638%" y="511.50"></text></g><g><title>select_collect (2,116 samples, 0.09%)</title><rect x="14.8493%" y="485" width="0.0880%" height="15" fill="rgb(216,59,51)" fg:x="356918" fg:w="2116"/><text x="15.0993%" y="495.50"></text></g><g><title>___d_drop (1,254 samples, 0.05%)</title><rect x="14.9465%" y="469" width="0.0522%" height="15" fill="rgb(213,80,28)" fg:x="359254" fg:w="1254"/><text x="15.1965%" y="479.50"></text></g><g><title>call_rcu (820 samples, 0.03%)</title><rect x="15.0059%" y="469" width="0.0341%" height="15" fill="rgb(220,93,7)" fg:x="360683" fg:w="820"/><text x="15.2559%" y="479.50"></text></g><g><title>rcu_segcblist_enqueue (436 samples, 0.02%)</title><rect x="15.0219%" y="453" width="0.0181%" height="15" fill="rgb(225,24,44)" fg:x="361067" fg:w="436"/><text x="15.2719%" y="463.50"></text></g><g><title>__dentry_kill (2,417 samples, 0.10%)</title><rect x="14.9412%" y="485" width="0.1006%" height="15" fill="rgb(243,74,40)" fg:x="359126" fg:w="2417"/><text x="15.1912%" y="495.50"></text></g><g><title>__dput_to_list (285 samples, 0.01%)</title><rect x="15.0417%" y="485" width="0.0119%" height="15" fill="rgb(228,39,7)" fg:x="361543" fg:w="285"/><text x="15.2917%" y="495.50"></text></g><g><title>shrink_dcache_parent (6,413 samples, 0.27%)</title><rect x="14.8114%" y="517" width="0.2668%" height="15" fill="rgb(227,79,8)" fg:x="356008" fg:w="6413"/><text x="15.0614%" y="527.50"></text></g><g><title>shrink_dentry_list (3,387 samples, 0.14%)</title><rect x="14.9373%" y="501" width="0.1409%" height="15" fill="rgb(236,58,11)" fg:x="359034" fg:w="3387"/><text x="15.1873%" y="511.50"></text></g><g><title>do_rmdir (106,528 samples, 4.43%)</title><rect x="10.6475%" y="549" width="4.4320%" height="15" fill="rgb(249,63,35)" fg:x="255923" fg:w="106528"/><text x="10.8975%" y="559.50">do_rm..</text></g><g><title>vfs_rmdir.part.0 (104,276 samples, 4.34%)</title><rect x="10.7412%" y="533" width="4.3383%" height="15" fill="rgb(252,114,16)" fg:x="258175" fg:w="104276"/><text x="10.9912%" y="543.50">vfs_r..</text></g><g><title>_raw_spin_lock (313 samples, 0.01%)</title><rect x="15.2643%" y="469" width="0.0130%" height="15" fill="rgb(254,151,24)" fg:x="366893" fg:w="313"/><text x="15.5143%" y="479.50"></text></g><g><title>__lookup_hash (3,709 samples, 0.15%)</title><rect x="15.1242%" y="533" width="0.1543%" height="15" fill="rgb(253,54,39)" fg:x="363525" fg:w="3709"/><text x="15.3742%" y="543.50"></text></g><g><title>lookup_dcache (3,600 samples, 0.15%)</title><rect x="15.1287%" y="517" width="0.1498%" height="15" fill="rgb(243,25,45)" fg:x="363634" fg:w="3600"/><text x="15.3787%" y="527.50"></text></g><g><title>d_lookup (3,443 samples, 0.14%)</title><rect x="15.1353%" y="501" width="0.1432%" height="15" fill="rgb(234,134,9)" fg:x="363791" fg:w="3443"/><text x="15.3853%" y="511.50"></text></g><g><title>__d_lookup (3,204 samples, 0.13%)</title><rect x="15.1452%" y="485" width="0.1333%" height="15" fill="rgb(227,166,31)" fg:x="364030" fg:w="3204"/><text x="15.3952%" y="495.50"></text></g><g><title>call_rcu (1,271 samples, 0.05%)</title><rect x="15.2788%" y="533" width="0.0529%" height="15" fill="rgb(245,143,41)" fg:x="367242" fg:w="1271"/><text x="15.5288%" y="543.50"></text></g><g><title>rcu_segcblist_enqueue (457 samples, 0.02%)</title><rect x="15.3127%" y="517" width="0.0190%" height="15" fill="rgb(238,181,32)" fg:x="368056" fg:w="457"/><text x="15.5627%" y="527.50"></text></g><g><title>__srcu_read_lock (742 samples, 0.03%)</title><rect x="15.3985%" y="469" width="0.0309%" height="15" fill="rgb(224,113,18)" fg:x="370119" fg:w="742"/><text x="15.6485%" y="479.50"></text></g><g><title>fsnotify_destroy_marks (1,490 samples, 0.06%)</title><rect x="15.3758%" y="501" width="0.0620%" height="15" fill="rgb(240,229,28)" fg:x="369572" fg:w="1490"/><text x="15.6258%" y="511.50"></text></g><g><title>fsnotify_grab_connector (1,175 samples, 0.05%)</title><rect x="15.3889%" y="485" width="0.0489%" height="15" fill="rgb(250,185,3)" fg:x="369887" fg:w="1175"/><text x="15.6389%" y="495.50"></text></g><g><title>__destroy_inode (3,248 samples, 0.14%)</title><rect x="15.3352%" y="517" width="0.1351%" height="15" fill="rgb(212,59,25)" fg:x="368597" fg:w="3248"/><text x="15.5852%" y="527.50"></text></g><g><title>security_inode_free (608 samples, 0.03%)</title><rect x="15.4450%" y="501" width="0.0253%" height="15" fill="rgb(221,87,20)" fg:x="371237" fg:w="608"/><text x="15.6950%" y="511.50"></text></g><g><title>_raw_spin_lock (349 samples, 0.01%)</title><rect x="15.4837%" y="501" width="0.0145%" height="15" fill="rgb(213,74,28)" fg:x="372167" fg:w="349"/><text x="15.7337%" y="511.50"></text></g><g><title>memset_erms (456 samples, 0.02%)</title><rect x="15.5842%" y="453" width="0.0190%" height="15" fill="rgb(224,132,34)" fg:x="374583" fg:w="456"/><text x="15.8342%" y="463.50"></text></g><g><title>alloc_extent_map (2,440 samples, 0.10%)</title><rect x="15.5243%" y="485" width="0.1015%" height="15" fill="rgb(222,101,24)" fg:x="373141" fg:w="2440"/><text x="15.7743%" y="495.50"></text></g><g><title>kmem_cache_alloc (2,142 samples, 0.09%)</title><rect x="15.5367%" y="469" width="0.0891%" height="15" fill="rgb(254,142,4)" fg:x="373439" fg:w="2142"/><text x="15.7867%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (542 samples, 0.02%)</title><rect x="15.6032%" y="453" width="0.0225%" height="15" fill="rgb(230,229,49)" fg:x="375039" fg:w="542"/><text x="15.8532%" y="463.50"></text></g><g><title>free_extent_map (356 samples, 0.01%)</title><rect x="15.6258%" y="485" width="0.0148%" height="15" fill="rgb(238,70,47)" fg:x="375582" fg:w="356"/><text x="15.8758%" y="495.50"></text></g><g><title>kmem_cache_free (1,231 samples, 0.05%)</title><rect x="15.6406%" y="485" width="0.0512%" height="15" fill="rgb(231,160,17)" fg:x="375938" fg:w="1231"/><text x="15.8906%" y="495.50"></text></g><g><title>btrfs_drop_extent_cache (4,725 samples, 0.20%)</title><rect x="15.4986%" y="501" width="0.1966%" height="15" fill="rgb(218,68,53)" fg:x="372524" fg:w="4725"/><text x="15.7486%" y="511.50"></text></g><g><title>alloc_extent_state (821 samples, 0.03%)</title><rect x="15.7314%" y="453" width="0.0342%" height="15" fill="rgb(236,111,10)" fg:x="378120" fg:w="821"/><text x="15.9814%" y="463.50"></text></g><g><title>kmem_cache_alloc (727 samples, 0.03%)</title><rect x="15.7353%" y="437" width="0.0302%" height="15" fill="rgb(224,34,41)" fg:x="378214" fg:w="727"/><text x="15.9853%" y="447.50"></text></g><g><title>__clear_extent_bit (1,777 samples, 0.07%)</title><rect x="15.7175%" y="469" width="0.0739%" height="15" fill="rgb(241,118,19)" fg:x="377786" fg:w="1777"/><text x="15.9675%" y="479.50"></text></g><g><title>kmem_cache_free (460 samples, 0.02%)</title><rect x="15.7723%" y="453" width="0.0191%" height="15" fill="rgb(238,129,25)" fg:x="379103" fg:w="460"/><text x="16.0223%" y="463.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (2,316 samples, 0.10%)</title><rect x="15.6952%" y="501" width="0.0964%" height="15" fill="rgb(238,22,31)" fg:x="377249" fg:w="2316"/><text x="15.9452%" y="511.50"></text></g><g><title>clear_extent_bit (1,826 samples, 0.08%)</title><rect x="15.7156%" y="485" width="0.0760%" height="15" fill="rgb(222,174,48)" fg:x="377739" fg:w="1826"/><text x="15.9656%" y="495.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (511 samples, 0.02%)</title><rect x="15.7915%" y="501" width="0.0213%" height="15" fill="rgb(206,152,40)" fg:x="379565" fg:w="511"/><text x="16.0415%" y="511.50"></text></g><g><title>_raw_spin_lock (244 samples, 0.01%)</title><rect x="15.8510%" y="453" width="0.0102%" height="15" fill="rgb(218,99,54)" fg:x="380995" fg:w="244"/><text x="16.1010%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,184 samples, 0.05%)</title><rect x="15.8749%" y="437" width="0.0493%" height="15" fill="rgb(220,174,26)" fg:x="381570" fg:w="1184"/><text x="16.1249%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (402 samples, 0.02%)</title><rect x="15.9075%" y="421" width="0.0167%" height="15" fill="rgb(245,116,9)" fg:x="382352" fg:w="402"/><text x="16.1575%" y="431.50"></text></g><g><title>alloc_extent_state (1,516 samples, 0.06%)</title><rect x="15.8612%" y="453" width="0.0631%" height="15" fill="rgb(209,72,35)" fg:x="381239" fg:w="1516"/><text x="16.1112%" y="463.50"></text></g><g><title>__clear_extent_bit (2,950 samples, 0.12%)</title><rect x="15.8354%" y="469" width="0.1227%" height="15" fill="rgb(226,126,21)" fg:x="380620" fg:w="2950"/><text x="16.0854%" y="479.50"></text></g><g><title>kmem_cache_free (601 samples, 0.03%)</title><rect x="15.9331%" y="453" width="0.0250%" height="15" fill="rgb(227,192,1)" fg:x="382969" fg:w="601"/><text x="16.1831%" y="463.50"></text></g><g><title>clear_record_extent_bits (3,186 samples, 0.13%)</title><rect x="15.8256%" y="485" width="0.1326%" height="15" fill="rgb(237,180,29)" fg:x="380385" fg:w="3186"/><text x="16.0756%" y="495.50"></text></g><g><title>ulist_init (333 samples, 0.01%)</title><rect x="15.9582%" y="485" width="0.0139%" height="15" fill="rgb(230,197,35)" fg:x="383571" fg:w="333"/><text x="16.2082%" y="495.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (4,042 samples, 0.17%)</title><rect x="15.8128%" y="501" width="0.1682%" height="15" fill="rgb(246,193,31)" fg:x="380076" fg:w="4042"/><text x="16.0628%" y="511.50"></text></g><g><title>btrfs_destroy_inode (15,830 samples, 0.66%)</title><rect x="15.4703%" y="517" width="0.6586%" height="15" fill="rgb(241,36,4)" fg:x="371845" fg:w="15830"/><text x="15.7203%" y="527.50"></text></g><g><title>rb_erase (3,557 samples, 0.15%)</title><rect x="15.9809%" y="501" width="0.1480%" height="15" fill="rgb(241,130,17)" fg:x="384118" fg:w="3557"/><text x="16.2309%" y="511.50"></text></g><g><title>destroy_inode (19,557 samples, 0.81%)</title><rect x="15.3317%" y="533" width="0.8137%" height="15" fill="rgb(206,137,32)" fg:x="368513" fg:w="19557"/><text x="15.5817%" y="543.50"></text></g><g><title>btrfs_put_root (395 samples, 0.02%)</title><rect x="16.1289%" y="517" width="0.0164%" height="15" fill="rgb(237,228,51)" fg:x="387675" fg:w="395"/><text x="16.3789%" y="527.50"></text></g><g><title>down_write (510 samples, 0.02%)</title><rect x="16.1454%" y="533" width="0.0212%" height="15" fill="rgb(243,6,42)" fg:x="388070" fg:w="510"/><text x="16.3954%" y="543.50"></text></g><g><title>_cond_resched (364 samples, 0.02%)</title><rect x="16.1986%" y="517" width="0.0151%" height="15" fill="rgb(251,74,28)" fg:x="389350" fg:w="364"/><text x="16.4486%" y="527.50"></text></g><g><title>btrfs_dentry_delete (844 samples, 0.04%)</title><rect x="16.2139%" y="517" width="0.0351%" height="15" fill="rgb(218,20,49)" fg:x="389717" fg:w="844"/><text x="16.4639%" y="527.50"></text></g><g><title>lockref_put_or_lock (811 samples, 0.03%)</title><rect x="16.2490%" y="517" width="0.0337%" height="15" fill="rgb(238,28,14)" fg:x="390561" fg:w="811"/><text x="16.4990%" y="527.50"></text></g><g><title>dput (2,834 samples, 0.12%)</title><rect x="16.1666%" y="533" width="0.1179%" height="15" fill="rgb(229,40,46)" fg:x="388580" fg:w="2834"/><text x="16.4166%" y="543.50"></text></g><g><title>__list_del_entry_valid (779 samples, 0.03%)</title><rect x="16.3082%" y="517" width="0.0324%" height="15" fill="rgb(244,195,20)" fg:x="391985" fg:w="779"/><text x="16.5582%" y="527.50"></text></g><g><title>_raw_spin_lock (765 samples, 0.03%)</title><rect x="16.3477%" y="501" width="0.0318%" height="15" fill="rgb(253,56,35)" fg:x="392934" fg:w="765"/><text x="16.5977%" y="511.50"></text></g><g><title>__remove_inode_hash (937 samples, 0.04%)</title><rect x="16.3407%" y="517" width="0.0390%" height="15" fill="rgb(210,149,44)" fg:x="392764" fg:w="937"/><text x="16.5907%" y="527.50"></text></g><g><title>_raw_spin_lock (877 samples, 0.04%)</title><rect x="16.3796%" y="517" width="0.0365%" height="15" fill="rgb(240,135,12)" fg:x="393701" fg:w="877"/><text x="16.6296%" y="527.50"></text></g><g><title>btrfs_put_transaction (486 samples, 0.02%)</title><rect x="16.5997%" y="485" width="0.0202%" height="15" fill="rgb(251,24,50)" fg:x="398990" fg:w="486"/><text x="16.8497%" y="495.50"></text></g><g><title>_raw_spin_lock (2,973 samples, 0.12%)</title><rect x="16.6981%" y="453" width="0.1237%" height="15" fill="rgb(243,200,47)" fg:x="401356" fg:w="2973"/><text x="16.9481%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,051 samples, 0.04%)</title><rect x="16.7781%" y="437" width="0.0437%" height="15" fill="rgb(224,166,26)" fg:x="403278" fg:w="1051"/><text x="17.0281%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (4,939 samples, 0.21%)</title><rect x="16.6263%" y="485" width="0.2055%" height="15" fill="rgb(233,0,47)" fg:x="399629" fg:w="4939"/><text x="16.8763%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (4,676 samples, 0.19%)</title><rect x="16.6372%" y="469" width="0.1945%" height="15" fill="rgb(253,80,5)" fg:x="399892" fg:w="4676"/><text x="16.8872%" y="479.50"></text></g><g><title>__btrfs_end_transaction (10,254 samples, 0.43%)</title><rect x="16.4692%" y="501" width="0.4266%" height="15" fill="rgb(214,133,25)" fg:x="395854" fg:w="10254"/><text x="16.7192%" y="511.50"></text></g><g><title>kmem_cache_free (1,540 samples, 0.06%)</title><rect x="16.8318%" y="485" width="0.0641%" height="15" fill="rgb(209,27,14)" fg:x="404568" fg:w="1540"/><text x="17.0818%" y="495.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (259 samples, 0.01%)</title><rect x="16.8850%" y="469" width="0.0108%" height="15" fill="rgb(219,102,51)" fg:x="405849" fg:w="259"/><text x="17.1350%" y="479.50"></text></g><g><title>_raw_spin_lock (1,052 samples, 0.04%)</title><rect x="16.9246%" y="485" width="0.0438%" height="15" fill="rgb(237,18,16)" fg:x="406800" fg:w="1052"/><text x="17.1746%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (565 samples, 0.02%)</title><rect x="16.9449%" y="469" width="0.0235%" height="15" fill="rgb(241,85,17)" fg:x="407287" fg:w="565"/><text x="17.1949%" y="479.50"></text></g><g><title>mutex_lock (948 samples, 0.04%)</title><rect x="16.9684%" y="485" width="0.0394%" height="15" fill="rgb(236,90,42)" fg:x="407853" fg:w="948"/><text x="17.2184%" y="495.50"></text></g><g><title>__radix_tree_delete (344 samples, 0.01%)</title><rect x="17.0199%" y="469" width="0.0143%" height="15" fill="rgb(249,57,21)" fg:x="409091" fg:w="344"/><text x="17.2699%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,373 samples, 0.10%)</title><rect x="17.0342%" y="469" width="0.0987%" height="15" fill="rgb(243,12,36)" fg:x="409435" fg:w="2373"/><text x="17.2842%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (5,828 samples, 0.24%)</title><rect x="16.8958%" y="501" width="0.2425%" height="15" fill="rgb(253,128,47)" fg:x="406108" fg:w="5828"/><text x="17.1458%" y="511.50"></text></g><g><title>radix_tree_delete_item (2,913 samples, 0.12%)</title><rect x="17.0171%" y="485" width="0.1212%" height="15" fill="rgb(207,33,20)" fg:x="409023" fg:w="2913"/><text x="17.2671%" y="495.50"></text></g><g><title>_raw_write_lock (302 samples, 0.01%)</title><rect x="17.1473%" y="501" width="0.0126%" height="15" fill="rgb(233,215,35)" fg:x="412152" fg:w="302"/><text x="17.3973%" y="511.50"></text></g><g><title>__radix_tree_lookup (288 samples, 0.01%)</title><rect x="17.1825%" y="485" width="0.0120%" height="15" fill="rgb(249,188,52)" fg:x="412999" fg:w="288"/><text x="17.4325%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (825 samples, 0.03%)</title><rect x="17.1606%" y="501" width="0.0343%" height="15" fill="rgb(225,12,32)" fg:x="412471" fg:w="825"/><text x="17.4106%" y="511.50"></text></g><g><title>btrfs_find_space_info (556 samples, 0.02%)</title><rect x="17.2058%" y="485" width="0.0231%" height="15" fill="rgb(247,98,14)" fg:x="413559" fg:w="556"/><text x="17.4558%" y="495.50"></text></g><g><title>btrfs_alloc_block_rsv (1,922 samples, 0.08%)</title><rect x="17.1949%" y="501" width="0.0800%" height="15" fill="rgb(247,219,48)" fg:x="413296" fg:w="1922"/><text x="17.4449%" y="511.50"></text></g><g><title>kmem_cache_alloc_trace (1,103 samples, 0.05%)</title><rect x="17.2289%" y="485" width="0.0459%" height="15" fill="rgb(253,60,48)" fg:x="414115" fg:w="1103"/><text x="17.4789%" y="495.50"></text></g><g><title>btrfs_balance_delayed_items (607 samples, 0.03%)</title><rect x="17.2859%" y="485" width="0.0253%" height="15" fill="rgb(245,15,52)" fg:x="415485" fg:w="607"/><text x="17.5359%" y="495.50"></text></g><g><title>try_to_wake_up (598 samples, 0.02%)</title><rect x="17.3272%" y="453" width="0.0249%" height="15" fill="rgb(220,133,28)" fg:x="416477" fg:w="598"/><text x="17.5772%" y="463.50"></text></g><g><title>__queue_work (934 samples, 0.04%)</title><rect x="17.3133%" y="469" width="0.0389%" height="15" fill="rgb(217,180,4)" fg:x="416142" fg:w="934"/><text x="17.5633%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (1,872 samples, 0.08%)</title><rect x="17.2748%" y="501" width="0.0779%" height="15" fill="rgb(251,24,1)" fg:x="415218" fg:w="1872"/><text x="17.5248%" y="511.50"></text></g><g><title>queue_work_on (961 samples, 0.04%)</title><rect x="17.3127%" y="485" width="0.0400%" height="15" fill="rgb(212,185,49)" fg:x="416129" fg:w="961"/><text x="17.5627%" y="495.50"></text></g><g><title>btrfs_create_pending_block_groups (316 samples, 0.01%)</title><rect x="17.4370%" y="469" width="0.0131%" height="15" fill="rgb(215,175,22)" fg:x="419115" fg:w="316"/><text x="17.6870%" y="479.50"></text></g><g><title>__btrfs_end_transaction (3,012 samples, 0.13%)</title><rect x="17.3709%" y="485" width="0.1253%" height="15" fill="rgb(250,205,14)" fg:x="417528" fg:w="3012"/><text x="17.6209%" y="495.50"></text></g><g><title>kmem_cache_free (720 samples, 0.03%)</title><rect x="17.4663%" y="469" width="0.0300%" height="15" fill="rgb(225,211,22)" fg:x="419820" fg:w="720"/><text x="17.7163%" y="479.50"></text></g><g><title>__list_del_entry_valid (531 samples, 0.02%)</title><rect x="17.5432%" y="469" width="0.0221%" height="15" fill="rgb(251,179,42)" fg:x="421668" fg:w="531"/><text x="17.7932%" y="479.50"></text></g><g><title>_raw_spin_lock (382 samples, 0.02%)</title><rect x="17.5661%" y="469" width="0.0159%" height="15" fill="rgb(208,216,51)" fg:x="422218" fg:w="382"/><text x="17.8161%" y="479.50"></text></g><g><title>__schedule (258 samples, 0.01%)</title><rect x="17.5954%" y="437" width="0.0107%" height="15" fill="rgb(235,36,11)" fg:x="422923" fg:w="258"/><text x="17.8454%" y="447.50"></text></g><g><title>_cond_resched (321 samples, 0.01%)</title><rect x="17.5939%" y="453" width="0.0134%" height="15" fill="rgb(213,189,28)" fg:x="422887" fg:w="321"/><text x="17.8439%" y="463.50"></text></g><g><title>mutex_lock (601 samples, 0.03%)</title><rect x="17.5825%" y="469" width="0.0250%" height="15" fill="rgb(227,203,42)" fg:x="422612" fg:w="601"/><text x="17.8325%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,905 samples, 0.12%)</title><rect x="17.4963%" y="485" width="0.1209%" height="15" fill="rgb(244,72,36)" fg:x="420540" fg:w="2905"/><text x="17.7463%" y="495.50"></text></g><g><title>_find_next_bit.constprop.0 (409 samples, 0.02%)</title><rect x="17.7702%" y="389" width="0.0170%" height="15" fill="rgb(213,53,17)" fg:x="427124" fg:w="409"/><text x="18.0202%" y="399.50"></text></g><g><title>steal_from_bitmap.part.0 (500 samples, 0.02%)</title><rect x="17.7679%" y="405" width="0.0208%" height="15" fill="rgb(207,167,3)" fg:x="427069" fg:w="500"/><text x="18.0179%" y="415.50"></text></g><g><title>__btrfs_add_free_space (657 samples, 0.03%)</title><rect x="17.7641%" y="421" width="0.0273%" height="15" fill="rgb(216,98,30)" fg:x="426978" fg:w="657"/><text x="18.0141%" y="431.50"></text></g><g><title>btrfs_free_tree_block (969 samples, 0.04%)</title><rect x="17.7639%" y="437" width="0.0403%" height="15" fill="rgb(236,123,15)" fg:x="426973" fg:w="969"/><text x="18.0139%" y="447.50"></text></g><g><title>btrfs_del_leaf (1,122 samples, 0.05%)</title><rect x="17.7634%" y="453" width="0.0467%" height="15" fill="rgb(248,81,50)" fg:x="426962" fg:w="1122"/><text x="18.0134%" y="463.50"></text></g><g><title>btrfs_get_32 (516 samples, 0.02%)</title><rect x="17.8101%" y="453" width="0.0215%" height="15" fill="rgb(214,120,4)" fg:x="428084" fg:w="516"/><text x="18.0601%" y="463.50"></text></g><g><title>btrfs_get_token_32 (8,137 samples, 0.34%)</title><rect x="17.8316%" y="453" width="0.3385%" height="15" fill="rgb(208,179,34)" fg:x="428600" fg:w="8137"/><text x="18.0816%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (1,153 samples, 0.05%)</title><rect x="18.1222%" y="437" width="0.0480%" height="15" fill="rgb(227,140,7)" fg:x="435584" fg:w="1153"/><text x="18.3722%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (622 samples, 0.03%)</title><rect x="18.1701%" y="453" width="0.0259%" height="15" fill="rgb(214,22,6)" fg:x="436737" fg:w="622"/><text x="18.4201%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (339 samples, 0.01%)</title><rect x="18.1819%" y="437" width="0.0141%" height="15" fill="rgb(207,137,27)" fg:x="437020" fg:w="339"/><text x="18.4319%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (873 samples, 0.04%)</title><rect x="18.4039%" y="437" width="0.0363%" height="15" fill="rgb(210,8,46)" fg:x="442357" fg:w="873"/><text x="18.6539%" y="447.50"></text></g><g><title>btrfs_set_token_32 (5,843 samples, 0.24%)</title><rect x="18.1972%" y="453" width="0.2431%" height="15" fill="rgb(240,16,54)" fg:x="437388" fg:w="5843"/><text x="18.4472%" y="463.50"></text></g><g><title>leaf_space_used (549 samples, 0.02%)</title><rect x="18.4412%" y="453" width="0.0228%" height="15" fill="rgb(211,209,29)" fg:x="443252" fg:w="549"/><text x="18.6912%" y="463.50"></text></g><g><title>btrfs_get_32 (418 samples, 0.02%)</title><rect x="18.4466%" y="437" width="0.0174%" height="15" fill="rgb(226,228,24)" fg:x="443383" fg:w="418"/><text x="18.6966%" y="447.50"></text></g><g><title>memcpy_extent_buffer (1,229 samples, 0.05%)</title><rect x="18.4640%" y="453" width="0.0511%" height="15" fill="rgb(222,84,9)" fg:x="443801" fg:w="1229"/><text x="18.7140%" y="463.50"></text></g><g><title>memmove (869 samples, 0.04%)</title><rect x="18.4790%" y="437" width="0.0362%" height="15" fill="rgb(234,203,30)" fg:x="444161" fg:w="869"/><text x="18.7290%" y="447.50"></text></g><g><title>copy_pages (1,125 samples, 0.05%)</title><rect x="18.5463%" y="437" width="0.0468%" height="15" fill="rgb(238,109,14)" fg:x="445778" fg:w="1125"/><text x="18.7963%" y="447.50"></text></g><g><title>memmove_extent_buffer (10,001 samples, 0.42%)</title><rect x="18.5151%" y="453" width="0.4161%" height="15" fill="rgb(233,206,34)" fg:x="445030" fg:w="10001"/><text x="18.7651%" y="463.50"></text></g><g><title>memmove (8,128 samples, 0.34%)</title><rect x="18.5931%" y="437" width="0.3382%" height="15" fill="rgb(220,167,47)" fg:x="446903" fg:w="8128"/><text x="18.8431%" y="447.50"></text></g><g><title>__push_leaf_left (356 samples, 0.01%)</title><rect x="18.9328%" y="437" width="0.0148%" height="15" fill="rgb(238,105,10)" fg:x="455069" fg:w="356"/><text x="19.1828%" y="447.50"></text></g><g><title>push_leaf_left (563 samples, 0.02%)</title><rect x="18.9312%" y="453" width="0.0234%" height="15" fill="rgb(213,227,17)" fg:x="455031" fg:w="563"/><text x="19.1812%" y="463.50"></text></g><g><title>push_leaf_right (426 samples, 0.02%)</title><rect x="18.9547%" y="453" width="0.0177%" height="15" fill="rgb(217,132,38)" fg:x="455594" fg:w="426"/><text x="19.2047%" y="463.50"></text></g><g><title>btrfs_del_items (31,419 samples, 1.31%)</title><rect x="17.6673%" y="469" width="1.3072%" height="15" fill="rgb(242,146,4)" fg:x="424652" fg:w="31419"/><text x="17.9173%" y="479.50"></text></g><g><title>_raw_spin_lock (1,537 samples, 0.06%)</title><rect x="18.9939%" y="437" width="0.0639%" height="15" fill="rgb(212,61,9)" fg:x="456538" fg:w="1537"/><text x="19.2439%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (563 samples, 0.02%)</title><rect x="19.0344%" y="421" width="0.0234%" height="15" fill="rgb(247,126,22)" fg:x="457512" fg:w="563"/><text x="19.2844%" y="431.50"></text></g><g><title>btrfs_block_rsv_release (1,978 samples, 0.08%)</title><rect x="18.9805%" y="453" width="0.0823%" height="15" fill="rgb(220,196,2)" fg:x="456215" fg:w="1978"/><text x="19.2305%" y="463.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (2,338 samples, 0.10%)</title><rect x="18.9745%" y="469" width="0.0973%" height="15" fill="rgb(208,46,4)" fg:x="456071" fg:w="2338"/><text x="19.2245%" y="479.50"></text></g><g><title>btrfs_get_32 (323 samples, 0.01%)</title><rect x="19.0718%" y="469" width="0.0134%" height="15" fill="rgb(252,104,46)" fg:x="458409" fg:w="323"/><text x="19.3218%" y="479.50"></text></g><g><title>_raw_read_lock (666 samples, 0.03%)</title><rect x="19.2421%" y="405" width="0.0277%" height="15" fill="rgb(237,152,48)" fg:x="462504" fg:w="666"/><text x="19.4921%" y="415.50"></text></g><g><title>finish_wait (3,265 samples, 0.14%)</title><rect x="19.2721%" y="405" width="0.1358%" height="15" fill="rgb(221,59,37)" fg:x="463223" fg:w="3265"/><text x="19.5221%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (3,131 samples, 0.13%)</title><rect x="19.2776%" y="389" width="0.1303%" height="15" fill="rgb(209,202,51)" fg:x="463357" fg:w="3131"/><text x="19.5276%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,964 samples, 0.12%)</title><rect x="19.2846%" y="373" width="0.1233%" height="15" fill="rgb(228,81,30)" fg:x="463524" fg:w="2964"/><text x="19.5346%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (7,840 samples, 0.33%)</title><rect x="19.4413%" y="389" width="0.3262%" height="15" fill="rgb(227,42,39)" fg:x="467290" fg:w="7840"/><text x="19.6913%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,467 samples, 0.31%)</title><rect x="19.4568%" y="373" width="0.3107%" height="15" fill="rgb(221,26,2)" fg:x="467663" fg:w="7467"/><text x="19.7068%" y="383.50"></text></g><g><title>prepare_to_wait_event (8,779 samples, 0.37%)</title><rect x="19.4083%" y="405" width="0.3652%" height="15" fill="rgb(254,61,31)" fg:x="466499" fg:w="8779"/><text x="19.6583%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,948 samples, 0.29%)</title><rect x="19.8979%" y="389" width="0.2891%" height="15" fill="rgb(222,173,38)" fg:x="478267" fg:w="6948"/><text x="20.1479%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (9,938 samples, 0.41%)</title><rect x="19.7736%" y="405" width="0.4135%" height="15" fill="rgb(218,50,12)" fg:x="475278" fg:w="9938"/><text x="20.0236%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (294 samples, 0.01%)</title><rect x="20.2077%" y="373" width="0.0122%" height="15" fill="rgb(223,88,40)" fg:x="485712" fg:w="294"/><text x="20.4577%" y="383.50"></text></g><g><title>update_curr (509 samples, 0.02%)</title><rect x="20.2500%" y="341" width="0.0212%" height="15" fill="rgb(237,54,19)" fg:x="486729" fg:w="509"/><text x="20.5000%" y="351.50"></text></g><g><title>dequeue_entity (1,422 samples, 0.06%)</title><rect x="20.2312%" y="357" width="0.0592%" height="15" fill="rgb(251,129,25)" fg:x="486278" fg:w="1422"/><text x="20.4812%" y="367.50"></text></g><g><title>update_load_avg (462 samples, 0.02%)</title><rect x="20.2712%" y="341" width="0.0192%" height="15" fill="rgb(238,97,19)" fg:x="487238" fg:w="462"/><text x="20.5212%" y="351.50"></text></g><g><title>dequeue_task_fair (1,731 samples, 0.07%)</title><rect x="20.2233%" y="373" width="0.0720%" height="15" fill="rgb(240,169,18)" fg:x="486088" fg:w="1731"/><text x="20.4733%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (2,368 samples, 0.10%)</title><rect x="20.3079%" y="357" width="0.0985%" height="15" fill="rgb(230,187,49)" fg:x="488120" fg:w="2368"/><text x="20.5579%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,289 samples, 0.10%)</title><rect x="20.3112%" y="341" width="0.0952%" height="15" fill="rgb(209,44,26)" fg:x="488199" fg:w="2289"/><text x="20.5612%" y="351.50"></text></g><g><title>native_write_msr (2,250 samples, 0.09%)</title><rect x="20.3128%" y="325" width="0.0936%" height="15" fill="rgb(244,0,6)" fg:x="488238" fg:w="2250"/><text x="20.5628%" y="335.50"></text></g><g><title>finish_task_switch (2,767 samples, 0.12%)</title><rect x="20.2953%" y="373" width="0.1151%" height="15" fill="rgb(248,18,21)" fg:x="487819" fg:w="2767"/><text x="20.5453%" y="383.50"></text></g><g><title>pick_next_task_fair (298 samples, 0.01%)</title><rect x="20.4106%" y="373" width="0.0124%" height="15" fill="rgb(245,180,19)" fg:x="490589" fg:w="298"/><text x="20.6606%" y="383.50"></text></g><g><title>pick_next_task_idle (277 samples, 0.01%)</title><rect x="20.4230%" y="373" width="0.0115%" height="15" fill="rgb(252,118,36)" fg:x="490887" fg:w="277"/><text x="20.6730%" y="383.50"></text></g><g><title>psi_task_change (1,287 samples, 0.05%)</title><rect x="20.4345%" y="373" width="0.0535%" height="15" fill="rgb(210,224,19)" fg:x="491164" fg:w="1287"/><text x="20.6845%" y="383.50"></text></g><g><title>psi_group_change (1,092 samples, 0.05%)</title><rect x="20.4426%" y="357" width="0.0454%" height="15" fill="rgb(218,30,24)" fg:x="491359" fg:w="1092"/><text x="20.6926%" y="367.50"></text></g><g><title>__schedule (7,523 samples, 0.31%)</title><rect x="20.1907%" y="389" width="0.3130%" height="15" fill="rgb(219,75,50)" fg:x="485304" fg:w="7523"/><text x="20.4407%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (31,022 samples, 1.29%)</title><rect x="19.2135%" y="421" width="1.2906%" height="15" fill="rgb(234,72,50)" fg:x="461815" fg:w="31022"/><text x="19.4635%" y="431.50"></text></g><g><title>schedule (7,621 samples, 0.32%)</title><rect x="20.1871%" y="405" width="0.3171%" height="15" fill="rgb(219,100,48)" fg:x="485216" fg:w="7621"/><text x="20.4371%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (32,263 samples, 1.34%)</title><rect x="19.2073%" y="437" width="1.3423%" height="15" fill="rgb(253,5,41)" fg:x="461666" fg:w="32263"/><text x="19.4573%" y="447.50"></text></g><g><title>btrfs_root_node (1,091 samples, 0.05%)</title><rect x="20.5042%" y="421" width="0.0454%" height="15" fill="rgb(247,181,11)" fg:x="492838" fg:w="1091"/><text x="20.7542%" y="431.50"></text></g><g><title>prepare_to_wait_event (248 samples, 0.01%)</title><rect x="20.5572%" y="421" width="0.0103%" height="15" fill="rgb(222,223,25)" fg:x="494113" fg:w="248"/><text x="20.8072%" y="431.50"></text></g><g><title>dequeue_entity (603 samples, 0.03%)</title><rect x="20.5850%" y="373" width="0.0251%" height="15" fill="rgb(214,198,28)" fg:x="494780" fg:w="603"/><text x="20.8350%" y="383.50"></text></g><g><title>dequeue_task_fair (721 samples, 0.03%)</title><rect x="20.5823%" y="389" width="0.0300%" height="15" fill="rgb(230,46,43)" fg:x="494716" fg:w="721"/><text x="20.8323%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (1,066 samples, 0.04%)</title><rect x="20.6175%" y="373" width="0.0444%" height="15" fill="rgb(233,65,53)" fg:x="495562" fg:w="1066"/><text x="20.8675%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,044 samples, 0.04%)</title><rect x="20.6184%" y="357" width="0.0434%" height="15" fill="rgb(221,121,27)" fg:x="495584" fg:w="1044"/><text x="20.8684%" y="367.50"></text></g><g><title>native_write_msr (1,031 samples, 0.04%)</title><rect x="20.6189%" y="341" width="0.0429%" height="15" fill="rgb(247,70,47)" fg:x="495597" fg:w="1031"/><text x="20.8689%" y="351.50"></text></g><g><title>finish_task_switch (1,244 samples, 0.05%)</title><rect x="20.6123%" y="389" width="0.0518%" height="15" fill="rgb(228,85,35)" fg:x="495437" fg:w="1244"/><text x="20.8623%" y="399.50"></text></g><g><title>psi_task_change (506 samples, 0.02%)</title><rect x="20.6724%" y="389" width="0.0211%" height="15" fill="rgb(209,50,18)" fg:x="496883" fg:w="506"/><text x="20.9224%" y="399.50"></text></g><g><title>psi_group_change (430 samples, 0.02%)</title><rect x="20.6756%" y="373" width="0.0179%" height="15" fill="rgb(250,19,35)" fg:x="496959" fg:w="430"/><text x="20.9256%" y="383.50"></text></g><g><title>__schedule (3,177 samples, 0.13%)</title><rect x="20.5691%" y="405" width="0.1322%" height="15" fill="rgb(253,107,29)" fg:x="494398" fg:w="3177"/><text x="20.8191%" y="415.50"></text></g><g><title>__btrfs_tree_lock (3,647 samples, 0.15%)</title><rect x="20.5496%" y="437" width="0.1517%" height="15" fill="rgb(252,179,29)" fg:x="493929" fg:w="3647"/><text x="20.7996%" y="447.50"></text></g><g><title>schedule (3,215 samples, 0.13%)</title><rect x="20.5675%" y="421" width="0.1338%" height="15" fill="rgb(238,194,6)" fg:x="494361" fg:w="3215"/><text x="20.8175%" y="431.50"></text></g><g><title>alloc_extent_buffer (321 samples, 0.01%)</title><rect x="20.7173%" y="373" width="0.0134%" height="15" fill="rgb(238,164,29)" fg:x="497962" fg:w="321"/><text x="20.9673%" y="383.50"></text></g><g><title>btrfs_reserve_extent (327 samples, 0.01%)</title><rect x="20.7394%" y="373" width="0.0136%" height="15" fill="rgb(224,25,9)" fg:x="498492" fg:w="327"/><text x="20.9894%" y="383.50"></text></g><g><title>find_free_extent (287 samples, 0.01%)</title><rect x="20.7411%" y="357" width="0.0119%" height="15" fill="rgb(244,153,23)" fg:x="498532" fg:w="287"/><text x="20.9911%" y="367.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,134 samples, 0.05%)</title><rect x="20.7161%" y="405" width="0.0472%" height="15" fill="rgb(212,203,14)" fg:x="497932" fg:w="1134"/><text x="20.9661%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (1,130 samples, 0.05%)</title><rect x="20.7163%" y="389" width="0.0470%" height="15" fill="rgb(220,164,20)" fg:x="497936" fg:w="1130"/><text x="20.9663%" y="399.50"></text></g><g><title>btrfs_add_delayed_tree_ref (271 samples, 0.01%)</title><rect x="20.7646%" y="389" width="0.0113%" height="15" fill="rgb(222,203,48)" fg:x="499097" fg:w="271"/><text x="21.0146%" y="399.50"></text></g><g><title>btrfs_free_tree_block (680 samples, 0.03%)</title><rect x="20.7633%" y="405" width="0.0283%" height="15" fill="rgb(215,159,22)" fg:x="499066" fg:w="680"/><text x="21.0133%" y="415.50"></text></g><g><title>__btrfs_cow_block (2,393 samples, 0.10%)</title><rect x="20.7149%" y="421" width="0.0996%" height="15" fill="rgb(216,183,47)" fg:x="497903" fg:w="2393"/><text x="20.9649%" y="431.50"></text></g><g><title>btrfs_cow_block (2,412 samples, 0.10%)</title><rect x="20.7146%" y="437" width="0.1003%" height="15" fill="rgb(229,195,25)" fg:x="497896" fg:w="2412"/><text x="20.9646%" y="447.50"></text></g><g><title>_cond_resched (285 samples, 0.01%)</title><rect x="20.8610%" y="405" width="0.0119%" height="15" fill="rgb(224,132,51)" fg:x="501414" fg:w="285"/><text x="21.1110%" y="415.50"></text></g><g><title>_raw_write_lock (726 samples, 0.03%)</title><rect x="20.8769%" y="405" width="0.0302%" height="15" fill="rgb(240,63,7)" fg:x="501798" fg:w="726"/><text x="21.1269%" y="415.50"></text></g><g><title>finish_wait (4,760 samples, 0.20%)</title><rect x="20.9074%" y="405" width="0.1980%" height="15" fill="rgb(249,182,41)" fg:x="502531" fg:w="4760"/><text x="21.1574%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,464 samples, 0.19%)</title><rect x="20.9197%" y="389" width="0.1857%" height="15" fill="rgb(243,47,26)" fg:x="502827" fg:w="4464"/><text x="21.1697%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,193 samples, 0.17%)</title><rect x="20.9310%" y="373" width="0.1744%" height="15" fill="rgb(233,48,2)" fg:x="503098" fg:w="4193"/><text x="21.1810%" y="383.50"></text></g><g><title>__list_add_valid (396 samples, 0.02%)</title><rect x="21.1573%" y="389" width="0.0165%" height="15" fill="rgb(244,165,34)" fg:x="508536" fg:w="396"/><text x="21.4073%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (12,879 samples, 0.54%)</title><rect x="21.1737%" y="389" width="0.5358%" height="15" fill="rgb(207,89,7)" fg:x="508932" fg:w="12879"/><text x="21.4237%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,966 samples, 0.50%)</title><rect x="21.2117%" y="373" width="0.4978%" height="15" fill="rgb(244,117,36)" fg:x="509845" fg:w="11966"/><text x="21.4617%" y="383.50"></text></g><g><title>_raw_spin_unlock_irqrestore (368 samples, 0.02%)</title><rect x="21.7096%" y="389" width="0.0153%" height="15" fill="rgb(226,144,34)" fg:x="521811" fg:w="368"/><text x="21.9596%" y="399.50"></text></g><g><title>prepare_to_wait_event (14,834 samples, 0.62%)</title><rect x="21.1078%" y="405" width="0.6172%" height="15" fill="rgb(213,23,19)" fg:x="507346" fg:w="14834"/><text x="21.3578%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (18,962 samples, 0.79%)</title><rect x="21.7249%" y="405" width="0.7889%" height="15" fill="rgb(217,75,12)" fg:x="522180" fg:w="18962"/><text x="21.9749%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,459 samples, 0.35%)</title><rect x="22.1619%" y="389" width="0.3519%" height="15" fill="rgb(224,159,17)" fg:x="532683" fg:w="8459"/><text x="22.4119%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (526 samples, 0.02%)</title><rect x="22.5573%" y="373" width="0.0219%" height="15" fill="rgb(217,118,1)" fg:x="542187" fg:w="526"/><text x="22.8073%" y="383.50"></text></g><g><title>update_cfs_group (313 samples, 0.01%)</title><rect x="22.6294%" y="341" width="0.0130%" height="15" fill="rgb(232,180,48)" fg:x="543920" fg:w="313"/><text x="22.8794%" y="351.50"></text></g><g><title>update_curr (1,060 samples, 0.04%)</title><rect x="22.6424%" y="341" width="0.0441%" height="15" fill="rgb(230,27,33)" fg:x="544233" fg:w="1060"/><text x="22.8924%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (270 samples, 0.01%)</title><rect x="22.7014%" y="325" width="0.0112%" height="15" fill="rgb(205,31,21)" fg:x="545652" fg:w="270"/><text x="22.9514%" y="335.50"></text></g><g><title>__update_load_avg_se (361 samples, 0.02%)</title><rect x="22.7127%" y="325" width="0.0150%" height="15" fill="rgb(253,59,4)" fg:x="545922" fg:w="361"/><text x="22.9627%" y="335.50"></text></g><g><title>dequeue_entity (3,035 samples, 0.13%)</title><rect x="22.6021%" y="357" width="0.1263%" height="15" fill="rgb(224,201,9)" fg:x="543265" fg:w="3035"/><text x="22.8521%" y="367.50"></text></g><g><title>update_load_avg (1,007 samples, 0.04%)</title><rect x="22.6865%" y="341" width="0.0419%" height="15" fill="rgb(229,206,30)" fg:x="545293" fg:w="1007"/><text x="22.9365%" y="351.50"></text></g><g><title>dequeue_task_fair (3,610 samples, 0.15%)</title><rect x="22.5877%" y="373" width="0.1502%" height="15" fill="rgb(212,67,47)" fg:x="542919" fg:w="3610"/><text x="22.8377%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (5,368 samples, 0.22%)</title><rect x="22.7663%" y="357" width="0.2233%" height="15" fill="rgb(211,96,50)" fg:x="547211" fg:w="5368"/><text x="23.0163%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,156 samples, 0.21%)</title><rect x="22.7751%" y="341" width="0.2145%" height="15" fill="rgb(252,114,18)" fg:x="547423" fg:w="5156"/><text x="23.0251%" y="351.50"></text></g><g><title>native_write_msr (5,077 samples, 0.21%)</title><rect x="22.7784%" y="325" width="0.2112%" height="15" fill="rgb(223,58,37)" fg:x="547502" fg:w="5077"/><text x="23.0284%" y="335.50"></text></g><g><title>finish_task_switch (6,335 samples, 0.26%)</title><rect x="22.7379%" y="373" width="0.2636%" height="15" fill="rgb(237,70,4)" fg:x="546529" fg:w="6335"/><text x="22.9879%" y="383.50"></text></g><g><title>newidle_balance (346 samples, 0.01%)</title><rect x="23.0095%" y="357" width="0.0144%" height="15" fill="rgb(244,85,46)" fg:x="553057" fg:w="346"/><text x="23.2595%" y="367.50"></text></g><g><title>pick_next_task_fair (695 samples, 0.03%)</title><rect x="23.0019%" y="373" width="0.0289%" height="15" fill="rgb(223,39,52)" fg:x="552873" fg:w="695"/><text x="23.2519%" y="383.50"></text></g><g><title>__update_idle_core (528 samples, 0.02%)</title><rect x="23.0341%" y="357" width="0.0220%" height="15" fill="rgb(218,200,14)" fg:x="553648" fg:w="528"/><text x="23.2841%" y="367.50"></text></g><g><title>pick_next_task_idle (613 samples, 0.03%)</title><rect x="23.0308%" y="373" width="0.0255%" height="15" fill="rgb(208,171,16)" fg:x="553568" fg:w="613"/><text x="23.2808%" y="383.50"></text></g><g><title>psi_task_change (2,801 samples, 0.12%)</title><rect x="23.0563%" y="373" width="0.1165%" height="15" fill="rgb(234,200,18)" fg:x="554181" fg:w="2801"/><text x="23.3063%" y="383.50"></text></g><g><title>psi_group_change (2,429 samples, 0.10%)</title><rect x="23.0718%" y="357" width="0.1011%" height="15" fill="rgb(228,45,11)" fg:x="554553" fg:w="2429"/><text x="23.3218%" y="367.50"></text></g><g><title>record_times (621 samples, 0.03%)</title><rect x="23.1470%" y="341" width="0.0258%" height="15" fill="rgb(237,182,11)" fg:x="556361" fg:w="621"/><text x="23.3970%" y="351.50"></text></g><g><title>sched_clock_cpu (406 samples, 0.02%)</title><rect x="23.1559%" y="325" width="0.0169%" height="15" fill="rgb(241,175,49)" fg:x="556576" fg:w="406"/><text x="23.4059%" y="335.50"></text></g><g><title>sched_clock (362 samples, 0.02%)</title><rect x="23.1578%" y="309" width="0.0151%" height="15" fill="rgb(247,38,35)" fg:x="556620" fg:w="362"/><text x="23.4078%" y="319.50"></text></g><g><title>native_sched_clock (342 samples, 0.01%)</title><rect x="23.1586%" y="293" width="0.0142%" height="15" fill="rgb(228,39,49)" fg:x="556640" fg:w="342"/><text x="23.4086%" y="303.50"></text></g><g><title>psi_task_switch (301 samples, 0.01%)</title><rect x="23.1728%" y="373" width="0.0125%" height="15" fill="rgb(226,101,26)" fg:x="556982" fg:w="301"/><text x="23.4228%" y="383.50"></text></g><g><title>__schedule (16,474 samples, 0.69%)</title><rect x="22.5221%" y="389" width="0.6854%" height="15" fill="rgb(206,141,19)" fg:x="541342" fg:w="16474"/><text x="22.7721%" y="399.50"></text></g><g><title>update_rq_clock (272 samples, 0.01%)</title><rect x="23.1962%" y="373" width="0.0113%" height="15" fill="rgb(211,200,13)" fg:x="557544" fg:w="272"/><text x="23.4462%" y="383.50"></text></g><g><title>__btrfs_tree_lock (57,456 samples, 2.39%)</title><rect x="20.8171%" y="421" width="2.3904%" height="15" fill="rgb(241,121,6)" fg:x="500361" fg:w="57456"/><text x="21.0671%" y="431.50">__..</text></g><g><title>schedule (16,675 samples, 0.69%)</title><rect x="22.5138%" y="405" width="0.6938%" height="15" fill="rgb(234,221,29)" fg:x="541142" fg:w="16675"/><text x="22.7638%" y="415.50"></text></g><g><title>btrfs_root_node (451 samples, 0.02%)</title><rect x="23.2076%" y="421" width="0.0188%" height="15" fill="rgb(229,136,5)" fg:x="557817" fg:w="451"/><text x="23.4576%" y="431.50"></text></g><g><title>btrfs_lock_root_node (57,961 samples, 2.41%)</title><rect x="20.8149%" y="437" width="2.4114%" height="15" fill="rgb(238,36,11)" fg:x="500308" fg:w="57961"/><text x="21.0649%" y="447.50">bt..</text></g><g><title>btrfs_set_path_blocking (420 samples, 0.02%)</title><rect x="23.2264%" y="437" width="0.0175%" height="15" fill="rgb(251,55,41)" fg:x="558269" fg:w="420"/><text x="23.4764%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (447 samples, 0.02%)</title><rect x="23.2441%" y="437" width="0.0186%" height="15" fill="rgb(242,34,40)" fg:x="558694" fg:w="447"/><text x="23.4941%" y="447.50"></text></g><g><title>_raw_write_lock (375 samples, 0.02%)</title><rect x="23.2685%" y="421" width="0.0156%" height="15" fill="rgb(215,42,17)" fg:x="559281" fg:w="375"/><text x="23.5185%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (2,803 samples, 0.12%)</title><rect x="23.2626%" y="437" width="0.1166%" height="15" fill="rgb(207,44,46)" fg:x="559141" fg:w="2803"/><text x="23.5126%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (2,288 samples, 0.10%)</title><rect x="23.2841%" y="421" width="0.0952%" height="15" fill="rgb(211,206,28)" fg:x="559656" fg:w="2288"/><text x="23.5341%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (531 samples, 0.02%)</title><rect x="23.3798%" y="437" width="0.0221%" height="15" fill="rgb(237,167,16)" fg:x="561956" fg:w="531"/><text x="23.6298%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,586 samples, 0.19%)</title><rect x="23.4019%" y="437" width="0.1908%" height="15" fill="rgb(233,66,6)" fg:x="562487" fg:w="4586"/><text x="23.6519%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (863 samples, 0.04%)</title><rect x="23.6227%" y="421" width="0.0359%" height="15" fill="rgb(246,123,29)" fg:x="567796" fg:w="863"/><text x="23.8727%" y="431.50"></text></g><g><title>verify_parent_transid (752 samples, 0.03%)</title><rect x="23.6274%" y="405" width="0.0313%" height="15" fill="rgb(209,62,40)" fg:x="567907" fg:w="752"/><text x="23.8774%" y="415.50"></text></g><g><title>btrfs_get_64 (844 samples, 0.04%)</title><rect x="23.6586%" y="421" width="0.0351%" height="15" fill="rgb(218,4,25)" fg:x="568659" fg:w="844"/><text x="23.9086%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,911 samples, 0.12%)</title><rect x="23.7708%" y="405" width="0.1211%" height="15" fill="rgb(253,91,49)" fg:x="571356" fg:w="2911"/><text x="24.0208%" y="415.50"></text></g><g><title>mark_page_accessed (1,239 samples, 0.05%)</title><rect x="23.9052%" y="389" width="0.0515%" height="15" fill="rgb(228,155,29)" fg:x="574586" fg:w="1239"/><text x="24.1552%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,563 samples, 0.07%)</title><rect x="23.8921%" y="405" width="0.0650%" height="15" fill="rgb(243,57,37)" fg:x="574271" fg:w="1563"/><text x="24.1421%" y="415.50"></text></g><g><title>find_extent_buffer (6,087 samples, 0.25%)</title><rect x="23.7060%" y="421" width="0.2532%" height="15" fill="rgb(244,167,17)" fg:x="569798" fg:w="6087"/><text x="23.9560%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (9,586 samples, 0.40%)</title><rect x="23.5927%" y="437" width="0.3988%" height="15" fill="rgb(207,181,38)" fg:x="567073" fg:w="9586"/><text x="23.8427%" y="447.50"></text></g><g><title>read_extent_buffer (774 samples, 0.03%)</title><rect x="23.9593%" y="421" width="0.0322%" height="15" fill="rgb(211,8,23)" fg:x="575885" fg:w="774"/><text x="24.2093%" y="431.50"></text></g><g><title>btrfs_get_64 (295 samples, 0.01%)</title><rect x="24.0080%" y="421" width="0.0123%" height="15" fill="rgb(235,11,44)" fg:x="577057" fg:w="295"/><text x="24.2580%" y="431.50"></text></g><g><title>__radix_tree_lookup (903 samples, 0.04%)</title><rect x="24.0491%" y="405" width="0.0376%" height="15" fill="rgb(248,18,52)" fg:x="578044" fg:w="903"/><text x="24.2991%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (460 samples, 0.02%)</title><rect x="24.0869%" y="405" width="0.0191%" height="15" fill="rgb(208,4,7)" fg:x="578952" fg:w="460"/><text x="24.3369%" y="415.50"></text></g><g><title>mark_page_accessed (350 samples, 0.01%)</title><rect x="24.0914%" y="389" width="0.0146%" height="15" fill="rgb(240,17,39)" fg:x="579062" fg:w="350"/><text x="24.3414%" y="399.50"></text></g><g><title>find_extent_buffer (2,079 samples, 0.09%)</title><rect x="24.0203%" y="421" width="0.0865%" height="15" fill="rgb(207,170,3)" fg:x="577352" fg:w="2079"/><text x="24.2703%" y="431.50"></text></g><g><title>reada_for_balance (2,944 samples, 0.12%)</title><rect x="23.9915%" y="437" width="0.1225%" height="15" fill="rgb(236,100,52)" fg:x="576659" fg:w="2944"/><text x="24.2415%" y="447.50"></text></g><g><title>__list_del_entry_valid (429 samples, 0.02%)</title><rect x="24.1777%" y="373" width="0.0178%" height="15" fill="rgb(246,78,51)" fg:x="581134" fg:w="429"/><text x="24.4277%" y="383.50"></text></g><g><title>_raw_spin_lock (551 samples, 0.02%)</title><rect x="24.3951%" y="357" width="0.0229%" height="15" fill="rgb(211,17,15)" fg:x="586360" fg:w="551"/><text x="24.6451%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (322 samples, 0.01%)</title><rect x="24.4046%" y="341" width="0.0134%" height="15" fill="rgb(209,59,46)" fg:x="586589" fg:w="322"/><text x="24.6546%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (690 samples, 0.03%)</title><rect x="24.4180%" y="357" width="0.0287%" height="15" fill="rgb(210,92,25)" fg:x="586911" fg:w="690"/><text x="24.6680%" y="367.50"></text></g><g><title>available_idle_cpu (583 samples, 0.02%)</title><rect x="24.5001%" y="341" width="0.0243%" height="15" fill="rgb(238,174,52)" fg:x="588885" fg:w="583"/><text x="24.7501%" y="351.50"></text></g><g><title>select_task_rq_fair (2,726 samples, 0.11%)</title><rect x="24.4507%" y="357" width="0.1134%" height="15" fill="rgb(230,73,7)" fg:x="587697" fg:w="2726"/><text x="24.7007%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (617 samples, 0.03%)</title><rect x="24.5384%" y="341" width="0.0257%" height="15" fill="rgb(243,124,40)" fg:x="589806" fg:w="617"/><text x="24.7884%" y="351.50"></text></g><g><title>update_cfs_group (254 samples, 0.01%)</title><rect x="24.6533%" y="309" width="0.0106%" height="15" fill="rgb(244,170,11)" fg:x="592566" fg:w="254"/><text x="24.9033%" y="319.50"></text></g><g><title>update_curr (314 samples, 0.01%)</title><rect x="24.6638%" y="309" width="0.0131%" height="15" fill="rgb(207,114,54)" fg:x="592820" fg:w="314"/><text x="24.9138%" y="319.50"></text></g><g><title>enqueue_entity (2,609 samples, 0.11%)</title><rect x="24.6050%" y="325" width="0.1085%" height="15" fill="rgb(205,42,20)" fg:x="591405" fg:w="2609"/><text x="24.8550%" y="335.50"></text></g><g><title>update_load_avg (880 samples, 0.04%)</title><rect x="24.6769%" y="309" width="0.0366%" height="15" fill="rgb(230,30,28)" fg:x="593134" fg:w="880"/><text x="24.9269%" y="319.50"></text></g><g><title>enqueue_task_fair (3,307 samples, 0.14%)</title><rect x="24.5837%" y="341" width="0.1376%" height="15" fill="rgb(205,73,54)" fg:x="590895" fg:w="3307"/><text x="24.8337%" y="351.50"></text></g><g><title>ttwu_do_activate (6,825 samples, 0.28%)</title><rect x="24.5733%" y="357" width="0.2839%" height="15" fill="rgb(254,227,23)" fg:x="590643" fg:w="6825"/><text x="24.8233%" y="367.50"></text></g><g><title>psi_task_change (3,262 samples, 0.14%)</title><rect x="24.7215%" y="341" width="0.1357%" height="15" fill="rgb(228,202,34)" fg:x="594206" fg:w="3262"/><text x="24.9715%" y="351.50"></text></g><g><title>psi_group_change (2,924 samples, 0.12%)</title><rect x="24.7356%" y="325" width="0.1217%" height="15" fill="rgb(222,225,37)" fg:x="594544" fg:w="2924"/><text x="24.9856%" y="335.50"></text></g><g><title>record_times (508 samples, 0.02%)</title><rect x="24.8361%" y="309" width="0.0211%" height="15" fill="rgb(221,14,54)" fg:x="596960" fg:w="508"/><text x="25.0861%" y="319.50"></text></g><g><title>sched_clock_cpu (339 samples, 0.01%)</title><rect x="24.8431%" y="293" width="0.0141%" height="15" fill="rgb(254,102,2)" fg:x="597129" fg:w="339"/><text x="25.0931%" y="303.50"></text></g><g><title>sched_clock (286 samples, 0.01%)</title><rect x="24.8453%" y="277" width="0.0119%" height="15" fill="rgb(232,104,17)" fg:x="597182" fg:w="286"/><text x="25.0953%" y="287.50"></text></g><g><title>native_sched_clock (254 samples, 0.01%)</title><rect x="24.8466%" y="261" width="0.0106%" height="15" fill="rgb(250,220,14)" fg:x="597214" fg:w="254"/><text x="25.0966%" y="271.50"></text></g><g><title>resched_curr (255 samples, 0.01%)</title><rect x="24.8728%" y="325" width="0.0106%" height="15" fill="rgb(241,158,9)" fg:x="597843" fg:w="255"/><text x="25.1228%" y="335.50"></text></g><g><title>ttwu_do_wakeup (633 samples, 0.03%)</title><rect x="24.8572%" y="357" width="0.0263%" height="15" fill="rgb(246,9,43)" fg:x="597468" fg:w="633"/><text x="25.1072%" y="367.50"></text></g><g><title>check_preempt_curr (567 samples, 0.02%)</title><rect x="24.8600%" y="341" width="0.0236%" height="15" fill="rgb(206,73,33)" fg:x="597534" fg:w="567"/><text x="25.1100%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (587 samples, 0.02%)</title><rect x="24.8835%" y="357" width="0.0244%" height="15" fill="rgb(222,79,8)" fg:x="598101" fg:w="587"/><text x="25.1335%" y="367.50"></text></g><g><title>__wake_up_common (18,674 samples, 0.78%)</title><rect x="24.1574%" y="405" width="0.7769%" height="15" fill="rgb(234,8,54)" fg:x="580647" fg:w="18674"/><text x="24.4074%" y="415.50"></text></g><g><title>autoremove_wake_function (18,250 samples, 0.76%)</title><rect x="24.1750%" y="389" width="0.7593%" height="15" fill="rgb(209,134,38)" fg:x="581071" fg:w="18250"/><text x="24.4250%" y="399.50"></text></g><g><title>try_to_wake_up (17,737 samples, 0.74%)</title><rect x="24.1964%" y="373" width="0.7379%" height="15" fill="rgb(230,127,29)" fg:x="581584" fg:w="17737"/><text x="24.4464%" y="383.50"></text></g><g><title>update_rq_clock (633 samples, 0.03%)</title><rect x="24.9080%" y="357" width="0.0263%" height="15" fill="rgb(242,44,41)" fg:x="598688" fg:w="633"/><text x="25.1580%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (2,891 samples, 0.12%)</title><rect x="24.9343%" y="405" width="0.1203%" height="15" fill="rgb(222,56,43)" fg:x="599321" fg:w="2891"/><text x="25.1843%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,724 samples, 0.11%)</title><rect x="24.9413%" y="389" width="0.1133%" height="15" fill="rgb(238,39,47)" fg:x="599488" fg:w="2724"/><text x="25.1913%" y="399.50"></text></g><g><title>__wake_up_common_lock (21,826 samples, 0.91%)</title><rect x="24.1546%" y="421" width="0.9081%" height="15" fill="rgb(226,79,43)" fg:x="580580" fg:w="21826"/><text x="24.4046%" y="431.50"></text></g><g><title>btrfs_lookup_inode (144,220 samples, 6.00%)</title><rect x="19.0852%" y="469" width="6.0002%" height="15" fill="rgb(242,105,53)" fg:x="458732" fg:w="144220"/><text x="19.3352%" y="479.50">btrfs_lo..</text></g><g><title>btrfs_search_slot (143,748 samples, 5.98%)</title><rect x="19.1048%" y="453" width="5.9805%" height="15" fill="rgb(251,132,46)" fg:x="459204" fg:w="143748"/><text x="19.3548%" y="463.50">btrfs_se..</text></g><g><title>unlock_up (23,277 samples, 0.97%)</title><rect x="24.1169%" y="437" width="0.9684%" height="15" fill="rgb(231,77,14)" fg:x="579675" fg:w="23277"/><text x="24.3669%" y="447.50"></text></g><g><title>btrfs_tree_unlock (538 samples, 0.02%)</title><rect x="25.0630%" y="421" width="0.0224%" height="15" fill="rgb(240,135,9)" fg:x="602414" fg:w="538"/><text x="25.3130%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (523 samples, 0.02%)</title><rect x="25.0854%" y="469" width="0.0218%" height="15" fill="rgb(248,109,14)" fg:x="602952" fg:w="523"/><text x="25.3354%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (304 samples, 0.01%)</title><rect x="25.0945%" y="453" width="0.0126%" height="15" fill="rgb(227,146,52)" fg:x="603171" fg:w="304"/><text x="25.3445%" y="463.50"></text></g><g><title>btrfs_release_delayed_inode (448 samples, 0.02%)</title><rect x="25.1071%" y="469" width="0.0186%" height="15" fill="rgb(232,54,3)" fg:x="603475" fg:w="448"/><text x="25.3571%" y="479.50"></text></g><g><title>select_task_rq_fair (822 samples, 0.03%)</title><rect x="25.1980%" y="389" width="0.0342%" height="15" fill="rgb(229,201,43)" fg:x="605660" fg:w="822"/><text x="25.4480%" y="399.50"></text></g><g><title>enqueue_entity (834 samples, 0.03%)</title><rect x="25.2444%" y="357" width="0.0347%" height="15" fill="rgb(252,161,33)" fg:x="606775" fg:w="834"/><text x="25.4944%" y="367.50"></text></g><g><title>update_load_avg (289 samples, 0.01%)</title><rect x="25.2671%" y="341" width="0.0120%" height="15" fill="rgb(226,146,40)" fg:x="607320" fg:w="289"/><text x="25.5171%" y="351.50"></text></g><g><title>enqueue_task_fair (1,053 samples, 0.04%)</title><rect x="25.2379%" y="373" width="0.0438%" height="15" fill="rgb(219,47,25)" fg:x="606617" fg:w="1053"/><text x="25.4879%" y="383.50"></text></g><g><title>ttwu_do_activate (2,207 samples, 0.09%)</title><rect x="25.2350%" y="389" width="0.0918%" height="15" fill="rgb(250,135,13)" fg:x="606548" fg:w="2207"/><text x="25.4850%" y="399.50"></text></g><g><title>psi_task_change (1,084 samples, 0.05%)</title><rect x="25.2817%" y="373" width="0.0451%" height="15" fill="rgb(219,229,18)" fg:x="607671" fg:w="1084"/><text x="25.5317%" y="383.50"></text></g><g><title>psi_group_change (965 samples, 0.04%)</title><rect x="25.2867%" y="357" width="0.0401%" height="15" fill="rgb(217,152,27)" fg:x="607790" fg:w="965"/><text x="25.5367%" y="367.50"></text></g><g><title>__wake_up_common (5,212 samples, 0.22%)</title><rect x="25.1339%" y="437" width="0.2168%" height="15" fill="rgb(225,71,47)" fg:x="604119" fg:w="5212"/><text x="25.3839%" y="447.50"></text></g><g><title>autoremove_wake_function (5,119 samples, 0.21%)</title><rect x="25.1378%" y="421" width="0.2130%" height="15" fill="rgb(220,139,14)" fg:x="604212" fg:w="5119"/><text x="25.3878%" y="431.50"></text></g><g><title>try_to_wake_up (4,990 samples, 0.21%)</title><rect x="25.1432%" y="405" width="0.2076%" height="15" fill="rgb(247,54,32)" fg:x="604341" fg:w="4990"/><text x="25.3932%" y="415.50"></text></g><g><title>__wake_up_common_lock (5,502 samples, 0.23%)</title><rect x="25.1332%" y="453" width="0.2289%" height="15" fill="rgb(252,131,39)" fg:x="604102" fg:w="5502"/><text x="25.3832%" y="463.50"></text></g><g><title>btrfs_tree_unlock (280 samples, 0.01%)</title><rect x="25.3622%" y="453" width="0.0116%" height="15" fill="rgb(210,108,39)" fg:x="609605" fg:w="280"/><text x="25.6122%" y="463.50"></text></g><g><title>_raw_spin_lock (405 samples, 0.02%)</title><rect x="25.4156%" y="437" width="0.0168%" height="15" fill="rgb(205,23,29)" fg:x="610890" fg:w="405"/><text x="25.6656%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,388 samples, 0.06%)</title><rect x="25.3749%" y="453" width="0.0577%" height="15" fill="rgb(246,139,46)" fg:x="609910" fg:w="1388"/><text x="25.6249%" y="463.50"></text></g><g><title>btrfs_release_path (7,788 samples, 0.32%)</title><rect x="25.1258%" y="469" width="0.3240%" height="15" fill="rgb(250,81,26)" fg:x="603923" fg:w="7788"/><text x="25.3758%" y="479.50"></text></g><g><title>release_extent_buffer (413 samples, 0.02%)</title><rect x="25.4326%" y="453" width="0.0172%" height="15" fill="rgb(214,104,7)" fg:x="611298" fg:w="413"/><text x="25.6826%" y="463.50"></text></g><g><title>__btrfs_tree_lock (250 samples, 0.01%)</title><rect x="25.4646%" y="437" width="0.0104%" height="15" fill="rgb(233,189,8)" fg:x="612067" fg:w="250"/><text x="25.7146%" y="447.50"></text></g><g><title>btrfs_lock_root_node (255 samples, 0.01%)</title><rect x="25.4646%" y="453" width="0.0106%" height="15" fill="rgb(228,141,17)" fg:x="612066" fg:w="255"/><text x="25.7146%" y="463.50"></text></g><g><title>btrfs_search_slot (880 samples, 0.04%)</title><rect x="25.4498%" y="469" width="0.0366%" height="15" fill="rgb(247,157,1)" fg:x="611711" fg:w="880"/><text x="25.6998%" y="479.50"></text></g><g><title>finish_one_item (1,167 samples, 0.05%)</title><rect x="25.4864%" y="469" width="0.0486%" height="15" fill="rgb(249,225,5)" fg:x="612591" fg:w="1167"/><text x="25.7364%" y="479.50"></text></g><g><title>__btrfs_update_delayed_inode (191,575 samples, 7.97%)</title><rect x="17.6171%" y="485" width="7.9703%" height="15" fill="rgb(242,55,13)" fg:x="423445" fg:w="191575"/><text x="17.8671%" y="495.50">__btrfs_upd..</text></g><g><title>write_extent_buffer (1,037 samples, 0.04%)</title><rect x="25.5443%" y="469" width="0.0431%" height="15" fill="rgb(230,49,50)" fg:x="613983" fg:w="1037"/><text x="25.7943%" y="479.50"></text></g><g><title>__radix_tree_lookup (252 samples, 0.01%)</title><rect x="25.6171%" y="469" width="0.0105%" height="15" fill="rgb(241,111,38)" fg:x="615732" fg:w="252"/><text x="25.8671%" y="479.50"></text></g><g><title>balance_dirty_pages_ratelimited (786 samples, 0.03%)</title><rect x="25.5952%" y="485" width="0.0327%" height="15" fill="rgb(252,155,4)" fg:x="615206" fg:w="786"/><text x="25.8452%" y="495.50"></text></g><g><title>btrfs_balance_delayed_items (408 samples, 0.02%)</title><rect x="25.6439%" y="469" width="0.0170%" height="15" fill="rgb(212,69,32)" fg:x="616377" fg:w="408"/><text x="25.8939%" y="479.50"></text></g><g><title>__queue_work (1,049 samples, 0.04%)</title><rect x="25.6636%" y="453" width="0.0436%" height="15" fill="rgb(243,107,47)" fg:x="616850" fg:w="1049"/><text x="25.9136%" y="463.50"></text></g><g><title>try_to_wake_up (733 samples, 0.03%)</title><rect x="25.6767%" y="437" width="0.0305%" height="15" fill="rgb(247,130,12)" fg:x="617166" fg:w="733"/><text x="25.9267%" y="447.50"></text></g><g><title>btrfs_btree_balance_dirty (1,900 samples, 0.08%)</title><rect x="25.6287%" y="485" width="0.0790%" height="15" fill="rgb(233,74,16)" fg:x="616011" fg:w="1900"/><text x="25.8787%" y="495.50"></text></g><g><title>queue_work_on (1,080 samples, 0.04%)</title><rect x="25.6628%" y="469" width="0.0449%" height="15" fill="rgb(208,58,18)" fg:x="616831" fg:w="1080"/><text x="25.9128%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (481 samples, 0.02%)</title><rect x="25.7169%" y="485" width="0.0200%" height="15" fill="rgb(242,225,1)" fg:x="618132" fg:w="481"/><text x="25.9669%" y="495.50"></text></g><g><title>kmem_cache_alloc (634 samples, 0.03%)</title><rect x="25.7373%" y="485" width="0.0264%" height="15" fill="rgb(249,39,40)" fg:x="618622" fg:w="634"/><text x="25.9873%" y="495.50"></text></g><g><title>kmem_cache_free (988 samples, 0.04%)</title><rect x="25.7637%" y="485" width="0.0411%" height="15" fill="rgb(207,72,44)" fg:x="619256" fg:w="988"/><text x="26.0137%" y="495.50"></text></g><g><title>mutex_lock (438 samples, 0.02%)</title><rect x="25.8048%" y="485" width="0.0182%" height="15" fill="rgb(215,193,12)" fg:x="620244" fg:w="438"/><text x="26.0548%" y="495.50"></text></g><g><title>mutex_unlock (423 samples, 0.02%)</title><rect x="25.8230%" y="485" width="0.0176%" height="15" fill="rgb(248,41,39)" fg:x="620682" fg:w="423"/><text x="26.0730%" y="495.50"></text></g><g><title>_raw_spin_lock (638 samples, 0.03%)</title><rect x="25.9053%" y="453" width="0.0265%" height="15" fill="rgb(253,85,4)" fg:x="622660" fg:w="638"/><text x="26.1553%" y="463.50"></text></g><g><title>join_transaction (1,294 samples, 0.05%)</title><rect x="25.8782%" y="469" width="0.0538%" height="15" fill="rgb(243,70,31)" fg:x="622008" fg:w="1294"/><text x="26.1282%" y="479.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (207,118 samples, 8.62%)</title><rect x="17.3527%" y="501" width="8.6170%" height="15" fill="rgb(253,195,26)" fg:x="417090" fg:w="207118"/><text x="17.6027%" y="511.50">btrfs_commit..</text></g><g><title>start_transaction (3,101 samples, 0.13%)</title><rect x="25.8407%" y="485" width="0.1290%" height="15" fill="rgb(243,42,11)" fg:x="621107" fg:w="3101"/><text x="26.0907%" y="495.50"></text></g><g><title>kmem_cache_alloc (906 samples, 0.04%)</title><rect x="25.9320%" y="469" width="0.0377%" height="15" fill="rgb(239,66,17)" fg:x="623302" fg:w="906"/><text x="26.1820%" y="479.50"></text></g><g><title>btrfs_get_32 (592 samples, 0.02%)</title><rect x="26.0250%" y="469" width="0.0246%" height="15" fill="rgb(217,132,21)" fg:x="625538" fg:w="592"/><text x="26.2750%" y="479.50"></text></g><g><title>btrfs_get_token_32 (325 samples, 0.01%)</title><rect x="26.0497%" y="469" width="0.0135%" height="15" fill="rgb(252,202,21)" fg:x="626130" fg:w="325"/><text x="26.2997%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (670 samples, 0.03%)</title><rect x="26.0632%" y="469" width="0.0279%" height="15" fill="rgb(233,98,36)" fg:x="626455" fg:w="670"/><text x="26.3132%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (343 samples, 0.01%)</title><rect x="26.0768%" y="453" width="0.0143%" height="15" fill="rgb(216,153,54)" fg:x="626782" fg:w="343"/><text x="26.3268%" y="463.50"></text></g><g><title>leaf_space_used (684 samples, 0.03%)</title><rect x="26.1010%" y="469" width="0.0285%" height="15" fill="rgb(250,99,7)" fg:x="627363" fg:w="684"/><text x="26.3510%" y="479.50"></text></g><g><title>btrfs_get_32 (478 samples, 0.02%)</title><rect x="26.1095%" y="453" width="0.0199%" height="15" fill="rgb(207,56,50)" fg:x="627569" fg:w="478"/><text x="26.3595%" y="463.50"></text></g><g><title>memcpy_extent_buffer (487 samples, 0.02%)</title><rect x="26.1294%" y="469" width="0.0203%" height="15" fill="rgb(244,61,34)" fg:x="628047" fg:w="487"/><text x="26.3794%" y="479.50"></text></g><g><title>btrfs_del_items (4,280 samples, 0.18%)</title><rect x="25.9825%" y="485" width="0.1781%" height="15" fill="rgb(241,50,38)" fg:x="624516" fg:w="4280"/><text x="26.2325%" y="495.50"></text></g><g><title>memmove_extent_buffer (262 samples, 0.01%)</title><rect x="26.1497%" y="469" width="0.0109%" height="15" fill="rgb(212,166,30)" fg:x="628534" fg:w="262"/><text x="26.3997%" y="479.50"></text></g><g><title>__task_rq_lock (403 samples, 0.02%)</title><rect x="26.3537%" y="389" width="0.0168%" height="15" fill="rgb(249,127,32)" fg:x="633437" fg:w="403"/><text x="26.6037%" y="399.50"></text></g><g><title>_raw_spin_lock (392 samples, 0.02%)</title><rect x="26.3541%" y="373" width="0.0163%" height="15" fill="rgb(209,103,0)" fg:x="633448" fg:w="392"/><text x="26.6041%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (384 samples, 0.02%)</title><rect x="26.3545%" y="357" width="0.0160%" height="15" fill="rgb(238,209,51)" fg:x="633456" fg:w="384"/><text x="26.6045%" y="367.50"></text></g><g><title>select_task_rq_fair (885 samples, 0.04%)</title><rect x="26.3869%" y="389" width="0.0368%" height="15" fill="rgb(237,56,23)" fg:x="634236" fg:w="885"/><text x="26.6369%" y="399.50"></text></g><g><title>enqueue_entity (924 samples, 0.04%)</title><rect x="26.4384%" y="357" width="0.0384%" height="15" fill="rgb(215,153,46)" fg:x="635474" fg:w="924"/><text x="26.6884%" y="367.50"></text></g><g><title>update_load_avg (371 samples, 0.02%)</title><rect x="26.4614%" y="341" width="0.0154%" height="15" fill="rgb(224,49,31)" fg:x="636027" fg:w="371"/><text x="26.7114%" y="351.50"></text></g><g><title>enqueue_task_fair (1,157 samples, 0.05%)</title><rect x="26.4294%" y="373" width="0.0481%" height="15" fill="rgb(250,18,42)" fg:x="635258" fg:w="1157"/><text x="26.6794%" y="383.50"></text></g><g><title>ttwu_do_activate (2,353 samples, 0.10%)</title><rect x="26.4260%" y="389" width="0.0979%" height="15" fill="rgb(215,176,39)" fg:x="635176" fg:w="2353"/><text x="26.6760%" y="399.50"></text></g><g><title>psi_task_change (1,114 samples, 0.05%)</title><rect x="26.4776%" y="373" width="0.0463%" height="15" fill="rgb(223,77,29)" fg:x="636415" fg:w="1114"/><text x="26.7276%" y="383.50"></text></g><g><title>psi_group_change (975 samples, 0.04%)</title><rect x="26.4834%" y="357" width="0.0406%" height="15" fill="rgb(234,94,52)" fg:x="636554" fg:w="975"/><text x="26.7334%" y="367.50"></text></g><g><title>ttwu_do_wakeup (245 samples, 0.01%)</title><rect x="26.5239%" y="389" width="0.0102%" height="15" fill="rgb(220,154,50)" fg:x="637529" fg:w="245"/><text x="26.7739%" y="399.50"></text></g><g><title>__wake_up_common (9,094 samples, 0.38%)</title><rect x="26.1728%" y="437" width="0.3783%" height="15" fill="rgb(212,11,10)" fg:x="629089" fg:w="9094"/><text x="26.4228%" y="447.50"></text></g><g><title>autoremove_wake_function (8,924 samples, 0.37%)</title><rect x="26.1799%" y="421" width="0.3713%" height="15" fill="rgb(205,166,19)" fg:x="629259" fg:w="8924"/><text x="26.4299%" y="431.50"></text></g><g><title>try_to_wake_up (8,814 samples, 0.37%)</title><rect x="26.1844%" y="405" width="0.3667%" height="15" fill="rgb(244,198,16)" fg:x="629369" fg:w="8814"/><text x="26.4344%" y="415.50"></text></g><g><title>__wake_up_common_lock (9,382 samples, 0.39%)</title><rect x="26.1711%" y="453" width="0.3903%" height="15" fill="rgb(219,69,12)" fg:x="629048" fg:w="9382"/><text x="26.4211%" y="463.50"></text></g><g><title>btrfs_tree_unlock (811 samples, 0.03%)</title><rect x="26.5614%" y="453" width="0.0337%" height="15" fill="rgb(245,30,7)" fg:x="638431" fg:w="811"/><text x="26.8114%" y="463.50"></text></g><g><title>_raw_spin_lock (455 samples, 0.02%)</title><rect x="26.6391%" y="437" width="0.0189%" height="15" fill="rgb(218,221,48)" fg:x="640297" fg:w="455"/><text x="26.8891%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,496 samples, 0.06%)</title><rect x="26.5961%" y="453" width="0.0622%" height="15" fill="rgb(216,66,15)" fg:x="639263" fg:w="1496"/><text x="26.8461%" y="463.50"></text></g><g><title>btrfs_free_path (12,334 samples, 0.51%)</title><rect x="26.1606%" y="485" width="0.5131%" height="15" fill="rgb(226,122,50)" fg:x="628796" fg:w="12334"/><text x="26.4106%" y="495.50"></text></g><g><title>btrfs_release_path (12,308 samples, 0.51%)</title><rect x="26.1617%" y="469" width="0.5121%" height="15" fill="rgb(239,156,16)" fg:x="628822" fg:w="12308"/><text x="26.4117%" y="479.50"></text></g><g><title>release_extent_buffer (371 samples, 0.02%)</title><rect x="26.6583%" y="453" width="0.0154%" height="15" fill="rgb(224,27,38)" fg:x="640759" fg:w="371"/><text x="26.9083%" y="463.50"></text></g><g><title>_raw_read_lock (879 samples, 0.04%)</title><rect x="26.8317%" y="437" width="0.0366%" height="15" fill="rgb(224,39,27)" fg:x="644927" fg:w="879"/><text x="27.0817%" y="447.50"></text></g><g><title>__list_del_entry_valid (248 samples, 0.01%)</title><rect x="26.8739%" y="421" width="0.0103%" height="15" fill="rgb(215,92,29)" fg:x="645942" fg:w="248"/><text x="27.1239%" y="431.50"></text></g><g><title>finish_wait (5,723 samples, 0.24%)</title><rect x="26.8722%" y="437" width="0.2381%" height="15" fill="rgb(207,159,16)" fg:x="645899" fg:w="5723"/><text x="27.1222%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (5,432 samples, 0.23%)</title><rect x="26.8843%" y="421" width="0.2260%" height="15" fill="rgb(238,163,47)" fg:x="646190" fg:w="5432"/><text x="27.1343%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,223 samples, 0.22%)</title><rect x="26.8930%" y="405" width="0.2173%" height="15" fill="rgb(219,91,49)" fg:x="646399" fg:w="5223"/><text x="27.1430%" y="415.50"></text></g><g><title>__list_add_valid (369 samples, 0.02%)</title><rect x="27.1509%" y="421" width="0.0154%" height="15" fill="rgb(227,167,31)" fg:x="652598" fg:w="369"/><text x="27.4009%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (15,615 samples, 0.65%)</title><rect x="27.1662%" y="421" width="0.6497%" height="15" fill="rgb(234,80,54)" fg:x="652967" fg:w="15615"/><text x="27.4162%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (14,989 samples, 0.62%)</title><rect x="27.1923%" y="405" width="0.6236%" height="15" fill="rgb(212,114,2)" fg:x="653593" fg:w="14989"/><text x="27.4423%" y="415.50"></text></g><g><title>prepare_to_wait_event (17,196 samples, 0.72%)</title><rect x="27.1115%" y="437" width="0.7154%" height="15" fill="rgb(234,50,24)" fg:x="651653" fg:w="17196"/><text x="27.3615%" y="447.50"></text></g><g><title>_raw_spin_unlock_irqrestore (267 samples, 0.01%)</title><rect x="27.8159%" y="421" width="0.0111%" height="15" fill="rgb(221,68,8)" fg:x="668582" fg:w="267"/><text x="28.0659%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (10,899 samples, 0.45%)</title><rect x="27.8270%" y="437" width="0.4534%" height="15" fill="rgb(254,180,31)" fg:x="668849" fg:w="10899"/><text x="28.0770%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,744 samples, 0.32%)</title><rect x="27.9582%" y="421" width="0.3222%" height="15" fill="rgb(247,130,50)" fg:x="672004" fg:w="7744"/><text x="28.2082%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (480 samples, 0.02%)</title><rect x="28.3116%" y="405" width="0.0200%" height="15" fill="rgb(211,109,4)" fg:x="680498" fg:w="480"/><text x="28.5616%" y="415.50"></text></g><g><title>update_curr (833 samples, 0.03%)</title><rect x="28.3786%" y="373" width="0.0347%" height="15" fill="rgb(238,50,21)" fg:x="682107" fg:w="833"/><text x="28.6286%" y="383.50"></text></g><g><title>__update_load_avg_se (242 samples, 0.01%)</title><rect x="28.4312%" y="357" width="0.0101%" height="15" fill="rgb(225,57,45)" fg:x="683372" fg:w="242"/><text x="28.6812%" y="367.50"></text></g><g><title>dequeue_entity (2,213 samples, 0.09%)</title><rect x="28.3501%" y="389" width="0.0921%" height="15" fill="rgb(209,196,50)" fg:x="681423" fg:w="2213"/><text x="28.6001%" y="399.50"></text></g><g><title>update_load_avg (696 samples, 0.03%)</title><rect x="28.4132%" y="373" width="0.0290%" height="15" fill="rgb(242,140,13)" fg:x="682940" fg:w="696"/><text x="28.6632%" y="383.50"></text></g><g><title>dequeue_task_fair (2,734 samples, 0.11%)</title><rect x="28.3363%" y="405" width="0.1137%" height="15" fill="rgb(217,111,7)" fg:x="681091" fg:w="2734"/><text x="28.5863%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,786 samples, 0.20%)</title><rect x="28.4704%" y="389" width="0.1991%" height="15" fill="rgb(253,193,51)" fg:x="684314" fg:w="4786"/><text x="28.7204%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,673 samples, 0.19%)</title><rect x="28.4751%" y="373" width="0.1944%" height="15" fill="rgb(252,70,29)" fg:x="684427" fg:w="4673"/><text x="28.7251%" y="383.50"></text></g><g><title>native_write_msr (4,619 samples, 0.19%)</title><rect x="28.4773%" y="357" width="0.1922%" height="15" fill="rgb(232,127,12)" fg:x="684481" fg:w="4619"/><text x="28.7273%" y="367.50"></text></g><g><title>finish_task_switch (5,489 samples, 0.23%)</title><rect x="28.4500%" y="405" width="0.2284%" height="15" fill="rgb(211,180,21)" fg:x="683825" fg:w="5489"/><text x="28.7000%" y="415.50"></text></g><g><title>pick_next_task_fair (445 samples, 0.02%)</title><rect x="28.6786%" y="405" width="0.0185%" height="15" fill="rgb(229,72,13)" fg:x="689319" fg:w="445"/><text x="28.9286%" y="415.50"></text></g><g><title>__update_idle_core (378 samples, 0.02%)</title><rect x="28.7003%" y="389" width="0.0157%" height="15" fill="rgb(240,211,49)" fg:x="689840" fg:w="378"/><text x="28.9503%" y="399.50"></text></g><g><title>pick_next_task_idle (455 samples, 0.02%)</title><rect x="28.6971%" y="405" width="0.0189%" height="15" fill="rgb(219,149,40)" fg:x="689764" fg:w="455"/><text x="28.9471%" y="415.50"></text></g><g><title>psi_task_change (1,994 samples, 0.08%)</title><rect x="28.7161%" y="405" width="0.0830%" height="15" fill="rgb(210,127,46)" fg:x="690219" fg:w="1994"/><text x="28.9661%" y="415.50"></text></g><g><title>psi_group_change (1,702 samples, 0.07%)</title><rect x="28.7282%" y="389" width="0.0708%" height="15" fill="rgb(220,106,7)" fg:x="690511" fg:w="1702"/><text x="28.9782%" y="399.50"></text></g><g><title>record_times (362 samples, 0.02%)</title><rect x="28.7839%" y="373" width="0.0151%" height="15" fill="rgb(249,31,22)" fg:x="691851" fg:w="362"/><text x="29.0339%" y="383.50"></text></g><g><title>psi_task_switch (262 samples, 0.01%)</title><rect x="28.7990%" y="405" width="0.0109%" height="15" fill="rgb(253,1,49)" fg:x="692213" fg:w="262"/><text x="29.0490%" y="415.50"></text></g><g><title>__schedule (13,069 samples, 0.54%)</title><rect x="28.2849%" y="421" width="0.5437%" height="15" fill="rgb(227,144,33)" fg:x="679857" fg:w="13069"/><text x="28.5349%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (48,930 samples, 2.04%)</title><rect x="26.7930%" y="453" width="2.0357%" height="15" fill="rgb(249,163,44)" fg:x="643997" fg:w="48930"/><text x="27.0430%" y="463.50">_..</text></g><g><title>schedule (13,179 samples, 0.55%)</title><rect x="28.2804%" y="437" width="0.5483%" height="15" fill="rgb(234,15,39)" fg:x="679748" fg:w="13179"/><text x="28.5304%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (50,149 samples, 2.09%)</title><rect x="26.7832%" y="469" width="2.0864%" height="15" fill="rgb(207,66,16)" fg:x="643761" fg:w="50149"/><text x="27.0332%" y="479.50">_..</text></g><g><title>btrfs_root_node (982 samples, 0.04%)</title><rect x="28.8288%" y="453" width="0.0409%" height="15" fill="rgb(233,112,24)" fg:x="692928" fg:w="982"/><text x="29.0788%" y="463.50"></text></g><g><title>prepare_to_wait_event (454 samples, 0.02%)</title><rect x="28.8868%" y="453" width="0.0189%" height="15" fill="rgb(230,90,22)" fg:x="694324" fg:w="454"/><text x="29.1368%" y="463.50"></text></g><g><title>update_curr (322 samples, 0.01%)</title><rect x="28.9448%" y="389" width="0.0134%" height="15" fill="rgb(229,61,13)" fg:x="695718" fg:w="322"/><text x="29.1948%" y="399.50"></text></g><g><title>dequeue_entity (901 samples, 0.04%)</title><rect x="28.9327%" y="405" width="0.0375%" height="15" fill="rgb(225,57,24)" fg:x="695427" fg:w="901"/><text x="29.1827%" y="415.50"></text></g><g><title>update_load_avg (288 samples, 0.01%)</title><rect x="28.9582%" y="389" width="0.0120%" height="15" fill="rgb(208,169,48)" fg:x="696040" fg:w="288"/><text x="29.2082%" y="399.50"></text></g><g><title>dequeue_task_fair (1,066 samples, 0.04%)</title><rect x="28.9286%" y="421" width="0.0444%" height="15" fill="rgb(244,218,51)" fg:x="695327" fg:w="1066"/><text x="29.1786%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (1,999 samples, 0.08%)</title><rect x="28.9819%" y="405" width="0.0832%" height="15" fill="rgb(214,148,10)" fg:x="696610" fg:w="1999"/><text x="29.2319%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,966 samples, 0.08%)</title><rect x="28.9833%" y="389" width="0.0818%" height="15" fill="rgb(225,174,27)" fg:x="696643" fg:w="1966"/><text x="29.2333%" y="399.50"></text></g><g><title>native_write_msr (1,948 samples, 0.08%)</title><rect x="28.9841%" y="373" width="0.0810%" height="15" fill="rgb(230,96,26)" fg:x="696661" fg:w="1948"/><text x="29.2341%" y="383.50"></text></g><g><title>finish_task_switch (2,292 samples, 0.10%)</title><rect x="28.9729%" y="421" width="0.0954%" height="15" fill="rgb(232,10,30)" fg:x="696393" fg:w="2292"/><text x="29.2229%" y="431.50"></text></g><g><title>psi_task_change (822 samples, 0.03%)</title><rect x="29.0834%" y="421" width="0.0342%" height="15" fill="rgb(222,8,50)" fg:x="699048" fg:w="822"/><text x="29.3334%" y="431.50"></text></g><g><title>psi_group_change (685 samples, 0.03%)</title><rect x="29.0891%" y="405" width="0.0285%" height="15" fill="rgb(213,81,27)" fg:x="699185" fg:w="685"/><text x="29.3391%" y="415.50"></text></g><g><title>__schedule (5,302 samples, 0.22%)</title><rect x="28.9077%" y="437" width="0.2206%" height="15" fill="rgb(245,50,10)" fg:x="694826" fg:w="5302"/><text x="29.1577%" y="447.50"></text></g><g><title>__btrfs_tree_lock (6,219 samples, 0.26%)</title><rect x="28.8696%" y="469" width="0.2587%" height="15" fill="rgb(216,100,18)" fg:x="693910" fg:w="6219"/><text x="29.1196%" y="479.50"></text></g><g><title>schedule (5,350 samples, 0.22%)</title><rect x="28.9058%" y="453" width="0.2226%" height="15" fill="rgb(236,147,54)" fg:x="694779" fg:w="5350"/><text x="29.1558%" y="463.50"></text></g><g><title>_cond_resched (268 samples, 0.01%)</title><rect x="29.1904%" y="437" width="0.0111%" height="15" fill="rgb(205,143,26)" fg:x="701620" fg:w="268"/><text x="29.4404%" y="447.50"></text></g><g><title>_raw_write_lock (736 samples, 0.03%)</title><rect x="29.2046%" y="437" width="0.0306%" height="15" fill="rgb(236,26,9)" fg:x="701962" fg:w="736"/><text x="29.4546%" y="447.50"></text></g><g><title>finish_wait (4,615 samples, 0.19%)</title><rect x="29.2354%" y="437" width="0.1920%" height="15" fill="rgb(221,165,53)" fg:x="702703" fg:w="4615"/><text x="29.4854%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,359 samples, 0.18%)</title><rect x="29.2461%" y="421" width="0.1814%" height="15" fill="rgb(214,110,17)" fg:x="702959" fg:w="4359"/><text x="29.4961%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,094 samples, 0.17%)</title><rect x="29.2571%" y="405" width="0.1703%" height="15" fill="rgb(237,197,12)" fg:x="703224" fg:w="4094"/><text x="29.5071%" y="415.50"></text></g><g><title>__list_add_valid (337 samples, 0.01%)</title><rect x="29.4727%" y="421" width="0.0140%" height="15" fill="rgb(205,84,17)" fg:x="708405" fg:w="337"/><text x="29.7227%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (11,505 samples, 0.48%)</title><rect x="29.4867%" y="421" width="0.4787%" height="15" fill="rgb(237,18,45)" fg:x="708742" fg:w="11505"/><text x="29.7367%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,612 samples, 0.44%)</title><rect x="29.5238%" y="405" width="0.4415%" height="15" fill="rgb(221,87,14)" fg:x="709635" fg:w="10612"/><text x="29.7738%" y="415.50"></text></g><g><title>prepare_to_wait_event (13,177 samples, 0.55%)</title><rect x="29.4292%" y="437" width="0.5482%" height="15" fill="rgb(238,186,15)" fg:x="707361" fg:w="13177"/><text x="29.6792%" y="447.50"></text></g><g><title>_raw_spin_unlock_irqrestore (291 samples, 0.01%)</title><rect x="29.9653%" y="421" width="0.0121%" height="15" fill="rgb(208,115,11)" fg:x="720247" fg:w="291"/><text x="30.2153%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (19,015 samples, 0.79%)</title><rect x="29.9775%" y="437" width="0.7911%" height="15" fill="rgb(254,175,0)" fg:x="720538" fg:w="19015"/><text x="30.2275%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,351 samples, 0.39%)</title><rect x="30.3795%" y="421" width="0.3890%" height="15" fill="rgb(227,24,42)" fg:x="730202" fg:w="9351"/><text x="30.6295%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (488 samples, 0.02%)</title><rect x="30.8100%" y="405" width="0.0203%" height="15" fill="rgb(223,211,37)" fg:x="740548" fg:w="488"/><text x="31.0600%" y="415.50"></text></g><g><title>update_cfs_group (275 samples, 0.01%)</title><rect x="30.8755%" y="373" width="0.0114%" height="15" fill="rgb(235,49,27)" fg:x="742124" fg:w="275"/><text x="31.1255%" y="383.50"></text></g><g><title>update_curr (942 samples, 0.04%)</title><rect x="30.8870%" y="373" width="0.0392%" height="15" fill="rgb(254,97,51)" fg:x="742399" fg:w="942"/><text x="31.1370%" y="383.50"></text></g><g><title>__update_load_avg_se (392 samples, 0.02%)</title><rect x="30.9492%" y="357" width="0.0163%" height="15" fill="rgb(249,51,40)" fg:x="743895" fg:w="392"/><text x="31.1992%" y="367.50"></text></g><g><title>dequeue_entity (2,789 samples, 0.12%)</title><rect x="30.8503%" y="389" width="0.1160%" height="15" fill="rgb(210,128,45)" fg:x="741518" fg:w="2789"/><text x="31.1003%" y="399.50"></text></g><g><title>update_load_avg (966 samples, 0.04%)</title><rect x="30.9262%" y="373" width="0.0402%" height="15" fill="rgb(224,137,50)" fg:x="743341" fg:w="966"/><text x="31.1762%" y="383.50"></text></g><g><title>dequeue_task_fair (3,312 samples, 0.14%)</title><rect x="30.8380%" y="405" width="0.1378%" height="15" fill="rgb(242,15,9)" fg:x="741222" fg:w="3312"/><text x="31.0880%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,241 samples, 0.18%)</title><rect x="31.0022%" y="389" width="0.1764%" height="15" fill="rgb(233,187,41)" fg:x="745169" fg:w="4241"/><text x="31.2522%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,119 samples, 0.17%)</title><rect x="31.0073%" y="373" width="0.1714%" height="15" fill="rgb(227,2,29)" fg:x="745291" fg:w="4119"/><text x="31.2573%" y="383.50"></text></g><g><title>native_write_msr (4,067 samples, 0.17%)</title><rect x="31.0094%" y="357" width="0.1692%" height="15" fill="rgb(222,70,3)" fg:x="745343" fg:w="4067"/><text x="31.2594%" y="367.50"></text></g><g><title>finish_task_switch (5,120 samples, 0.21%)</title><rect x="30.9758%" y="405" width="0.2130%" height="15" fill="rgb(213,11,42)" fg:x="744534" fg:w="5120"/><text x="31.2258%" y="415.50"></text></g><g><title>newidle_balance (331 samples, 0.01%)</title><rect x="31.1965%" y="389" width="0.0138%" height="15" fill="rgb(225,150,9)" fg:x="749839" fg:w="331"/><text x="31.4465%" y="399.50"></text></g><g><title>pick_next_task_fair (657 samples, 0.03%)</title><rect x="31.1890%" y="405" width="0.0273%" height="15" fill="rgb(230,162,45)" fg:x="749658" fg:w="657"/><text x="31.4390%" y="415.50"></text></g><g><title>__update_idle_core (507 samples, 0.02%)</title><rect x="31.2194%" y="389" width="0.0211%" height="15" fill="rgb(222,14,52)" fg:x="750390" fg:w="507"/><text x="31.4694%" y="399.50"></text></g><g><title>pick_next_task_idle (585 samples, 0.02%)</title><rect x="31.2163%" y="405" width="0.0243%" height="15" fill="rgb(254,198,14)" fg:x="750315" fg:w="585"/><text x="31.4663%" y="415.50"></text></g><g><title>psi_task_change (2,527 samples, 0.11%)</title><rect x="31.2406%" y="405" width="0.1051%" height="15" fill="rgb(220,217,30)" fg:x="750900" fg:w="2527"/><text x="31.4906%" y="415.50"></text></g><g><title>psi_group_change (2,163 samples, 0.09%)</title><rect x="31.2558%" y="389" width="0.0900%" height="15" fill="rgb(215,146,41)" fg:x="751264" fg:w="2163"/><text x="31.5058%" y="399.50"></text></g><g><title>record_times (585 samples, 0.02%)</title><rect x="31.3214%" y="373" width="0.0243%" height="15" fill="rgb(217,27,36)" fg:x="752842" fg:w="585"/><text x="31.5714%" y="383.50"></text></g><g><title>sched_clock_cpu (389 samples, 0.02%)</title><rect x="31.3296%" y="357" width="0.0162%" height="15" fill="rgb(219,218,39)" fg:x="753038" fg:w="389"/><text x="31.5796%" y="367.50"></text></g><g><title>sched_clock (335 samples, 0.01%)</title><rect x="31.3318%" y="341" width="0.0139%" height="15" fill="rgb(219,4,42)" fg:x="753092" fg:w="335"/><text x="31.5818%" y="351.50"></text></g><g><title>native_sched_clock (316 samples, 0.01%)</title><rect x="31.3326%" y="325" width="0.0131%" height="15" fill="rgb(249,119,36)" fg:x="753111" fg:w="316"/><text x="31.5826%" y="335.50"></text></g><g><title>psi_task_switch (265 samples, 0.01%)</title><rect x="31.3458%" y="405" width="0.0110%" height="15" fill="rgb(209,23,33)" fg:x="753427" fg:w="265"/><text x="31.5958%" y="415.50"></text></g><g><title>__schedule (14,405 samples, 0.60%)</title><rect x="30.7780%" y="421" width="0.5993%" height="15" fill="rgb(211,10,0)" fg:x="739779" fg:w="14405"/><text x="31.0280%" y="431.50"></text></g><g><title>update_rq_clock (269 samples, 0.01%)</title><rect x="31.3661%" y="405" width="0.0112%" height="15" fill="rgb(208,99,37)" fg:x="753915" fg:w="269"/><text x="31.6161%" y="415.50"></text></g><g><title>__btrfs_tree_lock (53,820 samples, 2.24%)</title><rect x="29.1382%" y="453" width="2.2391%" height="15" fill="rgb(213,132,31)" fg:x="700365" fg:w="53820"/><text x="29.3882%" y="463.50">_..</text></g><g><title>schedule (14,632 samples, 0.61%)</title><rect x="30.7686%" y="437" width="0.6088%" height="15" fill="rgb(243,129,40)" fg:x="739553" fg:w="14632"/><text x="31.0186%" y="447.50"></text></g><g><title>btrfs_lock_root_node (54,398 samples, 2.26%)</title><rect x="29.1358%" y="469" width="2.2632%" height="15" fill="rgb(210,66,33)" fg:x="700309" fg:w="54398"/><text x="29.3858%" y="479.50">b..</text></g><g><title>btrfs_root_node (521 samples, 0.02%)</title><rect x="31.3774%" y="453" width="0.0217%" height="15" fill="rgb(209,189,4)" fg:x="754186" fg:w="521"/><text x="31.6274%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (990 samples, 0.04%)</title><rect x="31.3990%" y="469" width="0.0412%" height="15" fill="rgb(214,107,37)" fg:x="754707" fg:w="990"/><text x="31.6490%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (376 samples, 0.02%)</title><rect x="31.4246%" y="453" width="0.0156%" height="15" fill="rgb(245,88,54)" fg:x="755321" fg:w="376"/><text x="31.6746%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (589 samples, 0.02%)</title><rect x="31.4404%" y="469" width="0.0245%" height="15" fill="rgb(205,146,20)" fg:x="755702" fg:w="589"/><text x="31.6904%" y="479.50"></text></g><g><title>_raw_write_lock (588 samples, 0.02%)</title><rect x="31.4740%" y="453" width="0.0245%" height="15" fill="rgb(220,161,25)" fg:x="756510" fg:w="588"/><text x="31.7240%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (4,126 samples, 0.17%)</title><rect x="31.4649%" y="469" width="0.1717%" height="15" fill="rgb(215,152,15)" fg:x="756291" fg:w="4126"/><text x="31.7149%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (3,318 samples, 0.14%)</title><rect x="31.4985%" y="453" width="0.1380%" height="15" fill="rgb(233,192,44)" fg:x="757099" fg:w="3318"/><text x="31.7485%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (570 samples, 0.02%)</title><rect x="31.6370%" y="469" width="0.0237%" height="15" fill="rgb(240,170,46)" fg:x="760426" fg:w="570"/><text x="31.8870%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (4,282 samples, 0.18%)</title><rect x="31.6607%" y="469" width="0.1781%" height="15" fill="rgb(207,104,33)" fg:x="760996" fg:w="4282"/><text x="31.9107%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (910 samples, 0.04%)</title><rect x="31.8655%" y="453" width="0.0379%" height="15" fill="rgb(219,21,39)" fg:x="765920" fg:w="910"/><text x="32.1155%" y="463.50"></text></g><g><title>verify_parent_transid (730 samples, 0.03%)</title><rect x="31.8730%" y="437" width="0.0304%" height="15" fill="rgb(214,133,29)" fg:x="766100" fg:w="730"/><text x="32.1230%" y="447.50"></text></g><g><title>btrfs_get_64 (855 samples, 0.04%)</title><rect x="31.9034%" y="453" width="0.0356%" height="15" fill="rgb(226,93,6)" fg:x="766830" fg:w="855"/><text x="32.1534%" y="463.50"></text></g><g><title>btrfs_verify_level_key (263 samples, 0.01%)</title><rect x="31.9428%" y="453" width="0.0109%" height="15" fill="rgb(252,222,34)" fg:x="767777" fg:w="263"/><text x="32.1928%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,331 samples, 0.10%)</title><rect x="32.0415%" y="437" width="0.0970%" height="15" fill="rgb(252,92,48)" fg:x="770149" fg:w="2331"/><text x="32.2915%" y="447.50"></text></g><g><title>mark_page_accessed (866 samples, 0.04%)</title><rect x="32.1521%" y="421" width="0.0360%" height="15" fill="rgb(245,223,24)" fg:x="772808" fg:w="866"/><text x="32.4021%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,181 samples, 0.05%)</title><rect x="32.1391%" y="437" width="0.0491%" height="15" fill="rgb(205,176,3)" fg:x="772496" fg:w="1181"/><text x="32.3891%" y="447.50"></text></g><g><title>find_extent_buffer (5,674 samples, 0.24%)</title><rect x="31.9537%" y="453" width="0.2361%" height="15" fill="rgb(235,151,15)" fg:x="768040" fg:w="5674"/><text x="32.2037%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (9,376 samples, 0.39%)</title><rect x="31.8388%" y="469" width="0.3901%" height="15" fill="rgb(237,209,11)" fg:x="765278" fg:w="9376"/><text x="32.0888%" y="479.50"></text></g><g><title>read_extent_buffer (940 samples, 0.04%)</title><rect x="32.1898%" y="453" width="0.0391%" height="15" fill="rgb(243,227,24)" fg:x="773714" fg:w="940"/><text x="32.4398%" y="463.50"></text></g><g><title>__list_del_entry_valid (331 samples, 0.01%)</title><rect x="32.2798%" y="405" width="0.0138%" height="15" fill="rgb(239,193,16)" fg:x="775877" fg:w="331"/><text x="32.5298%" y="415.50"></text></g><g><title>_raw_spin_lock (514 samples, 0.02%)</title><rect x="32.3548%" y="389" width="0.0214%" height="15" fill="rgb(231,27,9)" fg:x="777679" fg:w="514"/><text x="32.6048%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (317 samples, 0.01%)</title><rect x="32.3630%" y="373" width="0.0132%" height="15" fill="rgb(219,169,10)" fg:x="777876" fg:w="317"/><text x="32.6130%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (532 samples, 0.02%)</title><rect x="32.3761%" y="389" width="0.0221%" height="15" fill="rgb(244,229,43)" fg:x="778193" fg:w="532"/><text x="32.6261%" y="399.50"></text></g><g><title>available_idle_cpu (533 samples, 0.02%)</title><rect x="32.4415%" y="373" width="0.0222%" height="15" fill="rgb(254,38,20)" fg:x="779764" fg:w="533"/><text x="32.6915%" y="383.50"></text></g><g><title>select_task_rq_fair (2,379 samples, 0.10%)</title><rect x="32.4013%" y="389" width="0.0990%" height="15" fill="rgb(250,47,30)" fg:x="778797" fg:w="2379"/><text x="32.6513%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (536 samples, 0.02%)</title><rect x="32.4779%" y="373" width="0.0223%" height="15" fill="rgb(224,124,36)" fg:x="780640" fg:w="536"/><text x="32.7279%" y="383.50"></text></g><g><title>update_curr (293 samples, 0.01%)</title><rect x="32.5885%" y="341" width="0.0122%" height="15" fill="rgb(246,68,51)" fg:x="783298" fg:w="293"/><text x="32.8385%" y="351.50"></text></g><g><title>enqueue_entity (2,329 samples, 0.10%)</title><rect x="32.5370%" y="357" width="0.0969%" height="15" fill="rgb(253,43,49)" fg:x="782059" fg:w="2329"/><text x="32.7870%" y="367.50"></text></g><g><title>update_load_avg (797 samples, 0.03%)</title><rect x="32.6007%" y="341" width="0.0332%" height="15" fill="rgb(219,54,36)" fg:x="783591" fg:w="797"/><text x="32.8507%" y="351.50"></text></g><g><title>enqueue_task_fair (2,965 samples, 0.12%)</title><rect x="32.5191%" y="373" width="0.1234%" height="15" fill="rgb(227,133,34)" fg:x="781630" fg:w="2965"/><text x="32.7691%" y="383.50"></text></g><g><title>ttwu_do_activate (5,925 samples, 0.25%)</title><rect x="32.5096%" y="389" width="0.2465%" height="15" fill="rgb(247,227,15)" fg:x="781400" fg:w="5925"/><text x="32.7596%" y="399.50"></text></g><g><title>psi_task_change (2,726 samples, 0.11%)</title><rect x="32.6427%" y="373" width="0.1134%" height="15" fill="rgb(229,96,14)" fg:x="784599" fg:w="2726"/><text x="32.8927%" y="383.50"></text></g><g><title>psi_group_change (2,454 samples, 0.10%)</title><rect x="32.6540%" y="357" width="0.1021%" height="15" fill="rgb(220,79,17)" fg:x="784871" fg:w="2454"/><text x="32.9040%" y="367.50"></text></g><g><title>record_times (400 samples, 0.02%)</title><rect x="32.7394%" y="341" width="0.0166%" height="15" fill="rgb(205,131,53)" fg:x="786925" fg:w="400"/><text x="32.9894%" y="351.50"></text></g><g><title>sched_clock_cpu (273 samples, 0.01%)</title><rect x="32.7447%" y="325" width="0.0114%" height="15" fill="rgb(209,50,29)" fg:x="787052" fg:w="273"/><text x="32.9947%" y="335.50"></text></g><g><title>ttwu_do_wakeup (527 samples, 0.02%)</title><rect x="32.7561%" y="389" width="0.0219%" height="15" fill="rgb(245,86,46)" fg:x="787325" fg:w="527"/><text x="33.0061%" y="399.50"></text></g><g><title>check_preempt_curr (464 samples, 0.02%)</title><rect x="32.7587%" y="373" width="0.0193%" height="15" fill="rgb(235,66,46)" fg:x="787388" fg:w="464"/><text x="33.0087%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (299 samples, 0.01%)</title><rect x="32.7780%" y="389" width="0.0124%" height="15" fill="rgb(232,148,31)" fg:x="787852" fg:w="299"/><text x="33.0280%" y="399.50"></text></g><g><title>__wake_up_common (13,001 samples, 0.54%)</title><rect x="32.2710%" y="437" width="0.5409%" height="15" fill="rgb(217,149,8)" fg:x="775665" fg:w="13001"/><text x="32.5210%" y="447.50"></text></g><g><title>autoremove_wake_function (12,823 samples, 0.53%)</title><rect x="32.2784%" y="421" width="0.5335%" height="15" fill="rgb(209,183,11)" fg:x="775843" fg:w="12823"/><text x="32.5284%" y="431.50"></text></g><g><title>try_to_wake_up (12,450 samples, 0.52%)</title><rect x="32.2939%" y="405" width="0.5180%" height="15" fill="rgb(208,55,20)" fg:x="776216" fg:w="12450"/><text x="32.5439%" y="415.50"></text></g><g><title>update_rq_clock (515 samples, 0.02%)</title><rect x="32.7904%" y="389" width="0.0214%" height="15" fill="rgb(218,39,14)" fg:x="788151" fg:w="515"/><text x="33.0404%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (403 samples, 0.02%)</title><rect x="32.8119%" y="437" width="0.0168%" height="15" fill="rgb(216,169,33)" fg:x="788666" fg:w="403"/><text x="33.0619%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (350 samples, 0.01%)</title><rect x="32.8141%" y="421" width="0.0146%" height="15" fill="rgb(233,80,24)" fg:x="788719" fg:w="350"/><text x="33.0641%" y="431.50"></text></g><g><title>__wake_up_common_lock (13,541 samples, 0.56%)</title><rect x="32.2698%" y="453" width="0.5634%" height="15" fill="rgb(213,179,31)" fg:x="775637" fg:w="13541"/><text x="32.5198%" y="463.50"></text></g><g><title>btrfs_search_slot (148,469 samples, 6.18%)</title><rect x="26.6737%" y="485" width="6.1769%" height="15" fill="rgb(209,19,5)" fg:x="641130" fg:w="148469"/><text x="26.9237%" y="495.50">btrfs_se..</text></g><g><title>unlock_up (14,884 samples, 0.62%)</title><rect x="32.2314%" y="469" width="0.6192%" height="15" fill="rgb(219,18,35)" fg:x="774715" fg:w="14884"/><text x="32.4814%" y="479.50"></text></g><g><title>btrfs_tree_unlock (407 samples, 0.02%)</title><rect x="32.8337%" y="453" width="0.0169%" height="15" fill="rgb(209,169,16)" fg:x="789192" fg:w="407"/><text x="33.0837%" y="463.50"></text></g><g><title>kmem_cache_alloc (830 samples, 0.03%)</title><rect x="32.8507%" y="485" width="0.0345%" height="15" fill="rgb(245,90,51)" fg:x="789599" fg:w="830"/><text x="33.1007%" y="495.50"></text></g><g><title>btrfs_del_orphan_item (166,966 samples, 6.95%)</title><rect x="25.9697%" y="501" width="6.9465%" height="15" fill="rgb(220,99,45)" fg:x="624208" fg:w="166966"/><text x="26.2197%" y="511.50">btrfs_del..</text></g><g><title>kmem_cache_free (745 samples, 0.03%)</title><rect x="32.8852%" y="485" width="0.0310%" height="15" fill="rgb(249,89,25)" fg:x="790429" fg:w="745"/><text x="33.1352%" y="495.50"></text></g><g><title>_raw_spin_lock (705 samples, 0.03%)</title><rect x="32.9416%" y="469" width="0.0293%" height="15" fill="rgb(239,193,0)" fg:x="791785" fg:w="705"/><text x="33.1916%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (267 samples, 0.01%)</title><rect x="32.9599%" y="453" width="0.0111%" height="15" fill="rgb(231,126,1)" fg:x="792223" fg:w="267"/><text x="33.2099%" y="463.50"></text></g><g><title>btrfs_free_block_rsv (1,209 samples, 0.05%)</title><rect x="32.9262%" y="501" width="0.0503%" height="15" fill="rgb(243,166,3)" fg:x="791413" fg:w="1209"/><text x="33.1762%" y="511.50"></text></g><g><title>btrfs_block_rsv_release (1,160 samples, 0.05%)</title><rect x="32.9282%" y="485" width="0.0483%" height="15" fill="rgb(223,22,34)" fg:x="791462" fg:w="1160"/><text x="33.1782%" y="495.50"></text></g><g><title>btrfs_free_io_failure_record (246 samples, 0.01%)</title><rect x="32.9765%" y="501" width="0.0102%" height="15" fill="rgb(251,52,51)" fg:x="792622" fg:w="246"/><text x="33.2265%" y="511.50"></text></g><g><title>_raw_spin_lock (375 samples, 0.02%)</title><rect x="33.1166%" y="469" width="0.0156%" height="15" fill="rgb(221,165,28)" fg:x="795991" fg:w="375"/><text x="33.3666%" y="479.50"></text></g><g><title>mutex_lock (291 samples, 0.01%)</title><rect x="33.1323%" y="469" width="0.0121%" height="15" fill="rgb(218,121,47)" fg:x="796367" fg:w="291"/><text x="33.3823%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,077 samples, 0.04%)</title><rect x="33.1077%" y="485" width="0.0448%" height="15" fill="rgb(209,120,9)" fg:x="795777" fg:w="1077"/><text x="33.3577%" y="495.50"></text></g><g><title>alloc_extent_state (1,020 samples, 0.04%)</title><rect x="33.1960%" y="469" width="0.0424%" height="15" fill="rgb(236,68,12)" fg:x="797898" fg:w="1020"/><text x="33.4460%" y="479.50"></text></g><g><title>kmem_cache_alloc (924 samples, 0.04%)</title><rect x="33.2000%" y="453" width="0.0384%" height="15" fill="rgb(225,194,26)" fg:x="797994" fg:w="924"/><text x="33.4500%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (272 samples, 0.01%)</title><rect x="33.2271%" y="437" width="0.0113%" height="15" fill="rgb(231,84,39)" fg:x="798646" fg:w="272"/><text x="33.4771%" y="447.50"></text></g><g><title>__wake_up_common (321 samples, 0.01%)</title><rect x="33.2719%" y="437" width="0.0134%" height="15" fill="rgb(210,11,45)" fg:x="799724" fg:w="321"/><text x="33.5219%" y="447.50"></text></g><g><title>__wake_up_common_lock (954 samples, 0.04%)</title><rect x="33.2608%" y="453" width="0.0397%" height="15" fill="rgb(224,54,52)" fg:x="799456" fg:w="954"/><text x="33.5108%" y="463.50"></text></g><g><title>btrfs_clear_delalloc_extent (487 samples, 0.02%)</title><rect x="33.3005%" y="453" width="0.0203%" height="15" fill="rgb(238,102,14)" fg:x="800411" fg:w="487"/><text x="33.5505%" y="463.50"></text></g><g><title>kmem_cache_free (756 samples, 0.03%)</title><rect x="33.3286%" y="453" width="0.0315%" height="15" fill="rgb(243,160,52)" fg:x="801086" fg:w="756"/><text x="33.5786%" y="463.50"></text></g><g><title>clear_state_bit (3,149 samples, 0.13%)</title><rect x="33.2388%" y="469" width="0.1310%" height="15" fill="rgb(216,114,19)" fg:x="798927" fg:w="3149"/><text x="33.4888%" y="479.50"></text></g><g><title>__clear_extent_bit (5,873 samples, 0.24%)</title><rect x="33.1525%" y="485" width="0.2443%" height="15" fill="rgb(244,166,37)" fg:x="796854" fg:w="5873"/><text x="33.4025%" y="495.50"></text></g><g><title>kmem_cache_free (487 samples, 0.02%)</title><rect x="33.3766%" y="469" width="0.0203%" height="15" fill="rgb(246,29,44)" fg:x="802240" fg:w="487"/><text x="33.6266%" y="479.50"></text></g><g><title>_find_next_bit.constprop.0 (1,137 samples, 0.05%)</title><rect x="33.5278%" y="405" width="0.0473%" height="15" fill="rgb(215,56,53)" fg:x="805875" fg:w="1137"/><text x="33.7778%" y="415.50"></text></g><g><title>steal_from_bitmap.part.0 (1,378 samples, 0.06%)</title><rect x="33.5212%" y="421" width="0.0573%" height="15" fill="rgb(217,60,2)" fg:x="805716" fg:w="1378"/><text x="33.7712%" y="431.50"></text></g><g><title>__btrfs_add_free_space (1,858 samples, 0.08%)</title><rect x="33.5125%" y="437" width="0.0773%" height="15" fill="rgb(207,26,24)" fg:x="805506" fg:w="1858"/><text x="33.7625%" y="447.50"></text></g><g><title>add_delayed_ref_head (281 samples, 0.01%)</title><rect x="33.5963%" y="421" width="0.0117%" height="15" fill="rgb(252,210,15)" fg:x="807521" fg:w="281"/><text x="33.8463%" y="431.50"></text></g><g><title>btrfs_add_delayed_tree_ref (575 samples, 0.02%)</title><rect x="33.5939%" y="437" width="0.0239%" height="15" fill="rgb(253,209,26)" fg:x="807464" fg:w="575"/><text x="33.8439%" y="447.50"></text></g><g><title>btrfs_free_tree_block (2,944 samples, 0.12%)</title><rect x="33.5116%" y="453" width="0.1225%" height="15" fill="rgb(238,170,14)" fg:x="805485" fg:w="2944"/><text x="33.7616%" y="463.50"></text></g><g><title>check_ref_cleanup (336 samples, 0.01%)</title><rect x="33.6201%" y="437" width="0.0140%" height="15" fill="rgb(216,178,15)" fg:x="808093" fg:w="336"/><text x="33.8701%" y="447.50"></text></g><g><title>__wake_up_common (326 samples, 0.01%)</title><rect x="33.6355%" y="421" width="0.0136%" height="15" fill="rgb(250,197,2)" fg:x="808464" fg:w="326"/><text x="33.8855%" y="431.50"></text></g><g><title>autoremove_wake_function (326 samples, 0.01%)</title><rect x="33.6355%" y="405" width="0.0136%" height="15" fill="rgb(212,70,42)" fg:x="808464" fg:w="326"/><text x="33.8855%" y="415.50"></text></g><g><title>try_to_wake_up (316 samples, 0.01%)</title><rect x="33.6360%" y="389" width="0.0131%" height="15" fill="rgb(227,213,9)" fg:x="808474" fg:w="316"/><text x="33.8860%" y="399.50"></text></g><g><title>__wake_up_common_lock (342 samples, 0.01%)</title><rect x="33.6353%" y="437" width="0.0142%" height="15" fill="rgb(245,99,25)" fg:x="808459" fg:w="342"/><text x="33.8853%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (372 samples, 0.02%)</title><rect x="33.6346%" y="453" width="0.0155%" height="15" fill="rgb(250,82,29)" fg:x="808442" fg:w="372"/><text x="33.8846%" y="463.50"></text></g><g><title>btrfs_del_leaf (3,545 samples, 0.15%)</title><rect x="33.5099%" y="469" width="0.1475%" height="15" fill="rgb(241,226,54)" fg:x="805444" fg:w="3545"/><text x="33.7599%" y="479.50"></text></g><g><title>btrfs_get_32 (694 samples, 0.03%)</title><rect x="33.6574%" y="469" width="0.0289%" height="15" fill="rgb(221,99,41)" fg:x="808989" fg:w="694"/><text x="33.9074%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,183 samples, 0.05%)</title><rect x="33.9648%" y="453" width="0.0492%" height="15" fill="rgb(213,90,21)" fg:x="816378" fg:w="1183"/><text x="34.2148%" y="463.50"></text></g><g><title>btrfs_get_token_32 (7,879 samples, 0.33%)</title><rect x="33.6863%" y="469" width="0.3278%" height="15" fill="rgb(205,208,24)" fg:x="809683" fg:w="7879"/><text x="33.9363%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (634 samples, 0.03%)</title><rect x="34.0141%" y="469" width="0.0264%" height="15" fill="rgb(246,31,12)" fg:x="817562" fg:w="634"/><text x="34.2641%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (268 samples, 0.01%)</title><rect x="34.0293%" y="453" width="0.0111%" height="15" fill="rgb(213,154,6)" fg:x="817928" fg:w="268"/><text x="34.2793%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (908 samples, 0.04%)</title><rect x="34.2584%" y="453" width="0.0378%" height="15" fill="rgb(222,163,29)" fg:x="823434" fg:w="908"/><text x="34.5084%" y="463.50"></text></g><g><title>btrfs_set_token_32 (6,103 samples, 0.25%)</title><rect x="34.0423%" y="469" width="0.2539%" height="15" fill="rgb(227,201,8)" fg:x="818240" fg:w="6103"/><text x="34.2923%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (244 samples, 0.01%)</title><rect x="34.3013%" y="453" width="0.0102%" height="15" fill="rgb(233,9,32)" fg:x="824465" fg:w="244"/><text x="34.5513%" y="463.50"></text></g><g><title>fixup_low_keys (643 samples, 0.03%)</title><rect x="34.2977%" y="469" width="0.0268%" height="15" fill="rgb(217,54,24)" fg:x="824380" fg:w="643"/><text x="34.5477%" y="479.50"></text></g><g><title>leaf_space_used (625 samples, 0.03%)</title><rect x="34.3253%" y="469" width="0.0260%" height="15" fill="rgb(235,192,0)" fg:x="825043" fg:w="625"/><text x="34.5753%" y="479.50"></text></g><g><title>btrfs_get_32 (474 samples, 0.02%)</title><rect x="34.3316%" y="453" width="0.0197%" height="15" fill="rgb(235,45,9)" fg:x="825194" fg:w="474"/><text x="34.5816%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,158 samples, 0.05%)</title><rect x="34.3513%" y="469" width="0.0482%" height="15" fill="rgb(246,42,40)" fg:x="825668" fg:w="1158"/><text x="34.6013%" y="479.50"></text></g><g><title>memmove (807 samples, 0.03%)</title><rect x="34.3659%" y="453" width="0.0336%" height="15" fill="rgb(248,111,24)" fg:x="826019" fg:w="807"/><text x="34.6159%" y="463.50"></text></g><g><title>copy_pages (1,077 samples, 0.04%)</title><rect x="34.4271%" y="453" width="0.0448%" height="15" fill="rgb(249,65,22)" fg:x="827489" fg:w="1077"/><text x="34.6771%" y="463.50"></text></g><g><title>memmove_extent_buffer (8,362 samples, 0.35%)</title><rect x="34.3995%" y="469" width="0.3479%" height="15" fill="rgb(238,111,51)" fg:x="826826" fg:w="8362"/><text x="34.6495%" y="479.50"></text></g><g><title>memmove (6,622 samples, 0.28%)</title><rect x="34.4719%" y="453" width="0.2755%" height="15" fill="rgb(250,118,22)" fg:x="828566" fg:w="6622"/><text x="34.7219%" y="463.50"></text></g><g><title>clear_extent_buffer_dirty (370 samples, 0.02%)</title><rect x="34.7709%" y="437" width="0.0154%" height="15" fill="rgb(234,84,26)" fg:x="835753" fg:w="370"/><text x="35.0209%" y="447.50"></text></g><g><title>__push_leaf_left (1,116 samples, 0.05%)</title><rect x="34.7497%" y="453" width="0.0464%" height="15" fill="rgb(243,172,12)" fg:x="835243" fg:w="1116"/><text x="34.9997%" y="463.50"></text></g><g><title>push_leaf_left (1,510 samples, 0.06%)</title><rect x="34.7474%" y="469" width="0.0628%" height="15" fill="rgb(236,150,49)" fg:x="835188" fg:w="1510"/><text x="34.9974%" y="479.50"></text></g><g><title>__push_leaf_right (545 samples, 0.02%)</title><rect x="34.8113%" y="453" width="0.0227%" height="15" fill="rgb(225,197,26)" fg:x="836725" fg:w="545"/><text x="35.0613%" y="463.50"></text></g><g><title>push_leaf_right (973 samples, 0.04%)</title><rect x="34.8102%" y="469" width="0.0405%" height="15" fill="rgb(214,17,42)" fg:x="836698" fg:w="973"/><text x="35.0602%" y="479.50"></text></g><g><title>btrfs_del_items (35,180 samples, 1.46%)</title><rect x="33.3987%" y="485" width="1.4636%" height="15" fill="rgb(224,165,40)" fg:x="802772" fg:w="35180"/><text x="33.6487%" y="495.50"></text></g><g><title>memset_erms (457 samples, 0.02%)</title><rect x="34.9775%" y="437" width="0.0190%" height="15" fill="rgb(246,100,4)" fg:x="840720" fg:w="457"/><text x="35.2275%" y="447.50"></text></g><g><title>alloc_extent_map (2,889 samples, 0.12%)</title><rect x="34.8964%" y="469" width="0.1202%" height="15" fill="rgb(222,103,0)" fg:x="838771" fg:w="2889"/><text x="35.1464%" y="479.50"></text></g><g><title>kmem_cache_alloc (2,229 samples, 0.09%)</title><rect x="34.9239%" y="453" width="0.0927%" height="15" fill="rgb(227,189,26)" fg:x="839431" fg:w="2229"/><text x="35.1739%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (483 samples, 0.02%)</title><rect x="34.9965%" y="437" width="0.0201%" height="15" fill="rgb(214,202,17)" fg:x="841177" fg:w="483"/><text x="35.2465%" y="447.50"></text></g><g><title>free_extent_map (403 samples, 0.02%)</title><rect x="35.0168%" y="469" width="0.0168%" height="15" fill="rgb(229,111,3)" fg:x="841664" fg:w="403"/><text x="35.2668%" y="479.50"></text></g><g><title>kmem_cache_free (1,322 samples, 0.06%)</title><rect x="35.0336%" y="469" width="0.0550%" height="15" fill="rgb(229,172,15)" fg:x="842067" fg:w="1322"/><text x="35.2836%" y="479.50"></text></g><g><title>btrfs_drop_extent_cache (5,536 samples, 0.23%)</title><rect x="34.8624%" y="485" width="0.2303%" height="15" fill="rgb(230,224,35)" fg:x="837952" fg:w="5536"/><text x="35.1124%" y="495.50"></text></g><g><title>_raw_spin_lock (401 samples, 0.02%)</title><rect x="35.2094%" y="389" width="0.0167%" height="15" fill="rgb(251,141,6)" fg:x="846293" fg:w="401"/><text x="35.4594%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (272 samples, 0.01%)</title><rect x="35.2148%" y="373" width="0.0113%" height="15" fill="rgb(225,208,6)" fg:x="846422" fg:w="272"/><text x="35.4648%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (326 samples, 0.01%)</title><rect x="35.2261%" y="389" width="0.0136%" height="15" fill="rgb(246,181,16)" fg:x="846694" fg:w="326"/><text x="35.4761%" y="399.50"></text></g><g><title>available_idle_cpu (337 samples, 0.01%)</title><rect x="35.2694%" y="373" width="0.0140%" height="15" fill="rgb(227,129,36)" fg:x="847736" fg:w="337"/><text x="35.5194%" y="383.50"></text></g><g><title>select_task_rq_fair (1,530 samples, 0.06%)</title><rect x="35.2416%" y="389" width="0.0637%" height="15" fill="rgb(248,117,24)" fg:x="847068" fg:w="1530"/><text x="35.4916%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (368 samples, 0.02%)</title><rect x="35.2900%" y="373" width="0.0153%" height="15" fill="rgb(214,185,35)" fg:x="848230" fg:w="368"/><text x="35.5400%" y="383.50"></text></g><g><title>enqueue_entity (1,493 samples, 0.06%)</title><rect x="35.3303%" y="357" width="0.0621%" height="15" fill="rgb(236,150,34)" fg:x="849200" fg:w="1493"/><text x="35.5803%" y="367.50"></text></g><g><title>update_load_avg (524 samples, 0.02%)</title><rect x="35.3707%" y="341" width="0.0218%" height="15" fill="rgb(243,228,27)" fg:x="850169" fg:w="524"/><text x="35.6207%" y="351.50"></text></g><g><title>enqueue_task_fair (1,903 samples, 0.08%)</title><rect x="35.3163%" y="373" width="0.0792%" height="15" fill="rgb(245,77,44)" fg:x="848863" fg:w="1903"/><text x="35.5663%" y="383.50"></text></g><g><title>ttwu_do_activate (4,048 samples, 0.17%)</title><rect x="35.3107%" y="389" width="0.1684%" height="15" fill="rgb(235,214,42)" fg:x="848728" fg:w="4048"/><text x="35.5607%" y="399.50"></text></g><g><title>psi_task_change (2,010 samples, 0.08%)</title><rect x="35.3955%" y="373" width="0.0836%" height="15" fill="rgb(221,74,3)" fg:x="850766" fg:w="2010"/><text x="35.6455%" y="383.50"></text></g><g><title>psi_group_change (1,777 samples, 0.07%)</title><rect x="35.4052%" y="357" width="0.0739%" height="15" fill="rgb(206,121,29)" fg:x="850999" fg:w="1777"/><text x="35.6552%" y="367.50"></text></g><g><title>record_times (264 samples, 0.01%)</title><rect x="35.4681%" y="341" width="0.0110%" height="15" fill="rgb(249,131,53)" fg:x="852512" fg:w="264"/><text x="35.7181%" y="351.50"></text></g><g><title>ttwu_do_wakeup (403 samples, 0.02%)</title><rect x="35.4791%" y="389" width="0.0168%" height="15" fill="rgb(236,170,29)" fg:x="852776" fg:w="403"/><text x="35.7291%" y="399.50"></text></g><g><title>check_preempt_curr (365 samples, 0.02%)</title><rect x="35.4807%" y="373" width="0.0152%" height="15" fill="rgb(247,96,15)" fg:x="852814" fg:w="365"/><text x="35.7307%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (433 samples, 0.02%)</title><rect x="35.4959%" y="389" width="0.0180%" height="15" fill="rgb(211,210,7)" fg:x="853179" fg:w="433"/><text x="35.7459%" y="399.50"></text></g><g><title>__wake_up_common (10,050 samples, 0.42%)</title><rect x="35.1107%" y="437" width="0.4181%" height="15" fill="rgb(240,88,50)" fg:x="843921" fg:w="10050"/><text x="35.3607%" y="447.50"></text></g><g><title>autoremove_wake_function (9,831 samples, 0.41%)</title><rect x="35.1198%" y="421" width="0.4090%" height="15" fill="rgb(209,229,26)" fg:x="844140" fg:w="9831"/><text x="35.3698%" y="431.50"></text></g><g><title>try_to_wake_up (9,607 samples, 0.40%)</title><rect x="35.1291%" y="405" width="0.3997%" height="15" fill="rgb(210,68,23)" fg:x="844364" fg:w="9607"/><text x="35.3791%" y="415.50"></text></g><g><title>update_rq_clock (359 samples, 0.01%)</title><rect x="35.5139%" y="389" width="0.0149%" height="15" fill="rgb(229,180,13)" fg:x="853612" fg:w="359"/><text x="35.7639%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (350 samples, 0.01%)</title><rect x="35.5288%" y="437" width="0.0146%" height="15" fill="rgb(236,53,44)" fg:x="853971" fg:w="350"/><text x="35.7788%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (269 samples, 0.01%)</title><rect x="35.5322%" y="421" width="0.0112%" height="15" fill="rgb(244,214,29)" fg:x="854052" fg:w="269"/><text x="35.7822%" y="431.50"></text></g><g><title>__wake_up_common_lock (10,529 samples, 0.44%)</title><rect x="35.1098%" y="453" width="0.4381%" height="15" fill="rgb(220,75,29)" fg:x="843898" fg:w="10529"/><text x="35.3598%" y="463.50"></text></g><g><title>btrfs_tree_unlock (693 samples, 0.03%)</title><rect x="35.5480%" y="453" width="0.0288%" height="15" fill="rgb(214,183,37)" fg:x="854432" fg:w="693"/><text x="35.7980%" y="463.50"></text></g><g><title>_raw_spin_lock (357 samples, 0.01%)</title><rect x="35.6168%" y="437" width="0.0149%" height="15" fill="rgb(239,117,29)" fg:x="856085" fg:w="357"/><text x="35.8668%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,293 samples, 0.05%)</title><rect x="35.5780%" y="453" width="0.0538%" height="15" fill="rgb(237,171,35)" fg:x="855152" fg:w="1293"/><text x="35.8280%" y="463.50"></text></g><g><title>btrfs_free_path (13,338 samples, 0.55%)</title><rect x="35.0927%" y="485" width="0.5549%" height="15" fill="rgb(229,178,53)" fg:x="843488" fg:w="13338"/><text x="35.3427%" y="495.50"></text></g><g><title>btrfs_release_path (13,300 samples, 0.55%)</title><rect x="35.0943%" y="469" width="0.5533%" height="15" fill="rgb(210,102,19)" fg:x="843526" fg:w="13300"/><text x="35.3443%" y="479.50"></text></g><g><title>release_extent_buffer (381 samples, 0.02%)</title><rect x="35.6318%" y="453" width="0.0159%" height="15" fill="rgb(235,127,22)" fg:x="856445" fg:w="381"/><text x="35.8818%" y="463.50"></text></g><g><title>btrfs_get_32 (249 samples, 0.01%)</title><rect x="35.6476%" y="485" width="0.0104%" height="15" fill="rgb(244,31,31)" fg:x="856826" fg:w="249"/><text x="35.8976%" y="495.50"></text></g><g><title>btrfs_get_8 (357 samples, 0.01%)</title><rect x="35.6669%" y="485" width="0.0149%" height="15" fill="rgb(231,43,21)" fg:x="857289" fg:w="357"/><text x="35.9169%" y="495.50"></text></g><g><title>_raw_spin_lock (412 samples, 0.02%)</title><rect x="35.7191%" y="437" width="0.0171%" height="15" fill="rgb(217,131,35)" fg:x="858545" fg:w="412"/><text x="35.9691%" y="447.50"></text></g><g><title>_cond_resched (270 samples, 0.01%)</title><rect x="35.7897%" y="389" width="0.0112%" height="15" fill="rgb(221,149,4)" fg:x="860241" fg:w="270"/><text x="36.0397%" y="399.50"></text></g><g><title>alloc_extent_state (1,576 samples, 0.07%)</title><rect x="35.7363%" y="437" width="0.0656%" height="15" fill="rgb(232,170,28)" fg:x="858957" fg:w="1576"/><text x="35.9863%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,350 samples, 0.06%)</title><rect x="35.7457%" y="421" width="0.0562%" height="15" fill="rgb(238,56,10)" fg:x="859183" fg:w="1350"/><text x="35.9957%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (521 samples, 0.02%)</title><rect x="35.7802%" y="405" width="0.0217%" height="15" fill="rgb(235,196,14)" fg:x="860012" fg:w="521"/><text x="36.0302%" y="415.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (3,907 samples, 0.16%)</title><rect x="35.6817%" y="485" width="0.1625%" height="15" fill="rgb(216,45,48)" fg:x="857646" fg:w="3907"/><text x="35.9317%" y="495.50"></text></g><g><title>clear_extent_bit (3,386 samples, 0.14%)</title><rect x="35.7034%" y="469" width="0.1409%" height="15" fill="rgb(238,213,17)" fg:x="858167" fg:w="3386"/><text x="35.9534%" y="479.50"></text></g><g><title>__clear_extent_bit (3,341 samples, 0.14%)</title><rect x="35.7053%" y="453" width="0.1390%" height="15" fill="rgb(212,13,2)" fg:x="858212" fg:w="3341"/><text x="35.9553%" y="463.50"></text></g><g><title>kmem_cache_free (783 samples, 0.03%)</title><rect x="35.8117%" y="437" width="0.0326%" height="15" fill="rgb(240,114,20)" fg:x="860770" fg:w="783"/><text x="36.0617%" y="447.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (915 samples, 0.04%)</title><rect x="35.8443%" y="485" width="0.0381%" height="15" fill="rgb(228,41,40)" fg:x="861553" fg:w="915"/><text x="36.0943%" y="495.50"></text></g><g><title>find_contiguous_extent_bit (278 samples, 0.01%)</title><rect x="35.8708%" y="469" width="0.0116%" height="15" fill="rgb(244,132,35)" fg:x="862190" fg:w="278"/><text x="36.1208%" y="479.50"></text></g><g><title>__btrfs_kill_delayed_node (399 samples, 0.02%)</title><rect x="35.8902%" y="469" width="0.0166%" height="15" fill="rgb(253,189,4)" fg:x="862656" fg:w="399"/><text x="36.1402%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (450 samples, 0.02%)</title><rect x="35.9071%" y="469" width="0.0187%" height="15" fill="rgb(224,37,19)" fg:x="863063" fg:w="450"/><text x="36.1571%" y="479.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,235 samples, 0.05%)</title><rect x="35.8823%" y="485" width="0.0514%" height="15" fill="rgb(235,223,18)" fg:x="862468" fg:w="1235"/><text x="36.1323%" y="495.50"></text></g><g><title>_raw_read_lock (783 samples, 0.03%)</title><rect x="36.0909%" y="437" width="0.0326%" height="15" fill="rgb(235,163,25)" fg:x="867480" fg:w="783"/><text x="36.3409%" y="447.50"></text></g><g><title>finish_wait (5,177 samples, 0.22%)</title><rect x="36.1261%" y="437" width="0.2154%" height="15" fill="rgb(217,145,28)" fg:x="868327" fg:w="5177"/><text x="36.3761%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,928 samples, 0.21%)</title><rect x="36.1365%" y="421" width="0.2050%" height="15" fill="rgb(223,223,32)" fg:x="868576" fg:w="4928"/><text x="36.3865%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,732 samples, 0.20%)</title><rect x="36.1446%" y="405" width="0.1969%" height="15" fill="rgb(227,189,39)" fg:x="868772" fg:w="4732"/><text x="36.3946%" y="415.50"></text></g><g><title>__list_add_valid (314 samples, 0.01%)</title><rect x="36.3771%" y="421" width="0.0131%" height="15" fill="rgb(248,10,22)" fg:x="874360" fg:w="314"/><text x="36.6271%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (12,548 samples, 0.52%)</title><rect x="36.3902%" y="421" width="0.5221%" height="15" fill="rgb(248,46,39)" fg:x="874674" fg:w="12548"/><text x="36.6402%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,963 samples, 0.50%)</title><rect x="36.4145%" y="405" width="0.4977%" height="15" fill="rgb(248,113,48)" fg:x="875259" fg:w="11963"/><text x="36.6645%" y="415.50"></text></g><g><title>prepare_to_wait_event (13,922 samples, 0.58%)</title><rect x="36.3424%" y="437" width="0.5792%" height="15" fill="rgb(245,16,25)" fg:x="873525" fg:w="13922"/><text x="36.5924%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (12,494 samples, 0.52%)</title><rect x="36.9216%" y="437" width="0.5198%" height="15" fill="rgb(249,152,16)" fg:x="887447" fg:w="12494"/><text x="37.1716%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,200 samples, 0.38%)</title><rect x="37.0586%" y="421" width="0.3828%" height="15" fill="rgb(250,16,1)" fg:x="890741" fg:w="9200"/><text x="37.3086%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (395 samples, 0.02%)</title><rect x="37.4725%" y="405" width="0.0164%" height="15" fill="rgb(249,138,3)" fg:x="900690" fg:w="395"/><text x="37.7225%" y="415.50"></text></g><g><title>update_curr (768 samples, 0.03%)</title><rect x="37.5318%" y="373" width="0.0320%" height="15" fill="rgb(227,71,41)" fg:x="902114" fg:w="768"/><text x="37.7818%" y="383.50"></text></g><g><title>dequeue_entity (2,037 samples, 0.08%)</title><rect x="37.5046%" y="389" width="0.0847%" height="15" fill="rgb(209,184,23)" fg:x="901461" fg:w="2037"/><text x="37.7546%" y="399.50"></text></g><g><title>update_load_avg (616 samples, 0.03%)</title><rect x="37.5637%" y="373" width="0.0256%" height="15" fill="rgb(223,215,31)" fg:x="902882" fg:w="616"/><text x="37.8137%" y="383.50"></text></g><g><title>dequeue_task_fair (2,455 samples, 0.10%)</title><rect x="37.4936%" y="405" width="0.1021%" height="15" fill="rgb(210,146,28)" fg:x="901197" fg:w="2455"/><text x="37.7436%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (3,739 samples, 0.16%)</title><rect x="37.6132%" y="389" width="0.1556%" height="15" fill="rgb(209,183,41)" fg:x="904072" fg:w="3739"/><text x="37.8632%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,647 samples, 0.15%)</title><rect x="37.6171%" y="373" width="0.1517%" height="15" fill="rgb(209,224,45)" fg:x="904164" fg:w="3647"/><text x="37.8671%" y="383.50"></text></g><g><title>native_write_msr (3,602 samples, 0.15%)</title><rect x="37.6189%" y="357" width="0.1499%" height="15" fill="rgb(224,209,51)" fg:x="904209" fg:w="3602"/><text x="37.8689%" y="367.50"></text></g><g><title>finish_task_switch (4,364 samples, 0.18%)</title><rect x="37.5958%" y="405" width="0.1816%" height="15" fill="rgb(223,17,39)" fg:x="903652" fg:w="4364"/><text x="37.8458%" y="415.50"></text></g><g><title>pick_next_task_fair (432 samples, 0.02%)</title><rect x="37.7776%" y="405" width="0.0180%" height="15" fill="rgb(234,204,37)" fg:x="908023" fg:w="432"/><text x="38.0276%" y="415.50"></text></g><g><title>__update_idle_core (348 samples, 0.01%)</title><rect x="37.7978%" y="389" width="0.0145%" height="15" fill="rgb(236,120,5)" fg:x="908508" fg:w="348"/><text x="38.0478%" y="399.50"></text></g><g><title>pick_next_task_idle (402 samples, 0.02%)</title><rect x="37.7956%" y="405" width="0.0167%" height="15" fill="rgb(248,97,27)" fg:x="908455" fg:w="402"/><text x="38.0456%" y="415.50"></text></g><g><title>psi_task_change (1,759 samples, 0.07%)</title><rect x="37.8123%" y="405" width="0.0732%" height="15" fill="rgb(240,66,17)" fg:x="908857" fg:w="1759"/><text x="38.0623%" y="415.50"></text></g><g><title>psi_group_change (1,509 samples, 0.06%)</title><rect x="37.8227%" y="389" width="0.0628%" height="15" fill="rgb(210,79,3)" fg:x="909107" fg:w="1509"/><text x="38.0727%" y="399.50"></text></g><g><title>record_times (314 samples, 0.01%)</title><rect x="37.8724%" y="373" width="0.0131%" height="15" fill="rgb(214,176,27)" fg:x="910302" fg:w="314"/><text x="38.1224%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (44,653 samples, 1.86%)</title><rect x="36.0544%" y="453" width="1.8578%" height="15" fill="rgb(235,185,3)" fg:x="866604" fg:w="44653"/><text x="36.3044%" y="463.50">_..</text></g><g><title>schedule (11,316 samples, 0.47%)</title><rect x="37.4414%" y="437" width="0.4708%" height="15" fill="rgb(227,24,12)" fg:x="899941" fg:w="11316"/><text x="37.6914%" y="447.50"></text></g><g><title>__schedule (11,209 samples, 0.47%)</title><rect x="37.4458%" y="421" width="0.4663%" height="15" fill="rgb(252,169,48)" fg:x="900048" fg:w="11209"/><text x="37.6958%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (46,034 samples, 1.92%)</title><rect x="36.0462%" y="469" width="1.9152%" height="15" fill="rgb(212,65,1)" fg:x="866406" fg:w="46034"/><text x="36.2962%" y="479.50">_..</text></g><g><title>btrfs_root_node (1,182 samples, 0.05%)</title><rect x="37.9122%" y="453" width="0.0492%" height="15" fill="rgb(242,39,24)" fg:x="911258" fg:w="1182"/><text x="38.1622%" y="463.50"></text></g><g><title>prepare_to_wait_event (304 samples, 0.01%)</title><rect x="37.9693%" y="453" width="0.0126%" height="15" fill="rgb(249,32,23)" fg:x="912629" fg:w="304"/><text x="38.2193%" y="463.50"></text></g><g><title>dequeue_entity (623 samples, 0.03%)</title><rect x="38.0007%" y="405" width="0.0259%" height="15" fill="rgb(251,195,23)" fg:x="913384" fg:w="623"/><text x="38.2507%" y="415.50"></text></g><g><title>dequeue_task_fair (743 samples, 0.03%)</title><rect x="37.9976%" y="421" width="0.0309%" height="15" fill="rgb(236,174,8)" fg:x="913310" fg:w="743"/><text x="38.2476%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (1,230 samples, 0.05%)</title><rect x="38.0341%" y="405" width="0.0512%" height="15" fill="rgb(220,197,8)" fg:x="914187" fg:w="1230"/><text x="38.2841%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,205 samples, 0.05%)</title><rect x="38.0351%" y="389" width="0.0501%" height="15" fill="rgb(240,108,37)" fg:x="914212" fg:w="1205"/><text x="38.2851%" y="399.50"></text></g><g><title>native_write_msr (1,194 samples, 0.05%)</title><rect x="38.0356%" y="373" width="0.0497%" height="15" fill="rgb(232,176,24)" fg:x="914223" fg:w="1194"/><text x="38.2856%" y="383.50"></text></g><g><title>finish_task_switch (1,403 samples, 0.06%)</title><rect x="38.0285%" y="421" width="0.0584%" height="15" fill="rgb(243,35,29)" fg:x="914053" fg:w="1403"/><text x="38.2785%" y="431.50"></text></g><g><title>psi_task_change (586 samples, 0.02%)</title><rect x="38.0969%" y="421" width="0.0244%" height="15" fill="rgb(210,37,18)" fg:x="915697" fg:w="586"/><text x="38.3469%" y="431.50"></text></g><g><title>psi_group_change (481 samples, 0.02%)</title><rect x="38.1013%" y="405" width="0.0200%" height="15" fill="rgb(224,184,40)" fg:x="915802" fg:w="481"/><text x="38.3513%" y="415.50"></text></g><g><title>__btrfs_tree_lock (4,026 samples, 0.17%)</title><rect x="37.9614%" y="469" width="0.1675%" height="15" fill="rgb(236,39,29)" fg:x="912440" fg:w="4026"/><text x="38.2114%" y="479.50"></text></g><g><title>schedule (3,533 samples, 0.15%)</title><rect x="37.9819%" y="453" width="0.1470%" height="15" fill="rgb(232,48,39)" fg:x="912933" fg:w="3533"/><text x="38.2319%" y="463.50"></text></g><g><title>__schedule (3,502 samples, 0.15%)</title><rect x="37.9832%" y="437" width="0.1457%" height="15" fill="rgb(236,34,42)" fg:x="912964" fg:w="3502"/><text x="38.2332%" y="447.50"></text></g><g><title>__btrfs_cow_block (439 samples, 0.02%)</title><rect x="38.1413%" y="453" width="0.0183%" height="15" fill="rgb(243,106,37)" fg:x="916765" fg:w="439"/><text x="38.3913%" y="463.50"></text></g><g><title>btrfs_cow_block (441 samples, 0.02%)</title><rect x="38.1413%" y="469" width="0.0183%" height="15" fill="rgb(218,96,6)" fg:x="916764" fg:w="441"/><text x="38.3913%" y="479.50"></text></g><g><title>_cond_resched (301 samples, 0.01%)</title><rect x="38.2101%" y="437" width="0.0125%" height="15" fill="rgb(235,130,12)" fg:x="918418" fg:w="301"/><text x="38.4601%" y="447.50"></text></g><g><title>_raw_write_lock (735 samples, 0.03%)</title><rect x="38.2255%" y="437" width="0.0306%" height="15" fill="rgb(231,95,0)" fg:x="918788" fg:w="735"/><text x="38.4755%" y="447.50"></text></g><g><title>finish_wait (4,418 samples, 0.18%)</title><rect x="38.2567%" y="437" width="0.1838%" height="15" fill="rgb(228,12,23)" fg:x="919537" fg:w="4418"/><text x="38.5067%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,164 samples, 0.17%)</title><rect x="38.2672%" y="421" width="0.1732%" height="15" fill="rgb(216,12,1)" fg:x="919791" fg:w="4164"/><text x="38.5172%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,909 samples, 0.16%)</title><rect x="38.2778%" y="405" width="0.1626%" height="15" fill="rgb(219,59,3)" fg:x="920046" fg:w="3909"/><text x="38.5278%" y="415.50"></text></g><g><title>__list_add_valid (341 samples, 0.01%)</title><rect x="38.4878%" y="421" width="0.0142%" height="15" fill="rgb(215,208,46)" fg:x="925092" fg:w="341"/><text x="38.7378%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (11,405 samples, 0.47%)</title><rect x="38.5020%" y="421" width="0.4745%" height="15" fill="rgb(254,224,29)" fg:x="925433" fg:w="11405"/><text x="38.7520%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,552 samples, 0.44%)</title><rect x="38.5374%" y="405" width="0.4390%" height="15" fill="rgb(232,14,29)" fg:x="926286" fg:w="10552"/><text x="38.7874%" y="415.50"></text></g><g><title>prepare_to_wait_event (13,109 samples, 0.55%)</title><rect x="38.4420%" y="437" width="0.5454%" height="15" fill="rgb(208,45,52)" fg:x="923991" fg:w="13109"/><text x="38.6920%" y="447.50"></text></g><g><title>_raw_spin_unlock_irqrestore (262 samples, 0.01%)</title><rect x="38.9765%" y="421" width="0.0109%" height="15" fill="rgb(234,191,28)" fg:x="936838" fg:w="262"/><text x="39.2265%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (19,337 samples, 0.80%)</title><rect x="38.9874%" y="437" width="0.8045%" height="15" fill="rgb(244,67,43)" fg:x="937100" fg:w="19337"/><text x="39.2374%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,597 samples, 0.40%)</title><rect x="39.3926%" y="421" width="0.3993%" height="15" fill="rgb(236,189,24)" fg:x="946840" fg:w="9597"/><text x="39.6426%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (521 samples, 0.02%)</title><rect x="39.8326%" y="405" width="0.0217%" height="15" fill="rgb(239,214,33)" fg:x="957416" fg:w="521"/><text x="40.0826%" y="415.50"></text></g><g><title>update_cfs_group (318 samples, 0.01%)</title><rect x="39.9006%" y="373" width="0.0132%" height="15" fill="rgb(226,176,41)" fg:x="959051" fg:w="318"/><text x="40.1506%" y="383.50"></text></g><g><title>update_curr (975 samples, 0.04%)</title><rect x="39.9138%" y="373" width="0.0406%" height="15" fill="rgb(248,47,8)" fg:x="959369" fg:w="975"/><text x="40.1638%" y="383.50"></text></g><g><title>__update_load_avg_cfs_rq (260 samples, 0.01%)</title><rect x="39.9670%" y="357" width="0.0108%" height="15" fill="rgb(218,81,44)" fg:x="960648" fg:w="260"/><text x="40.2170%" y="367.50"></text></g><g><title>__update_load_avg_se (338 samples, 0.01%)</title><rect x="39.9779%" y="357" width="0.0141%" height="15" fill="rgb(213,98,6)" fg:x="960908" fg:w="338"/><text x="40.2279%" y="367.50"></text></g><g><title>dequeue_entity (2,795 samples, 0.12%)</title><rect x="39.8766%" y="389" width="0.1163%" height="15" fill="rgb(222,85,22)" fg:x="958473" fg:w="2795"/><text x="40.1266%" y="399.50"></text></g><g><title>update_load_avg (924 samples, 0.04%)</title><rect x="39.9544%" y="373" width="0.0384%" height="15" fill="rgb(239,46,39)" fg:x="960344" fg:w="924"/><text x="40.2044%" y="383.50"></text></g><g><title>dequeue_task_fair (3,362 samples, 0.14%)</title><rect x="39.8620%" y="405" width="0.1399%" height="15" fill="rgb(237,12,29)" fg:x="958124" fg:w="3362"/><text x="40.1120%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,447 samples, 0.19%)</title><rect x="40.0278%" y="389" width="0.1850%" height="15" fill="rgb(214,77,8)" fg:x="962107" fg:w="4447"/><text x="40.2778%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,293 samples, 0.18%)</title><rect x="40.0342%" y="373" width="0.1786%" height="15" fill="rgb(217,168,37)" fg:x="962261" fg:w="4293"/><text x="40.2842%" y="383.50"></text></g><g><title>native_write_msr (4,246 samples, 0.18%)</title><rect x="40.0361%" y="357" width="0.1767%" height="15" fill="rgb(221,217,23)" fg:x="962308" fg:w="4246"/><text x="40.2861%" y="367.50"></text></g><g><title>finish_task_switch (5,294 samples, 0.22%)</title><rect x="40.0019%" y="405" width="0.2203%" height="15" fill="rgb(243,229,36)" fg:x="961486" fg:w="5294"/><text x="40.2519%" y="415.50"></text></g><g><title>newidle_balance (308 samples, 0.01%)</title><rect x="40.2288%" y="389" width="0.0128%" height="15" fill="rgb(251,163,40)" fg:x="966940" fg:w="308"/><text x="40.4788%" y="399.50"></text></g><g><title>pick_next_task_fair (587 samples, 0.02%)</title><rect x="40.2223%" y="405" width="0.0244%" height="15" fill="rgb(237,222,12)" fg:x="966784" fg:w="587"/><text x="40.4723%" y="415.50"></text></g><g><title>__update_idle_core (498 samples, 0.02%)</title><rect x="40.2501%" y="389" width="0.0207%" height="15" fill="rgb(248,132,6)" fg:x="967451" fg:w="498"/><text x="40.5001%" y="399.50"></text></g><g><title>pick_next_task_idle (580 samples, 0.02%)</title><rect x="40.2468%" y="405" width="0.0241%" height="15" fill="rgb(227,167,50)" fg:x="967371" fg:w="580"/><text x="40.4968%" y="415.50"></text></g><g><title>psi_task_change (2,567 samples, 0.11%)</title><rect x="40.2709%" y="405" width="0.1068%" height="15" fill="rgb(242,84,37)" fg:x="967951" fg:w="2567"/><text x="40.5209%" y="415.50"></text></g><g><title>psi_group_change (2,210 samples, 0.09%)</title><rect x="40.2857%" y="389" width="0.0919%" height="15" fill="rgb(212,4,50)" fg:x="968308" fg:w="2210"/><text x="40.5357%" y="399.50"></text></g><g><title>record_times (572 samples, 0.02%)</title><rect x="40.3539%" y="373" width="0.0238%" height="15" fill="rgb(230,228,32)" fg:x="969946" fg:w="572"/><text x="40.6039%" y="383.50"></text></g><g><title>sched_clock_cpu (351 samples, 0.01%)</title><rect x="40.3631%" y="357" width="0.0146%" height="15" fill="rgb(248,217,23)" fg:x="970167" fg:w="351"/><text x="40.6131%" y="367.50"></text></g><g><title>sched_clock (307 samples, 0.01%)</title><rect x="40.3649%" y="341" width="0.0128%" height="15" fill="rgb(238,197,32)" fg:x="970211" fg:w="307"/><text x="40.6149%" y="351.50"></text></g><g><title>native_sched_clock (285 samples, 0.01%)</title><rect x="40.3658%" y="325" width="0.0119%" height="15" fill="rgb(236,106,1)" fg:x="970233" fg:w="285"/><text x="40.6158%" y="335.50"></text></g><g><title>psi_task_switch (252 samples, 0.01%)</title><rect x="40.3777%" y="405" width="0.0105%" height="15" fill="rgb(219,228,13)" fg:x="970518" fg:w="252"/><text x="40.6277%" y="415.50"></text></g><g><title>__btrfs_tree_lock (54,020 samples, 2.25%)</title><rect x="38.1616%" y="453" width="2.2475%" height="15" fill="rgb(238,30,35)" fg:x="917252" fg:w="54020"/><text x="38.4116%" y="463.50">_..</text></g><g><title>schedule (14,835 samples, 0.62%)</title><rect x="39.7919%" y="437" width="0.6172%" height="15" fill="rgb(236,70,23)" fg:x="956437" fg:w="14835"/><text x="40.0419%" y="447.50"></text></g><g><title>__schedule (14,642 samples, 0.61%)</title><rect x="39.7999%" y="421" width="0.6092%" height="15" fill="rgb(249,104,48)" fg:x="956630" fg:w="14642"/><text x="40.0499%" y="431.50"></text></g><g><title>update_rq_clock (261 samples, 0.01%)</title><rect x="40.3982%" y="405" width="0.0109%" height="15" fill="rgb(254,117,50)" fg:x="971011" fg:w="261"/><text x="40.6482%" y="415.50"></text></g><g><title>btrfs_lock_root_node (54,539 samples, 2.27%)</title><rect x="38.1596%" y="469" width="2.2691%" height="15" fill="rgb(223,152,4)" fg:x="917205" fg:w="54539"/><text x="38.4096%" y="479.50">b..</text></g><g><title>btrfs_root_node (471 samples, 0.02%)</title><rect x="40.4091%" y="453" width="0.0196%" height="15" fill="rgb(245,6,2)" fg:x="971273" fg:w="471"/><text x="40.6591%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (1,274 samples, 0.05%)</title><rect x="40.4287%" y="469" width="0.0530%" height="15" fill="rgb(249,150,24)" fg:x="971744" fg:w="1274"/><text x="40.6787%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (480 samples, 0.02%)</title><rect x="40.4617%" y="453" width="0.0200%" height="15" fill="rgb(228,185,42)" fg:x="972538" fg:w="480"/><text x="40.7117%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (583 samples, 0.02%)</title><rect x="40.4817%" y="469" width="0.0243%" height="15" fill="rgb(226,39,33)" fg:x="973019" fg:w="583"/><text x="40.7317%" y="479.50"></text></g><g><title>_raw_write_lock (350 samples, 0.01%)</title><rect x="40.5112%" y="453" width="0.0146%" height="15" fill="rgb(221,166,19)" fg:x="973727" fg:w="350"/><text x="40.7612%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (2,937 samples, 0.12%)</title><rect x="40.5060%" y="469" width="0.1222%" height="15" fill="rgb(209,109,2)" fg:x="973602" fg:w="2937"/><text x="40.7560%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (2,458 samples, 0.10%)</title><rect x="40.5259%" y="453" width="0.1023%" height="15" fill="rgb(252,216,26)" fg:x="974081" fg:w="2458"/><text x="40.7759%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (646 samples, 0.03%)</title><rect x="40.6287%" y="469" width="0.0269%" height="15" fill="rgb(227,173,36)" fg:x="976551" fg:w="646"/><text x="40.8787%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (4,635 samples, 0.19%)</title><rect x="40.6556%" y="469" width="0.1928%" height="15" fill="rgb(209,90,7)" fg:x="977197" fg:w="4635"/><text x="40.9056%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (610 samples, 0.03%)</title><rect x="40.8803%" y="453" width="0.0254%" height="15" fill="rgb(250,194,11)" fg:x="982598" fg:w="610"/><text x="41.1303%" y="463.50"></text></g><g><title>verify_parent_transid (450 samples, 0.02%)</title><rect x="40.8869%" y="437" width="0.0187%" height="15" fill="rgb(220,72,50)" fg:x="982758" fg:w="450"/><text x="41.1369%" y="447.50"></text></g><g><title>btrfs_get_64 (877 samples, 0.04%)</title><rect x="40.9056%" y="453" width="0.0365%" height="15" fill="rgb(222,106,48)" fg:x="983208" fg:w="877"/><text x="41.1556%" y="463.50"></text></g><g><title>btrfs_verify_level_key (260 samples, 0.01%)</title><rect x="40.9462%" y="453" width="0.0108%" height="15" fill="rgb(216,220,45)" fg:x="984184" fg:w="260"/><text x="41.1962%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,523 samples, 0.10%)</title><rect x="41.0000%" y="437" width="0.1050%" height="15" fill="rgb(234,112,18)" fg:x="985477" fg:w="2523"/><text x="41.2500%" y="447.50"></text></g><g><title>mark_page_accessed (920 samples, 0.04%)</title><rect x="41.1176%" y="421" width="0.0383%" height="15" fill="rgb(206,179,9)" fg:x="988302" fg:w="920"/><text x="41.3676%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,226 samples, 0.05%)</title><rect x="41.1053%" y="437" width="0.0510%" height="15" fill="rgb(215,115,40)" fg:x="988008" fg:w="1226"/><text x="41.3553%" y="447.50"></text></g><g><title>find_extent_buffer (4,834 samples, 0.20%)</title><rect x="40.9571%" y="453" width="0.2011%" height="15" fill="rgb(222,69,34)" fg:x="984444" fg:w="4834"/><text x="41.2071%" y="463.50"></text></g><g><title>read_extent_buffer (801 samples, 0.03%)</title><rect x="41.1582%" y="453" width="0.0333%" height="15" fill="rgb(209,161,10)" fg:x="989278" fg:w="801"/><text x="41.4082%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (8,248 samples, 0.34%)</title><rect x="40.8484%" y="469" width="0.3432%" height="15" fill="rgb(217,6,38)" fg:x="981832" fg:w="8248"/><text x="41.0984%" y="479.50"></text></g><g><title>btrfs_get_64 (329 samples, 0.01%)</title><rect x="41.2057%" y="453" width="0.0137%" height="15" fill="rgb(229,229,48)" fg:x="990421" fg:w="329"/><text x="41.4557%" y="463.50"></text></g><g><title>__radix_tree_lookup (833 samples, 0.03%)</title><rect x="41.2460%" y="437" width="0.0347%" height="15" fill="rgb(225,21,28)" fg:x="991388" fg:w="833"/><text x="41.4960%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (460 samples, 0.02%)</title><rect x="41.2809%" y="437" width="0.0191%" height="15" fill="rgb(206,33,13)" fg:x="992228" fg:w="460"/><text x="41.5309%" y="447.50"></text></g><g><title>mark_page_accessed (334 samples, 0.01%)</title><rect x="41.2862%" y="421" width="0.0139%" height="15" fill="rgb(242,178,17)" fg:x="992354" fg:w="334"/><text x="41.5362%" y="431.50"></text></g><g><title>find_extent_buffer (1,941 samples, 0.08%)</title><rect x="41.2194%" y="453" width="0.0808%" height="15" fill="rgb(220,162,5)" fg:x="990750" fg:w="1941"/><text x="41.4694%" y="463.50"></text></g><g><title>reada_for_balance (2,757 samples, 0.11%)</title><rect x="41.1915%" y="469" width="0.1147%" height="15" fill="rgb(210,33,43)" fg:x="990080" fg:w="2757"/><text x="41.4415%" y="479.50"></text></g><g><title>__list_del_entry_valid (427 samples, 0.02%)</title><rect x="41.3702%" y="405" width="0.0178%" height="15" fill="rgb(216,116,54)" fg:x="994373" fg:w="427"/><text x="41.6202%" y="415.50"></text></g><g><title>_raw_spin_lock (545 samples, 0.02%)</title><rect x="41.5954%" y="389" width="0.0227%" height="15" fill="rgb(249,92,24)" fg:x="999788" fg:w="545"/><text x="41.8454%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (304 samples, 0.01%)</title><rect x="41.6055%" y="373" width="0.0126%" height="15" fill="rgb(231,189,14)" fg:x="1000029" fg:w="304"/><text x="41.8555%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (722 samples, 0.03%)</title><rect x="41.6181%" y="389" width="0.0300%" height="15" fill="rgb(230,8,41)" fg:x="1000333" fg:w="722"/><text x="41.8681%" y="399.50"></text></g><g><title>available_idle_cpu (606 samples, 0.03%)</title><rect x="41.7064%" y="373" width="0.0252%" height="15" fill="rgb(249,7,27)" fg:x="1002455" fg:w="606"/><text x="41.9564%" y="383.50"></text></g><g><title>select_task_rq_fair (2,988 samples, 0.12%)</title><rect x="41.6522%" y="389" width="0.1243%" height="15" fill="rgb(232,86,5)" fg:x="1001153" fg:w="2988"/><text x="41.9022%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (715 samples, 0.03%)</title><rect x="41.7468%" y="373" width="0.0297%" height="15" fill="rgb(224,175,18)" fg:x="1003426" fg:w="715"/><text x="41.9968%" y="383.50"></text></g><g><title>set_task_cpu (269 samples, 0.01%)</title><rect x="41.7765%" y="389" width="0.0112%" height="15" fill="rgb(220,129,12)" fg:x="1004141" fg:w="269"/><text x="42.0265%" y="399.50"></text></g><g><title>update_cfs_group (242 samples, 0.01%)</title><rect x="41.8749%" y="341" width="0.0101%" height="15" fill="rgb(210,19,36)" fg:x="1006506" fg:w="242"/><text x="42.1249%" y="351.50"></text></g><g><title>update_curr (348 samples, 0.01%)</title><rect x="41.8850%" y="341" width="0.0145%" height="15" fill="rgb(219,96,14)" fg:x="1006748" fg:w="348"/><text x="42.1350%" y="351.50"></text></g><g><title>enqueue_entity (2,770 samples, 0.12%)</title><rect x="41.8215%" y="357" width="0.1152%" height="15" fill="rgb(249,106,1)" fg:x="1005222" fg:w="2770"/><text x="42.0715%" y="367.50"></text></g><g><title>update_load_avg (896 samples, 0.04%)</title><rect x="41.8995%" y="341" width="0.0373%" height="15" fill="rgb(249,155,20)" fg:x="1007096" fg:w="896"/><text x="42.1495%" y="351.50"></text></g><g><title>enqueue_task_fair (3,538 samples, 0.15%)</title><rect x="41.7985%" y="373" width="0.1472%" height="15" fill="rgb(244,168,9)" fg:x="1004668" fg:w="3538"/><text x="42.0485%" y="383.50"></text></g><g><title>ttwu_do_activate (7,387 samples, 0.31%)</title><rect x="41.7877%" y="389" width="0.3073%" height="15" fill="rgb(216,23,50)" fg:x="1004410" fg:w="7387"/><text x="42.0377%" y="399.50"></text></g><g><title>psi_task_change (3,581 samples, 0.15%)</title><rect x="41.9461%" y="373" width="0.1490%" height="15" fill="rgb(224,219,20)" fg:x="1008216" fg:w="3581"/><text x="42.1961%" y="383.50"></text></g><g><title>psi_group_change (3,244 samples, 0.13%)</title><rect x="41.9601%" y="357" width="0.1350%" height="15" fill="rgb(222,156,15)" fg:x="1008553" fg:w="3244"/><text x="42.2101%" y="367.50"></text></g><g><title>record_times (566 samples, 0.02%)</title><rect x="42.0715%" y="341" width="0.0235%" height="15" fill="rgb(231,97,17)" fg:x="1011231" fg:w="566"/><text x="42.3215%" y="351.50"></text></g><g><title>sched_clock_cpu (386 samples, 0.02%)</title><rect x="42.0790%" y="325" width="0.0161%" height="15" fill="rgb(218,70,48)" fg:x="1011411" fg:w="386"/><text x="42.3290%" y="335.50"></text></g><g><title>sched_clock (326 samples, 0.01%)</title><rect x="42.0815%" y="309" width="0.0136%" height="15" fill="rgb(212,196,52)" fg:x="1011471" fg:w="326"/><text x="42.3315%" y="319.50"></text></g><g><title>native_sched_clock (300 samples, 0.01%)</title><rect x="42.0826%" y="293" width="0.0125%" height="15" fill="rgb(243,203,18)" fg:x="1011497" fg:w="300"/><text x="42.3326%" y="303.50"></text></g><g><title>resched_curr (334 samples, 0.01%)</title><rect x="42.1120%" y="357" width="0.0139%" height="15" fill="rgb(252,125,41)" fg:x="1012204" fg:w="334"/><text x="42.3620%" y="367.50"></text></g><g><title>ttwu_do_wakeup (744 samples, 0.03%)</title><rect x="42.0951%" y="389" width="0.0310%" height="15" fill="rgb(223,180,33)" fg:x="1011797" fg:w="744"/><text x="42.3451%" y="399.50"></text></g><g><title>check_preempt_curr (682 samples, 0.03%)</title><rect x="42.0976%" y="373" width="0.0284%" height="15" fill="rgb(254,159,46)" fg:x="1011859" fg:w="682"/><text x="42.3476%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (561 samples, 0.02%)</title><rect x="42.1260%" y="389" width="0.0233%" height="15" fill="rgb(254,38,10)" fg:x="1012541" fg:w="561"/><text x="42.3760%" y="399.50"></text></g><g><title>__wake_up_common (19,830 samples, 0.83%)</title><rect x="41.3507%" y="437" width="0.8250%" height="15" fill="rgb(208,217,32)" fg:x="993906" fg:w="19830"/><text x="41.6007%" y="447.50"></text></g><g><title>autoremove_wake_function (19,411 samples, 0.81%)</title><rect x="41.3682%" y="421" width="0.8076%" height="15" fill="rgb(221,120,13)" fg:x="994325" fg:w="19411"/><text x="41.6182%" y="431.50"></text></g><g><title>try_to_wake_up (18,915 samples, 0.79%)</title><rect x="41.3888%" y="405" width="0.7869%" height="15" fill="rgb(246,54,52)" fg:x="994821" fg:w="18915"/><text x="41.6388%" y="415.50"></text></g><g><title>update_rq_clock (634 samples, 0.03%)</title><rect x="42.1494%" y="389" width="0.0264%" height="15" fill="rgb(242,34,25)" fg:x="1013102" fg:w="634"/><text x="42.3994%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (2,981 samples, 0.12%)</title><rect x="42.1757%" y="437" width="0.1240%" height="15" fill="rgb(247,209,9)" fg:x="1013736" fg:w="2981"/><text x="42.4257%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,811 samples, 0.12%)</title><rect x="42.1828%" y="421" width="0.1169%" height="15" fill="rgb(228,71,26)" fg:x="1013906" fg:w="2811"/><text x="42.4328%" y="431.50"></text></g><g><title>__wake_up_common_lock (23,062 samples, 0.96%)</title><rect x="41.3480%" y="453" width="0.9595%" height="15" fill="rgb(222,145,49)" fg:x="993841" fg:w="23062"/><text x="41.5980%" y="463.50"></text></g><g><title>btrfs_search_slot (153,560 samples, 6.39%)</title><rect x="35.9396%" y="485" width="6.3888%" height="15" fill="rgb(218,121,17)" fg:x="863844" fg:w="153560"/><text x="36.1896%" y="495.50">btrfs_se..</text></g><g><title>unlock_up (24,496 samples, 1.02%)</title><rect x="41.3092%" y="469" width="1.0191%" height="15" fill="rgb(244,50,7)" fg:x="992908" fg:w="24496"/><text x="41.5592%" y="479.50"></text></g><g><title>btrfs_tree_unlock (494 samples, 0.02%)</title><rect x="42.3078%" y="453" width="0.0206%" height="15" fill="rgb(246,229,37)" fg:x="1016910" fg:w="494"/><text x="42.5578%" y="463.50"></text></g><g><title>inode_sub_bytes (652 samples, 0.03%)</title><rect x="42.3283%" y="485" width="0.0271%" height="15" fill="rgb(225,18,5)" fg:x="1017404" fg:w="652"/><text x="42.5783%" y="495.50"></text></g><g><title>_raw_spin_lock (403 samples, 0.02%)</title><rect x="42.3387%" y="469" width="0.0168%" height="15" fill="rgb(213,204,8)" fg:x="1017653" fg:w="403"/><text x="42.5887%" y="479.50"></text></g><g><title>kmem_cache_alloc (863 samples, 0.04%)</title><rect x="42.3555%" y="485" width="0.0359%" height="15" fill="rgb(238,103,6)" fg:x="1018056" fg:w="863"/><text x="42.6055%" y="495.50"></text></g><g><title>kmem_cache_free (694 samples, 0.03%)</title><rect x="42.3914%" y="485" width="0.0289%" height="15" fill="rgb(222,25,35)" fg:x="1018919" fg:w="694"/><text x="42.6414%" y="495.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="42.4686%" y="453" width="0.0102%" height="15" fill="rgb(213,203,35)" fg:x="1020776" fg:w="246"/><text x="42.7186%" y="463.50"></text></g><g><title>alloc_extent_state (1,673 samples, 0.07%)</title><rect x="42.4789%" y="453" width="0.0696%" height="15" fill="rgb(221,79,53)" fg:x="1021022" fg:w="1673"/><text x="42.7289%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,110 samples, 0.05%)</title><rect x="42.5023%" y="437" width="0.0462%" height="15" fill="rgb(243,200,35)" fg:x="1021585" fg:w="1110"/><text x="42.7523%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (243 samples, 0.01%)</title><rect x="42.5384%" y="421" width="0.0101%" height="15" fill="rgb(248,60,25)" fg:x="1022452" fg:w="243"/><text x="42.7884%" y="431.50"></text></g><g><title>cache_state_if_flags (450 samples, 0.02%)</title><rect x="42.5486%" y="453" width="0.0187%" height="15" fill="rgb(227,53,46)" fg:x="1022698" fg:w="450"/><text x="42.7986%" y="463.50"></text></g><g><title>__set_extent_bit (4,862 samples, 0.20%)</title><rect x="42.4327%" y="469" width="0.2023%" height="15" fill="rgb(216,120,32)" fg:x="1019913" fg:w="4862"/><text x="42.6827%" y="479.50"></text></g><g><title>insert_state (1,627 samples, 0.07%)</title><rect x="42.5673%" y="453" width="0.0677%" height="15" fill="rgb(220,134,1)" fg:x="1023148" fg:w="1627"/><text x="42.8173%" y="463.50"></text></g><g><title>set_state_bits (1,059 samples, 0.04%)</title><rect x="42.5909%" y="437" width="0.0441%" height="15" fill="rgb(237,168,5)" fg:x="1023716" fg:w="1059"/><text x="42.8409%" y="447.50"></text></g><g><title>btrfs_set_delalloc_extent (485 samples, 0.02%)</title><rect x="42.6148%" y="421" width="0.0202%" height="15" fill="rgb(231,100,33)" fg:x="1024290" fg:w="485"/><text x="42.8648%" y="431.50"></text></g><g><title>lock_extent_bits (5,166 samples, 0.21%)</title><rect x="42.4202%" y="485" width="0.2149%" height="15" fill="rgb(236,177,47)" fg:x="1019613" fg:w="5166"/><text x="42.6702%" y="495.50"></text></g><g><title>read_extent_buffer (734 samples, 0.03%)</title><rect x="42.6352%" y="485" width="0.0305%" height="15" fill="rgb(235,7,49)" fg:x="1024779" fg:w="734"/><text x="42.8852%" y="495.50"></text></g><g><title>btrfs_truncate_inode_items (232,284 samples, 9.66%)</title><rect x="33.0017%" y="501" width="9.6640%" height="15" fill="rgb(232,119,22)" fg:x="793230" fg:w="232284"/><text x="33.2517%" y="511.50">btrfs_truncate..</text></g><g><title>clear_extent_bit (330 samples, 0.01%)</title><rect x="42.6658%" y="501" width="0.0137%" height="15" fill="rgb(254,73,53)" fg:x="1025514" fg:w="330"/><text x="42.9158%" y="511.50"></text></g><g><title>__clear_extent_bit (318 samples, 0.01%)</title><rect x="42.6663%" y="485" width="0.0132%" height="15" fill="rgb(251,35,20)" fg:x="1025526" fg:w="318"/><text x="42.9163%" y="495.50"></text></g><g><title>_raw_spin_lock (1,238 samples, 0.05%)</title><rect x="42.7047%" y="469" width="0.0515%" height="15" fill="rgb(241,119,20)" fg:x="1026449" fg:w="1238"/><text x="42.9547%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,412 samples, 0.06%)</title><rect x="42.6975%" y="485" width="0.0587%" height="15" fill="rgb(207,102,14)" fg:x="1026276" fg:w="1412"/><text x="42.9475%" y="495.50"></text></g><g><title>_raw_spin_lock (435 samples, 0.02%)</title><rect x="42.7777%" y="469" width="0.0181%" height="15" fill="rgb(248,201,50)" fg:x="1028204" fg:w="435"/><text x="43.0277%" y="479.50"></text></g><g><title>_raw_spin_lock (366 samples, 0.02%)</title><rect x="42.8097%" y="453" width="0.0152%" height="15" fill="rgb(222,185,44)" fg:x="1028973" fg:w="366"/><text x="43.0597%" y="463.50"></text></g><g><title>btrfs_block_rsv_add_bytes (700 samples, 0.03%)</title><rect x="42.7958%" y="469" width="0.0291%" height="15" fill="rgb(218,107,18)" fg:x="1028640" fg:w="700"/><text x="43.0458%" y="479.50"></text></g><g><title>_raw_spin_lock (1,257 samples, 0.05%)</title><rect x="42.8901%" y="437" width="0.0523%" height="15" fill="rgb(237,177,39)" fg:x="1030907" fg:w="1257"/><text x="43.1401%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (585 samples, 0.02%)</title><rect x="42.9181%" y="421" width="0.0243%" height="15" fill="rgb(246,69,6)" fg:x="1031579" fg:w="585"/><text x="43.1681%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (303 samples, 0.01%)</title><rect x="43.0184%" y="421" width="0.0126%" height="15" fill="rgb(234,208,37)" fg:x="1033990" fg:w="303"/><text x="43.2684%" y="431.50"></text></g><g><title>_raw_spin_lock (627 samples, 0.03%)</title><rect x="43.0735%" y="405" width="0.0261%" height="15" fill="rgb(225,4,6)" fg:x="1035314" fg:w="627"/><text x="43.3235%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (3,773 samples, 0.16%)</title><rect x="42.9428%" y="437" width="0.1570%" height="15" fill="rgb(233,45,0)" fg:x="1032174" fg:w="3773"/><text x="43.1928%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,654 samples, 0.07%)</title><rect x="43.0310%" y="421" width="0.0688%" height="15" fill="rgb(226,136,5)" fg:x="1034293" fg:w="1654"/><text x="43.2810%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (756 samples, 0.03%)</title><rect x="43.1412%" y="421" width="0.0315%" height="15" fill="rgb(211,91,47)" fg:x="1036942" fg:w="756"/><text x="43.3912%" y="431.50"></text></g><g><title>_raw_spin_lock (727 samples, 0.03%)</title><rect x="43.2005%" y="405" width="0.0302%" height="15" fill="rgb(242,88,51)" fg:x="1038367" fg:w="727"/><text x="43.4505%" y="415.50"></text></g><g><title>__reserve_bytes (9,413 samples, 0.39%)</title><rect x="42.8392%" y="453" width="0.3916%" height="15" fill="rgb(230,91,28)" fg:x="1029684" fg:w="9413"/><text x="43.0892%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (3,150 samples, 0.13%)</title><rect x="43.0998%" y="437" width="0.1311%" height="15" fill="rgb(254,186,29)" fg:x="1035947" fg:w="3150"/><text x="43.3498%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,399 samples, 0.06%)</title><rect x="43.1727%" y="421" width="0.0582%" height="15" fill="rgb(238,6,4)" fg:x="1037698" fg:w="1399"/><text x="43.4227%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (11,413 samples, 0.47%)</title><rect x="42.7562%" y="485" width="0.4748%" height="15" fill="rgb(221,151,16)" fg:x="1027688" fg:w="11413"/><text x="43.0062%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (9,761 samples, 0.41%)</title><rect x="42.8249%" y="469" width="0.4061%" height="15" fill="rgb(251,143,52)" fg:x="1029340" fg:w="9761"/><text x="43.0749%" y="479.50"></text></g><g><title>btrfs_join_transaction (246 samples, 0.01%)</title><rect x="43.2310%" y="485" width="0.0102%" height="15" fill="rgb(206,90,15)" fg:x="1039101" fg:w="246"/><text x="43.4810%" y="495.50"></text></g><g><title>_raw_spin_lock (1,019 samples, 0.04%)</title><rect x="43.3614%" y="453" width="0.0424%" height="15" fill="rgb(218,35,8)" fg:x="1042234" fg:w="1019"/><text x="43.6114%" y="463.50"></text></g><g><title>join_transaction (2,134 samples, 0.09%)</title><rect x="43.3152%" y="469" width="0.0888%" height="15" fill="rgb(239,215,6)" fg:x="1041125" fg:w="2134"/><text x="43.5652%" y="479.50"></text></g><g><title>memset_erms (344 samples, 0.01%)</title><rect x="43.4443%" y="453" width="0.0143%" height="15" fill="rgb(245,116,39)" fg:x="1044226" fg:w="344"/><text x="43.6943%" y="463.50"></text></g><g><title>evict_refill_and_join (19,172 samples, 0.80%)</title><rect x="42.6795%" y="501" width="0.7976%" height="15" fill="rgb(242,65,28)" fg:x="1025844" fg:w="19172"/><text x="42.9295%" y="511.50"></text></g><g><title>start_transaction (5,669 samples, 0.24%)</title><rect x="43.2413%" y="485" width="0.2359%" height="15" fill="rgb(252,132,53)" fg:x="1039347" fg:w="5669"/><text x="43.4913%" y="495.50"></text></g><g><title>kmem_cache_alloc (1,757 samples, 0.07%)</title><rect x="43.4040%" y="469" width="0.0731%" height="15" fill="rgb(224,159,50)" fg:x="1043259" fg:w="1757"/><text x="43.6540%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (446 samples, 0.02%)</title><rect x="43.4586%" y="453" width="0.0186%" height="15" fill="rgb(224,93,4)" fg:x="1044570" fg:w="446"/><text x="43.7086%" y="463.50"></text></g><g><title>kfree (1,523 samples, 0.06%)</title><rect x="43.4805%" y="501" width="0.0634%" height="15" fill="rgb(208,81,34)" fg:x="1045098" fg:w="1523"/><text x="43.7305%" y="511.50"></text></g><g><title>__slab_free (532 samples, 0.02%)</title><rect x="43.5838%" y="485" width="0.0221%" height="15" fill="rgb(233,92,54)" fg:x="1047581" fg:w="532"/><text x="43.8338%" y="495.50"></text></g><g><title>kmem_cache_free (1,956 samples, 0.08%)</title><rect x="43.5439%" y="501" width="0.0814%" height="15" fill="rgb(237,21,14)" fg:x="1046621" fg:w="1956"/><text x="43.7939%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (325 samples, 0.01%)</title><rect x="43.6117%" y="485" width="0.0135%" height="15" fill="rgb(249,128,51)" fg:x="1048252" fg:w="325"/><text x="43.8617%" y="495.50"></text></g><g><title>lock_extent_bits (257 samples, 0.01%)</title><rect x="43.6253%" y="501" width="0.0107%" height="15" fill="rgb(223,129,24)" fg:x="1048577" fg:w="257"/><text x="43.8753%" y="511.50"></text></g><g><title>__set_extent_bit (249 samples, 0.01%)</title><rect x="43.6256%" y="485" width="0.0104%" height="15" fill="rgb(231,168,25)" fg:x="1048585" fg:w="249"/><text x="43.8756%" y="495.50"></text></g><g><title>truncate_inode_pages_final (645 samples, 0.03%)</title><rect x="43.6394%" y="501" width="0.0268%" height="15" fill="rgb(224,39,20)" fg:x="1048916" fg:w="645"/><text x="43.8894%" y="511.50"></text></g><g><title>__pagevec_release (817 samples, 0.03%)</title><rect x="43.6756%" y="485" width="0.0340%" height="15" fill="rgb(225,152,53)" fg:x="1049787" fg:w="817"/><text x="43.9256%" y="495.50"></text></g><g><title>release_pages (539 samples, 0.02%)</title><rect x="43.6872%" y="469" width="0.0224%" height="15" fill="rgb(252,17,24)" fg:x="1050065" fg:w="539"/><text x="43.9372%" y="479.50"></text></g><g><title>delete_from_page_cache_batch (363 samples, 0.02%)</title><rect x="43.7103%" y="485" width="0.0151%" height="15" fill="rgb(250,114,30)" fg:x="1050620" fg:w="363"/><text x="43.9603%" y="495.50"></text></g><g><title>btrfs_evict_inode (656,817 samples, 27.33%)</title><rect x="16.4163%" y="517" width="27.3264%" height="15" fill="rgb(229,5,4)" fg:x="394583" fg:w="656817"/><text x="16.6663%" y="527.50">btrfs_evict_inode</text></g><g><title>truncate_inode_pages_range (1,839 samples, 0.08%)</title><rect x="43.6662%" y="501" width="0.0765%" height="15" fill="rgb(225,176,49)" fg:x="1049561" fg:w="1839"/><text x="43.9162%" y="511.50"></text></g><g><title>_raw_spin_lock_irq (337 samples, 0.01%)</title><rect x="43.7490%" y="501" width="0.0140%" height="15" fill="rgb(224,221,49)" fg:x="1051550" fg:w="337"/><text x="43.9990%" y="511.50"></text></g><g><title>clear_inode (494 samples, 0.02%)</title><rect x="43.7427%" y="517" width="0.0206%" height="15" fill="rgb(253,169,27)" fg:x="1051400" fg:w="494"/><text x="43.9927%" y="527.50"></text></g><g><title>inode_wait_for_writeback (440 samples, 0.02%)</title><rect x="43.7633%" y="517" width="0.0183%" height="15" fill="rgb(211,206,16)" fg:x="1051894" fg:w="440"/><text x="44.0133%" y="527.50"></text></g><g><title>_raw_spin_lock (310 samples, 0.01%)</title><rect x="43.7687%" y="501" width="0.0129%" height="15" fill="rgb(244,87,35)" fg:x="1052024" fg:w="310"/><text x="44.0187%" y="511.50"></text></g><g><title>evict (661,020 samples, 27.50%)</title><rect x="16.2845%" y="533" width="27.5012%" height="15" fill="rgb(246,28,10)" fg:x="391414" fg:w="661020"/><text x="16.5345%" y="543.50">evict</text></g><g><title>__legitimize_mnt (431 samples, 0.02%)</title><rect x="43.8630%" y="453" width="0.0179%" height="15" fill="rgb(229,12,44)" fg:x="1054291" fg:w="431"/><text x="44.1130%" y="463.50"></text></g><g><title>__legitimize_path (982 samples, 0.04%)</title><rect x="43.8505%" y="469" width="0.0409%" height="15" fill="rgb(210,145,37)" fg:x="1053990" fg:w="982"/><text x="44.1005%" y="479.50"></text></g><g><title>lockref_get_not_dead (249 samples, 0.01%)</title><rect x="43.8810%" y="453" width="0.0104%" height="15" fill="rgb(227,112,52)" fg:x="1054723" fg:w="249"/><text x="44.1310%" y="463.50"></text></g><g><title>legitimize_links (374 samples, 0.02%)</title><rect x="43.8915%" y="469" width="0.0156%" height="15" fill="rgb(238,155,34)" fg:x="1054976" fg:w="374"/><text x="44.1415%" y="479.50"></text></g><g><title>complete_walk (2,049 samples, 0.09%)</title><rect x="43.8248%" y="501" width="0.0852%" height="15" fill="rgb(239,226,36)" fg:x="1053373" fg:w="2049"/><text x="44.0748%" y="511.50"></text></g><g><title>try_to_unlazy (1,815 samples, 0.08%)</title><rect x="43.8345%" y="485" width="0.0755%" height="15" fill="rgb(230,16,23)" fg:x="1053607" fg:w="1815"/><text x="44.0845%" y="495.50"></text></g><g><title>inode_permission.part.0 (1,070 samples, 0.04%)</title><rect x="43.9341%" y="485" width="0.0445%" height="15" fill="rgb(236,171,36)" fg:x="1055999" fg:w="1070"/><text x="44.1841%" y="495.50"></text></g><g><title>generic_permission (409 samples, 0.02%)</title><rect x="43.9616%" y="469" width="0.0170%" height="15" fill="rgb(221,22,14)" fg:x="1056660" fg:w="409"/><text x="44.2116%" y="479.50"></text></g><g><title>link_path_walk.part.0 (1,774 samples, 0.07%)</title><rect x="43.9101%" y="501" width="0.0738%" height="15" fill="rgb(242,43,11)" fg:x="1055422" fg:w="1774"/><text x="44.1601%" y="511.50"></text></g><g><title>__fget_files (1,283 samples, 0.05%)</title><rect x="44.0424%" y="469" width="0.0534%" height="15" fill="rgb(232,69,23)" fg:x="1058604" fg:w="1283"/><text x="44.2924%" y="479.50"></text></g><g><title>__fget_light (1,866 samples, 0.08%)</title><rect x="44.0184%" y="485" width="0.0776%" height="15" fill="rgb(216,180,54)" fg:x="1058026" fg:w="1866"/><text x="44.2684%" y="495.50"></text></g><g><title>path_init (2,872 samples, 0.12%)</title><rect x="43.9839%" y="501" width="0.1195%" height="15" fill="rgb(216,5,24)" fg:x="1057196" fg:w="2872"/><text x="44.2339%" y="511.50"></text></g><g><title>path_parentat (7,909 samples, 0.33%)</title><rect x="43.8159%" y="517" width="0.3290%" height="15" fill="rgb(225,89,9)" fg:x="1053160" fg:w="7909"/><text x="44.0659%" y="527.50"></text></g><g><title>terminate_walk (1,001 samples, 0.04%)</title><rect x="44.1033%" y="501" width="0.0416%" height="15" fill="rgb(243,75,33)" fg:x="1060068" fg:w="1001"/><text x="44.3533%" y="511.50"></text></g><g><title>filename_parentat (8,636 samples, 0.36%)</title><rect x="43.7857%" y="533" width="0.3593%" height="15" fill="rgb(247,141,45)" fg:x="1052434" fg:w="8636"/><text x="44.0357%" y="543.50"></text></g><g><title>ihold (972 samples, 0.04%)</title><rect x="44.1450%" y="533" width="0.0404%" height="15" fill="rgb(232,177,36)" fg:x="1061070" fg:w="972"/><text x="44.3950%" y="543.50"></text></g><g><title>_atomic_dec_and_lock (332 samples, 0.01%)</title><rect x="44.2055%" y="517" width="0.0138%" height="15" fill="rgb(219,125,36)" fg:x="1062523" fg:w="332"/><text x="44.4555%" y="527.50"></text></g><g><title>iput.part.0 (1,126 samples, 0.05%)</title><rect x="44.1857%" y="533" width="0.0468%" height="15" fill="rgb(227,94,9)" fg:x="1062047" fg:w="1126"/><text x="44.4357%" y="543.50"></text></g><g><title>btrfs_drop_inode (312 samples, 0.01%)</title><rect x="44.2195%" y="517" width="0.0130%" height="15" fill="rgb(240,34,52)" fg:x="1062861" fg:w="312"/><text x="44.4695%" y="527.50"></text></g><g><title>__slab_free (247 samples, 0.01%)</title><rect x="44.2578%" y="517" width="0.0103%" height="15" fill="rgb(216,45,12)" fg:x="1063780" fg:w="247"/><text x="44.5078%" y="527.50"></text></g><g><title>kmem_cache_free (1,264 samples, 0.05%)</title><rect x="44.2325%" y="533" width="0.0526%" height="15" fill="rgb(246,21,19)" fg:x="1063173" fg:w="1264"/><text x="44.4825%" y="543.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (404 samples, 0.02%)</title><rect x="44.2683%" y="517" width="0.0168%" height="15" fill="rgb(213,98,42)" fg:x="1064033" fg:w="404"/><text x="44.5183%" y="527.50"></text></g><g><title>mnt_drop_write (741 samples, 0.03%)</title><rect x="44.2851%" y="533" width="0.0308%" height="15" fill="rgb(250,136,47)" fg:x="1064437" fg:w="741"/><text x="44.5351%" y="543.50"></text></g><g><title>__mnt_want_write (518 samples, 0.02%)</title><rect x="44.3303%" y="517" width="0.0216%" height="15" fill="rgb(251,124,27)" fg:x="1065524" fg:w="518"/><text x="44.5803%" y="527.50"></text></g><g><title>mnt_want_write (977 samples, 0.04%)</title><rect x="44.3159%" y="533" width="0.0406%" height="15" fill="rgb(229,180,14)" fg:x="1065178" fg:w="977"/><text x="44.5659%" y="543.50"></text></g><g><title>putname (722 samples, 0.03%)</title><rect x="44.3741%" y="533" width="0.0300%" height="15" fill="rgb(245,216,25)" fg:x="1066575" fg:w="722"/><text x="44.6241%" y="543.50"></text></g><g><title>apparmor_path_unlink (343 samples, 0.01%)</title><rect x="44.4092%" y="517" width="0.0143%" height="15" fill="rgb(251,43,5)" fg:x="1067420" fg:w="343"/><text x="44.6592%" y="527.50"></text></g><g><title>security_path_unlink (1,882 samples, 0.08%)</title><rect x="44.4041%" y="533" width="0.0783%" height="15" fill="rgb(250,128,24)" fg:x="1067297" fg:w="1882"/><text x="44.6541%" y="543.50"></text></g><g><title>tomoyo_path_unlink (1,416 samples, 0.06%)</title><rect x="44.4235%" y="517" width="0.0589%" height="15" fill="rgb(217,117,27)" fg:x="1067763" fg:w="1416"/><text x="44.6735%" y="527.50"></text></g><g><title>tomoyo_path_perm (1,367 samples, 0.06%)</title><rect x="44.4255%" y="501" width="0.0569%" height="15" fill="rgb(245,147,4)" fg:x="1067812" fg:w="1367"/><text x="44.6755%" y="511.50"></text></g><g><title>tomoyo_init_request_info (1,007 samples, 0.04%)</title><rect x="44.4405%" y="485" width="0.0419%" height="15" fill="rgb(242,201,35)" fg:x="1068172" fg:w="1007"/><text x="44.6905%" y="495.50"></text></g><g><title>tomoyo_domain (624 samples, 0.03%)</title><rect x="44.4564%" y="469" width="0.0260%" height="15" fill="rgb(218,181,1)" fg:x="1068555" fg:w="624"/><text x="44.7064%" y="479.50"></text></g><g><title>up_write (243 samples, 0.01%)</title><rect x="44.4824%" y="533" width="0.0101%" height="15" fill="rgb(222,6,29)" fg:x="1069179" fg:w="243"/><text x="44.7324%" y="543.50"></text></g><g><title>_raw_spin_lock (305 samples, 0.01%)</title><rect x="44.5127%" y="517" width="0.0127%" height="15" fill="rgb(208,186,3)" fg:x="1069907" fg:w="305"/><text x="44.7627%" y="527.50"></text></g><g><title>_raw_spin_lock (1,771 samples, 0.07%)</title><rect x="44.6889%" y="453" width="0.0737%" height="15" fill="rgb(216,36,26)" fg:x="1074143" fg:w="1771"/><text x="44.9389%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (674 samples, 0.03%)</title><rect x="44.7346%" y="437" width="0.0280%" height="15" fill="rgb(248,201,23)" fg:x="1075240" fg:w="674"/><text x="44.9846%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,868 samples, 0.12%)</title><rect x="44.6510%" y="485" width="0.1193%" height="15" fill="rgb(251,170,31)" fg:x="1073232" fg:w="2868"/><text x="44.9010%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (2,644 samples, 0.11%)</title><rect x="44.6603%" y="469" width="0.1100%" height="15" fill="rgb(207,110,25)" fg:x="1073456" fg:w="2644"/><text x="44.9103%" y="479.50"></text></g><g><title>__btrfs_end_transaction (6,038 samples, 0.25%)</title><rect x="44.5510%" y="501" width="0.2512%" height="15" fill="rgb(250,54,15)" fg:x="1070828" fg:w="6038"/><text x="44.8010%" y="511.50"></text></g><g><title>kmem_cache_free (766 samples, 0.03%)</title><rect x="44.7703%" y="485" width="0.0319%" height="15" fill="rgb(227,68,33)" fg:x="1076100" fg:w="766"/><text x="45.0203%" y="495.50"></text></g><g><title>btrfs_end_log_trans (262 samples, 0.01%)</title><rect x="44.9106%" y="469" width="0.0109%" height="15" fill="rgb(238,34,41)" fg:x="1079472" fg:w="262"/><text x="45.1606%" y="479.50"></text></g><g><title>enqueue_task_fair (274 samples, 0.01%)</title><rect x="44.9987%" y="357" width="0.0114%" height="15" fill="rgb(220,11,15)" fg:x="1081589" fg:w="274"/><text x="45.2487%" y="367.50"></text></g><g><title>ttwu_do_activate (597 samples, 0.02%)</title><rect x="44.9980%" y="373" width="0.0248%" height="15" fill="rgb(246,111,35)" fg:x="1081571" fg:w="597"/><text x="45.2480%" y="383.50"></text></g><g><title>psi_task_change (305 samples, 0.01%)</title><rect x="45.0101%" y="357" width="0.0127%" height="15" fill="rgb(209,88,53)" fg:x="1081863" fg:w="305"/><text x="45.2601%" y="367.50"></text></g><g><title>psi_group_change (266 samples, 0.01%)</title><rect x="45.0117%" y="341" width="0.0111%" height="15" fill="rgb(231,185,47)" fg:x="1081902" fg:w="266"/><text x="45.2617%" y="351.50"></text></g><g><title>__wake_up_common (2,263 samples, 0.09%)</title><rect x="44.9350%" y="421" width="0.0942%" height="15" fill="rgb(233,154,1)" fg:x="1080058" fg:w="2263"/><text x="45.1850%" y="431.50"></text></g><g><title>autoremove_wake_function (2,211 samples, 0.09%)</title><rect x="44.9372%" y="405" width="0.0920%" height="15" fill="rgb(225,15,46)" fg:x="1080110" fg:w="2211"/><text x="45.1872%" y="415.50"></text></g><g><title>try_to_wake_up (2,182 samples, 0.09%)</title><rect x="44.9384%" y="389" width="0.0908%" height="15" fill="rgb(211,135,41)" fg:x="1080139" fg:w="2182"/><text x="45.1884%" y="399.50"></text></g><g><title>__wake_up_common_lock (2,500 samples, 0.10%)</title><rect x="44.9344%" y="437" width="0.1040%" height="15" fill="rgb(208,54,0)" fg:x="1080043" fg:w="2500"/><text x="45.1844%" y="447.50"></text></g><g><title>btrfs_tree_unlock (436 samples, 0.02%)</title><rect x="45.0384%" y="437" width="0.0181%" height="15" fill="rgb(244,136,14)" fg:x="1082543" fg:w="436"/><text x="45.2884%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (332 samples, 0.01%)</title><rect x="45.0568%" y="437" width="0.0138%" height="15" fill="rgb(241,56,14)" fg:x="1082986" fg:w="332"/><text x="45.3068%" y="447.50"></text></g><g><title>btrfs_free_path (3,835 samples, 0.16%)</title><rect x="44.9215%" y="469" width="0.1596%" height="15" fill="rgb(205,80,24)" fg:x="1079734" fg:w="3835"/><text x="45.1715%" y="479.50"></text></g><g><title>btrfs_release_path (3,746 samples, 0.16%)</title><rect x="44.9252%" y="453" width="0.1558%" height="15" fill="rgb(220,57,4)" fg:x="1079823" fg:w="3746"/><text x="45.1752%" y="463.50"></text></g><g><title>release_extent_buffer (251 samples, 0.01%)</title><rect x="45.0706%" y="437" width="0.0104%" height="15" fill="rgb(226,193,50)" fg:x="1083318" fg:w="251"/><text x="45.3206%" y="447.50"></text></g><g><title>prepare_to_wait_event (255 samples, 0.01%)</title><rect x="45.1479%" y="405" width="0.0106%" height="15" fill="rgb(231,168,22)" fg:x="1085174" fg:w="255"/><text x="45.3979%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (842 samples, 0.04%)</title><rect x="45.1316%" y="421" width="0.0350%" height="15" fill="rgb(254,215,14)" fg:x="1084784" fg:w="842"/><text x="45.3816%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (1,087 samples, 0.05%)</title><rect x="45.1295%" y="437" width="0.0452%" height="15" fill="rgb(211,115,16)" fg:x="1084732" fg:w="1087"/><text x="45.3795%" y="447.50"></text></g><g><title>balance_level (361 samples, 0.02%)</title><rect x="45.1751%" y="437" width="0.0150%" height="15" fill="rgb(236,210,16)" fg:x="1085828" fg:w="361"/><text x="45.4251%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (464 samples, 0.02%)</title><rect x="45.2203%" y="389" width="0.0193%" height="15" fill="rgb(221,94,12)" fg:x="1086915" fg:w="464"/><text x="45.4703%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (429 samples, 0.02%)</title><rect x="45.2218%" y="373" width="0.0178%" height="15" fill="rgb(235,218,49)" fg:x="1086950" fg:w="429"/><text x="45.4718%" y="383.50"></text></g><g><title>prepare_to_wait_event (517 samples, 0.02%)</title><rect x="45.2183%" y="405" width="0.0215%" height="15" fill="rgb(217,114,14)" fg:x="1086868" fg:w="517"/><text x="45.4683%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,520 samples, 0.06%)</title><rect x="45.1957%" y="421" width="0.0632%" height="15" fill="rgb(216,145,22)" fg:x="1086323" fg:w="1520"/><text x="45.4457%" y="431.50"></text></g><g><title>schedule (372 samples, 0.02%)</title><rect x="45.2434%" y="405" width="0.0155%" height="15" fill="rgb(217,112,39)" fg:x="1087471" fg:w="372"/><text x="45.4934%" y="415.50"></text></g><g><title>__schedule (363 samples, 0.02%)</title><rect x="45.2438%" y="389" width="0.0151%" height="15" fill="rgb(225,85,32)" fg:x="1087480" fg:w="363"/><text x="45.4938%" y="399.50"></text></g><g><title>btrfs_lock_root_node (1,721 samples, 0.07%)</title><rect x="45.1948%" y="437" width="0.0716%" height="15" fill="rgb(245,209,47)" fg:x="1086303" fg:w="1721"/><text x="45.4448%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (605 samples, 0.03%)</title><rect x="45.2664%" y="437" width="0.0252%" height="15" fill="rgb(218,220,15)" fg:x="1088024" fg:w="605"/><text x="45.5164%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (818 samples, 0.03%)</title><rect x="45.3134%" y="437" width="0.0340%" height="15" fill="rgb(222,202,31)" fg:x="1089152" fg:w="818"/><text x="45.5634%" y="447.50"></text></g><g><title>btrfs_get_64 (307 samples, 0.01%)</title><rect x="45.3642%" y="421" width="0.0128%" height="15" fill="rgb(243,203,4)" fg:x="1090375" fg:w="307"/><text x="45.6142%" y="431.50"></text></g><g><title>__radix_tree_lookup (504 samples, 0.02%)</title><rect x="45.3904%" y="405" width="0.0210%" height="15" fill="rgb(237,92,17)" fg:x="1091004" fg:w="504"/><text x="45.6404%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (446 samples, 0.02%)</title><rect x="45.4114%" y="405" width="0.0186%" height="15" fill="rgb(231,119,7)" fg:x="1091508" fg:w="446"/><text x="45.6614%" y="415.50"></text></g><g><title>mark_page_accessed (310 samples, 0.01%)</title><rect x="45.4170%" y="389" width="0.0129%" height="15" fill="rgb(237,82,41)" fg:x="1091644" fg:w="310"/><text x="45.6670%" y="399.50"></text></g><g><title>find_extent_buffer (1,141 samples, 0.05%)</title><rect x="45.3833%" y="421" width="0.0475%" height="15" fill="rgb(226,81,48)" fg:x="1090832" fg:w="1141"/><text x="45.6333%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (2,265 samples, 0.09%)</title><rect x="45.3474%" y="437" width="0.0942%" height="15" fill="rgb(234,70,51)" fg:x="1089970" fg:w="2265"/><text x="45.5974%" y="447.50"></text></g><g><title>read_extent_buffer (262 samples, 0.01%)</title><rect x="45.4307%" y="421" width="0.0109%" height="15" fill="rgb(251,86,4)" fg:x="1091973" fg:w="262"/><text x="45.6807%" y="431.50"></text></g><g><title>btrfs_lookup_dir_index_item (9,160 samples, 0.38%)</title><rect x="45.0811%" y="469" width="0.3811%" height="15" fill="rgb(244,144,28)" fg:x="1083569" fg:w="9160"/><text x="45.3311%" y="479.50"></text></g><g><title>btrfs_search_slot (8,990 samples, 0.37%)</title><rect x="45.0882%" y="453" width="0.3740%" height="15" fill="rgb(232,161,39)" fg:x="1083739" fg:w="8990"/><text x="45.3382%" y="463.50"></text></g><g><title>unlock_up (305 samples, 0.01%)</title><rect x="45.4495%" y="437" width="0.0127%" height="15" fill="rgb(247,34,51)" fg:x="1092424" fg:w="305"/><text x="45.6995%" y="447.50"></text></g><g><title>finish_wait (377 samples, 0.02%)</title><rect x="45.5432%" y="405" width="0.0157%" height="15" fill="rgb(225,132,2)" fg:x="1094677" fg:w="377"/><text x="45.7932%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (352 samples, 0.01%)</title><rect x="45.5443%" y="389" width="0.0146%" height="15" fill="rgb(209,159,44)" fg:x="1094702" fg:w="352"/><text x="45.7943%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (331 samples, 0.01%)</title><rect x="45.5451%" y="373" width="0.0138%" height="15" fill="rgb(251,214,1)" fg:x="1094723" fg:w="331"/><text x="45.7951%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,157 samples, 0.05%)</title><rect x="45.5635%" y="389" width="0.0481%" height="15" fill="rgb(247,84,47)" fg:x="1095165" fg:w="1157"/><text x="45.8135%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,087 samples, 0.05%)</title><rect x="45.5664%" y="373" width="0.0452%" height="15" fill="rgb(240,111,43)" fg:x="1095235" fg:w="1087"/><text x="45.8164%" y="383.50"></text></g><g><title>prepare_to_wait_event (1,289 samples, 0.05%)</title><rect x="45.5590%" y="405" width="0.0536%" height="15" fill="rgb(215,214,35)" fg:x="1095056" fg:w="1289"/><text x="45.8090%" y="415.50"></text></g><g><title>dequeue_entity (256 samples, 0.01%)</title><rect x="45.6251%" y="357" width="0.0107%" height="15" fill="rgb(248,207,23)" fg:x="1096644" fg:w="256"/><text x="45.8751%" y="367.50"></text></g><g><title>dequeue_task_fair (307 samples, 0.01%)</title><rect x="45.6237%" y="373" width="0.0128%" height="15" fill="rgb(214,186,4)" fg:x="1096612" fg:w="307"/><text x="45.8737%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (303 samples, 0.01%)</title><rect x="45.6389%" y="357" width="0.0126%" height="15" fill="rgb(220,133,22)" fg:x="1096977" fg:w="303"/><text x="45.8889%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.01%)</title><rect x="45.6393%" y="341" width="0.0122%" height="15" fill="rgb(239,134,19)" fg:x="1096986" fg:w="294"/><text x="45.8893%" y="351.50"></text></g><g><title>native_write_msr (284 samples, 0.01%)</title><rect x="45.6397%" y="325" width="0.0118%" height="15" fill="rgb(250,140,9)" fg:x="1096996" fg:w="284"/><text x="45.8897%" y="335.50"></text></g><g><title>finish_task_switch (385 samples, 0.02%)</title><rect x="45.6365%" y="373" width="0.0160%" height="15" fill="rgb(225,59,14)" fg:x="1096919" fg:w="385"/><text x="45.8865%" y="383.50"></text></g><g><title>psi_task_change (251 samples, 0.01%)</title><rect x="45.6567%" y="373" width="0.0104%" height="15" fill="rgb(214,152,51)" fg:x="1097405" fg:w="251"/><text x="45.9067%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (3,393 samples, 0.14%)</title><rect x="45.5287%" y="421" width="0.1412%" height="15" fill="rgb(251,227,43)" fg:x="1094328" fg:w="3393"/><text x="45.7787%" y="431.50"></text></g><g><title>schedule (1,274 samples, 0.05%)</title><rect x="45.6169%" y="405" width="0.0530%" height="15" fill="rgb(241,96,17)" fg:x="1096447" fg:w="1274"/><text x="45.8669%" y="415.50"></text></g><g><title>__schedule (1,249 samples, 0.05%)</title><rect x="45.6179%" y="389" width="0.0520%" height="15" fill="rgb(234,198,43)" fg:x="1096472" fg:w="1249"/><text x="45.8679%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,745 samples, 0.16%)</title><rect x="45.5264%" y="437" width="0.1558%" height="15" fill="rgb(220,108,29)" fg:x="1094272" fg:w="3745"/><text x="45.7764%" y="447.50"></text></g><g><title>btrfs_root_node (296 samples, 0.01%)</title><rect x="45.6699%" y="421" width="0.0123%" height="15" fill="rgb(226,163,33)" fg:x="1097721" fg:w="296"/><text x="45.9199%" y="431.50"></text></g><g><title>balance_level (371 samples, 0.02%)</title><rect x="45.6826%" y="437" width="0.0154%" height="15" fill="rgb(205,194,45)" fg:x="1098027" fg:w="371"/><text x="45.9326%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (572 samples, 0.02%)</title><rect x="45.7302%" y="389" width="0.0238%" height="15" fill="rgb(206,143,44)" fg:x="1099170" fg:w="572"/><text x="45.9802%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (536 samples, 0.02%)</title><rect x="45.7317%" y="373" width="0.0223%" height="15" fill="rgb(236,136,36)" fg:x="1099206" fg:w="536"/><text x="45.9817%" y="383.50"></text></g><g><title>prepare_to_wait_event (633 samples, 0.03%)</title><rect x="45.7280%" y="405" width="0.0263%" height="15" fill="rgb(249,172,42)" fg:x="1099119" fg:w="633"/><text x="45.9780%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,754 samples, 0.07%)</title><rect x="45.7029%" y="421" width="0.0730%" height="15" fill="rgb(216,139,23)" fg:x="1098515" fg:w="1754"/><text x="45.9529%" y="431.50"></text></g><g><title>schedule (406 samples, 0.02%)</title><rect x="45.7590%" y="405" width="0.0169%" height="15" fill="rgb(207,166,20)" fg:x="1099863" fg:w="406"/><text x="46.0090%" y="415.50"></text></g><g><title>__schedule (389 samples, 0.02%)</title><rect x="45.7597%" y="389" width="0.0162%" height="15" fill="rgb(210,209,22)" fg:x="1099880" fg:w="389"/><text x="46.0097%" y="399.50"></text></g><g><title>btrfs_lock_root_node (1,975 samples, 0.08%)</title><rect x="45.7017%" y="437" width="0.0822%" height="15" fill="rgb(232,118,20)" fg:x="1098486" fg:w="1975"/><text x="45.9517%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (642 samples, 0.03%)</title><rect x="45.7839%" y="437" width="0.0267%" height="15" fill="rgb(238,113,42)" fg:x="1100461" fg:w="642"/><text x="46.0339%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (246 samples, 0.01%)</title><rect x="45.8238%" y="437" width="0.0102%" height="15" fill="rgb(231,42,5)" fg:x="1101420" fg:w="246"/><text x="46.0738%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (901 samples, 0.04%)</title><rect x="45.8340%" y="437" width="0.0375%" height="15" fill="rgb(243,166,24)" fg:x="1101666" fg:w="901"/><text x="46.0840%" y="447.50"></text></g><g><title>btrfs_get_64 (263 samples, 0.01%)</title><rect x="45.8894%" y="421" width="0.0109%" height="15" fill="rgb(237,226,12)" fg:x="1102998" fg:w="263"/><text x="46.1394%" y="431.50"></text></g><g><title>__radix_tree_lookup (609 samples, 0.03%)</title><rect x="45.9167%" y="405" width="0.0253%" height="15" fill="rgb(229,133,24)" fg:x="1103655" fg:w="609"/><text x="46.1667%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (448 samples, 0.02%)</title><rect x="45.9423%" y="405" width="0.0186%" height="15" fill="rgb(238,33,43)" fg:x="1104268" fg:w="448"/><text x="46.1923%" y="415.50"></text></g><g><title>mark_page_accessed (305 samples, 0.01%)</title><rect x="45.9482%" y="389" width="0.0127%" height="15" fill="rgb(227,59,38)" fg:x="1104411" fg:w="305"/><text x="46.1982%" y="399.50"></text></g><g><title>find_extent_buffer (1,314 samples, 0.05%)</title><rect x="45.9069%" y="421" width="0.0547%" height="15" fill="rgb(230,97,0)" fg:x="1103418" fg:w="1314"/><text x="46.1569%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (2,443 samples, 0.10%)</title><rect x="45.8715%" y="437" width="0.1016%" height="15" fill="rgb(250,173,50)" fg:x="1102567" fg:w="2443"/><text x="46.1215%" y="447.50"></text></g><g><title>read_extent_buffer (278 samples, 0.01%)</title><rect x="45.9616%" y="421" width="0.0116%" height="15" fill="rgb(240,15,50)" fg:x="1104732" fg:w="278"/><text x="46.2116%" y="431.50"></text></g><g><title>btrfs_search_slot (12,414 samples, 0.52%)</title><rect x="45.4793%" y="453" width="0.5165%" height="15" fill="rgb(221,93,22)" fg:x="1093140" fg:w="12414"/><text x="45.7293%" y="463.50"></text></g><g><title>unlock_up (321 samples, 0.01%)</title><rect x="45.9824%" y="437" width="0.0134%" height="15" fill="rgb(245,180,53)" fg:x="1105233" fg:w="321"/><text x="46.2324%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (13,100 samples, 0.55%)</title><rect x="45.4622%" y="469" width="0.5450%" height="15" fill="rgb(231,88,51)" fg:x="1092729" fg:w="13100"/><text x="45.7122%" y="479.50"></text></g><g><title>crc32c (275 samples, 0.01%)</title><rect x="45.9958%" y="453" width="0.0114%" height="15" fill="rgb(240,58,21)" fg:x="1105554" fg:w="275"/><text x="46.2458%" y="463.50"></text></g><g><title>enqueue_task_fair (274 samples, 0.01%)</title><rect x="46.0782%" y="373" width="0.0114%" height="15" fill="rgb(237,21,10)" fg:x="1107536" fg:w="274"/><text x="46.3282%" y="383.50"></text></g><g><title>ttwu_do_activate (571 samples, 0.02%)</title><rect x="46.0778%" y="389" width="0.0238%" height="15" fill="rgb(218,43,11)" fg:x="1107527" fg:w="571"/><text x="46.3278%" y="399.50"></text></g><g><title>psi_task_change (287 samples, 0.01%)</title><rect x="46.0897%" y="373" width="0.0119%" height="15" fill="rgb(218,221,29)" fg:x="1107811" fg:w="287"/><text x="46.3397%" y="383.50"></text></g><g><title>psi_group_change (260 samples, 0.01%)</title><rect x="46.0908%" y="357" width="0.0108%" height="15" fill="rgb(214,118,42)" fg:x="1107838" fg:w="260"/><text x="46.3408%" y="367.50"></text></g><g><title>__wake_up_common (2,115 samples, 0.09%)</title><rect x="46.0205%" y="437" width="0.0880%" height="15" fill="rgb(251,200,26)" fg:x="1106149" fg:w="2115"/><text x="46.2705%" y="447.50"></text></g><g><title>autoremove_wake_function (2,072 samples, 0.09%)</title><rect x="46.0223%" y="421" width="0.0862%" height="15" fill="rgb(237,101,39)" fg:x="1106192" fg:w="2072"/><text x="46.2723%" y="431.50"></text></g><g><title>try_to_wake_up (2,041 samples, 0.08%)</title><rect x="46.0236%" y="405" width="0.0849%" height="15" fill="rgb(251,117,11)" fg:x="1106223" fg:w="2041"/><text x="46.2736%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (257 samples, 0.01%)</title><rect x="46.1085%" y="437" width="0.0107%" height="15" fill="rgb(216,223,23)" fg:x="1108264" fg:w="257"/><text x="46.3585%" y="447.50"></text></g><g><title>__wake_up_common_lock (2,401 samples, 0.10%)</title><rect x="46.0202%" y="453" width="0.0999%" height="15" fill="rgb(251,54,12)" fg:x="1106141" fg:w="2401"/><text x="46.2702%" y="463.50"></text></g><g><title>btrfs_tree_unlock (434 samples, 0.02%)</title><rect x="46.1201%" y="453" width="0.0181%" height="15" fill="rgb(254,176,54)" fg:x="1108543" fg:w="434"/><text x="46.3701%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (367 samples, 0.02%)</title><rect x="46.1386%" y="453" width="0.0153%" height="15" fill="rgb(210,32,8)" fg:x="1108988" fg:w="367"/><text x="46.3886%" y="463.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="46.1437%" y="437" width="0.0102%" height="15" fill="rgb(235,52,38)" fg:x="1109109" fg:w="246"/><text x="46.3937%" y="447.50"></text></g><g><title>btrfs_release_path (3,821 samples, 0.16%)</title><rect x="46.0072%" y="469" width="0.1590%" height="15" fill="rgb(231,4,44)" fg:x="1105829" fg:w="3821"/><text x="46.2572%" y="479.50"></text></g><g><title>release_extent_buffer (295 samples, 0.01%)</title><rect x="46.1539%" y="453" width="0.0123%" height="15" fill="rgb(249,2,32)" fg:x="1109355" fg:w="295"/><text x="46.4039%" y="463.50"></text></g><g><title>kmem_cache_alloc (531 samples, 0.02%)</title><rect x="46.1662%" y="469" width="0.0221%" height="15" fill="rgb(224,65,26)" fg:x="1109650" fg:w="531"/><text x="46.4162%" y="479.50"></text></g><g><title>kmem_cache_free (581 samples, 0.02%)</title><rect x="46.1883%" y="469" width="0.0242%" height="15" fill="rgb(250,73,40)" fg:x="1110181" fg:w="581"/><text x="46.4383%" y="479.50"></text></g><g><title>mutex_lock (533 samples, 0.02%)</title><rect x="46.2124%" y="469" width="0.0222%" height="15" fill="rgb(253,177,16)" fg:x="1110762" fg:w="533"/><text x="46.4624%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (33,203 samples, 1.38%)</title><rect x="44.8693%" y="485" width="1.3814%" height="15" fill="rgb(217,32,34)" fg:x="1078479" fg:w="33203"/><text x="45.1193%" y="495.50"></text></g><g><title>mutex_unlock (387 samples, 0.02%)</title><rect x="46.2346%" y="469" width="0.0161%" height="15" fill="rgb(212,7,10)" fg:x="1111295" fg:w="387"/><text x="46.4846%" y="479.50"></text></g><g><title>select_task_rq_fair (436 samples, 0.02%)</title><rect x="46.4464%" y="357" width="0.0181%" height="15" fill="rgb(245,89,8)" fg:x="1116386" fg:w="436"/><text x="46.6964%" y="367.50"></text></g><g><title>enqueue_entity (503 samples, 0.02%)</title><rect x="46.4714%" y="325" width="0.0209%" height="15" fill="rgb(237,16,53)" fg:x="1116987" fg:w="503"/><text x="46.7214%" y="335.50"></text></g><g><title>enqueue_task_fair (641 samples, 0.03%)</title><rect x="46.4667%" y="341" width="0.0267%" height="15" fill="rgb(250,204,30)" fg:x="1116874" fg:w="641"/><text x="46.7167%" y="351.50"></text></g><g><title>ttwu_do_activate (1,300 samples, 0.05%)</title><rect x="46.4653%" y="357" width="0.0541%" height="15" fill="rgb(208,77,27)" fg:x="1116841" fg:w="1300"/><text x="46.7153%" y="367.50"></text></g><g><title>psi_task_change (625 samples, 0.03%)</title><rect x="46.4934%" y="341" width="0.0260%" height="15" fill="rgb(250,204,28)" fg:x="1117516" fg:w="625"/><text x="46.7434%" y="351.50"></text></g><g><title>psi_group_change (557 samples, 0.02%)</title><rect x="46.4963%" y="325" width="0.0232%" height="15" fill="rgb(244,63,21)" fg:x="1117584" fg:w="557"/><text x="46.7463%" y="335.50"></text></g><g><title>__wake_up_common (5,303 samples, 0.22%)</title><rect x="46.3159%" y="405" width="0.2206%" height="15" fill="rgb(236,85,44)" fg:x="1113248" fg:w="5303"/><text x="46.5659%" y="415.50"></text></g><g><title>autoremove_wake_function (5,207 samples, 0.22%)</title><rect x="46.3199%" y="389" width="0.2166%" height="15" fill="rgb(215,98,4)" fg:x="1113344" fg:w="5207"/><text x="46.5699%" y="399.50"></text></g><g><title>try_to_wake_up (5,161 samples, 0.21%)</title><rect x="46.3218%" y="373" width="0.2147%" height="15" fill="rgb(235,38,11)" fg:x="1113390" fg:w="5161"/><text x="46.5718%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,204 samples, 0.05%)</title><rect x="46.5365%" y="405" width="0.0501%" height="15" fill="rgb(254,186,25)" fg:x="1118551" fg:w="1204"/><text x="46.7865%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,139 samples, 0.05%)</title><rect x="46.5392%" y="389" width="0.0474%" height="15" fill="rgb(225,55,31)" fg:x="1118616" fg:w="1139"/><text x="46.7892%" y="399.50"></text></g><g><title>__wake_up_common_lock (6,596 samples, 0.27%)</title><rect x="46.3147%" y="421" width="0.2744%" height="15" fill="rgb(211,15,21)" fg:x="1113219" fg:w="6596"/><text x="46.5647%" y="431.50"></text></g><g><title>btrfs_tree_unlock (630 samples, 0.03%)</title><rect x="46.5892%" y="421" width="0.0262%" height="15" fill="rgb(215,187,41)" fg:x="1119819" fg:w="630"/><text x="46.8392%" y="431.50"></text></g><g><title>_raw_spin_lock (480 samples, 0.02%)</title><rect x="46.6269%" y="405" width="0.0200%" height="15" fill="rgb(248,69,32)" fg:x="1120723" fg:w="480"/><text x="46.8769%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (733 samples, 0.03%)</title><rect x="46.6164%" y="421" width="0.0305%" height="15" fill="rgb(252,102,52)" fg:x="1120471" fg:w="733"/><text x="46.8664%" y="431.50"></text></g><g><title>btrfs_free_path (9,279 samples, 0.39%)</title><rect x="46.2858%" y="453" width="0.3860%" height="15" fill="rgb(253,140,32)" fg:x="1112526" fg:w="9279"/><text x="46.5358%" y="463.50"></text></g><g><title>btrfs_release_path (9,035 samples, 0.38%)</title><rect x="46.2960%" y="437" width="0.3759%" height="15" fill="rgb(216,56,42)" fg:x="1112770" fg:w="9035"/><text x="46.5460%" y="447.50"></text></g><g><title>release_extent_buffer (601 samples, 0.03%)</title><rect x="46.6469%" y="421" width="0.0250%" height="15" fill="rgb(216,184,14)" fg:x="1121204" fg:w="601"/><text x="46.8969%" y="431.50"></text></g><g><title>_raw_read_lock (474 samples, 0.02%)</title><rect x="46.7958%" y="405" width="0.0197%" height="15" fill="rgb(237,187,27)" fg:x="1124784" fg:w="474"/><text x="47.0458%" y="415.50"></text></g><g><title>finish_wait (514 samples, 0.02%)</title><rect x="46.8164%" y="405" width="0.0214%" height="15" fill="rgb(219,65,3)" fg:x="1125278" fg:w="514"/><text x="47.0664%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (479 samples, 0.02%)</title><rect x="46.8178%" y="389" width="0.0199%" height="15" fill="rgb(245,83,25)" fg:x="1125313" fg:w="479"/><text x="47.0678%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (430 samples, 0.02%)</title><rect x="46.8199%" y="373" width="0.0179%" height="15" fill="rgb(214,205,45)" fg:x="1125362" fg:w="430"/><text x="47.0699%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,570 samples, 0.07%)</title><rect x="46.8454%" y="389" width="0.0653%" height="15" fill="rgb(241,20,18)" fg:x="1125977" fg:w="1570"/><text x="47.0954%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,440 samples, 0.06%)</title><rect x="46.8508%" y="373" width="0.0599%" height="15" fill="rgb(232,163,23)" fg:x="1126107" fg:w="1440"/><text x="47.1008%" y="383.50"></text></g><g><title>prepare_to_wait_event (1,805 samples, 0.08%)</title><rect x="46.8381%" y="405" width="0.0751%" height="15" fill="rgb(214,5,46)" fg:x="1125800" fg:w="1805"/><text x="47.0881%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (273 samples, 0.01%)</title><rect x="46.9132%" y="405" width="0.0114%" height="15" fill="rgb(229,78,17)" fg:x="1127605" fg:w="273"/><text x="47.1632%" y="415.50"></text></g><g><title>dequeue_entity (630 samples, 0.03%)</title><rect x="46.9424%" y="357" width="0.0262%" height="15" fill="rgb(248,89,10)" fg:x="1128308" fg:w="630"/><text x="47.1924%" y="367.50"></text></g><g><title>dequeue_task_fair (774 samples, 0.03%)</title><rect x="46.9382%" y="373" width="0.0322%" height="15" fill="rgb(248,54,15)" fg:x="1128206" fg:w="774"/><text x="47.1882%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (662 samples, 0.03%)</title><rect x="46.9745%" y="357" width="0.0275%" height="15" fill="rgb(223,116,6)" fg:x="1129078" fg:w="662"/><text x="47.2245%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (640 samples, 0.03%)</title><rect x="46.9754%" y="341" width="0.0266%" height="15" fill="rgb(205,125,38)" fg:x="1129100" fg:w="640"/><text x="47.2254%" y="351.50"></text></g><g><title>native_write_msr (631 samples, 0.03%)</title><rect x="46.9757%" y="325" width="0.0263%" height="15" fill="rgb(251,78,38)" fg:x="1129109" fg:w="631"/><text x="47.2257%" y="335.50"></text></g><g><title>finish_task_switch (813 samples, 0.03%)</title><rect x="46.9704%" y="373" width="0.0338%" height="15" fill="rgb(253,78,28)" fg:x="1128980" fg:w="813"/><text x="47.2204%" y="383.50"></text></g><g><title>psi_task_change (489 samples, 0.02%)</title><rect x="47.0145%" y="373" width="0.0203%" height="15" fill="rgb(209,120,3)" fg:x="1130040" fg:w="489"/><text x="47.2645%" y="383.50"></text></g><g><title>psi_group_change (411 samples, 0.02%)</title><rect x="47.0177%" y="357" width="0.0171%" height="15" fill="rgb(238,229,9)" fg:x="1130118" fg:w="411"/><text x="47.2677%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (6,260 samples, 0.26%)</title><rect x="46.7816%" y="421" width="0.2604%" height="15" fill="rgb(253,159,18)" fg:x="1124443" fg:w="6260"/><text x="47.0316%" y="431.50"></text></g><g><title>schedule (2,825 samples, 0.12%)</title><rect x="46.9245%" y="405" width="0.1175%" height="15" fill="rgb(244,42,34)" fg:x="1127878" fg:w="2825"/><text x="47.1745%" y="415.50"></text></g><g><title>__schedule (2,792 samples, 0.12%)</title><rect x="46.9259%" y="389" width="0.1162%" height="15" fill="rgb(224,8,7)" fg:x="1127911" fg:w="2792"/><text x="47.1759%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (7,888 samples, 0.33%)</title><rect x="46.7753%" y="437" width="0.3282%" height="15" fill="rgb(210,201,45)" fg:x="1124291" fg:w="7888"/><text x="47.0253%" y="447.50"></text></g><g><title>btrfs_root_node (1,476 samples, 0.06%)</title><rect x="47.0421%" y="421" width="0.0614%" height="15" fill="rgb(252,185,21)" fg:x="1130703" fg:w="1476"/><text x="47.2921%" y="431.50"></text></g><g><title>balance_level (1,004 samples, 0.04%)</title><rect x="47.1044%" y="437" width="0.0418%" height="15" fill="rgb(223,131,1)" fg:x="1132202" fg:w="1004"/><text x="47.3544%" y="447.50"></text></g><g><title>btrfs_get_64 (365 samples, 0.02%)</title><rect x="47.1310%" y="421" width="0.0152%" height="15" fill="rgb(245,141,16)" fg:x="1132841" fg:w="365"/><text x="47.3810%" y="431.50"></text></g><g><title>_raw_write_lock (355 samples, 0.01%)</title><rect x="47.1726%" y="405" width="0.0148%" height="15" fill="rgb(229,55,45)" fg:x="1133840" fg:w="355"/><text x="47.4226%" y="415.50"></text></g><g><title>finish_wait (337 samples, 0.01%)</title><rect x="47.1873%" y="405" width="0.0140%" height="15" fill="rgb(208,92,15)" fg:x="1134195" fg:w="337"/><text x="47.4373%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (320 samples, 0.01%)</title><rect x="47.1881%" y="389" width="0.0133%" height="15" fill="rgb(234,185,47)" fg:x="1134212" fg:w="320"/><text x="47.4381%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (297 samples, 0.01%)</title><rect x="47.1890%" y="373" width="0.0124%" height="15" fill="rgb(253,104,50)" fg:x="1134235" fg:w="297"/><text x="47.4390%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,005 samples, 0.04%)</title><rect x="47.2053%" y="389" width="0.0418%" height="15" fill="rgb(205,70,7)" fg:x="1134626" fg:w="1005"/><text x="47.4553%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (942 samples, 0.04%)</title><rect x="47.2079%" y="373" width="0.0392%" height="15" fill="rgb(240,178,43)" fg:x="1134689" fg:w="942"/><text x="47.4579%" y="383.50"></text></g><g><title>prepare_to_wait_event (1,131 samples, 0.05%)</title><rect x="47.2015%" y="405" width="0.0471%" height="15" fill="rgb(214,112,2)" fg:x="1134536" fg:w="1131"/><text x="47.4515%" y="415.50"></text></g><g><title>dequeue_task_fair (259 samples, 0.01%)</title><rect x="47.2639%" y="373" width="0.0108%" height="15" fill="rgb(206,46,17)" fg:x="1136036" fg:w="259"/><text x="47.5139%" y="383.50"></text></g><g><title>finish_task_switch (284 samples, 0.01%)</title><rect x="47.2747%" y="373" width="0.0118%" height="15" fill="rgb(225,220,16)" fg:x="1136295" fg:w="284"/><text x="47.5247%" y="383.50"></text></g><g><title>__btrfs_tree_lock (3,496 samples, 0.15%)</title><rect x="47.1554%" y="421" width="0.1454%" height="15" fill="rgb(238,65,40)" fg:x="1133427" fg:w="3496"/><text x="47.4054%" y="431.50"></text></g><g><title>schedule (1,019 samples, 0.04%)</title><rect x="47.2584%" y="405" width="0.0424%" height="15" fill="rgb(230,151,21)" fg:x="1135904" fg:w="1019"/><text x="47.5084%" y="415.50"></text></g><g><title>__schedule (999 samples, 0.04%)</title><rect x="47.2593%" y="389" width="0.0416%" height="15" fill="rgb(218,58,49)" fg:x="1135924" fg:w="999"/><text x="47.5093%" y="399.50"></text></g><g><title>btrfs_lock_root_node (3,936 samples, 0.16%)</title><rect x="47.1530%" y="437" width="0.1638%" height="15" fill="rgb(219,179,14)" fg:x="1133370" fg:w="3936"/><text x="47.4030%" y="447.50"></text></g><g><title>btrfs_root_node (380 samples, 0.02%)</title><rect x="47.3010%" y="421" width="0.0158%" height="15" fill="rgb(223,72,1)" fg:x="1136926" fg:w="380"/><text x="47.5510%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (684 samples, 0.03%)</title><rect x="47.3168%" y="437" width="0.0285%" height="15" fill="rgb(238,126,10)" fg:x="1137306" fg:w="684"/><text x="47.5668%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (335 samples, 0.01%)</title><rect x="47.3452%" y="437" width="0.0139%" height="15" fill="rgb(224,206,38)" fg:x="1137990" fg:w="335"/><text x="47.5952%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (453 samples, 0.02%)</title><rect x="47.3592%" y="437" width="0.0188%" height="15" fill="rgb(212,201,54)" fg:x="1138325" fg:w="453"/><text x="47.6092%" y="447.50"></text></g><g><title>_raw_write_lock (374 samples, 0.02%)</title><rect x="47.3625%" y="421" width="0.0156%" height="15" fill="rgb(218,154,48)" fg:x="1138404" fg:w="374"/><text x="47.6125%" y="431.50"></text></g><g><title>_raw_spin_lock (313 samples, 0.01%)</title><rect x="47.3854%" y="421" width="0.0130%" height="15" fill="rgb(232,93,24)" fg:x="1138955" fg:w="313"/><text x="47.6354%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (483 samples, 0.02%)</title><rect x="47.3783%" y="437" width="0.0201%" height="15" fill="rgb(245,30,21)" fg:x="1138786" fg:w="483"/><text x="47.6283%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (2,042 samples, 0.08%)</title><rect x="47.3984%" y="437" width="0.0850%" height="15" fill="rgb(242,148,29)" fg:x="1139269" fg:w="2042"/><text x="47.6484%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (449 samples, 0.02%)</title><rect x="47.5068%" y="421" width="0.0187%" height="15" fill="rgb(244,153,54)" fg:x="1141873" fg:w="449"/><text x="47.7568%" y="431.50"></text></g><g><title>verify_parent_transid (348 samples, 0.01%)</title><rect x="47.5110%" y="405" width="0.0145%" height="15" fill="rgb(252,87,22)" fg:x="1141974" fg:w="348"/><text x="47.7610%" y="415.50"></text></g><g><title>btrfs_get_64 (559 samples, 0.02%)</title><rect x="47.5255%" y="421" width="0.0233%" height="15" fill="rgb(210,51,29)" fg:x="1142322" fg:w="559"/><text x="47.7755%" y="431.50"></text></g><g><title>__radix_tree_lookup (1,825 samples, 0.08%)</title><rect x="47.6002%" y="405" width="0.0759%" height="15" fill="rgb(242,136,47)" fg:x="1144118" fg:w="1825"/><text x="47.8502%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (986 samples, 0.04%)</title><rect x="47.6762%" y="405" width="0.0410%" height="15" fill="rgb(238,68,4)" fg:x="1145945" fg:w="986"/><text x="47.9262%" y="415.50"></text></g><g><title>mark_page_accessed (738 samples, 0.03%)</title><rect x="47.6865%" y="389" width="0.0307%" height="15" fill="rgb(242,161,30)" fg:x="1146193" fg:w="738"/><text x="47.9365%" y="399.50"></text></g><g><title>find_extent_buffer (3,807 samples, 0.16%)</title><rect x="47.5599%" y="421" width="0.1584%" height="15" fill="rgb(218,58,44)" fg:x="1143150" fg:w="3807"/><text x="47.8099%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (6,287 samples, 0.26%)</title><rect x="47.4834%" y="437" width="0.2616%" height="15" fill="rgb(252,125,32)" fg:x="1141311" fg:w="6287"/><text x="47.7334%" y="447.50"></text></g><g><title>read_extent_buffer (641 samples, 0.03%)</title><rect x="47.7183%" y="421" width="0.0267%" height="15" fill="rgb(219,178,0)" fg:x="1146957" fg:w="641"/><text x="47.9683%" y="431.50"></text></g><g><title>release_extent_buffer (268 samples, 0.01%)</title><rect x="47.7541%" y="437" width="0.0111%" height="15" fill="rgb(213,152,7)" fg:x="1147817" fg:w="268"/><text x="48.0041%" y="447.50"></text></g><g><title>btrfs_search_slot (26,924 samples, 1.12%)</title><rect x="46.6719%" y="453" width="1.1202%" height="15" fill="rgb(249,109,34)" fg:x="1121805" fg:w="26924"/><text x="46.9219%" y="463.50"></text></g><g><title>unlock_up (644 samples, 0.03%)</title><rect x="47.7652%" y="437" width="0.0268%" height="15" fill="rgb(232,96,21)" fg:x="1148085" fg:w="644"/><text x="48.0152%" y="447.50"></text></g><g><title>crc32c (789 samples, 0.03%)</title><rect x="47.7920%" y="453" width="0.0328%" height="15" fill="rgb(228,27,39)" fg:x="1148729" fg:w="789"/><text x="48.0420%" y="463.50"></text></g><g><title>crypto_shash_update (389 samples, 0.02%)</title><rect x="47.8087%" y="437" width="0.0162%" height="15" fill="rgb(211,182,52)" fg:x="1149129" fg:w="389"/><text x="48.0587%" y="447.50"></text></g><g><title>memset_erms (299 samples, 0.01%)</title><rect x="47.8645%" y="437" width="0.0124%" height="15" fill="rgb(234,178,38)" fg:x="1150470" fg:w="299"/><text x="48.1145%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,591 samples, 0.07%)</title><rect x="47.8248%" y="453" width="0.0662%" height="15" fill="rgb(221,111,3)" fg:x="1149518" fg:w="1591"/><text x="48.0748%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (340 samples, 0.01%)</title><rect x="47.8769%" y="437" width="0.0141%" height="15" fill="rgb(228,175,21)" fg:x="1150769" fg:w="340"/><text x="48.1269%" y="447.50"></text></g><g><title>btrfs_del_inode_ref (40,211 samples, 1.67%)</title><rect x="46.2720%" y="469" width="1.6729%" height="15" fill="rgb(228,174,43)" fg:x="1112193" fg:w="40211"/><text x="46.5220%" y="479.50"></text></g><g><title>kmem_cache_free (1,295 samples, 0.05%)</title><rect x="47.8910%" y="453" width="0.0539%" height="15" fill="rgb(211,191,0)" fg:x="1151109" fg:w="1295"/><text x="48.1410%" y="463.50"></text></g><g><title>btrfs_end_log_trans (591 samples, 0.02%)</title><rect x="47.9449%" y="469" width="0.0246%" height="15" fill="rgb(253,117,3)" fg:x="1152404" fg:w="591"/><text x="48.1949%" y="479.50"></text></g><g><title>mutex_lock (713 samples, 0.03%)</title><rect x="47.9695%" y="469" width="0.0297%" height="15" fill="rgb(241,127,19)" fg:x="1152995" fg:w="713"/><text x="48.2195%" y="479.50"></text></g><g><title>btrfs_del_inode_ref_in_log (42,374 samples, 1.76%)</title><rect x="46.2507%" y="485" width="1.7629%" height="15" fill="rgb(218,103,12)" fg:x="1111682" fg:w="42374"/><text x="46.5007%" y="495.50"></text></g><g><title>mutex_unlock (348 samples, 0.01%)</title><rect x="47.9992%" y="469" width="0.0145%" height="15" fill="rgb(236,214,43)" fg:x="1153708" fg:w="348"/><text x="48.2492%" y="479.50"></text></g><g><title>_find_next_bit.constprop.0 (327 samples, 0.01%)</title><rect x="48.1781%" y="405" width="0.0136%" height="15" fill="rgb(244,144,19)" fg:x="1158009" fg:w="327"/><text x="48.4281%" y="415.50"></text></g><g><title>steal_from_bitmap.part.0 (387 samples, 0.02%)</title><rect x="48.1764%" y="421" width="0.0161%" height="15" fill="rgb(246,188,10)" fg:x="1157968" fg:w="387"/><text x="48.4264%" y="431.50"></text></g><g><title>__btrfs_add_free_space (535 samples, 0.02%)</title><rect x="48.1733%" y="437" width="0.0223%" height="15" fill="rgb(212,193,33)" fg:x="1157894" fg:w="535"/><text x="48.4233%" y="447.50"></text></g><g><title>btrfs_free_tree_block (835 samples, 0.03%)</title><rect x="48.1732%" y="453" width="0.0347%" height="15" fill="rgb(241,51,29)" fg:x="1157892" fg:w="835"/><text x="48.4232%" y="463.50"></text></g><g><title>btrfs_del_leaf (974 samples, 0.04%)</title><rect x="48.1729%" y="469" width="0.0405%" height="15" fill="rgb(211,58,19)" fg:x="1157883" fg:w="974"/><text x="48.4229%" y="479.50"></text></g><g><title>btrfs_get_32 (623 samples, 0.03%)</title><rect x="48.2134%" y="469" width="0.0259%" height="15" fill="rgb(229,111,26)" fg:x="1158857" fg:w="623"/><text x="48.4634%" y="479.50"></text></g><g><title>btrfs_get_token_32 (14,612 samples, 0.61%)</title><rect x="48.2393%" y="469" width="0.6079%" height="15" fill="rgb(213,115,40)" fg:x="1159480" fg:w="14612"/><text x="48.4893%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (2,032 samples, 0.08%)</title><rect x="48.7627%" y="453" width="0.0845%" height="15" fill="rgb(209,56,44)" fg:x="1172060" fg:w="2032"/><text x="49.0127%" y="463.50"></text></g><g><title>btrfs_mark_buffer_dirty (808 samples, 0.03%)</title><rect x="48.8472%" y="469" width="0.0336%" height="15" fill="rgb(230,108,32)" fg:x="1174092" fg:w="808"/><text x="49.0972%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (257 samples, 0.01%)</title><rect x="48.8702%" y="453" width="0.0107%" height="15" fill="rgb(216,165,31)" fg:x="1174643" fg:w="257"/><text x="49.1202%" y="463.50"></text></g><g><title>btrfs_set_token_32 (10,415 samples, 0.43%)</title><rect x="48.8818%" y="469" width="0.4333%" height="15" fill="rgb(218,122,21)" fg:x="1174923" fg:w="10415"/><text x="49.1318%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,603 samples, 0.07%)</title><rect x="49.2484%" y="453" width="0.0667%" height="15" fill="rgb(223,224,47)" fg:x="1183735" fg:w="1603"/><text x="49.4984%" y="463.50"></text></g><g><title>leaf_space_used (566 samples, 0.02%)</title><rect x="49.3165%" y="469" width="0.0235%" height="15" fill="rgb(238,102,44)" fg:x="1185372" fg:w="566"/><text x="49.5665%" y="479.50"></text></g><g><title>btrfs_get_32 (427 samples, 0.02%)</title><rect x="49.3223%" y="453" width="0.0178%" height="15" fill="rgb(236,46,40)" fg:x="1185511" fg:w="427"/><text x="49.5723%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,916 samples, 0.08%)</title><rect x="49.3401%" y="469" width="0.0797%" height="15" fill="rgb(247,202,50)" fg:x="1185938" fg:w="1916"/><text x="49.5901%" y="479.50"></text></g><g><title>memmove (1,498 samples, 0.06%)</title><rect x="49.3575%" y="453" width="0.0623%" height="15" fill="rgb(209,99,20)" fg:x="1186356" fg:w="1498"/><text x="49.6075%" y="463.50"></text></g><g><title>copy_pages (779 samples, 0.03%)</title><rect x="49.4462%" y="453" width="0.0324%" height="15" fill="rgb(252,27,34)" fg:x="1188489" fg:w="779"/><text x="49.6962%" y="463.50"></text></g><g><title>memmove (6,087 samples, 0.25%)</title><rect x="49.4786%" y="453" width="0.2532%" height="15" fill="rgb(215,206,23)" fg:x="1189268" fg:w="6087"/><text x="49.7286%" y="463.50"></text></g><g><title>memmove_extent_buffer (7,502 samples, 0.31%)</title><rect x="49.4198%" y="469" width="0.3121%" height="15" fill="rgb(212,135,36)" fg:x="1187854" fg:w="7502"/><text x="49.6698%" y="479.50"></text></g><g><title>__push_leaf_left (412 samples, 0.02%)</title><rect x="49.7333%" y="453" width="0.0171%" height="15" fill="rgb(240,189,1)" fg:x="1195390" fg:w="412"/><text x="49.9833%" y="463.50"></text></g><g><title>push_leaf_left (651 samples, 0.03%)</title><rect x="49.7319%" y="469" width="0.0271%" height="15" fill="rgb(242,56,20)" fg:x="1195356" fg:w="651"/><text x="49.9819%" y="479.50"></text></g><g><title>__push_leaf_right (457 samples, 0.02%)</title><rect x="49.7598%" y="453" width="0.0190%" height="15" fill="rgb(247,132,33)" fg:x="1196026" fg:w="457"/><text x="50.0098%" y="463.50"></text></g><g><title>push_leaf_right (672 samples, 0.03%)</title><rect x="49.7590%" y="469" width="0.0280%" height="15" fill="rgb(208,149,11)" fg:x="1196007" fg:w="672"/><text x="50.0090%" y="479.50"></text></g><g><title>btrfs_del_items (42,677 samples, 1.78%)</title><rect x="48.0136%" y="485" width="1.7755%" height="15" fill="rgb(211,33,11)" fg:x="1154056" fg:w="42677"/><text x="48.2636%" y="495.50">b..</text></g><g><title>__list_add_valid (613 samples, 0.03%)</title><rect x="49.8675%" y="453" width="0.0255%" height="15" fill="rgb(221,29,38)" fg:x="1198616" fg:w="613"/><text x="50.1175%" y="463.50"></text></g><g><title>_raw_spin_lock (425 samples, 0.02%)</title><rect x="49.8930%" y="453" width="0.0177%" height="15" fill="rgb(206,182,49)" fg:x="1199229" fg:w="425"/><text x="50.1430%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,623 samples, 0.11%)</title><rect x="49.8163%" y="469" width="0.1091%" height="15" fill="rgb(216,140,1)" fg:x="1197385" fg:w="2623"/><text x="50.0663%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,607 samples, 0.07%)</title><rect x="49.9256%" y="469" width="0.0669%" height="15" fill="rgb(232,57,40)" fg:x="1200012" fg:w="1607"/><text x="50.1756%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (1,547 samples, 0.06%)</title><rect x="49.9281%" y="453" width="0.0644%" height="15" fill="rgb(224,186,18)" fg:x="1200072" fg:w="1547"/><text x="50.1781%" y="463.50"></text></g><g><title>__schedule (292 samples, 0.01%)</title><rect x="50.0052%" y="437" width="0.0121%" height="15" fill="rgb(215,121,11)" fg:x="1201924" fg:w="292"/><text x="50.2552%" y="447.50"></text></g><g><title>_cond_resched (317 samples, 0.01%)</title><rect x="50.0044%" y="453" width="0.0132%" height="15" fill="rgb(245,147,10)" fg:x="1201905" fg:w="317"/><text x="50.2544%" y="463.50"></text></g><g><title>mutex_lock (604 samples, 0.03%)</title><rect x="49.9925%" y="469" width="0.0251%" height="15" fill="rgb(238,153,13)" fg:x="1201619" fg:w="604"/><text x="50.2425%" y="479.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (5,640 samples, 0.23%)</title><rect x="49.7892%" y="485" width="0.2346%" height="15" fill="rgb(233,108,0)" fg:x="1196733" fg:w="5640"/><text x="50.0392%" y="495.50"></text></g><g><title>btrfs_comp_cpu_keys (894 samples, 0.04%)</title><rect x="50.0590%" y="453" width="0.0372%" height="15" fill="rgb(212,157,17)" fg:x="1203218" fg:w="894"/><text x="50.3090%" y="463.50"></text></g><g><title>__btrfs_add_delayed_item (1,966 samples, 0.08%)</title><rect x="50.0330%" y="469" width="0.0818%" height="15" fill="rgb(225,213,38)" fg:x="1202593" fg:w="1966"/><text x="50.2830%" y="479.50"></text></g><g><title>rb_insert_color (447 samples, 0.02%)</title><rect x="50.0962%" y="453" width="0.0186%" height="15" fill="rgb(248,16,11)" fg:x="1204112" fg:w="447"/><text x="50.3462%" y="463.50"></text></g><g><title>__list_del_entry_valid (343 samples, 0.01%)</title><rect x="50.1308%" y="453" width="0.0143%" height="15" fill="rgb(241,33,4)" fg:x="1204944" fg:w="343"/><text x="50.3808%" y="463.50"></text></g><g><title>_raw_spin_lock (258 samples, 0.01%)</title><rect x="50.1456%" y="453" width="0.0107%" height="15" fill="rgb(222,26,43)" fg:x="1205300" fg:w="258"/><text x="50.3956%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,709 samples, 0.07%)</title><rect x="50.1148%" y="469" width="0.0711%" height="15" fill="rgb(243,29,36)" fg:x="1204559" fg:w="1709"/><text x="50.3648%" y="479.50"></text></g><g><title>mutex_unlock (515 samples, 0.02%)</title><rect x="50.1645%" y="453" width="0.0214%" height="15" fill="rgb(241,9,27)" fg:x="1205753" fg:w="515"/><text x="50.4145%" y="463.50"></text></g><g><title>mutex_spin_on_owner (1,658 samples, 0.07%)</title><rect x="50.1919%" y="453" width="0.0690%" height="15" fill="rgb(205,117,26)" fg:x="1206413" fg:w="1658"/><text x="50.4419%" y="463.50"></text></g><g><title>finish_task_switch (246 samples, 0.01%)</title><rect x="50.2702%" y="405" width="0.0102%" height="15" fill="rgb(209,80,39)" fg:x="1208294" fg:w="246"/><text x="50.5202%" y="415.50"></text></g><g><title>__mutex_lock.constprop.0 (2,427 samples, 0.10%)</title><rect x="50.1859%" y="469" width="0.1010%" height="15" fill="rgb(239,155,6)" fg:x="1206268" fg:w="2427"/><text x="50.4359%" y="479.50"></text></g><g><title>schedule_preempt_disabled (611 samples, 0.03%)</title><rect x="50.2614%" y="453" width="0.0254%" height="15" fill="rgb(212,104,12)" fg:x="1208084" fg:w="611"/><text x="50.5114%" y="463.50"></text></g><g><title>schedule (611 samples, 0.03%)</title><rect x="50.2614%" y="437" width="0.0254%" height="15" fill="rgb(234,204,3)" fg:x="1208084" fg:w="611"/><text x="50.5114%" y="447.50"></text></g><g><title>__schedule (601 samples, 0.03%)</title><rect x="50.2619%" y="421" width="0.0250%" height="15" fill="rgb(251,218,7)" fg:x="1208094" fg:w="601"/><text x="50.5119%" y="431.50"></text></g><g><title>_raw_spin_lock (1,358 samples, 0.06%)</title><rect x="50.3117%" y="437" width="0.0565%" height="15" fill="rgb(221,81,32)" fg:x="1209292" fg:w="1358"/><text x="50.5617%" y="447.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,892 samples, 0.08%)</title><rect x="50.2896%" y="469" width="0.0787%" height="15" fill="rgb(214,152,26)" fg:x="1208762" fg:w="1892"/><text x="50.5396%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,580 samples, 0.07%)</title><rect x="50.3026%" y="453" width="0.0657%" height="15" fill="rgb(223,22,3)" fg:x="1209074" fg:w="1580"/><text x="50.5526%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (603 samples, 0.03%)</title><rect x="50.3684%" y="469" width="0.0251%" height="15" fill="rgb(207,174,7)" fg:x="1210654" fg:w="603"/><text x="50.6184%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (547 samples, 0.02%)</title><rect x="50.3707%" y="453" width="0.0228%" height="15" fill="rgb(224,19,52)" fg:x="1210710" fg:w="547"/><text x="50.6207%" y="463.50"></text></g><g><title>kmem_cache_alloc_trace (1,085 samples, 0.05%)</title><rect x="50.3935%" y="469" width="0.0451%" height="15" fill="rgb(228,24,14)" fg:x="1211257" fg:w="1085"/><text x="50.6435%" y="479.50"></text></g><g><title>mutex_lock (420 samples, 0.02%)</title><rect x="50.4386%" y="469" width="0.0175%" height="15" fill="rgb(230,153,43)" fg:x="1212342" fg:w="420"/><text x="50.6886%" y="479.50"></text></g><g><title>btrfs_delete_delayed_dir_index (10,706 samples, 0.45%)</title><rect x="50.0238%" y="485" width="0.4454%" height="15" fill="rgb(231,106,12)" fg:x="1202373" fg:w="10706"/><text x="50.2738%" y="495.50"></text></g><g><title>mutex_unlock (317 samples, 0.01%)</title><rect x="50.4561%" y="469" width="0.0132%" height="15" fill="rgb(215,92,2)" fg:x="1212762" fg:w="317"/><text x="50.7061%" y="479.50"></text></g><g><title>btrfs_get_16 (285 samples, 0.01%)</title><rect x="50.4869%" y="469" width="0.0119%" height="15" fill="rgb(249,143,25)" fg:x="1213503" fg:w="285"/><text x="50.7369%" y="479.50"></text></g><g><title>btrfs_delete_one_dir_name (867 samples, 0.04%)</title><rect x="50.4693%" y="485" width="0.0361%" height="15" fill="rgb(252,7,35)" fg:x="1213079" fg:w="867"/><text x="50.7193%" y="495.50"></text></g><g><title>btrfs_get_16 (783 samples, 0.03%)</title><rect x="50.5660%" y="453" width="0.0326%" height="15" fill="rgb(216,69,40)" fg:x="1215405" fg:w="783"/><text x="50.8160%" y="463.50"></text></g><g><title>btrfs_get_32 (525 samples, 0.02%)</title><rect x="50.5986%" y="453" width="0.0218%" height="15" fill="rgb(240,36,33)" fg:x="1216188" fg:w="525"/><text x="50.8486%" y="463.50"></text></g><g><title>btrfs_match_dir_item_name (3,365 samples, 0.14%)</title><rect x="50.5384%" y="469" width="0.1400%" height="15" fill="rgb(231,128,14)" fg:x="1214741" fg:w="3365"/><text x="50.7884%" y="479.50"></text></g><g><title>memcmp_extent_buffer (1,393 samples, 0.06%)</title><rect x="50.6204%" y="453" width="0.0580%" height="15" fill="rgb(245,143,14)" fg:x="1216713" fg:w="1393"/><text x="50.8704%" y="463.50"></text></g><g><title>memcmp (817 samples, 0.03%)</title><rect x="50.6444%" y="437" width="0.0340%" height="15" fill="rgb(222,130,28)" fg:x="1217289" fg:w="817"/><text x="50.8944%" y="447.50"></text></g><g><title>_raw_read_lock (698 samples, 0.03%)</title><rect x="50.8287%" y="421" width="0.0290%" height="15" fill="rgb(212,10,48)" fg:x="1221719" fg:w="698"/><text x="51.0787%" y="431.50"></text></g><g><title>finish_wait (3,712 samples, 0.15%)</title><rect x="50.8603%" y="421" width="0.1544%" height="15" fill="rgb(254,118,45)" fg:x="1222477" fg:w="3712"/><text x="51.1103%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (3,525 samples, 0.15%)</title><rect x="50.8680%" y="405" width="0.1467%" height="15" fill="rgb(228,6,45)" fg:x="1222664" fg:w="3525"/><text x="51.1180%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,368 samples, 0.14%)</title><rect x="50.8746%" y="389" width="0.1401%" height="15" fill="rgb(241,18,35)" fg:x="1222821" fg:w="3368"/><text x="51.1246%" y="399.50"></text></g><g><title>__list_add_valid (261 samples, 0.01%)</title><rect x="51.0447%" y="405" width="0.0109%" height="15" fill="rgb(227,214,53)" fg:x="1226910" fg:w="261"/><text x="51.2947%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (9,326 samples, 0.39%)</title><rect x="51.0555%" y="405" width="0.3880%" height="15" fill="rgb(224,107,51)" fg:x="1227171" fg:w="9326"/><text x="51.3055%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,904 samples, 0.37%)</title><rect x="51.0731%" y="389" width="0.3704%" height="15" fill="rgb(248,60,28)" fg:x="1227593" fg:w="8904"/><text x="51.3231%" y="399.50"></text></g><g><title>prepare_to_wait_event (10,463 samples, 0.44%)</title><rect x="51.0154%" y="421" width="0.4353%" height="15" fill="rgb(249,101,23)" fg:x="1226206" fg:w="10463"/><text x="51.2654%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (10,385 samples, 0.43%)</title><rect x="51.4507%" y="421" width="0.4321%" height="15" fill="rgb(228,51,19)" fg:x="1236669" fg:w="10385"/><text x="51.7007%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,467 samples, 0.31%)</title><rect x="51.5721%" y="405" width="0.3107%" height="15" fill="rgb(213,20,6)" fg:x="1239587" fg:w="7467"/><text x="51.8221%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (299 samples, 0.01%)</title><rect x="51.9055%" y="389" width="0.0124%" height="15" fill="rgb(212,124,10)" fg:x="1247601" fg:w="299"/><text x="52.1555%" y="399.50"></text></g><g><title>update_curr (539 samples, 0.02%)</title><rect x="51.9512%" y="357" width="0.0224%" height="15" fill="rgb(248,3,40)" fg:x="1248699" fg:w="539"/><text x="52.2012%" y="367.50"></text></g><g><title>dequeue_entity (1,603 samples, 0.07%)</title><rect x="51.9296%" y="373" width="0.0667%" height="15" fill="rgb(223,178,23)" fg:x="1248180" fg:w="1603"/><text x="52.1796%" y="383.50"></text></g><g><title>update_load_avg (545 samples, 0.02%)</title><rect x="51.9736%" y="357" width="0.0227%" height="15" fill="rgb(240,132,45)" fg:x="1249238" fg:w="545"/><text x="52.2236%" y="367.50"></text></g><g><title>dequeue_task_fair (1,943 samples, 0.08%)</title><rect x="51.9209%" y="389" width="0.0808%" height="15" fill="rgb(245,164,36)" fg:x="1247970" fg:w="1943"/><text x="52.1709%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (2,511 samples, 0.10%)</title><rect x="52.0149%" y="373" width="0.1045%" height="15" fill="rgb(231,188,53)" fg:x="1250231" fg:w="2511"/><text x="52.2649%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,432 samples, 0.10%)</title><rect x="52.0182%" y="357" width="0.1012%" height="15" fill="rgb(237,198,39)" fg:x="1250310" fg:w="2432"/><text x="52.2682%" y="367.50"></text></g><g><title>native_write_msr (2,384 samples, 0.10%)</title><rect x="52.0202%" y="341" width="0.0992%" height="15" fill="rgb(223,120,35)" fg:x="1250358" fg:w="2384"/><text x="52.2702%" y="351.50"></text></g><g><title>finish_task_switch (2,974 samples, 0.12%)</title><rect x="52.0017%" y="389" width="0.1237%" height="15" fill="rgb(253,107,49)" fg:x="1249913" fg:w="2974"/><text x="52.2517%" y="399.50"></text></g><g><title>pick_next_task_fair (351 samples, 0.01%)</title><rect x="52.1256%" y="389" width="0.0146%" height="15" fill="rgb(216,44,31)" fg:x="1252891" fg:w="351"/><text x="52.3756%" y="399.50"></text></g><g><title>__update_idle_core (258 samples, 0.01%)</title><rect x="52.1426%" y="373" width="0.0107%" height="15" fill="rgb(253,87,21)" fg:x="1253299" fg:w="258"/><text x="52.3926%" y="383.50"></text></g><g><title>pick_next_task_idle (318 samples, 0.01%)</title><rect x="52.1402%" y="389" width="0.0132%" height="15" fill="rgb(226,18,2)" fg:x="1253242" fg:w="318"/><text x="52.3902%" y="399.50"></text></g><g><title>psi_task_change (1,500 samples, 0.06%)</title><rect x="52.1534%" y="389" width="0.0624%" height="15" fill="rgb(216,8,46)" fg:x="1253560" fg:w="1500"/><text x="52.4034%" y="399.50"></text></g><g><title>psi_group_change (1,238 samples, 0.05%)</title><rect x="52.1643%" y="373" width="0.0515%" height="15" fill="rgb(226,140,39)" fg:x="1253822" fg:w="1238"/><text x="52.4143%" y="383.50"></text></g><g><title>record_times (246 samples, 0.01%)</title><rect x="52.2056%" y="357" width="0.0102%" height="15" fill="rgb(221,194,54)" fg:x="1254814" fg:w="246"/><text x="52.4556%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (34,605 samples, 1.44%)</title><rect x="50.7971%" y="437" width="1.4397%" height="15" fill="rgb(213,92,11)" fg:x="1220958" fg:w="34605"/><text x="51.0471%" y="447.50"></text></g><g><title>schedule (8,509 samples, 0.35%)</title><rect x="51.8828%" y="421" width="0.3540%" height="15" fill="rgb(229,162,46)" fg:x="1247054" fg:w="8509"/><text x="52.1328%" y="431.50"></text></g><g><title>__schedule (8,442 samples, 0.35%)</title><rect x="51.8855%" y="405" width="0.3512%" height="15" fill="rgb(214,111,36)" fg:x="1247121" fg:w="8442"/><text x="52.1355%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (36,107 samples, 1.50%)</title><rect x="50.7893%" y="453" width="1.5022%" height="15" fill="rgb(207,6,21)" fg:x="1220771" fg:w="36107"/><text x="51.0393%" y="463.50"></text></g><g><title>btrfs_root_node (1,314 samples, 0.05%)</title><rect x="52.2368%" y="437" width="0.0547%" height="15" fill="rgb(213,127,38)" fg:x="1255564" fg:w="1314"/><text x="52.4868%" y="447.50"></text></g><g><title>prepare_to_wait_event (243 samples, 0.01%)</title><rect x="52.2983%" y="437" width="0.0101%" height="15" fill="rgb(238,118,32)" fg:x="1257042" fg:w="243"/><text x="52.5483%" y="447.50"></text></g><g><title>dequeue_entity (503 samples, 0.02%)</title><rect x="52.3230%" y="389" width="0.0209%" height="15" fill="rgb(240,139,39)" fg:x="1257635" fg:w="503"/><text x="52.5730%" y="399.50"></text></g><g><title>dequeue_task_fair (582 samples, 0.02%)</title><rect x="52.3211%" y="405" width="0.0242%" height="15" fill="rgb(235,10,37)" fg:x="1257590" fg:w="582"/><text x="52.5711%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,177 samples, 0.05%)</title><rect x="52.3501%" y="389" width="0.0490%" height="15" fill="rgb(249,171,38)" fg:x="1258286" fg:w="1177"/><text x="52.6001%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,151 samples, 0.05%)</title><rect x="52.3511%" y="373" width="0.0479%" height="15" fill="rgb(242,144,32)" fg:x="1258312" fg:w="1151"/><text x="52.6011%" y="383.50"></text></g><g><title>native_write_msr (1,142 samples, 0.05%)</title><rect x="52.3515%" y="357" width="0.0475%" height="15" fill="rgb(217,117,21)" fg:x="1258321" fg:w="1142"/><text x="52.6015%" y="367.50"></text></g><g><title>finish_task_switch (1,343 samples, 0.06%)</title><rect x="52.3453%" y="405" width="0.0559%" height="15" fill="rgb(249,87,1)" fg:x="1258172" fg:w="1343"/><text x="52.5953%" y="415.50"></text></g><g><title>psi_task_change (438 samples, 0.02%)</title><rect x="52.4119%" y="405" width="0.0182%" height="15" fill="rgb(248,196,48)" fg:x="1259773" fg:w="438"/><text x="52.6619%" y="415.50"></text></g><g><title>psi_group_change (359 samples, 0.01%)</title><rect x="52.4152%" y="389" width="0.0149%" height="15" fill="rgb(251,206,33)" fg:x="1259852" fg:w="359"/><text x="52.6652%" y="399.50"></text></g><g><title>__btrfs_tree_lock (3,475 samples, 0.14%)</title><rect x="52.2915%" y="453" width="0.1446%" height="15" fill="rgb(232,141,28)" fg:x="1256878" fg:w="3475"/><text x="52.5415%" y="463.50"></text></g><g><title>schedule (3,068 samples, 0.13%)</title><rect x="52.3084%" y="437" width="0.1276%" height="15" fill="rgb(209,167,14)" fg:x="1257285" fg:w="3068"/><text x="52.5584%" y="447.50"></text></g><g><title>__schedule (3,043 samples, 0.13%)</title><rect x="52.3095%" y="421" width="0.1266%" height="15" fill="rgb(225,11,50)" fg:x="1257310" fg:w="3043"/><text x="52.5595%" y="431.50"></text></g><g><title>__btrfs_cow_block (481 samples, 0.02%)</title><rect x="52.4519%" y="437" width="0.0200%" height="15" fill="rgb(209,50,20)" fg:x="1260733" fg:w="481"/><text x="52.7019%" y="447.50"></text></g><g><title>btrfs_cow_block (487 samples, 0.02%)</title><rect x="52.4517%" y="453" width="0.0203%" height="15" fill="rgb(212,17,46)" fg:x="1260728" fg:w="487"/><text x="52.7017%" y="463.50"></text></g><g><title>_cond_resched (266 samples, 0.01%)</title><rect x="52.5168%" y="421" width="0.0111%" height="15" fill="rgb(216,101,39)" fg:x="1262293" fg:w="266"/><text x="52.7668%" y="431.50"></text></g><g><title>_raw_write_lock (701 samples, 0.03%)</title><rect x="52.5314%" y="421" width="0.0292%" height="15" fill="rgb(212,228,48)" fg:x="1262644" fg:w="701"/><text x="52.7814%" y="431.50"></text></g><g><title>finish_wait (4,144 samples, 0.17%)</title><rect x="52.5610%" y="421" width="0.1724%" height="15" fill="rgb(250,6,50)" fg:x="1263356" fg:w="4144"/><text x="52.8110%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (3,902 samples, 0.16%)</title><rect x="52.5711%" y="405" width="0.1623%" height="15" fill="rgb(250,160,48)" fg:x="1263598" fg:w="3902"/><text x="52.8211%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,628 samples, 0.15%)</title><rect x="52.5825%" y="389" width="0.1509%" height="15" fill="rgb(244,216,33)" fg:x="1263872" fg:w="3628"/><text x="52.8325%" y="399.50"></text></g><g><title>__list_add_valid (308 samples, 0.01%)</title><rect x="52.7772%" y="405" width="0.0128%" height="15" fill="rgb(207,157,5)" fg:x="1268553" fg:w="308"/><text x="53.0272%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (10,662 samples, 0.44%)</title><rect x="52.7900%" y="405" width="0.4436%" height="15" fill="rgb(228,199,8)" fg:x="1268861" fg:w="10662"/><text x="53.0400%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,817 samples, 0.41%)</title><rect x="52.8252%" y="389" width="0.4084%" height="15" fill="rgb(227,80,20)" fg:x="1269706" fg:w="9817"/><text x="53.0752%" y="399.50"></text></g><g><title>_raw_spin_unlock_irqrestore (286 samples, 0.01%)</title><rect x="53.2336%" y="405" width="0.0119%" height="15" fill="rgb(222,9,33)" fg:x="1279523" fg:w="286"/><text x="53.4836%" y="415.50"></text></g><g><title>prepare_to_wait_event (12,249 samples, 0.51%)</title><rect x="52.7359%" y="421" width="0.5096%" height="15" fill="rgb(239,44,28)" fg:x="1267561" fg:w="12249"/><text x="52.9859%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,460 samples, 0.35%)</title><rect x="53.6799%" y="405" width="0.3520%" height="15" fill="rgb(249,187,43)" fg:x="1290250" fg:w="8460"/><text x="53.9299%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (18,902 samples, 0.79%)</title><rect x="53.2455%" y="421" width="0.7864%" height="15" fill="rgb(216,141,28)" fg:x="1279810" fg:w="18902"/><text x="53.4955%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (512 samples, 0.02%)</title><rect x="54.0714%" y="389" width="0.0213%" height="15" fill="rgb(230,154,53)" fg:x="1299660" fg:w="512"/><text x="54.3214%" y="399.50"></text></g><g><title>update_cfs_group (293 samples, 0.01%)</title><rect x="54.1373%" y="357" width="0.0122%" height="15" fill="rgb(227,82,4)" fg:x="1301244" fg:w="293"/><text x="54.3873%" y="367.50"></text></g><g><title>update_curr (914 samples, 0.04%)</title><rect x="54.1495%" y="357" width="0.0380%" height="15" fill="rgb(220,107,16)" fg:x="1301537" fg:w="914"/><text x="54.3995%" y="367.50"></text></g><g><title>__update_load_avg_se (334 samples, 0.01%)</title><rect x="54.2092%" y="341" width="0.0139%" height="15" fill="rgb(207,187,2)" fg:x="1302973" fg:w="334"/><text x="54.4592%" y="351.50"></text></g><g><title>dequeue_entity (2,669 samples, 0.11%)</title><rect x="54.1130%" y="373" width="0.1110%" height="15" fill="rgb(210,162,52)" fg:x="1300659" fg:w="2669"/><text x="54.3630%" y="383.50"></text></g><g><title>update_load_avg (877 samples, 0.04%)</title><rect x="54.1875%" y="357" width="0.0365%" height="15" fill="rgb(217,216,49)" fg:x="1302451" fg:w="877"/><text x="54.4375%" y="367.50"></text></g><g><title>dequeue_task_fair (3,190 samples, 0.13%)</title><rect x="54.0994%" y="389" width="0.1327%" height="15" fill="rgb(218,146,49)" fg:x="1300333" fg:w="3190"/><text x="54.3494%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (3,987 samples, 0.17%)</title><rect x="54.2584%" y="373" width="0.1659%" height="15" fill="rgb(216,55,40)" fg:x="1304155" fg:w="3987"/><text x="54.5084%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,829 samples, 0.16%)</title><rect x="54.2650%" y="357" width="0.1593%" height="15" fill="rgb(208,196,21)" fg:x="1304313" fg:w="3829"/><text x="54.5150%" y="367.50"></text></g><g><title>native_write_msr (3,787 samples, 0.16%)</title><rect x="54.2667%" y="341" width="0.1576%" height="15" fill="rgb(242,117,42)" fg:x="1304355" fg:w="3787"/><text x="54.5167%" y="351.50"></text></g><g><title>finish_task_switch (4,828 samples, 0.20%)</title><rect x="54.2321%" y="389" width="0.2009%" height="15" fill="rgb(210,11,23)" fg:x="1303523" fg:w="4828"/><text x="54.4821%" y="399.50"></text></g><g><title>newidle_balance (302 samples, 0.01%)</title><rect x="54.4391%" y="373" width="0.0126%" height="15" fill="rgb(217,110,2)" fg:x="1308498" fg:w="302"/><text x="54.6891%" y="383.50"></text></g><g><title>pick_next_task_fair (585 samples, 0.02%)</title><rect x="54.4331%" y="389" width="0.0243%" height="15" fill="rgb(229,77,54)" fg:x="1308355" fg:w="585"/><text x="54.6831%" y="399.50"></text></g><g><title>__update_idle_core (501 samples, 0.02%)</title><rect x="54.4602%" y="373" width="0.0208%" height="15" fill="rgb(218,53,16)" fg:x="1309006" fg:w="501"/><text x="54.7102%" y="383.50"></text></g><g><title>pick_next_task_idle (571 samples, 0.02%)</title><rect x="54.4575%" y="389" width="0.0238%" height="15" fill="rgb(215,38,13)" fg:x="1308940" fg:w="571"/><text x="54.7075%" y="399.50"></text></g><g><title>psi_task_change (2,448 samples, 0.10%)</title><rect x="54.4812%" y="389" width="0.1018%" height="15" fill="rgb(235,42,18)" fg:x="1309511" fg:w="2448"/><text x="54.7312%" y="399.50"></text></g><g><title>psi_group_change (2,080 samples, 0.09%)</title><rect x="54.4965%" y="373" width="0.0865%" height="15" fill="rgb(219,66,54)" fg:x="1309879" fg:w="2080"/><text x="54.7465%" y="383.50"></text></g><g><title>record_times (524 samples, 0.02%)</title><rect x="54.5613%" y="357" width="0.0218%" height="15" fill="rgb(222,205,4)" fg:x="1311435" fg:w="524"/><text x="54.8113%" y="367.50"></text></g><g><title>sched_clock_cpu (327 samples, 0.01%)</title><rect x="54.5695%" y="341" width="0.0136%" height="15" fill="rgb(227,213,46)" fg:x="1311632" fg:w="327"/><text x="54.8195%" y="351.50"></text></g><g><title>sched_clock (288 samples, 0.01%)</title><rect x="54.5711%" y="325" width="0.0120%" height="15" fill="rgb(250,145,42)" fg:x="1311671" fg:w="288"/><text x="54.8211%" y="335.50"></text></g><g><title>native_sched_clock (270 samples, 0.01%)</title><rect x="54.5719%" y="309" width="0.0112%" height="15" fill="rgb(219,15,2)" fg:x="1311689" fg:w="270"/><text x="54.8219%" y="319.50"></text></g><g><title>psi_task_switch (272 samples, 0.01%)</title><rect x="54.5831%" y="389" width="0.0113%" height="15" fill="rgb(231,181,52)" fg:x="1311959" fg:w="272"/><text x="54.8331%" y="399.50"></text></g><g><title>__schedule (13,772 samples, 0.57%)</title><rect x="54.0418%" y="405" width="0.5730%" height="15" fill="rgb(235,1,42)" fg:x="1298949" fg:w="13772"/><text x="54.2918%" y="415.50"></text></g><g><title>update_rq_clock (275 samples, 0.01%)</title><rect x="54.6033%" y="389" width="0.0114%" height="15" fill="rgb(249,88,27)" fg:x="1312446" fg:w="275"/><text x="54.8533%" y="399.50"></text></g><g><title>__btrfs_tree_lock (51,444 samples, 2.14%)</title><rect x="52.4745%" y="437" width="2.1403%" height="15" fill="rgb(235,145,16)" fg:x="1261278" fg:w="51444"/><text x="52.7245%" y="447.50">_..</text></g><g><title>schedule (14,010 samples, 0.58%)</title><rect x="54.0320%" y="421" width="0.5829%" height="15" fill="rgb(237,114,19)" fg:x="1298712" fg:w="14010"/><text x="54.2820%" y="431.50"></text></g><g><title>btrfs_lock_root_node (51,985 samples, 2.16%)</title><rect x="52.4719%" y="453" width="2.1628%" height="15" fill="rgb(238,51,50)" fg:x="1261215" fg:w="51985"/><text x="52.7219%" y="463.50">b..</text></g><g><title>btrfs_root_node (478 samples, 0.02%)</title><rect x="54.6148%" y="437" width="0.0199%" height="15" fill="rgb(205,194,25)" fg:x="1312722" fg:w="478"/><text x="54.8648%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (562 samples, 0.02%)</title><rect x="54.6347%" y="453" width="0.0234%" height="15" fill="rgb(215,203,17)" fg:x="1313200" fg:w="562"/><text x="54.8847%" y="463.50"></text></g><g><title>btrfs_set_lock_blocking_write (276 samples, 0.01%)</title><rect x="54.6466%" y="437" width="0.0115%" height="15" fill="rgb(233,112,49)" fg:x="1313486" fg:w="276"/><text x="54.8966%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (487 samples, 0.02%)</title><rect x="54.6581%" y="453" width="0.0203%" height="15" fill="rgb(241,130,26)" fg:x="1313763" fg:w="487"/><text x="54.9081%" y="463.50"></text></g><g><title>_raw_write_lock (406 samples, 0.02%)</title><rect x="54.6847%" y="437" width="0.0169%" height="15" fill="rgb(252,223,19)" fg:x="1314401" fg:w="406"/><text x="54.9347%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (2,964 samples, 0.12%)</title><rect x="54.6784%" y="453" width="0.1233%" height="15" fill="rgb(211,95,25)" fg:x="1314250" fg:w="2964"/><text x="54.9284%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (2,406 samples, 0.10%)</title><rect x="54.7016%" y="437" width="0.1001%" height="15" fill="rgb(251,182,27)" fg:x="1314808" fg:w="2406"/><text x="54.9516%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (600 samples, 0.02%)</title><rect x="54.8026%" y="453" width="0.0250%" height="15" fill="rgb(238,24,4)" fg:x="1317235" fg:w="600"/><text x="55.0526%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (5,987 samples, 0.25%)</title><rect x="54.8276%" y="453" width="0.2491%" height="15" fill="rgb(224,220,25)" fg:x="1317835" fg:w="5987"/><text x="55.0776%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (762 samples, 0.03%)</title><rect x="55.1057%" y="437" width="0.0317%" height="15" fill="rgb(239,133,26)" fg:x="1324520" fg:w="762"/><text x="55.3557%" y="447.50"></text></g><g><title>verify_parent_transid (608 samples, 0.03%)</title><rect x="55.1121%" y="421" width="0.0253%" height="15" fill="rgb(211,94,48)" fg:x="1324674" fg:w="608"/><text x="55.3621%" y="431.50"></text></g><g><title>btrfs_get_64 (896 samples, 0.04%)</title><rect x="55.1374%" y="437" width="0.0373%" height="15" fill="rgb(239,87,6)" fg:x="1325282" fg:w="896"/><text x="55.3874%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (257 samples, 0.01%)</title><rect x="55.1640%" y="421" width="0.0107%" height="15" fill="rgb(227,62,0)" fg:x="1325921" fg:w="257"/><text x="55.4140%" y="431.50"></text></g><g><title>__radix_tree_lookup (3,148 samples, 0.13%)</title><rect x="55.2536%" y="421" width="0.1310%" height="15" fill="rgb(211,226,4)" fg:x="1328076" fg:w="3148"/><text x="55.5036%" y="431.50"></text></g><g><title>mark_page_accessed (1,097 samples, 0.05%)</title><rect x="55.3984%" y="405" width="0.0456%" height="15" fill="rgb(253,38,52)" fg:x="1331555" fg:w="1097"/><text x="55.6484%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,415 samples, 0.06%)</title><rect x="55.3852%" y="421" width="0.0589%" height="15" fill="rgb(229,126,40)" fg:x="1331238" fg:w="1415"/><text x="55.6352%" y="431.50"></text></g><g><title>find_extent_buffer (6,183 samples, 0.26%)</title><rect x="55.1888%" y="437" width="0.2572%" height="15" fill="rgb(229,165,44)" fg:x="1326518" fg:w="6183"/><text x="55.4388%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (9,678 samples, 0.40%)</title><rect x="55.0766%" y="453" width="0.4026%" height="15" fill="rgb(247,95,47)" fg:x="1323822" fg:w="9678"/><text x="55.3266%" y="463.50"></text></g><g><title>read_extent_buffer (799 samples, 0.03%)</title><rect x="55.4460%" y="437" width="0.0332%" height="15" fill="rgb(216,140,30)" fg:x="1332701" fg:w="799"/><text x="55.6960%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (342 samples, 0.01%)</title><rect x="55.4872%" y="437" width="0.0142%" height="15" fill="rgb(246,214,8)" fg:x="1333691" fg:w="342"/><text x="55.7372%" y="447.50"></text></g><g><title>verify_parent_transid (309 samples, 0.01%)</title><rect x="55.4886%" y="421" width="0.0129%" height="15" fill="rgb(227,224,15)" fg:x="1333724" fg:w="309"/><text x="55.7386%" y="431.50"></text></g><g><title>btrfs_get_64 (415 samples, 0.02%)</title><rect x="55.5015%" y="437" width="0.0173%" height="15" fill="rgb(233,175,4)" fg:x="1334033" fg:w="415"/><text x="55.7515%" y="447.50"></text></g><g><title>__radix_tree_lookup (1,405 samples, 0.06%)</title><rect x="55.5584%" y="421" width="0.0585%" height="15" fill="rgb(221,66,45)" fg:x="1335401" fg:w="1405"/><text x="55.8084%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (673 samples, 0.03%)</title><rect x="55.6171%" y="421" width="0.0280%" height="15" fill="rgb(221,178,18)" fg:x="1336813" fg:w="673"/><text x="55.8671%" y="431.50"></text></g><g><title>mark_page_accessed (514 samples, 0.02%)</title><rect x="55.6237%" y="405" width="0.0214%" height="15" fill="rgb(213,81,29)" fg:x="1336972" fg:w="514"/><text x="55.8737%" y="415.50"></text></g><g><title>find_extent_buffer (3,055 samples, 0.13%)</title><rect x="55.5187%" y="437" width="0.1271%" height="15" fill="rgb(220,89,49)" fg:x="1334448" fg:w="3055"/><text x="55.7687%" y="447.50"></text></g><g><title>reada_for_balance (4,221 samples, 0.18%)</title><rect x="55.4793%" y="453" width="0.1756%" height="15" fill="rgb(227,60,33)" fg:x="1333500" fg:w="4221"/><text x="55.7293%" y="463.50"></text></g><g><title>__list_del_entry_valid (506 samples, 0.02%)</title><rect x="55.7297%" y="389" width="0.0211%" height="15" fill="rgb(205,113,12)" fg:x="1339518" fg:w="506"/><text x="55.9797%" y="399.50"></text></g><g><title>_raw_spin_lock (612 samples, 0.03%)</title><rect x="56.0482%" y="373" width="0.0255%" height="15" fill="rgb(211,32,1)" fg:x="1347174" fg:w="612"/><text x="56.2982%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (338 samples, 0.01%)</title><rect x="56.0596%" y="357" width="0.0141%" height="15" fill="rgb(246,2,12)" fg:x="1347448" fg:w="338"/><text x="56.3096%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (867 samples, 0.04%)</title><rect x="56.0736%" y="373" width="0.0361%" height="15" fill="rgb(243,37,27)" fg:x="1347786" fg:w="867"/><text x="56.3236%" y="383.50"></text></g><g><title>available_idle_cpu (595 samples, 0.02%)</title><rect x="56.1757%" y="357" width="0.0248%" height="15" fill="rgb(248,211,31)" fg:x="1350238" fg:w="595"/><text x="56.4257%" y="367.50"></text></g><g><title>select_task_rq_fair (3,192 samples, 0.13%)</title><rect x="56.1145%" y="373" width="0.1328%" height="15" fill="rgb(242,146,47)" fg:x="1348768" fg:w="3192"/><text x="56.3645%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (754 samples, 0.03%)</title><rect x="56.2159%" y="357" width="0.0314%" height="15" fill="rgb(206,70,20)" fg:x="1351206" fg:w="754"/><text x="56.4659%" y="367.50"></text></g><g><title>set_task_cpu (248 samples, 0.01%)</title><rect x="56.2473%" y="373" width="0.0103%" height="15" fill="rgb(215,10,51)" fg:x="1351960" fg:w="248"/><text x="56.4973%" y="383.50"></text></g><g><title>update_cfs_group (294 samples, 0.01%)</title><rect x="56.3538%" y="325" width="0.0122%" height="15" fill="rgb(243,178,53)" fg:x="1354521" fg:w="294"/><text x="56.6038%" y="335.50"></text></g><g><title>update_curr (351 samples, 0.01%)</title><rect x="56.3661%" y="325" width="0.0146%" height="15" fill="rgb(233,221,20)" fg:x="1354815" fg:w="351"/><text x="56.6161%" y="335.50"></text></g><g><title>__update_load_avg_cfs_rq (267 samples, 0.01%)</title><rect x="56.4036%" y="309" width="0.0111%" height="15" fill="rgb(218,95,35)" fg:x="1355716" fg:w="267"/><text x="56.6536%" y="319.50"></text></g><g><title>enqueue_entity (3,142 samples, 0.13%)</title><rect x="56.2958%" y="341" width="0.1307%" height="15" fill="rgb(229,13,5)" fg:x="1353125" fg:w="3142"/><text x="56.5458%" y="351.50"></text></g><g><title>update_load_avg (1,101 samples, 0.05%)</title><rect x="56.3807%" y="325" width="0.0458%" height="15" fill="rgb(252,164,30)" fg:x="1355166" fg:w="1101"/><text x="56.6307%" y="335.50"></text></g><g><title>enqueue_task_fair (4,033 samples, 0.17%)</title><rect x="56.2690%" y="357" width="0.1678%" height="15" fill="rgb(232,68,36)" fg:x="1352482" fg:w="4033"/><text x="56.5190%" y="367.50"></text></g><g><title>ttwu_do_activate (8,351 samples, 0.35%)</title><rect x="56.2576%" y="373" width="0.3474%" height="15" fill="rgb(219,59,54)" fg:x="1352208" fg:w="8351"/><text x="56.5076%" y="383.50"></text></g><g><title>psi_task_change (4,037 samples, 0.17%)</title><rect x="56.4371%" y="357" width="0.1680%" height="15" fill="rgb(250,92,33)" fg:x="1356522" fg:w="4037"/><text x="56.6871%" y="367.50"></text></g><g><title>psi_group_change (3,551 samples, 0.15%)</title><rect x="56.4573%" y="341" width="0.1477%" height="15" fill="rgb(229,162,54)" fg:x="1357008" fg:w="3551"/><text x="56.7073%" y="351.50"></text></g><g><title>record_times (583 samples, 0.02%)</title><rect x="56.5808%" y="325" width="0.0243%" height="15" fill="rgb(244,114,52)" fg:x="1359976" fg:w="583"/><text x="56.8308%" y="335.50"></text></g><g><title>sched_clock_cpu (388 samples, 0.02%)</title><rect x="56.5889%" y="309" width="0.0161%" height="15" fill="rgb(212,211,43)" fg:x="1360171" fg:w="388"/><text x="56.8389%" y="319.50"></text></g><g><title>sched_clock (333 samples, 0.01%)</title><rect x="56.5912%" y="293" width="0.0139%" height="15" fill="rgb(226,147,8)" fg:x="1360226" fg:w="333"/><text x="56.8412%" y="303.50"></text></g><g><title>native_sched_clock (297 samples, 0.01%)</title><rect x="56.5927%" y="277" width="0.0124%" height="15" fill="rgb(226,23,13)" fg:x="1360262" fg:w="297"/><text x="56.8427%" y="287.50"></text></g><g><title>resched_curr (355 samples, 0.01%)</title><rect x="56.6238%" y="341" width="0.0148%" height="15" fill="rgb(240,63,4)" fg:x="1361010" fg:w="355"/><text x="56.8738%" y="351.50"></text></g><g><title>ttwu_do_wakeup (809 samples, 0.03%)</title><rect x="56.6051%" y="373" width="0.0337%" height="15" fill="rgb(221,1,32)" fg:x="1360559" fg:w="809"/><text x="56.8551%" y="383.50"></text></g><g><title>check_preempt_curr (751 samples, 0.03%)</title><rect x="56.6075%" y="357" width="0.0312%" height="15" fill="rgb(242,117,10)" fg:x="1360617" fg:w="751"/><text x="56.8575%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (721 samples, 0.03%)</title><rect x="56.6387%" y="373" width="0.0300%" height="15" fill="rgb(249,172,44)" fg:x="1361368" fg:w="721"/><text x="56.8887%" y="383.50"></text></g><g><title>__wake_up_common (23,889 samples, 0.99%)</title><rect x="55.7047%" y="421" width="0.9939%" height="15" fill="rgb(244,46,45)" fg:x="1338919" fg:w="23889"/><text x="55.9547%" y="431.50"></text></g><g><title>autoremove_wake_function (23,354 samples, 0.97%)</title><rect x="55.7270%" y="405" width="0.9716%" height="15" fill="rgb(206,43,17)" fg:x="1339454" fg:w="23354"/><text x="55.9770%" y="415.50"></text></g><g><title>try_to_wake_up (22,758 samples, 0.95%)</title><rect x="55.7518%" y="389" width="0.9468%" height="15" fill="rgb(239,218,39)" fg:x="1340050" fg:w="22758"/><text x="56.0018%" y="399.50"></text></g><g><title>update_rq_clock (719 samples, 0.03%)</title><rect x="56.6687%" y="373" width="0.0299%" height="15" fill="rgb(208,169,54)" fg:x="1362089" fg:w="719"/><text x="56.9187%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (4,752 samples, 0.20%)</title><rect x="56.6986%" y="421" width="0.1977%" height="15" fill="rgb(247,25,42)" fg:x="1362808" fg:w="4752"/><text x="56.9486%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,488 samples, 0.19%)</title><rect x="56.7096%" y="405" width="0.1867%" height="15" fill="rgb(226,23,31)" fg:x="1363072" fg:w="4488"/><text x="56.9596%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (281 samples, 0.01%)</title><rect x="56.8963%" y="421" width="0.0117%" height="15" fill="rgb(247,16,28)" fg:x="1367560" fg:w="281"/><text x="57.1463%" y="431.50"></text></g><g><title>__wake_up_common_lock (29,000 samples, 1.21%)</title><rect x="55.7016%" y="437" width="1.2065%" height="15" fill="rgb(231,147,38)" fg:x="1338843" fg:w="29000"/><text x="55.9516%" y="447.50"></text></g><g><title>btrfs_search_slot (150,434 samples, 6.26%)</title><rect x="50.6784%" y="469" width="6.2587%" height="15" fill="rgb(253,81,48)" fg:x="1218106" fg:w="150434"/><text x="50.9284%" y="479.50">btrfs_se..</text></g><g><title>unlock_up (30,714 samples, 1.28%)</title><rect x="55.6593%" y="453" width="1.2778%" height="15" fill="rgb(249,222,43)" fg:x="1337826" fg:w="30714"/><text x="55.9093%" y="463.50"></text></g><g><title>btrfs_tree_unlock (692 samples, 0.03%)</title><rect x="56.9083%" y="437" width="0.0288%" height="15" fill="rgb(221,3,27)" fg:x="1367848" fg:w="692"/><text x="57.1583%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (155,598 samples, 6.47%)</title><rect x="50.5141%" y="485" width="6.4735%" height="15" fill="rgb(228,180,5)" fg:x="1214157" fg:w="155598"/><text x="50.7641%" y="495.50">btrfs_lo..</text></g><g><title>crc32c (1,215 samples, 0.05%)</title><rect x="56.9371%" y="469" width="0.0505%" height="15" fill="rgb(227,131,42)" fg:x="1368540" fg:w="1215"/><text x="57.1871%" y="479.50"></text></g><g><title>crypto_shash_update (531 samples, 0.02%)</title><rect x="56.9656%" y="453" width="0.0221%" height="15" fill="rgb(212,3,39)" fg:x="1369224" fg:w="531"/><text x="57.2156%" y="463.50"></text></g><g><title>select_task_rq_fair (781 samples, 0.03%)</title><rect x="57.0672%" y="405" width="0.0325%" height="15" fill="rgb(226,45,5)" fg:x="1371668" fg:w="781"/><text x="57.3172%" y="415.50"></text></g><g><title>enqueue_entity (794 samples, 0.03%)</title><rect x="57.1141%" y="373" width="0.0330%" height="15" fill="rgb(215,167,45)" fg:x="1372794" fg:w="794"/><text x="57.3641%" y="383.50"></text></g><g><title>update_load_avg (264 samples, 0.01%)</title><rect x="57.1361%" y="357" width="0.0110%" height="15" fill="rgb(250,218,53)" fg:x="1373324" fg:w="264"/><text x="57.3861%" y="367.50"></text></g><g><title>enqueue_task_fair (1,014 samples, 0.04%)</title><rect x="57.1070%" y="389" width="0.0422%" height="15" fill="rgb(207,140,0)" fg:x="1372624" fg:w="1014"/><text x="57.3570%" y="399.50"></text></g><g><title>ttwu_do_activate (2,128 samples, 0.09%)</title><rect x="57.1031%" y="405" width="0.0885%" height="15" fill="rgb(238,133,51)" fg:x="1372529" fg:w="2128"/><text x="57.3531%" y="415.50"></text></g><g><title>psi_task_change (1,017 samples, 0.04%)</title><rect x="57.1493%" y="389" width="0.0423%" height="15" fill="rgb(218,203,53)" fg:x="1373640" fg:w="1017"/><text x="57.3993%" y="399.50"></text></g><g><title>psi_group_change (908 samples, 0.04%)</title><rect x="57.1538%" y="373" width="0.0378%" height="15" fill="rgb(226,184,25)" fg:x="1373749" fg:w="908"/><text x="57.4038%" y="383.50"></text></g><g><title>__wake_up_common (5,176 samples, 0.22%)</title><rect x="56.9981%" y="453" width="0.2153%" height="15" fill="rgb(231,121,21)" fg:x="1370006" fg:w="5176"/><text x="57.2481%" y="463.50"></text></g><g><title>autoremove_wake_function (5,042 samples, 0.21%)</title><rect x="57.0037%" y="437" width="0.2098%" height="15" fill="rgb(251,14,34)" fg:x="1370140" fg:w="5042"/><text x="57.2537%" y="447.50"></text></g><g><title>try_to_wake_up (4,922 samples, 0.20%)</title><rect x="57.0087%" y="421" width="0.2048%" height="15" fill="rgb(249,193,11)" fg:x="1370260" fg:w="4922"/><text x="57.2587%" y="431.50"></text></g><g><title>__wake_up_common_lock (5,426 samples, 0.23%)</title><rect x="56.9967%" y="469" width="0.2257%" height="15" fill="rgb(220,172,37)" fg:x="1369973" fg:w="5426"/><text x="57.2467%" y="479.50"></text></g><g><title>btrfs_tree_unlock (416 samples, 0.02%)</title><rect x="57.2225%" y="469" width="0.0173%" height="15" fill="rgb(231,229,43)" fg:x="1375400" fg:w="416"/><text x="57.4725%" y="479.50"></text></g><g><title>_raw_spin_lock (426 samples, 0.02%)</title><rect x="57.2830%" y="453" width="0.0177%" height="15" fill="rgb(250,161,5)" fg:x="1376853" fg:w="426"/><text x="57.5330%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,443 samples, 0.06%)</title><rect x="57.2411%" y="469" width="0.0600%" height="15" fill="rgb(218,225,18)" fg:x="1375847" fg:w="1443"/><text x="57.4911%" y="479.50"></text></g><g><title>btrfs_release_path (7,952 samples, 0.33%)</title><rect x="56.9876%" y="485" width="0.3308%" height="15" fill="rgb(245,45,42)" fg:x="1369755" fg:w="7952"/><text x="57.2376%" y="495.50"></text></g><g><title>release_extent_buffer (417 samples, 0.02%)</title><rect x="57.3011%" y="469" width="0.0173%" height="15" fill="rgb(211,115,1)" fg:x="1377290" fg:w="417"/><text x="57.5511%" y="479.50"></text></g><g><title>_raw_spin_lock (400 samples, 0.02%)</title><rect x="57.3765%" y="437" width="0.0166%" height="15" fill="rgb(248,133,52)" fg:x="1379102" fg:w="400"/><text x="57.6265%" y="447.50"></text></g><g><title>mutex_lock (406 samples, 0.02%)</title><rect x="57.3933%" y="437" width="0.0169%" height="15" fill="rgb(238,100,21)" fg:x="1379505" fg:w="406"/><text x="57.6433%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,008 samples, 0.08%)</title><rect x="57.3464%" y="453" width="0.0835%" height="15" fill="rgb(247,144,11)" fg:x="1378378" fg:w="2008"/><text x="57.5964%" y="463.50"></text></g><g><title>mutex_unlock (475 samples, 0.02%)</title><rect x="57.4102%" y="437" width="0.0198%" height="15" fill="rgb(206,164,16)" fg:x="1379911" fg:w="475"/><text x="57.6602%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (452 samples, 0.02%)</title><rect x="57.4388%" y="453" width="0.0188%" height="15" fill="rgb(222,34,3)" fg:x="1380598" fg:w="452"/><text x="57.6888%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (392 samples, 0.02%)</title><rect x="57.4413%" y="437" width="0.0163%" height="15" fill="rgb(248,82,4)" fg:x="1380658" fg:w="392"/><text x="57.6913%" y="447.50"></text></g><g><title>inode_get_bytes (310 samples, 0.01%)</title><rect x="57.4689%" y="437" width="0.0129%" height="15" fill="rgb(228,81,46)" fg:x="1381322" fg:w="310"/><text x="57.7189%" y="447.50"></text></g><g><title>fill_stack_inode_item (953 samples, 0.04%)</title><rect x="57.4576%" y="453" width="0.0396%" height="15" fill="rgb(227,67,47)" fg:x="1381050" fg:w="953"/><text x="57.7076%" y="463.50"></text></g><g><title>map_id_up (371 samples, 0.02%)</title><rect x="57.4818%" y="437" width="0.0154%" height="15" fill="rgb(215,93,53)" fg:x="1381632" fg:w="371"/><text x="57.7318%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (4,213 samples, 0.18%)</title><rect x="57.3402%" y="469" width="0.1753%" height="15" fill="rgb(248,194,39)" fg:x="1378230" fg:w="4213"/><text x="57.5902%" y="479.50"></text></g><g><title>_raw_spin_lock (535 samples, 0.02%)</title><rect x="57.5236%" y="453" width="0.0223%" height="15" fill="rgb(215,5,19)" fg:x="1382637" fg:w="535"/><text x="57.7736%" y="463.50"></text></g><g><title>btrfs_update_inode (6,117 samples, 0.25%)</title><rect x="57.3185%" y="485" width="0.2545%" height="15" fill="rgb(226,215,51)" fg:x="1377707" fg:w="6117"/><text x="57.5685%" y="495.50"></text></g><g><title>btrfs_update_root_times (1,381 samples, 0.06%)</title><rect x="57.5155%" y="469" width="0.0575%" height="15" fill="rgb(225,56,26)" fg:x="1382443" fg:w="1381"/><text x="57.7655%" y="479.50"></text></g><g><title>ktime_get_real_ts64 (651 samples, 0.03%)</title><rect x="57.5459%" y="453" width="0.0271%" height="15" fill="rgb(222,75,29)" fg:x="1383173" fg:w="651"/><text x="57.7959%" y="463.50"></text></g><g><title>read_tsc (243 samples, 0.01%)</title><rect x="57.5629%" y="437" width="0.0101%" height="15" fill="rgb(236,139,6)" fg:x="1383581" fg:w="243"/><text x="57.8129%" y="447.50"></text></g><g><title>kmem_cache_alloc (758 samples, 0.03%)</title><rect x="57.5813%" y="485" width="0.0315%" height="15" fill="rgb(223,137,36)" fg:x="1384025" fg:w="758"/><text x="57.8313%" y="495.50"></text></g><g><title>__btrfs_unlink_inode (308,609 samples, 12.84%)</title><rect x="44.8022%" y="501" width="12.8394%" height="15" fill="rgb(226,99,2)" fg:x="1076866" fg:w="308609"/><text x="45.0522%" y="511.50">__btrfs_unlink_inode</text></g><g><title>kmem_cache_free (692 samples, 0.03%)</title><rect x="57.6129%" y="485" width="0.0288%" height="15" fill="rgb(206,133,23)" fg:x="1384783" fg:w="692"/><text x="57.8629%" y="495.50"></text></g><g><title>__radix_tree_lookup (373 samples, 0.02%)</title><rect x="57.6707%" y="485" width="0.0155%" height="15" fill="rgb(243,173,15)" fg:x="1386174" fg:w="373"/><text x="57.9207%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,086 samples, 0.05%)</title><rect x="57.6418%" y="501" width="0.0452%" height="15" fill="rgb(228,69,28)" fg:x="1385479" fg:w="1086"/><text x="57.8918%" y="511.50"></text></g><g><title>btrfs_balance_delayed_items (629 samples, 0.03%)</title><rect x="57.6995%" y="485" width="0.0262%" height="15" fill="rgb(212,51,22)" fg:x="1386864" fg:w="629"/><text x="57.9495%" y="495.50"></text></g><g><title>_raw_spin_lock (287 samples, 0.01%)</title><rect x="57.7336%" y="453" width="0.0119%" height="15" fill="rgb(227,113,0)" fg:x="1387686" fg:w="287"/><text x="57.9836%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (256 samples, 0.01%)</title><rect x="57.7349%" y="437" width="0.0107%" height="15" fill="rgb(252,84,27)" fg:x="1387717" fg:w="256"/><text x="57.9849%" y="447.50"></text></g><g><title>select_task_rq_fair (316 samples, 0.01%)</title><rect x="57.7621%" y="437" width="0.0131%" height="15" fill="rgb(223,145,39)" fg:x="1388371" fg:w="316"/><text x="58.0121%" y="447.50"></text></g><g><title>enqueue_task_fair (251 samples, 0.01%)</title><rect x="57.7775%" y="421" width="0.0104%" height="15" fill="rgb(239,219,30)" fg:x="1388739" fg:w="251"/><text x="58.0275%" y="431.50"></text></g><g><title>ttwu_do_activate (377 samples, 0.02%)</title><rect x="57.7767%" y="437" width="0.0157%" height="15" fill="rgb(224,196,39)" fg:x="1388720" fg:w="377"/><text x="58.0267%" y="447.50"></text></g><g><title>__queue_work (1,669 samples, 0.07%)</title><rect x="57.7300%" y="469" width="0.0694%" height="15" fill="rgb(205,35,43)" fg:x="1387598" fg:w="1669"/><text x="57.9800%" y="479.50"></text></g><g><title>try_to_wake_up (1,225 samples, 0.05%)</title><rect x="57.7485%" y="453" width="0.0510%" height="15" fill="rgb(228,201,21)" fg:x="1388042" fg:w="1225"/><text x="57.9985%" y="463.50"></text></g><g><title>btrfs_btree_balance_dirty (2,720 samples, 0.11%)</title><rect x="57.6870%" y="501" width="0.1132%" height="15" fill="rgb(237,118,16)" fg:x="1386565" fg:w="2720"/><text x="57.9370%" y="511.50"></text></g><g><title>queue_work_on (1,728 samples, 0.07%)</title><rect x="57.7283%" y="485" width="0.0719%" height="15" fill="rgb(241,17,19)" fg:x="1387557" fg:w="1728"/><text x="57.9783%" y="495.50"></text></g><g><title>ttwu_do_activate (485 samples, 0.02%)</title><rect x="57.9058%" y="373" width="0.0202%" height="15" fill="rgb(214,10,25)" fg:x="1391823" fg:w="485"/><text x="58.1558%" y="383.50"></text></g><g><title>__wake_up_common (2,154 samples, 0.09%)</title><rect x="57.8416%" y="421" width="0.0896%" height="15" fill="rgb(238,37,29)" fg:x="1390281" fg:w="2154"/><text x="58.0916%" y="431.50"></text></g><g><title>autoremove_wake_function (2,107 samples, 0.09%)</title><rect x="57.8436%" y="405" width="0.0877%" height="15" fill="rgb(253,83,25)" fg:x="1390328" fg:w="2107"/><text x="58.0936%" y="415.50"></text></g><g><title>try_to_wake_up (2,084 samples, 0.09%)</title><rect x="57.8445%" y="389" width="0.0867%" height="15" fill="rgb(234,192,12)" fg:x="1390351" fg:w="2084"/><text x="58.0945%" y="399.50"></text></g><g><title>__wake_up_common_lock (2,225 samples, 0.09%)</title><rect x="57.8409%" y="437" width="0.0926%" height="15" fill="rgb(241,216,45)" fg:x="1390265" fg:w="2225"/><text x="58.0909%" y="447.50"></text></g><g><title>btrfs_tree_unlock (371 samples, 0.02%)</title><rect x="57.9336%" y="437" width="0.0154%" height="15" fill="rgb(242,22,33)" fg:x="1392491" fg:w="371"/><text x="58.1836%" y="447.50"></text></g><g><title>_raw_spin_lock (514 samples, 0.02%)</title><rect x="57.9935%" y="421" width="0.0214%" height="15" fill="rgb(231,105,49)" fg:x="1393932" fg:w="514"/><text x="58.2435%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,559 samples, 0.06%)</title><rect x="57.9502%" y="437" width="0.0649%" height="15" fill="rgb(218,204,15)" fg:x="1392892" fg:w="1559"/><text x="58.2002%" y="447.50"></text></g><g><title>btrfs_free_path (4,954 samples, 0.21%)</title><rect x="57.8243%" y="469" width="0.2061%" height="15" fill="rgb(235,138,41)" fg:x="1389864" fg:w="4954"/><text x="58.0743%" y="479.50"></text></g><g><title>btrfs_release_path (4,791 samples, 0.20%)</title><rect x="57.8310%" y="453" width="0.1993%" height="15" fill="rgb(246,0,9)" fg:x="1390027" fg:w="4791"/><text x="58.0810%" y="463.50"></text></g><g><title>release_extent_buffer (367 samples, 0.02%)</title><rect x="58.0151%" y="437" width="0.0153%" height="15" fill="rgb(210,74,4)" fg:x="1394451" fg:w="367"/><text x="58.2651%" y="447.50"></text></g><g><title>_raw_read_lock (631 samples, 0.03%)</title><rect x="58.1736%" y="405" width="0.0263%" height="15" fill="rgb(250,60,41)" fg:x="1398261" fg:w="631"/><text x="58.4236%" y="415.50"></text></g><g><title>finish_wait (4,341 samples, 0.18%)</title><rect x="58.2022%" y="405" width="0.1806%" height="15" fill="rgb(220,115,12)" fg:x="1398948" fg:w="4341"/><text x="58.4522%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,139 samples, 0.17%)</title><rect x="58.2106%" y="389" width="0.1722%" height="15" fill="rgb(237,100,13)" fg:x="1399150" fg:w="4139"/><text x="58.4606%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,942 samples, 0.16%)</title><rect x="58.2188%" y="373" width="0.1640%" height="15" fill="rgb(213,55,26)" fg:x="1399347" fg:w="3942"/><text x="58.4688%" y="383.50"></text></g><g><title>__list_add_valid (268 samples, 0.01%)</title><rect x="58.4117%" y="389" width="0.0111%" height="15" fill="rgb(216,17,4)" fg:x="1403984" fg:w="268"/><text x="58.6617%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (10,984 samples, 0.46%)</title><rect x="58.4229%" y="389" width="0.4570%" height="15" fill="rgb(220,153,47)" fg:x="1404252" fg:w="10984"/><text x="58.6729%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,531 samples, 0.44%)</title><rect x="58.4417%" y="373" width="0.4381%" height="15" fill="rgb(215,131,9)" fg:x="1404705" fg:w="10531"/><text x="58.6917%" y="383.50"></text></g><g><title>prepare_to_wait_event (12,106 samples, 0.50%)</title><rect x="58.3833%" y="405" width="0.5037%" height="15" fill="rgb(233,46,42)" fg:x="1403302" fg:w="12106"/><text x="58.6333%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (10,178 samples, 0.42%)</title><rect x="58.8870%" y="405" width="0.4234%" height="15" fill="rgb(226,86,7)" fg:x="1415408" fg:w="10178"/><text x="59.1370%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,449 samples, 0.31%)</title><rect x="59.0005%" y="389" width="0.3099%" height="15" fill="rgb(239,226,21)" fg:x="1418137" fg:w="7449"/><text x="59.2505%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (355 samples, 0.01%)</title><rect x="59.3366%" y="373" width="0.0148%" height="15" fill="rgb(244,137,22)" fg:x="1426214" fg:w="355"/><text x="59.5866%" y="383.50"></text></g><g><title>update_curr (629 samples, 0.03%)</title><rect x="59.3892%" y="341" width="0.0262%" height="15" fill="rgb(211,139,35)" fg:x="1427480" fg:w="629"/><text x="59.6392%" y="351.50"></text></g><g><title>dequeue_entity (1,730 samples, 0.07%)</title><rect x="59.3655%" y="357" width="0.0720%" height="15" fill="rgb(214,62,50)" fg:x="1426910" fg:w="1730"/><text x="59.6155%" y="367.50"></text></g><g><title>update_load_avg (531 samples, 0.02%)</title><rect x="59.4154%" y="341" width="0.0221%" height="15" fill="rgb(212,113,44)" fg:x="1428109" fg:w="531"/><text x="59.6654%" y="351.50"></text></g><g><title>dequeue_task_fair (2,106 samples, 0.09%)</title><rect x="59.3556%" y="373" width="0.0876%" height="15" fill="rgb(226,150,43)" fg:x="1426670" fg:w="2106"/><text x="59.6056%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (3,587 samples, 0.15%)</title><rect x="59.4596%" y="357" width="0.1492%" height="15" fill="rgb(250,71,37)" fg:x="1429172" fg:w="3587"/><text x="59.7096%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,473 samples, 0.14%)</title><rect x="59.4644%" y="341" width="0.1445%" height="15" fill="rgb(219,76,19)" fg:x="1429286" fg:w="3473"/><text x="59.7144%" y="351.50"></text></g><g><title>native_write_msr (3,432 samples, 0.14%)</title><rect x="59.4661%" y="325" width="0.1428%" height="15" fill="rgb(250,39,11)" fg:x="1429327" fg:w="3432"/><text x="59.7161%" y="335.50"></text></g><g><title>finish_task_switch (4,172 samples, 0.17%)</title><rect x="59.4432%" y="373" width="0.1736%" height="15" fill="rgb(230,64,31)" fg:x="1428776" fg:w="4172"/><text x="59.6932%" y="383.50"></text></g><g><title>pick_next_task_fair (376 samples, 0.02%)</title><rect x="59.6169%" y="373" width="0.0156%" height="15" fill="rgb(208,222,23)" fg:x="1432952" fg:w="376"/><text x="59.8669%" y="383.50"></text></g><g><title>pick_next_task_idle (365 samples, 0.02%)</title><rect x="59.6326%" y="373" width="0.0152%" height="15" fill="rgb(227,125,18)" fg:x="1433328" fg:w="365"/><text x="59.8826%" y="383.50"></text></g><g><title>__update_idle_core (300 samples, 0.01%)</title><rect x="59.6353%" y="357" width="0.0125%" height="15" fill="rgb(234,210,9)" fg:x="1433393" fg:w="300"/><text x="59.8853%" y="367.50"></text></g><g><title>psi_task_change (1,536 samples, 0.06%)</title><rect x="59.6477%" y="373" width="0.0639%" height="15" fill="rgb(217,127,24)" fg:x="1433693" fg:w="1536"/><text x="59.8977%" y="383.50"></text></g><g><title>psi_group_change (1,326 samples, 0.06%)</title><rect x="59.6565%" y="357" width="0.0552%" height="15" fill="rgb(239,141,48)" fg:x="1433903" fg:w="1326"/><text x="59.9065%" y="367.50"></text></g><g><title>record_times (292 samples, 0.01%)</title><rect x="59.6995%" y="341" width="0.0121%" height="15" fill="rgb(227,109,8)" fg:x="1434937" fg:w="292"/><text x="59.9495%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (38,267 samples, 1.59%)</title><rect x="58.1416%" y="421" width="1.5921%" height="15" fill="rgb(235,184,23)" fg:x="1397492" fg:w="38267"/><text x="58.3916%" y="431.50"></text></g><g><title>schedule (10,173 samples, 0.42%)</title><rect x="59.3105%" y="405" width="0.4232%" height="15" fill="rgb(227,226,48)" fg:x="1425586" fg:w="10173"/><text x="59.5605%" y="415.50"></text></g><g><title>__schedule (10,035 samples, 0.42%)</title><rect x="59.3162%" y="389" width="0.4175%" height="15" fill="rgb(206,150,11)" fg:x="1425724" fg:w="10035"/><text x="59.5662%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (39,654 samples, 1.65%)</title><rect x="58.1364%" y="437" width="1.6498%" height="15" fill="rgb(254,2,33)" fg:x="1397366" fg:w="39654"/><text x="58.3864%" y="447.50"></text></g><g><title>btrfs_root_node (1,261 samples, 0.05%)</title><rect x="59.7337%" y="421" width="0.0525%" height="15" fill="rgb(243,160,20)" fg:x="1435759" fg:w="1261"/><text x="59.9837%" y="431.50"></text></g><g><title>finish_wait (405 samples, 0.02%)</title><rect x="59.8045%" y="421" width="0.0168%" height="15" fill="rgb(218,208,30)" fg:x="1437461" fg:w="405"/><text x="60.0545%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (348 samples, 0.01%)</title><rect x="59.8069%" y="405" width="0.0145%" height="15" fill="rgb(224,120,49)" fg:x="1437518" fg:w="348"/><text x="60.0569%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (279 samples, 0.01%)</title><rect x="59.8097%" y="389" width="0.0116%" height="15" fill="rgb(246,12,2)" fg:x="1437587" fg:w="279"/><text x="60.0597%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (726 samples, 0.03%)</title><rect x="59.8375%" y="405" width="0.0302%" height="15" fill="rgb(236,117,3)" fg:x="1438253" fg:w="726"/><text x="60.0875%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (438 samples, 0.02%)</title><rect x="59.8494%" y="389" width="0.0182%" height="15" fill="rgb(216,128,52)" fg:x="1438541" fg:w="438"/><text x="60.0994%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,154 samples, 0.05%)</title><rect x="59.8222%" y="421" width="0.0480%" height="15" fill="rgb(246,145,19)" fg:x="1437887" fg:w="1154"/><text x="60.0722%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,328 samples, 0.06%)</title><rect x="59.8702%" y="421" width="0.0553%" height="15" fill="rgb(222,11,46)" fg:x="1439041" fg:w="1328"/><text x="60.1202%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (439 samples, 0.02%)</title><rect x="59.9072%" y="405" width="0.0183%" height="15" fill="rgb(245,82,36)" fg:x="1439930" fg:w="439"/><text x="60.1572%" y="415.50"></text></g><g><title>update_curr (399 samples, 0.02%)</title><rect x="59.9753%" y="357" width="0.0166%" height="15" fill="rgb(250,73,51)" fg:x="1441567" fg:w="399"/><text x="60.2253%" y="367.50"></text></g><g><title>dequeue_entity (1,158 samples, 0.05%)</title><rect x="59.9598%" y="373" width="0.0482%" height="15" fill="rgb(221,189,23)" fg:x="1441194" fg:w="1158"/><text x="60.2098%" y="383.50"></text></g><g><title>update_load_avg (386 samples, 0.02%)</title><rect x="59.9919%" y="357" width="0.0161%" height="15" fill="rgb(210,33,7)" fg:x="1441966" fg:w="386"/><text x="60.2419%" y="367.50"></text></g><g><title>dequeue_task_fair (1,396 samples, 0.06%)</title><rect x="59.9535%" y="389" width="0.0581%" height="15" fill="rgb(210,107,22)" fg:x="1441042" fg:w="1396"/><text x="60.2035%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (2,504 samples, 0.10%)</title><rect x="60.0237%" y="373" width="0.1042%" height="15" fill="rgb(222,116,37)" fg:x="1442729" fg:w="2504"/><text x="60.2737%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,449 samples, 0.10%)</title><rect x="60.0260%" y="357" width="0.1019%" height="15" fill="rgb(254,17,48)" fg:x="1442784" fg:w="2449"/><text x="60.2760%" y="367.50"></text></g><g><title>native_write_msr (2,425 samples, 0.10%)</title><rect x="60.0270%" y="341" width="0.1009%" height="15" fill="rgb(224,36,32)" fg:x="1442808" fg:w="2425"/><text x="60.2770%" y="351.50"></text></g><g><title>finish_task_switch (2,905 samples, 0.12%)</title><rect x="60.0116%" y="389" width="0.1209%" height="15" fill="rgb(232,90,46)" fg:x="1442438" fg:w="2905"/><text x="60.2616%" y="399.50"></text></g><g><title>pick_next_task_fair (252 samples, 0.01%)</title><rect x="60.1326%" y="389" width="0.0105%" height="15" fill="rgb(241,66,40)" fg:x="1445348" fg:w="252"/><text x="60.3826%" y="399.50"></text></g><g><title>psi_task_change (985 samples, 0.04%)</title><rect x="60.1520%" y="389" width="0.0410%" height="15" fill="rgb(249,184,29)" fg:x="1445814" fg:w="985"/><text x="60.4020%" y="399.50"></text></g><g><title>psi_group_change (812 samples, 0.03%)</title><rect x="60.1592%" y="373" width="0.0338%" height="15" fill="rgb(231,181,1)" fg:x="1445987" fg:w="812"/><text x="60.4092%" y="383.50"></text></g><g><title>__schedule (6,654 samples, 0.28%)</title><rect x="59.9289%" y="405" width="0.2768%" height="15" fill="rgb(224,94,2)" fg:x="1440450" fg:w="6654"/><text x="60.1789%" y="415.50"></text></g><g><title>__btrfs_tree_lock (10,085 samples, 0.42%)</title><rect x="59.7862%" y="437" width="0.4196%" height="15" fill="rgb(229,170,15)" fg:x="1437020" fg:w="10085"/><text x="60.0362%" y="447.50"></text></g><g><title>schedule (6,736 samples, 0.28%)</title><rect x="59.9255%" y="421" width="0.2802%" height="15" fill="rgb(240,127,35)" fg:x="1440369" fg:w="6736"/><text x="60.1755%" y="431.50"></text></g><g><title>btrfs_leaf_free_space (1,010 samples, 0.04%)</title><rect x="60.2126%" y="437" width="0.0420%" height="15" fill="rgb(248,196,34)" fg:x="1447269" fg:w="1010"/><text x="60.4626%" y="447.50"></text></g><g><title>leaf_space_used (741 samples, 0.03%)</title><rect x="60.2237%" y="421" width="0.0308%" height="15" fill="rgb(236,137,7)" fg:x="1447538" fg:w="741"/><text x="60.4737%" y="431.50"></text></g><g><title>btrfs_get_32 (498 samples, 0.02%)</title><rect x="60.2339%" y="405" width="0.0207%" height="15" fill="rgb(235,127,16)" fg:x="1447781" fg:w="498"/><text x="60.4839%" y="415.50"></text></g><g><title>btrfs_set_lock_blocking_read (302 samples, 0.01%)</title><rect x="60.2836%" y="421" width="0.0126%" height="15" fill="rgb(250,192,54)" fg:x="1448976" fg:w="302"/><text x="60.5336%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (990 samples, 0.04%)</title><rect x="60.2600%" y="437" width="0.0412%" height="15" fill="rgb(218,98,20)" fg:x="1448410" fg:w="990"/><text x="60.5100%" y="447.50"></text></g><g><title>_raw_write_lock (557 samples, 0.02%)</title><rect x="60.3087%" y="421" width="0.0232%" height="15" fill="rgb(230,176,47)" fg:x="1449580" fg:w="557"/><text x="60.5587%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (7,730 samples, 0.32%)</title><rect x="60.3015%" y="437" width="0.3216%" height="15" fill="rgb(244,2,33)" fg:x="1449406" fg:w="7730"/><text x="60.5515%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (6,999 samples, 0.29%)</title><rect x="60.3319%" y="421" width="0.2912%" height="15" fill="rgb(231,100,17)" fg:x="1450137" fg:w="6999"/><text x="60.5819%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,171 samples, 0.05%)</title><rect x="60.5743%" y="405" width="0.0487%" height="15" fill="rgb(245,23,12)" fg:x="1455965" fg:w="1171"/><text x="60.8243%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (3,845 samples, 0.16%)</title><rect x="60.6231%" y="437" width="0.1600%" height="15" fill="rgb(249,55,22)" fg:x="1457137" fg:w="3845"/><text x="60.8731%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (808 samples, 0.03%)</title><rect x="60.8055%" y="421" width="0.0336%" height="15" fill="rgb(207,134,9)" fg:x="1461522" fg:w="808"/><text x="61.0555%" y="431.50"></text></g><g><title>verify_parent_transid (680 samples, 0.03%)</title><rect x="60.8109%" y="405" width="0.0283%" height="15" fill="rgb(218,134,0)" fg:x="1461650" fg:w="680"/><text x="61.0609%" y="415.50"></text></g><g><title>btrfs_get_64 (775 samples, 0.03%)</title><rect x="60.8392%" y="421" width="0.0322%" height="15" fill="rgb(213,212,33)" fg:x="1462330" fg:w="775"/><text x="61.0892%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (242 samples, 0.01%)</title><rect x="60.8613%" y="405" width="0.0101%" height="15" fill="rgb(252,106,18)" fg:x="1462863" fg:w="242"/><text x="61.1113%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,316 samples, 0.10%)</title><rect x="60.9733%" y="405" width="0.0964%" height="15" fill="rgb(208,126,42)" fg:x="1465554" fg:w="2316"/><text x="61.2233%" y="415.50"></text></g><g><title>mark_page_accessed (840 samples, 0.03%)</title><rect x="61.0840%" y="389" width="0.0349%" height="15" fill="rgb(246,175,29)" fg:x="1468216" fg:w="840"/><text x="61.3340%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,178 samples, 0.05%)</title><rect x="61.0703%" y="405" width="0.0490%" height="15" fill="rgb(215,13,50)" fg:x="1467886" fg:w="1178"/><text x="61.3203%" y="415.50"></text></g><g><title>find_extent_buffer (5,743 samples, 0.24%)</title><rect x="60.8820%" y="421" width="0.2389%" height="15" fill="rgb(216,172,15)" fg:x="1463359" fg:w="5743"/><text x="61.1320%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (8,832 samples, 0.37%)</title><rect x="60.7831%" y="437" width="0.3674%" height="15" fill="rgb(212,103,13)" fg:x="1460982" fg:w="8832"/><text x="61.0331%" y="447.50"></text></g><g><title>read_extent_buffer (712 samples, 0.03%)</title><rect x="61.1209%" y="421" width="0.0296%" height="15" fill="rgb(231,171,36)" fg:x="1469102" fg:w="712"/><text x="61.3709%" y="431.50"></text></g><g><title>split_leaf (249 samples, 0.01%)</title><rect x="61.1509%" y="437" width="0.0104%" height="15" fill="rgb(250,123,20)" fg:x="1469822" fg:w="249"/><text x="61.4009%" y="447.50"></text></g><g><title>_raw_spin_lock (286 samples, 0.01%)</title><rect x="61.2635%" y="357" width="0.0119%" height="15" fill="rgb(212,53,50)" fg:x="1472529" fg:w="286"/><text x="61.5135%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (275 samples, 0.01%)</title><rect x="61.2754%" y="357" width="0.0114%" height="15" fill="rgb(243,54,12)" fg:x="1472815" fg:w="275"/><text x="61.5254%" y="367.50"></text></g><g><title>available_idle_cpu (290 samples, 0.01%)</title><rect x="61.3167%" y="341" width="0.0121%" height="15" fill="rgb(234,101,34)" fg:x="1473807" fg:w="290"/><text x="61.5667%" y="351.50"></text></g><g><title>select_task_rq_fair (1,527 samples, 0.06%)</title><rect x="61.2879%" y="357" width="0.0635%" height="15" fill="rgb(254,67,22)" fg:x="1473117" fg:w="1527"/><text x="61.5379%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (333 samples, 0.01%)</title><rect x="61.3376%" y="341" width="0.0139%" height="15" fill="rgb(250,35,47)" fg:x="1474311" fg:w="333"/><text x="61.5876%" y="351.50"></text></g><g><title>enqueue_entity (1,330 samples, 0.06%)</title><rect x="61.3722%" y="325" width="0.0553%" height="15" fill="rgb(226,126,38)" fg:x="1475142" fg:w="1330"/><text x="61.6222%" y="335.50"></text></g><g><title>update_load_avg (470 samples, 0.02%)</title><rect x="61.4080%" y="309" width="0.0196%" height="15" fill="rgb(216,138,53)" fg:x="1476002" fg:w="470"/><text x="61.6580%" y="319.50"></text></g><g><title>enqueue_task_fair (1,710 samples, 0.07%)</title><rect x="61.3612%" y="341" width="0.0711%" height="15" fill="rgb(246,199,43)" fg:x="1474878" fg:w="1710"/><text x="61.6112%" y="351.50"></text></g><g><title>ttwu_do_activate (3,523 samples, 0.15%)</title><rect x="61.3567%" y="357" width="0.1466%" height="15" fill="rgb(232,125,11)" fg:x="1474769" fg:w="3523"/><text x="61.6067%" y="367.50"></text></g><g><title>psi_task_change (1,701 samples, 0.07%)</title><rect x="61.4325%" y="341" width="0.0708%" height="15" fill="rgb(218,219,45)" fg:x="1476591" fg:w="1701"/><text x="61.6825%" y="351.50"></text></g><g><title>psi_group_change (1,500 samples, 0.06%)</title><rect x="61.4408%" y="325" width="0.0624%" height="15" fill="rgb(216,102,54)" fg:x="1476792" fg:w="1500"/><text x="61.6908%" y="335.50"></text></g><g><title>record_times (255 samples, 0.01%)</title><rect x="61.4926%" y="309" width="0.0106%" height="15" fill="rgb(250,228,7)" fg:x="1478037" fg:w="255"/><text x="61.7426%" y="319.50"></text></g><g><title>ttwu_do_wakeup (290 samples, 0.01%)</title><rect x="61.5032%" y="357" width="0.0121%" height="15" fill="rgb(226,125,25)" fg:x="1478292" fg:w="290"/><text x="61.7532%" y="367.50"></text></g><g><title>check_preempt_curr (258 samples, 0.01%)</title><rect x="61.5046%" y="341" width="0.0107%" height="15" fill="rgb(224,165,27)" fg:x="1478324" fg:w="258"/><text x="61.7546%" y="351.50"></text></g><g><title>__wake_up_common (7,970 samples, 0.33%)</title><rect x="61.2030%" y="405" width="0.3316%" height="15" fill="rgb(233,86,3)" fg:x="1471075" fg:w="7970"/><text x="61.4530%" y="415.50"></text></g><g><title>autoremove_wake_function (7,851 samples, 0.33%)</title><rect x="61.2079%" y="389" width="0.3266%" height="15" fill="rgb(228,116,20)" fg:x="1471194" fg:w="7851"/><text x="61.4579%" y="399.50"></text></g><g><title>try_to_wake_up (7,634 samples, 0.32%)</title><rect x="61.2170%" y="373" width="0.3176%" height="15" fill="rgb(209,192,17)" fg:x="1471411" fg:w="7634"/><text x="61.4670%" y="383.50"></text></g><g><title>update_rq_clock (273 samples, 0.01%)</title><rect x="61.5232%" y="357" width="0.0114%" height="15" fill="rgb(224,88,34)" fg:x="1478772" fg:w="273"/><text x="61.7732%" y="367.50"></text></g><g><title>__wake_up_common_lock (8,171 samples, 0.34%)</title><rect x="61.2019%" y="421" width="0.3399%" height="15" fill="rgb(233,38,6)" fg:x="1471048" fg:w="8171"/><text x="61.4519%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (603 samples, 0.03%)</title><rect x="61.5421%" y="421" width="0.0251%" height="15" fill="rgb(212,59,30)" fg:x="1479226" fg:w="603"/><text x="61.7921%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (278 samples, 0.01%)</title><rect x="61.5672%" y="421" width="0.0116%" height="15" fill="rgb(213,80,3)" fg:x="1479829" fg:w="278"/><text x="61.8172%" y="431.50"></text></g><g><title>btrfs_search_slot (85,148 samples, 3.54%)</title><rect x="58.0460%" y="453" width="3.5425%" height="15" fill="rgb(251,178,7)" fg:x="1395193" fg:w="85148"/><text x="58.2960%" y="463.50">btrf..</text></g><g><title>unlock_up (10,186 samples, 0.42%)</title><rect x="61.1647%" y="437" width="0.4238%" height="15" fill="rgb(213,154,26)" fg:x="1470155" fg:w="10186"/><text x="61.4147%" y="447.50"></text></g><g><title>btrfs_get_32 (404 samples, 0.02%)</title><rect x="61.6440%" y="437" width="0.0168%" height="15" fill="rgb(238,165,49)" fg:x="1481674" fg:w="404"/><text x="61.8940%" y="447.50"></text></g><g><title>btrfs_get_token_32 (375 samples, 0.02%)</title><rect x="61.6608%" y="437" width="0.0156%" height="15" fill="rgb(248,91,46)" fg:x="1482078" fg:w="375"/><text x="61.9108%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,133 samples, 0.05%)</title><rect x="61.6764%" y="437" width="0.0471%" height="15" fill="rgb(244,21,52)" fg:x="1482453" fg:w="1133"/><text x="61.9264%" y="447.50"></text></g><g><title>leaf_space_used (938 samples, 0.04%)</title><rect x="61.6845%" y="421" width="0.0390%" height="15" fill="rgb(247,122,20)" fg:x="1482648" fg:w="938"/><text x="61.9345%" y="431.50"></text></g><g><title>btrfs_get_32 (701 samples, 0.03%)</title><rect x="61.6943%" y="405" width="0.0292%" height="15" fill="rgb(218,27,9)" fg:x="1482885" fg:w="701"/><text x="61.9443%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (885 samples, 0.04%)</title><rect x="61.7235%" y="437" width="0.0368%" height="15" fill="rgb(246,7,6)" fg:x="1483586" fg:w="885"/><text x="61.9735%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (421 samples, 0.02%)</title><rect x="61.7428%" y="421" width="0.0175%" height="15" fill="rgb(227,135,54)" fg:x="1484050" fg:w="421"/><text x="61.9928%" y="431.50"></text></g><g><title>btrfs_set_token_32 (588 samples, 0.02%)</title><rect x="61.7603%" y="437" width="0.0245%" height="15" fill="rgb(247,14,11)" fg:x="1484471" fg:w="588"/><text x="62.0103%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (427 samples, 0.02%)</title><rect x="61.7848%" y="437" width="0.0178%" height="15" fill="rgb(206,149,34)" fg:x="1485059" fg:w="427"/><text x="62.0348%" y="447.50"></text></g><g><title>memmove_extent_buffer (720 samples, 0.03%)</title><rect x="61.8025%" y="437" width="0.0300%" height="15" fill="rgb(227,228,4)" fg:x="1485486" fg:w="720"/><text x="62.0525%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (92,205 samples, 3.84%)</title><rect x="58.0304%" y="469" width="3.8361%" height="15" fill="rgb(238,218,28)" fg:x="1394818" fg:w="92205"/><text x="58.2804%" y="479.50">btrf..</text></g><g><title>setup_items_for_insert (6,682 samples, 0.28%)</title><rect x="61.5885%" y="453" width="0.2780%" height="15" fill="rgb(252,86,40)" fg:x="1480341" fg:w="6682"/><text x="61.8385%" y="463.50"></text></g><g><title>write_extent_buffer (816 samples, 0.03%)</title><rect x="61.8325%" y="437" width="0.0339%" height="15" fill="rgb(251,225,11)" fg:x="1486207" fg:w="816"/><text x="62.0825%" y="447.50"></text></g><g><title>kmem_cache_alloc (686 samples, 0.03%)</title><rect x="61.8665%" y="469" width="0.0285%" height="15" fill="rgb(206,46,49)" fg:x="1487023" fg:w="686"/><text x="62.1165%" y="479.50"></text></g><g><title>btrfs_orphan_add (98,830 samples, 4.11%)</title><rect x="57.8096%" y="501" width="4.1117%" height="15" fill="rgb(245,128,24)" fg:x="1389512" fg:w="98830"/><text x="58.0596%" y="511.50">btrf..</text></g><g><title>btrfs_insert_orphan_item (98,671 samples, 4.11%)</title><rect x="57.8162%" y="485" width="4.1051%" height="15" fill="rgb(219,177,34)" fg:x="1389671" fg:w="98671"/><text x="58.0662%" y="495.50">btrf..</text></g><g><title>kmem_cache_free (633 samples, 0.03%)</title><rect x="61.8950%" y="469" width="0.0263%" height="15" fill="rgb(218,60,48)" fg:x="1487709" fg:w="633"/><text x="62.1450%" y="479.50"></text></g><g><title>mutex_lock (820 samples, 0.03%)</title><rect x="61.9256%" y="485" width="0.0341%" height="15" fill="rgb(221,11,5)" fg:x="1488443" fg:w="820"/><text x="62.1756%" y="495.50"></text></g><g><title>btrfs_record_unlink_dir (1,103 samples, 0.05%)</title><rect x="61.9214%" y="501" width="0.0459%" height="15" fill="rgb(220,148,13)" fg:x="1488342" fg:w="1103"/><text x="62.1714%" y="511.50"></text></g><g><title>_raw_spin_lock (244 samples, 0.01%)</title><rect x="62.0200%" y="453" width="0.0102%" height="15" fill="rgb(210,16,3)" fg:x="1490713" fg:w="244"/><text x="62.2700%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,099 samples, 0.05%)</title><rect x="62.0051%" y="469" width="0.0457%" height="15" fill="rgb(236,80,2)" fg:x="1490355" fg:w="1099"/><text x="62.2551%" y="479.50"></text></g><g><title>mutex_unlock (314 samples, 0.01%)</title><rect x="62.0378%" y="453" width="0.0131%" height="15" fill="rgb(239,129,19)" fg:x="1491140" fg:w="314"/><text x="62.2878%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (892 samples, 0.04%)</title><rect x="62.0509%" y="469" width="0.0371%" height="15" fill="rgb(220,106,35)" fg:x="1491455" fg:w="892"/><text x="62.3009%" y="479.50"></text></g><g><title>_raw_spin_lock (806 samples, 0.03%)</title><rect x="62.0545%" y="453" width="0.0335%" height="15" fill="rgb(252,139,45)" fg:x="1491541" fg:w="806"/><text x="62.3045%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (352 samples, 0.01%)</title><rect x="62.0880%" y="469" width="0.0146%" height="15" fill="rgb(229,8,36)" fg:x="1492347" fg:w="352"/><text x="62.3380%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (309 samples, 0.01%)</title><rect x="62.0898%" y="453" width="0.0129%" height="15" fill="rgb(230,126,33)" fg:x="1492390" fg:w="309"/><text x="62.3398%" y="463.50"></text></g><g><title>inode_get_bytes (244 samples, 0.01%)</title><rect x="62.1094%" y="453" width="0.0102%" height="15" fill="rgb(239,140,21)" fg:x="1492862" fg:w="244"/><text x="62.3594%" y="463.50"></text></g><g><title>fill_stack_inode_item (515 samples, 0.02%)</title><rect x="62.1026%" y="469" width="0.0214%" height="15" fill="rgb(254,104,9)" fg:x="1492699" fg:w="515"/><text x="62.3526%" y="479.50"></text></g><g><title>mutex_lock (377 samples, 0.02%)</title><rect x="62.1241%" y="469" width="0.0157%" height="15" fill="rgb(239,52,14)" fg:x="1493214" fg:w="377"/><text x="62.3741%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (3,907 samples, 0.16%)</title><rect x="61.9829%" y="485" width="0.1625%" height="15" fill="rgb(208,227,44)" fg:x="1489821" fg:w="3907"/><text x="62.2329%" y="495.50"></text></g><g><title>btrfs_update_inode (4,682 samples, 0.19%)</title><rect x="61.9733%" y="501" width="0.1948%" height="15" fill="rgb(246,18,19)" fg:x="1489591" fg:w="4682"/><text x="62.2233%" y="511.50"></text></g><g><title>btrfs_update_root_times (545 samples, 0.02%)</title><rect x="62.1454%" y="485" width="0.0227%" height="15" fill="rgb(235,228,25)" fg:x="1493728" fg:w="545"/><text x="62.3954%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (276 samples, 0.01%)</title><rect x="62.1566%" y="469" width="0.0115%" height="15" fill="rgb(240,156,20)" fg:x="1493997" fg:w="276"/><text x="62.4066%" y="479.50"></text></g><g><title>drop_nlink (730 samples, 0.03%)</title><rect x="62.1681%" y="501" width="0.0304%" height="15" fill="rgb(224,8,20)" fg:x="1494273" fg:w="730"/><text x="62.4181%" y="511.50"></text></g><g><title>_raw_spin_lock (607 samples, 0.03%)</title><rect x="62.2753%" y="469" width="0.0253%" height="15" fill="rgb(214,12,52)" fg:x="1496849" fg:w="607"/><text x="62.5253%" y="479.50"></text></g><g><title>_raw_spin_lock (1,205 samples, 0.05%)</title><rect x="62.3444%" y="437" width="0.0501%" height="15" fill="rgb(211,220,47)" fg:x="1498511" fg:w="1205"/><text x="62.5944%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (454 samples, 0.02%)</title><rect x="62.3757%" y="421" width="0.0189%" height="15" fill="rgb(250,173,5)" fg:x="1499262" fg:w="454"/><text x="62.6257%" y="431.50"></text></g><g><title>_raw_spin_lock (301 samples, 0.01%)</title><rect x="62.4547%" y="405" width="0.0125%" height="15" fill="rgb(250,125,52)" fg:x="1501162" fg:w="301"/><text x="62.7047%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,748 samples, 0.07%)</title><rect x="62.3947%" y="437" width="0.0727%" height="15" fill="rgb(209,133,18)" fg:x="1499718" fg:w="1748"/><text x="62.6447%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (815 samples, 0.03%)</title><rect x="62.4335%" y="421" width="0.0339%" height="15" fill="rgb(216,173,22)" fg:x="1500651" fg:w="815"/><text x="62.6835%" y="431.50"></text></g><g><title>_raw_spin_lock (372 samples, 0.02%)</title><rect x="62.4993%" y="405" width="0.0155%" height="15" fill="rgb(205,3,22)" fg:x="1502234" fg:w="372"/><text x="62.7493%" y="415.50"></text></g><g><title>__reserve_bytes (4,545 samples, 0.19%)</title><rect x="62.3258%" y="453" width="0.1891%" height="15" fill="rgb(248,22,20)" fg:x="1498063" fg:w="4545"/><text x="62.5758%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (1,142 samples, 0.05%)</title><rect x="62.4674%" y="437" width="0.0475%" height="15" fill="rgb(233,6,29)" fg:x="1501466" fg:w="1142"/><text x="62.7174%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (620 samples, 0.03%)</title><rect x="62.4891%" y="421" width="0.0258%" height="15" fill="rgb(240,22,54)" fg:x="1501988" fg:w="620"/><text x="62.7391%" y="431.50"></text></g><g><title>btrfs_block_rsv_add (5,950 samples, 0.25%)</title><rect x="62.2677%" y="485" width="0.2475%" height="15" fill="rgb(231,133,32)" fg:x="1496666" fg:w="5950"/><text x="62.5177%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,160 samples, 0.21%)</title><rect x="62.3005%" y="469" width="0.2147%" height="15" fill="rgb(248,193,4)" fg:x="1497456" fg:w="5160"/><text x="62.5505%" y="479.50"></text></g><g><title>_raw_spin_lock (392 samples, 0.02%)</title><rect x="62.5418%" y="469" width="0.0163%" height="15" fill="rgb(211,178,46)" fg:x="1503254" fg:w="392"/><text x="62.7918%" y="479.50"></text></g><g><title>join_transaction (988 samples, 0.04%)</title><rect x="62.5171%" y="485" width="0.0411%" height="15" fill="rgb(224,5,42)" fg:x="1502662" fg:w="988"/><text x="62.7671%" y="495.50"></text></g><g><title>kmem_cache_alloc (703 samples, 0.03%)</title><rect x="62.5582%" y="485" width="0.0292%" height="15" fill="rgb(239,176,25)" fg:x="1503650" fg:w="703"/><text x="62.8082%" y="495.50"></text></g><g><title>_raw_spin_lock (690 samples, 0.03%)</title><rect x="62.6024%" y="469" width="0.0287%" height="15" fill="rgb(245,187,50)" fg:x="1504712" fg:w="690"/><text x="62.8524%" y="479.50"></text></g><g><title>btrfs_unlink (435,190 samples, 18.11%)</title><rect x="44.5255%" y="517" width="18.1058%" height="15" fill="rgb(248,24,15)" fg:x="1070216" fg:w="435190"/><text x="44.7755%" y="527.50">btrfs_unlink</text></g><g><title>start_transaction (10,400 samples, 0.43%)</title><rect x="62.1986%" y="501" width="0.4327%" height="15" fill="rgb(205,166,13)" fg:x="1495006" fg:w="10400"/><text x="62.4486%" y="511.50"></text></g><g><title>wait_current_trans (1,053 samples, 0.04%)</title><rect x="62.5875%" y="485" width="0.0438%" height="15" fill="rgb(208,114,23)" fg:x="1504353" fg:w="1053"/><text x="62.8375%" y="495.50"></text></g><g><title>d_delete (436 samples, 0.02%)</title><rect x="62.6313%" y="517" width="0.0181%" height="15" fill="rgb(239,127,18)" fg:x="1505406" fg:w="436"/><text x="62.8813%" y="527.50"></text></g><g><title>_raw_spin_lock (302 samples, 0.01%)</title><rect x="62.6369%" y="501" width="0.0126%" height="15" fill="rgb(219,154,28)" fg:x="1505540" fg:w="302"/><text x="62.8869%" y="511.50"></text></g><g><title>__srcu_read_lock (733 samples, 0.03%)</title><rect x="62.7005%" y="469" width="0.0305%" height="15" fill="rgb(225,157,23)" fg:x="1507070" fg:w="733"/><text x="62.9505%" y="479.50"></text></g><g><title>dentry_unlink_inode (2,120 samples, 0.09%)</title><rect x="62.6494%" y="517" width="0.0882%" height="15" fill="rgb(219,8,6)" fg:x="1505842" fg:w="2120"/><text x="62.8994%" y="527.50"></text></g><g><title>fsnotify_destroy_marks (1,357 samples, 0.06%)</title><rect x="62.6812%" y="501" width="0.0565%" height="15" fill="rgb(212,47,6)" fg:x="1506605" fg:w="1357"/><text x="62.9312%" y="511.50"></text></g><g><title>fsnotify_grab_connector (1,119 samples, 0.05%)</title><rect x="62.6911%" y="485" width="0.0466%" height="15" fill="rgb(224,190,4)" fg:x="1506843" fg:w="1119"/><text x="62.9411%" y="495.50"></text></g><g><title>down_write (1,106 samples, 0.05%)</title><rect x="62.7376%" y="517" width="0.0460%" height="15" fill="rgb(239,183,29)" fg:x="1507962" fg:w="1106"/><text x="62.9876%" y="527.50"></text></g><g><title>fsnotify (1,358 samples, 0.06%)</title><rect x="62.7837%" y="517" width="0.0565%" height="15" fill="rgb(213,57,7)" fg:x="1509068" fg:w="1358"/><text x="63.0337%" y="527.50"></text></g><g><title>ihold (329 samples, 0.01%)</title><rect x="62.8402%" y="517" width="0.0137%" height="15" fill="rgb(216,148,1)" fg:x="1510426" fg:w="329"/><text x="63.0902%" y="527.50"></text></g><g><title>iput.part.0 (693 samples, 0.03%)</title><rect x="62.8565%" y="517" width="0.0288%" height="15" fill="rgb(236,182,29)" fg:x="1510819" fg:w="693"/><text x="63.1065%" y="527.50"></text></g><g><title>_atomic_dec_and_lock (535 samples, 0.02%)</title><rect x="62.8631%" y="501" width="0.0223%" height="15" fill="rgb(244,120,48)" fg:x="1510977" fg:w="535"/><text x="63.1131%" y="511.50"></text></g><g><title>btrfs_permission (445 samples, 0.02%)</title><rect x="62.9034%" y="485" width="0.0185%" height="15" fill="rgb(206,71,34)" fg:x="1511947" fg:w="445"/><text x="63.1534%" y="495.50"></text></g><g><title>inode_permission.part.0 (671 samples, 0.03%)</title><rect x="62.8957%" y="501" width="0.0279%" height="15" fill="rgb(242,32,6)" fg:x="1511762" fg:w="671"/><text x="63.1457%" y="511.50"></text></g><g><title>may_delete (946 samples, 0.04%)</title><rect x="62.8854%" y="517" width="0.0394%" height="15" fill="rgb(241,35,3)" fg:x="1511513" fg:w="946"/><text x="63.1354%" y="527.50"></text></g><g><title>do_unlinkat (1,150,405 samples, 47.86%)</title><rect x="15.0795%" y="549" width="47.8617%" height="15" fill="rgb(222,62,19)" fg:x="362451" fg:w="1150405"/><text x="15.3295%" y="559.50">do_unlinkat</text></g><g><title>vfs_unlink (443,434 samples, 18.45%)</title><rect x="44.4925%" y="533" width="18.4487%" height="15" fill="rgb(223,110,41)" fg:x="1069422" fg:w="443434"/><text x="44.7425%" y="543.50">vfs_unlink</text></g><g><title>up_write (356 samples, 0.01%)</title><rect x="62.9264%" y="517" width="0.0148%" height="15" fill="rgb(208,224,4)" fg:x="1512500" fg:w="356"/><text x="63.1764%" y="527.50"></text></g><g><title>do_syscall_64 (1,264,893 samples, 52.62%)</title><rect x="10.3261%" y="565" width="52.6249%" height="15" fill="rgb(241,137,19)" fg:x="248199" fg:w="1264893"/><text x="10.5761%" y="575.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (1,267,502 samples, 52.73%)</title><rect x="10.3060%" y="581" width="52.7335%" height="15" fill="rgb(244,24,17)" fg:x="247714" fg:w="1267502"/><text x="10.5560%" y="591.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (2,124 samples, 0.09%)</title><rect x="62.9511%" y="565" width="0.0884%" height="15" fill="rgb(245,178,49)" fg:x="1513092" fg:w="2124"/><text x="63.2011%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,783 samples, 0.07%)</title><rect x="62.9653%" y="549" width="0.0742%" height="15" fill="rgb(219,160,38)" fg:x="1513433" fg:w="1783"/><text x="63.2153%" y="559.50"></text></g><g><title>switch_fpu_return (1,466 samples, 0.06%)</title><rect x="62.9784%" y="533" width="0.0610%" height="15" fill="rgb(228,137,14)" fg:x="1513750" fg:w="1466"/><text x="63.2284%" y="543.50"></text></g><g><title>copy_kernel_to_fpregs (642 samples, 0.03%)</title><rect x="63.0127%" y="517" width="0.0267%" height="15" fill="rgb(237,134,11)" fg:x="1514574" fg:w="642"/><text x="63.2627%" y="527.50"></text></g><g><title>syscall_return_via_sysret (418 samples, 0.02%)</title><rect x="63.0441%" y="581" width="0.0174%" height="15" fill="rgb(211,126,44)" fg:x="1515329" fg:w="418"/><text x="63.2941%" y="591.50"></text></g><g><title>__GI_unlinkat (1,270,897 samples, 52.87%)</title><rect x="10.1871%" y="597" width="52.8747%" height="15" fill="rgb(226,171,33)" fg:x="244857" fg:w="1270897"/><text x="10.4371%" y="607.50">__GI_unlinkat</text></g><g><title>__closedir (469 samples, 0.02%)</title><rect x="63.0625%" y="597" width="0.0195%" height="15" fill="rgb(253,99,13)" fg:x="1515771" fg:w="469"/><text x="63.3125%" y="607.50"></text></g><g><title>_int_free (339 samples, 0.01%)</title><rect x="63.0679%" y="581" width="0.0141%" height="15" fill="rgb(244,48,7)" fg:x="1515901" fg:w="339"/><text x="63.3179%" y="591.50"></text></g><g><title>__dirfd (515 samples, 0.02%)</title><rect x="63.0820%" y="597" width="0.0214%" height="15" fill="rgb(244,217,54)" fg:x="1516240" fg:w="515"/><text x="63.3320%" y="607.50"></text></g><g><title>__GI___fcntl64_nocancel (275 samples, 0.01%)</title><rect x="63.1066%" y="581" width="0.0114%" height="15" fill="rgb(224,15,18)" fg:x="1516831" fg:w="275"/><text x="63.3566%" y="591.50"></text></g><g><title>__fcntl64_nocancel_adjusted (268 samples, 0.01%)</title><rect x="63.1069%" y="565" width="0.0111%" height="15" fill="rgb(244,99,12)" fg:x="1516838" fg:w="268"/><text x="63.3569%" y="575.50"></text></g><g><title>__do_sys_newfstat (610 samples, 0.03%)</title><rect x="63.1232%" y="533" width="0.0254%" height="15" fill="rgb(233,226,8)" fg:x="1517229" fg:w="610"/><text x="63.3732%" y="543.50"></text></g><g><title>vfs_fstat (477 samples, 0.02%)</title><rect x="63.1287%" y="517" width="0.0198%" height="15" fill="rgb(229,211,3)" fg:x="1517362" fg:w="477"/><text x="63.3787%" y="527.50"></text></g><g><title>do_syscall_64 (644 samples, 0.03%)</title><rect x="63.1222%" y="549" width="0.0268%" height="15" fill="rgb(216,140,21)" fg:x="1517205" fg:w="644"/><text x="63.3722%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (668 samples, 0.03%)</title><rect x="63.1219%" y="565" width="0.0278%" height="15" fill="rgb(234,122,30)" fg:x="1517199" fg:w="668"/><text x="63.3719%" y="575.50"></text></g><g><title>__GI___fxstat (773 samples, 0.03%)</title><rect x="63.1181%" y="581" width="0.0322%" height="15" fill="rgb(236,25,46)" fg:x="1517106" fg:w="773"/><text x="63.3681%" y="591.50"></text></g><g><title>_int_malloc (588 samples, 0.02%)</title><rect x="63.1673%" y="549" width="0.0245%" height="15" fill="rgb(217,52,54)" fg:x="1518290" fg:w="588"/><text x="63.4173%" y="559.50"></text></g><g><title>__GI___libc_malloc (768 samples, 0.03%)</title><rect x="63.1599%" y="565" width="0.0320%" height="15" fill="rgb(222,29,26)" fg:x="1518112" fg:w="768"/><text x="63.4099%" y="575.50"></text></g><g><title>__alloc_dir (1,037 samples, 0.04%)</title><rect x="63.1502%" y="581" width="0.0431%" height="15" fill="rgb(216,177,29)" fg:x="1517879" fg:w="1037"/><text x="63.4002%" y="591.50"></text></g><g><title>__fdopendir (2,100 samples, 0.09%)</title><rect x="63.1061%" y="597" width="0.0874%" height="15" fill="rgb(247,136,51)" fg:x="1516818" fg:w="2100"/><text x="63.3561%" y="607.50"></text></g><g><title>kmem_cache_alloc (728 samples, 0.03%)</title><rect x="63.2375%" y="453" width="0.0303%" height="15" fill="rgb(231,47,47)" fg:x="1519976" fg:w="728"/><text x="63.4875%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (356 samples, 0.01%)</title><rect x="63.2530%" y="437" width="0.0148%" height="15" fill="rgb(211,192,36)" fg:x="1520348" fg:w="356"/><text x="63.5030%" y="447.50"></text></g><g><title>__alloc_file (1,044 samples, 0.04%)</title><rect x="63.2341%" y="469" width="0.0434%" height="15" fill="rgb(229,156,32)" fg:x="1519894" fg:w="1044"/><text x="63.4841%" y="479.50"></text></g><g><title>alloc_empty_file (1,087 samples, 0.05%)</title><rect x="63.2332%" y="485" width="0.0452%" height="15" fill="rgb(248,213,20)" fg:x="1519873" fg:w="1087"/><text x="63.4832%" y="495.50"></text></g><g><title>btrfs_opendir (618 samples, 0.03%)</title><rect x="63.2900%" y="469" width="0.0257%" height="15" fill="rgb(217,64,7)" fg:x="1521238" fg:w="618"/><text x="63.5400%" y="479.50"></text></g><g><title>kmem_cache_alloc_trace (556 samples, 0.02%)</title><rect x="63.2926%" y="453" width="0.0231%" height="15" fill="rgb(232,142,8)" fg:x="1521300" fg:w="556"/><text x="63.5426%" y="463.50"></text></g><g><title>security_file_open (395 samples, 0.02%)</title><rect x="63.3237%" y="469" width="0.0164%" height="15" fill="rgb(224,92,44)" fg:x="1522049" fg:w="395"/><text x="63.5737%" y="479.50"></text></g><g><title>do_dentry_open (1,352 samples, 0.06%)</title><rect x="63.2841%" y="485" width="0.0562%" height="15" fill="rgb(214,169,17)" fg:x="1521096" fg:w="1352"/><text x="63.5341%" y="495.50"></text></g><g><title>do_filp_open (3,624 samples, 0.15%)</title><rect x="63.2248%" y="517" width="0.1508%" height="15" fill="rgb(210,59,37)" fg:x="1519672" fg:w="3624"/><text x="63.4748%" y="527.50"></text></g><g><title>path_openat (3,559 samples, 0.15%)</title><rect x="63.2275%" y="501" width="0.1481%" height="15" fill="rgb(214,116,48)" fg:x="1519737" fg:w="3559"/><text x="63.4775%" y="511.50"></text></g><g><title>getname_flags.part.0 (501 samples, 0.02%)</title><rect x="63.3816%" y="517" width="0.0208%" height="15" fill="rgb(244,191,6)" fg:x="1523441" fg:w="501"/><text x="63.6316%" y="527.50"></text></g><g><title>strncpy_from_user (265 samples, 0.01%)</title><rect x="63.3915%" y="501" width="0.0110%" height="15" fill="rgb(241,50,52)" fg:x="1523677" fg:w="265"/><text x="63.6415%" y="511.50"></text></g><g><title>__x64_sys_openat (4,804 samples, 0.20%)</title><rect x="63.2060%" y="549" width="0.1999%" height="15" fill="rgb(236,75,39)" fg:x="1519220" fg:w="4804"/><text x="63.4560%" y="559.50"></text></g><g><title>do_sys_openat2 (4,741 samples, 0.20%)</title><rect x="63.2086%" y="533" width="0.1972%" height="15" fill="rgb(236,99,0)" fg:x="1519283" fg:w="4741"/><text x="63.4586%" y="543.50"></text></g><g><title>do_syscall_64 (4,877 samples, 0.20%)</title><rect x="63.2039%" y="565" width="0.2029%" height="15" fill="rgb(207,202,15)" fg:x="1519170" fg:w="4877"/><text x="63.4539%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,936 samples, 0.21%)</title><rect x="63.2031%" y="581" width="0.2054%" height="15" fill="rgb(233,207,14)" fg:x="1519150" fg:w="4936"/><text x="63.4531%" y="591.50"></text></g><g><title>__libc_openat64 (5,176 samples, 0.22%)</title><rect x="63.1946%" y="597" width="0.2153%" height="15" fill="rgb(226,27,51)" fg:x="1518945" fg:w="5176"/><text x="63.4446%" y="607.50"></text></g><g><title>crc32c_pcl_intel_update (276 samples, 0.01%)</title><rect x="63.4478%" y="581" width="0.0115%" height="15" fill="rgb(206,104,42)" fg:x="1525032" fg:w="276"/><text x="63.6978%" y="591.50"></text></g><g><title>entry_SYSCALL_64 (474 samples, 0.02%)</title><rect x="63.4593%" y="581" width="0.0197%" height="15" fill="rgb(212,225,4)" fg:x="1525308" fg:w="474"/><text x="63.7093%" y="591.50"></text></g><g><title>btrfs_dentry_delete (305 samples, 0.01%)</title><rect x="63.5777%" y="517" width="0.0127%" height="15" fill="rgb(233,96,42)" fg:x="1528154" fg:w="305"/><text x="63.8277%" y="527.50"></text></g><g><title>__list_add_valid (555 samples, 0.02%)</title><rect x="63.6521%" y="485" width="0.0231%" height="15" fill="rgb(229,21,32)" fg:x="1529941" fg:w="555"/><text x="63.9021%" y="495.50"></text></g><g><title>_raw_spin_lock (636 samples, 0.03%)</title><rect x="63.6752%" y="485" width="0.0265%" height="15" fill="rgb(226,216,24)" fg:x="1530496" fg:w="636"/><text x="63.9252%" y="495.50"></text></g><g><title>d_lru_add (3,090 samples, 0.13%)</title><rect x="63.5904%" y="517" width="0.1286%" height="15" fill="rgb(221,163,17)" fg:x="1528459" fg:w="3090"/><text x="63.8404%" y="527.50"></text></g><g><title>list_lru_add (2,840 samples, 0.12%)</title><rect x="63.6008%" y="501" width="0.1182%" height="15" fill="rgb(216,216,42)" fg:x="1528709" fg:w="2840"/><text x="63.8508%" y="511.50"></text></g><g><title>mem_cgroup_from_obj (411 samples, 0.02%)</title><rect x="63.7019%" y="485" width="0.0171%" height="15" fill="rgb(240,118,7)" fg:x="1531138" fg:w="411"/><text x="63.9519%" y="495.50"></text></g><g><title>lockref_put_or_lock (688 samples, 0.03%)</title><rect x="63.7190%" y="517" width="0.0286%" height="15" fill="rgb(221,67,37)" fg:x="1531549" fg:w="688"/><text x="63.9690%" y="527.50"></text></g><g><title>dput (4,732 samples, 0.20%)</title><rect x="63.5523%" y="533" width="0.1969%" height="15" fill="rgb(241,32,44)" fg:x="1527544" fg:w="4732"/><text x="63.8023%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (433 samples, 0.02%)</title><rect x="63.8244%" y="437" width="0.0180%" height="15" fill="rgb(235,204,43)" fg:x="1534084" fg:w="433"/><text x="64.0744%" y="447.50"></text></g><g><title>_raw_spin_lock (354 samples, 0.01%)</title><rect x="63.8797%" y="421" width="0.0147%" height="15" fill="rgb(213,116,10)" fg:x="1535413" fg:w="354"/><text x="64.1297%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,229 samples, 0.05%)</title><rect x="63.8437%" y="437" width="0.0511%" height="15" fill="rgb(239,15,48)" fg:x="1534547" fg:w="1229"/><text x="64.0937%" y="447.50"></text></g><g><title>btrfs_free_path (2,463 samples, 0.10%)</title><rect x="63.8084%" y="469" width="0.1025%" height="15" fill="rgb(207,123,36)" fg:x="1533698" fg:w="2463"/><text x="64.0584%" y="479.50"></text></g><g><title>btrfs_release_path (2,315 samples, 0.10%)</title><rect x="63.8145%" y="453" width="0.0963%" height="15" fill="rgb(209,103,30)" fg:x="1533846" fg:w="2315"/><text x="64.0645%" y="463.50"></text></g><g><title>release_extent_buffer (384 samples, 0.02%)</title><rect x="63.8949%" y="437" width="0.0160%" height="15" fill="rgb(238,100,19)" fg:x="1535777" fg:w="384"/><text x="64.1449%" y="447.50"></text></g><g><title>_raw_read_lock (532 samples, 0.02%)</title><rect x="64.0374%" y="405" width="0.0221%" height="15" fill="rgb(244,30,14)" fg:x="1539203" fg:w="532"/><text x="64.2874%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (2,827 samples, 0.12%)</title><rect x="64.0675%" y="389" width="0.1176%" height="15" fill="rgb(249,174,6)" fg:x="1539927" fg:w="2827"/><text x="64.3175%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,691 samples, 0.11%)</title><rect x="64.0732%" y="373" width="0.1120%" height="15" fill="rgb(235,213,41)" fg:x="1540063" fg:w="2691"/><text x="64.3232%" y="383.50"></text></g><g><title>finish_wait (2,974 samples, 0.12%)</title><rect x="64.0614%" y="405" width="0.1237%" height="15" fill="rgb(213,118,6)" fg:x="1539781" fg:w="2974"/><text x="64.3114%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (7,313 samples, 0.30%)</title><rect x="64.2157%" y="389" width="0.3043%" height="15" fill="rgb(235,44,51)" fg:x="1543488" fg:w="7313"/><text x="64.4657%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,946 samples, 0.29%)</title><rect x="64.2309%" y="373" width="0.2890%" height="15" fill="rgb(217,9,53)" fg:x="1543855" fg:w="6946"/><text x="64.4809%" y="383.50"></text></g><g><title>prepare_to_wait_event (8,157 samples, 0.34%)</title><rect x="64.1858%" y="405" width="0.3394%" height="15" fill="rgb(237,172,34)" fg:x="1542769" fg:w="8157"/><text x="64.4358%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (7,990 samples, 0.33%)</title><rect x="64.5251%" y="405" width="0.3324%" height="15" fill="rgb(206,206,11)" fg:x="1550926" fg:w="7990"/><text x="64.7751%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,942 samples, 0.25%)</title><rect x="64.6103%" y="389" width="0.2472%" height="15" fill="rgb(214,149,29)" fg:x="1552974" fg:w="5942"/><text x="64.8603%" y="399.50"></text></g><g><title>update_curr (477 samples, 0.02%)</title><rect x="64.9123%" y="341" width="0.0198%" height="15" fill="rgb(208,123,3)" fg:x="1560231" fg:w="477"/><text x="65.1623%" y="351.50"></text></g><g><title>dequeue_entity (1,357 samples, 0.06%)</title><rect x="64.8943%" y="357" width="0.0565%" height="15" fill="rgb(229,126,4)" fg:x="1559799" fg:w="1357"/><text x="65.1443%" y="367.50"></text></g><g><title>update_load_avg (448 samples, 0.02%)</title><rect x="64.9321%" y="341" width="0.0186%" height="15" fill="rgb(222,92,36)" fg:x="1560708" fg:w="448"/><text x="65.1821%" y="351.50"></text></g><g><title>dequeue_task_fair (1,583 samples, 0.07%)</title><rect x="64.8876%" y="373" width="0.0659%" height="15" fill="rgb(216,39,41)" fg:x="1559638" fg:w="1583"/><text x="65.1376%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (1,608 samples, 0.07%)</title><rect x="64.9632%" y="357" width="0.0669%" height="15" fill="rgb(253,127,28)" fg:x="1561456" fg:w="1608"/><text x="65.2132%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,551 samples, 0.06%)</title><rect x="64.9656%" y="341" width="0.0645%" height="15" fill="rgb(249,152,51)" fg:x="1561513" fg:w="1551"/><text x="65.2156%" y="351.50"></text></g><g><title>native_write_msr (1,530 samples, 0.06%)</title><rect x="64.9665%" y="325" width="0.0637%" height="15" fill="rgb(209,123,42)" fg:x="1561534" fg:w="1530"/><text x="65.2165%" y="335.50"></text></g><g><title>finish_task_switch (1,932 samples, 0.08%)</title><rect x="64.9534%" y="373" width="0.0804%" height="15" fill="rgb(241,118,22)" fg:x="1561221" fg:w="1932"/><text x="65.2034%" y="383.50"></text></g><g><title>pick_next_task_fair (245 samples, 0.01%)</title><rect x="65.0340%" y="373" width="0.0102%" height="15" fill="rgb(208,25,7)" fg:x="1563157" fg:w="245"/><text x="65.2840%" y="383.50"></text></g><g><title>__update_idle_core (270 samples, 0.01%)</title><rect x="65.0461%" y="357" width="0.0112%" height="15" fill="rgb(243,144,39)" fg:x="1563448" fg:w="270"/><text x="65.2961%" y="367.50"></text></g><g><title>pick_next_task_idle (318 samples, 0.01%)</title><rect x="65.0442%" y="373" width="0.0132%" height="15" fill="rgb(250,50,5)" fg:x="1563402" fg:w="318"/><text x="65.2942%" y="383.50"></text></g><g><title>psi_task_change (1,140 samples, 0.05%)</title><rect x="65.0574%" y="373" width="0.0474%" height="15" fill="rgb(207,67,11)" fg:x="1563720" fg:w="1140"/><text x="65.3074%" y="383.50"></text></g><g><title>psi_group_change (949 samples, 0.04%)</title><rect x="65.0654%" y="357" width="0.0395%" height="15" fill="rgb(245,204,40)" fg:x="1563911" fg:w="949"/><text x="65.3154%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (26,580 samples, 1.11%)</title><rect x="64.0133%" y="421" width="1.1058%" height="15" fill="rgb(238,228,24)" fg:x="1538624" fg:w="26580"/><text x="64.2633%" y="431.50"></text></g><g><title>schedule (6,288 samples, 0.26%)</title><rect x="64.8575%" y="405" width="0.2616%" height="15" fill="rgb(217,116,22)" fg:x="1558916" fg:w="6288"/><text x="65.1075%" y="415.50"></text></g><g><title>__schedule (6,213 samples, 0.26%)</title><rect x="64.8607%" y="389" width="0.2585%" height="15" fill="rgb(234,98,12)" fg:x="1558991" fg:w="6213"/><text x="65.1107%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (28,078 samples, 1.17%)</title><rect x="64.0060%" y="437" width="1.1682%" height="15" fill="rgb(242,170,50)" fg:x="1538448" fg:w="28078"/><text x="64.2560%" y="447.50"></text></g><g><title>btrfs_root_node (1,321 samples, 0.05%)</title><rect x="65.1192%" y="421" width="0.0550%" height="15" fill="rgb(235,7,5)" fg:x="1565205" fg:w="1321"/><text x="65.3692%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (277 samples, 0.01%)</title><rect x="65.1869%" y="405" width="0.0115%" height="15" fill="rgb(241,114,28)" fg:x="1566833" fg:w="277"/><text x="65.4369%" y="415.50"></text></g><g><title>prepare_to_wait_event (384 samples, 0.02%)</title><rect x="65.1833%" y="421" width="0.0160%" height="15" fill="rgb(246,112,42)" fg:x="1566745" fg:w="384"/><text x="65.4333%" y="431.50"></text></g><g><title>dequeue_entity (283 samples, 0.01%)</title><rect x="65.2187%" y="373" width="0.0118%" height="15" fill="rgb(248,228,14)" fg:x="1567597" fg:w="283"/><text x="65.4687%" y="383.50"></text></g><g><title>dequeue_task_fair (345 samples, 0.01%)</title><rect x="65.2171%" y="389" width="0.0144%" height="15" fill="rgb(208,133,18)" fg:x="1567558" fg:w="345"/><text x="65.4671%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (311 samples, 0.01%)</title><rect x="65.2334%" y="373" width="0.0129%" height="15" fill="rgb(207,35,49)" fg:x="1567951" fg:w="311"/><text x="65.4834%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (304 samples, 0.01%)</title><rect x="65.2337%" y="357" width="0.0126%" height="15" fill="rgb(205,68,36)" fg:x="1567958" fg:w="304"/><text x="65.4837%" y="367.50"></text></g><g><title>native_write_msr (300 samples, 0.01%)</title><rect x="65.2339%" y="341" width="0.0125%" height="15" fill="rgb(245,62,40)" fg:x="1567962" fg:w="300"/><text x="65.4839%" y="351.50"></text></g><g><title>finish_task_switch (378 samples, 0.02%)</title><rect x="65.2314%" y="389" width="0.0157%" height="15" fill="rgb(228,27,24)" fg:x="1567903" fg:w="378"/><text x="65.4814%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,202 samples, 0.09%)</title><rect x="65.1742%" y="437" width="0.0916%" height="15" fill="rgb(253,19,12)" fg:x="1566526" fg:w="2202"/><text x="65.4242%" y="447.50"></text></g><g><title>schedule (1,359 samples, 0.06%)</title><rect x="65.2092%" y="421" width="0.0565%" height="15" fill="rgb(232,28,20)" fg:x="1567369" fg:w="1359"/><text x="65.4592%" y="431.50"></text></g><g><title>__schedule (1,342 samples, 0.06%)</title><rect x="65.2099%" y="405" width="0.0558%" height="15" fill="rgb(218,35,51)" fg:x="1567386" fg:w="1342"/><text x="65.4599%" y="415.50"></text></g><g><title>select_task_rq_fair (341 samples, 0.01%)</title><rect x="65.2812%" y="373" width="0.0142%" height="15" fill="rgb(212,90,40)" fg:x="1569099" fg:w="341"/><text x="65.5312%" y="383.50"></text></g><g><title>enqueue_entity (246 samples, 0.01%)</title><rect x="65.3006%" y="341" width="0.0102%" height="15" fill="rgb(220,172,12)" fg:x="1569565" fg:w="246"/><text x="65.5506%" y="351.50"></text></g><g><title>enqueue_task_fair (337 samples, 0.01%)</title><rect x="65.2979%" y="357" width="0.0140%" height="15" fill="rgb(226,159,20)" fg:x="1569501" fg:w="337"/><text x="65.5479%" y="367.50"></text></g><g><title>ttwu_do_activate (712 samples, 0.03%)</title><rect x="65.2967%" y="373" width="0.0296%" height="15" fill="rgb(234,205,16)" fg:x="1569471" fg:w="712"/><text x="65.5467%" y="383.50"></text></g><g><title>psi_task_change (344 samples, 0.01%)</title><rect x="65.3120%" y="357" width="0.0143%" height="15" fill="rgb(207,9,39)" fg:x="1569839" fg:w="344"/><text x="65.5620%" y="367.50"></text></g><g><title>psi_group_change (313 samples, 0.01%)</title><rect x="65.3133%" y="341" width="0.0130%" height="15" fill="rgb(249,143,15)" fg:x="1569870" fg:w="313"/><text x="65.5633%" y="351.50"></text></g><g><title>__wake_up_common (1,603 samples, 0.07%)</title><rect x="65.2661%" y="421" width="0.0667%" height="15" fill="rgb(253,133,29)" fg:x="1568737" fg:w="1603"/><text x="65.5161%" y="431.50"></text></g><g><title>autoremove_wake_function (1,580 samples, 0.07%)</title><rect x="65.2671%" y="405" width="0.0657%" height="15" fill="rgb(221,187,0)" fg:x="1568760" fg:w="1580"/><text x="65.5171%" y="415.50"></text></g><g><title>try_to_wake_up (1,538 samples, 0.06%)</title><rect x="65.2688%" y="389" width="0.0640%" height="15" fill="rgb(205,204,26)" fg:x="1568802" fg:w="1538"/><text x="65.5188%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,656 samples, 0.07%)</title><rect x="65.2658%" y="437" width="0.0689%" height="15" fill="rgb(224,68,54)" fg:x="1568729" fg:w="1656"/><text x="65.5158%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (970 samples, 0.04%)</title><rect x="65.3436%" y="437" width="0.0404%" height="15" fill="rgb(209,67,4)" fg:x="1570599" fg:w="970"/><text x="65.5936%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (583 samples, 0.02%)</title><rect x="65.3597%" y="421" width="0.0243%" height="15" fill="rgb(228,229,18)" fg:x="1570986" fg:w="583"/><text x="65.6097%" y="431.50"></text></g><g><title>_raw_read_lock (459 samples, 0.02%)</title><rect x="65.4002%" y="421" width="0.0191%" height="15" fill="rgb(231,89,13)" fg:x="1571959" fg:w="459"/><text x="65.6502%" y="431.50"></text></g><g><title>btrfs_tree_read_lock_atomic (2,734 samples, 0.11%)</title><rect x="65.3840%" y="437" width="0.1137%" height="15" fill="rgb(210,182,18)" fg:x="1571569" fg:w="2734"/><text x="65.6340%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,882 samples, 0.08%)</title><rect x="65.4194%" y="421" width="0.0783%" height="15" fill="rgb(240,105,2)" fg:x="1572421" fg:w="1882"/><text x="65.6694%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (598 samples, 0.02%)</title><rect x="65.4728%" y="405" width="0.0249%" height="15" fill="rgb(207,170,50)" fg:x="1573705" fg:w="598"/><text x="65.7228%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (887 samples, 0.04%)</title><rect x="65.4977%" y="437" width="0.0369%" height="15" fill="rgb(232,133,24)" fg:x="1574303" fg:w="887"/><text x="65.7477%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,661 samples, 0.19%)</title><rect x="65.5378%" y="437" width="0.1939%" height="15" fill="rgb(235,166,27)" fg:x="1575266" fg:w="4661"/><text x="65.7878%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (630 samples, 0.03%)</title><rect x="65.7616%" y="421" width="0.0262%" height="15" fill="rgb(209,19,13)" fg:x="1580645" fg:w="630"/><text x="66.0116%" y="431.50"></text></g><g><title>verify_parent_transid (458 samples, 0.02%)</title><rect x="65.7687%" y="405" width="0.0191%" height="15" fill="rgb(226,79,39)" fg:x="1580817" fg:w="458"/><text x="66.0187%" y="415.50"></text></g><g><title>btrfs_get_64 (725 samples, 0.03%)</title><rect x="65.7878%" y="421" width="0.0302%" height="15" fill="rgb(222,163,10)" fg:x="1581275" fg:w="725"/><text x="66.0378%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,623 samples, 0.11%)</title><rect x="65.8758%" y="405" width="0.1091%" height="15" fill="rgb(214,44,19)" fg:x="1583390" fg:w="2623"/><text x="66.1258%" y="415.50"></text></g><g><title>mark_page_accessed (845 samples, 0.04%)</title><rect x="65.9974%" y="389" width="0.0352%" height="15" fill="rgb(210,217,13)" fg:x="1586314" fg:w="845"/><text x="66.2474%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,144 samples, 0.05%)</title><rect x="65.9851%" y="405" width="0.0476%" height="15" fill="rgb(237,61,54)" fg:x="1586019" fg:w="1144"/><text x="66.2351%" y="415.50"></text></g><g><title>find_extent_buffer (4,887 samples, 0.20%)</title><rect x="65.8311%" y="421" width="0.2033%" height="15" fill="rgb(226,184,24)" fg:x="1582317" fg:w="4887"/><text x="66.0811%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (8,065 samples, 0.34%)</title><rect x="65.7317%" y="437" width="0.3355%" height="15" fill="rgb(223,226,4)" fg:x="1579927" fg:w="8065"/><text x="65.9817%" y="447.50"></text></g><g><title>read_extent_buffer (788 samples, 0.03%)</title><rect x="66.0344%" y="421" width="0.0328%" height="15" fill="rgb(210,26,41)" fg:x="1587204" fg:w="788"/><text x="66.2844%" y="431.50"></text></g><g><title>btrfs_search_slot (52,145 samples, 2.17%)</title><rect x="63.9243%" y="453" width="2.1695%" height="15" fill="rgb(220,221,6)" fg:x="1536484" fg:w="52145"/><text x="64.1743%" y="463.50">b..</text></g><g><title>unlock_up (637 samples, 0.03%)</title><rect x="66.0672%" y="437" width="0.0265%" height="15" fill="rgb(225,89,49)" fg:x="1587992" fg:w="637"/><text x="66.3172%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (53,265 samples, 2.22%)</title><rect x="63.9108%" y="469" width="2.2161%" height="15" fill="rgb(218,70,45)" fg:x="1536161" fg:w="53265"/><text x="64.1608%" y="479.50">b..</text></g><g><title>crc32c (797 samples, 0.03%)</title><rect x="66.0937%" y="453" width="0.0332%" height="15" fill="rgb(238,166,21)" fg:x="1588629" fg:w="797"/><text x="66.3437%" y="463.50"></text></g><g><title>crypto_shash_update (471 samples, 0.02%)</title><rect x="66.1073%" y="437" width="0.0196%" height="15" fill="rgb(224,141,44)" fg:x="1588955" fg:w="471"/><text x="66.3573%" y="447.50"></text></g><g><title>kmem_cache_alloc (962 samples, 0.04%)</title><rect x="66.1269%" y="469" width="0.0400%" height="15" fill="rgb(230,12,49)" fg:x="1589426" fg:w="962"/><text x="66.3769%" y="479.50"></text></g><g><title>btrfs_lookup (58,140 samples, 2.42%)</title><rect x="63.7738%" y="501" width="2.4189%" height="15" fill="rgb(212,174,12)" fg:x="1532868" fg:w="58140"/><text x="64.0238%" y="511.50">bt..</text></g><g><title>btrfs_lookup_dentry (58,004 samples, 2.41%)</title><rect x="63.7795%" y="485" width="2.4132%" height="15" fill="rgb(246,67,9)" fg:x="1533004" fg:w="58004"/><text x="64.0295%" y="495.50">bt..</text></g><g><title>kmem_cache_free (620 samples, 0.03%)</title><rect x="66.1669%" y="469" width="0.0258%" height="15" fill="rgb(239,35,23)" fg:x="1590388" fg:w="620"/><text x="66.4169%" y="479.50"></text></g><g><title>d_set_d_op (353 samples, 0.01%)</title><rect x="66.2156%" y="469" width="0.0147%" height="15" fill="rgb(211,167,0)" fg:x="1591557" fg:w="353"/><text x="66.4656%" y="479.50"></text></g><g><title>allocate_slab (286 samples, 0.01%)</title><rect x="66.2735%" y="421" width="0.0119%" height="15" fill="rgb(225,119,45)" fg:x="1592949" fg:w="286"/><text x="66.5235%" y="431.50"></text></g><g><title>___slab_alloc (804 samples, 0.03%)</title><rect x="66.2558%" y="437" width="0.0334%" height="15" fill="rgb(210,162,6)" fg:x="1592525" fg:w="804"/><text x="66.5058%" y="447.50"></text></g><g><title>__slab_alloc (857 samples, 0.04%)</title><rect x="66.2540%" y="453" width="0.0357%" height="15" fill="rgb(208,118,35)" fg:x="1592480" fg:w="857"/><text x="66.5040%" y="463.50"></text></g><g><title>__mod_memcg_lruvec_state (414 samples, 0.02%)</title><rect x="66.3425%" y="437" width="0.0172%" height="15" fill="rgb(239,4,53)" fg:x="1594609" fg:w="414"/><text x="66.5925%" y="447.50"></text></g><g><title>__mod_memcg_state.part.0 (322 samples, 0.01%)</title><rect x="66.3464%" y="421" width="0.0134%" height="15" fill="rgb(213,130,21)" fg:x="1594701" fg:w="322"/><text x="66.5964%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,772 samples, 0.07%)</title><rect x="66.2899%" y="453" width="0.0737%" height="15" fill="rgb(235,148,0)" fg:x="1593344" fg:w="1772"/><text x="66.5399%" y="463.50"></text></g><g><title>get_obj_cgroup_from_current (863 samples, 0.04%)</title><rect x="66.3805%" y="437" width="0.0359%" height="15" fill="rgb(244,224,18)" fg:x="1595521" fg:w="863"/><text x="66.6305%" y="447.50"></text></g><g><title>obj_cgroup_charge (575 samples, 0.02%)</title><rect x="66.4164%" y="437" width="0.0239%" height="15" fill="rgb(211,214,4)" fg:x="1596384" fg:w="575"/><text x="66.6664%" y="447.50"></text></g><g><title>kmem_cache_alloc (5,059 samples, 0.21%)</title><rect x="66.2302%" y="469" width="0.2105%" height="15" fill="rgb(206,119,25)" fg:x="1591910" fg:w="5059"/><text x="66.4802%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,673 samples, 0.07%)</title><rect x="66.3711%" y="453" width="0.0696%" height="15" fill="rgb(243,93,47)" fg:x="1595296" fg:w="1673"/><text x="66.6211%" y="463.50"></text></g><g><title>__d_alloc (5,949 samples, 0.25%)</title><rect x="66.1988%" y="485" width="0.2475%" height="15" fill="rgb(224,194,6)" fg:x="1591155" fg:w="5949"/><text x="66.4488%" y="495.50"></text></g><g><title>d_alloc (6,477 samples, 0.27%)</title><rect x="66.1927%" y="501" width="0.2695%" height="15" fill="rgb(243,229,6)" fg:x="1591008" fg:w="6477"/><text x="66.4427%" y="511.50"></text></g><g><title>__d_rehash (485 samples, 0.02%)</title><rect x="66.4834%" y="469" width="0.0202%" height="15" fill="rgb(207,23,50)" fg:x="1597995" fg:w="485"/><text x="66.7334%" y="479.50"></text></g><g><title>__d_add (897 samples, 0.04%)</title><rect x="66.4735%" y="485" width="0.0373%" height="15" fill="rgb(253,192,32)" fg:x="1597756" fg:w="897"/><text x="66.7235%" y="495.50"></text></g><g><title>d_splice_alias (1,169 samples, 0.05%)</title><rect x="66.4622%" y="501" width="0.0486%" height="15" fill="rgb(213,21,6)" fg:x="1597485" fg:w="1169"/><text x="66.7122%" y="511.50"></text></g><g><title>__d_lookup (1,430 samples, 0.06%)</title><rect x="66.5193%" y="469" width="0.0595%" height="15" fill="rgb(243,151,13)" fg:x="1598859" fg:w="1430"/><text x="66.7693%" y="479.50"></text></g><g><title>__lookup_hash (67,622 samples, 2.81%)</title><rect x="63.7655%" y="517" width="2.8134%" height="15" fill="rgb(233,165,41)" fg:x="1532668" fg:w="67622"/><text x="64.0155%" y="527.50">__..</text></g><g><title>lookup_dcache (1,636 samples, 0.07%)</title><rect x="66.5108%" y="501" width="0.0681%" height="15" fill="rgb(246,176,45)" fg:x="1598654" fg:w="1636"/><text x="66.7608%" y="511.50"></text></g><g><title>d_lookup (1,591 samples, 0.07%)</title><rect x="66.5127%" y="485" width="0.0662%" height="15" fill="rgb(217,170,52)" fg:x="1598699" fg:w="1591"/><text x="66.7627%" y="495.50"></text></g><g><title>down_write (300 samples, 0.01%)</title><rect x="66.5791%" y="517" width="0.0125%" height="15" fill="rgb(214,203,54)" fg:x="1600295" fg:w="300"/><text x="66.8291%" y="527.50"></text></g><g><title>__legitimize_mnt (610 samples, 0.03%)</title><rect x="66.6535%" y="437" width="0.0254%" height="15" fill="rgb(248,215,49)" fg:x="1602083" fg:w="610"/><text x="66.9035%" y="447.50"></text></g><g><title>__legitimize_path (1,081 samples, 0.04%)</title><rect x="66.6424%" y="453" width="0.0450%" height="15" fill="rgb(208,46,10)" fg:x="1601816" fg:w="1081"/><text x="66.8924%" y="463.50"></text></g><g><title>legitimize_links (301 samples, 0.01%)</title><rect x="66.6874%" y="453" width="0.0125%" height="15" fill="rgb(254,5,31)" fg:x="1602899" fg:w="301"/><text x="66.9374%" y="463.50"></text></g><g><title>complete_walk (1,895 samples, 0.08%)</title><rect x="66.6231%" y="485" width="0.0788%" height="15" fill="rgb(222,104,33)" fg:x="1601352" fg:w="1895"/><text x="66.8731%" y="495.50"></text></g><g><title>try_to_unlazy (1,676 samples, 0.07%)</title><rect x="66.6322%" y="469" width="0.0697%" height="15" fill="rgb(248,49,16)" fg:x="1601571" fg:w="1676"/><text x="66.8822%" y="479.50"></text></g><g><title>generic_permission (1,325 samples, 0.06%)</title><rect x="67.1119%" y="453" width="0.0551%" height="15" fill="rgb(232,198,41)" fg:x="1613102" fg:w="1325"/><text x="67.3619%" y="463.50"></text></g><g><title>inode_permission.part.0 (6,835 samples, 0.28%)</title><rect x="66.8827%" y="469" width="0.2844%" height="15" fill="rgb(214,125,3)" fg:x="1607593" fg:w="6835"/><text x="67.1327%" y="479.50"></text></g><g><title>security_inode_permission (432 samples, 0.02%)</title><rect x="67.1671%" y="469" width="0.0180%" height="15" fill="rgb(229,220,28)" fg:x="1614428" fg:w="432"/><text x="67.4171%" y="479.50"></text></g><g><title>__d_lookup_rcu (10,345 samples, 0.43%)</title><rect x="67.3115%" y="437" width="0.4304%" height="15" fill="rgb(222,64,37)" fg:x="1617899" fg:w="10345"/><text x="67.5615%" y="447.50"></text></g><g><title>lookup_fast (11,764 samples, 0.49%)</title><rect x="67.2530%" y="453" width="0.4894%" height="15" fill="rgb(249,184,13)" fg:x="1616492" fg:w="11764"/><text x="67.5030%" y="463.50"></text></g><g><title>__lookup_mnt (402 samples, 0.02%)</title><rect x="67.7996%" y="437" width="0.0167%" height="15" fill="rgb(252,176,6)" fg:x="1629630" fg:w="402"/><text x="68.0496%" y="447.50"></text></g><g><title>link_path_walk.part.0 (26,793 samples, 1.11%)</title><rect x="66.7019%" y="485" width="1.1147%" height="15" fill="rgb(228,153,7)" fg:x="1603247" fg:w="26793"/><text x="66.9519%" y="495.50"></text></g><g><title>walk_component (15,180 samples, 0.63%)</title><rect x="67.1851%" y="469" width="0.6316%" height="15" fill="rgb(242,193,5)" fg:x="1614860" fg:w="15180"/><text x="67.4351%" y="479.50"></text></g><g><title>step_into (1,784 samples, 0.07%)</title><rect x="67.7424%" y="453" width="0.0742%" height="15" fill="rgb(232,140,9)" fg:x="1628256" fg:w="1784"/><text x="67.9924%" y="463.50"></text></g><g><title>path_init (1,931 samples, 0.08%)</title><rect x="67.8166%" y="485" width="0.0803%" height="15" fill="rgb(213,222,16)" fg:x="1630040" fg:w="1931"/><text x="68.0666%" y="495.50"></text></g><g><title>nd_jump_root (1,090 samples, 0.05%)</title><rect x="67.8516%" y="469" width="0.0453%" height="15" fill="rgb(222,75,50)" fg:x="1630881" fg:w="1090"/><text x="68.1016%" y="479.50"></text></g><g><title>set_root (810 samples, 0.03%)</title><rect x="67.8632%" y="453" width="0.0337%" height="15" fill="rgb(205,180,2)" fg:x="1631161" fg:w="810"/><text x="68.1132%" y="463.50"></text></g><g><title>filename_parentat (32,181 samples, 1.34%)</title><rect x="66.5916%" y="517" width="1.3389%" height="15" fill="rgb(216,34,7)" fg:x="1600595" fg:w="32181"/><text x="66.8416%" y="527.50"></text></g><g><title>path_parentat (31,639 samples, 1.32%)</title><rect x="66.6141%" y="501" width="1.3163%" height="15" fill="rgb(253,16,32)" fg:x="1601137" fg:w="31639"/><text x="66.8641%" y="511.50"></text></g><g><title>terminate_walk (805 samples, 0.03%)</title><rect x="67.8969%" y="485" width="0.0335%" height="15" fill="rgb(208,97,28)" fg:x="1631971" fg:w="805"/><text x="68.1469%" y="495.50"></text></g><g><title>kmem_cache_free (694 samples, 0.03%)</title><rect x="67.9304%" y="517" width="0.0289%" height="15" fill="rgb(225,92,11)" fg:x="1632776" fg:w="694"/><text x="68.1804%" y="527.50"></text></g><g><title>__mnt_want_write (395 samples, 0.02%)</title><rect x="67.9752%" y="501" width="0.0164%" height="15" fill="rgb(243,38,12)" fg:x="1633852" fg:w="395"/><text x="68.2252%" y="511.50"></text></g><g><title>mnt_want_write (917 samples, 0.04%)</title><rect x="67.9593%" y="517" width="0.0382%" height="15" fill="rgb(208,139,16)" fg:x="1633470" fg:w="917"/><text x="68.2093%" y="527.50"></text></g><g><title>filename_create (102,321 samples, 4.26%)</title><rect x="63.7492%" y="533" width="4.2570%" height="15" fill="rgb(227,24,9)" fg:x="1532276" fg:w="102321"/><text x="63.9992%" y="543.50">filen..</text></g><g><title>memset_erms (3,115 samples, 0.13%)</title><rect x="68.0794%" y="501" width="0.1296%" height="15" fill="rgb(206,62,11)" fg:x="1636357" fg:w="3115"/><text x="68.3294%" y="511.50"></text></g><g><title>kmem_cache_alloc (4,758 samples, 0.20%)</title><rect x="68.0315%" y="517" width="0.1980%" height="15" fill="rgb(228,134,27)" fg:x="1635204" fg:w="4758"/><text x="68.2815%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (490 samples, 0.02%)</title><rect x="68.2090%" y="501" width="0.0204%" height="15" fill="rgb(205,55,33)" fg:x="1639472" fg:w="490"/><text x="68.4590%" y="511.50"></text></g><g><title>__check_heap_object (469 samples, 0.02%)</title><rect x="68.3613%" y="485" width="0.0195%" height="15" fill="rgb(243,75,43)" fg:x="1643133" fg:w="469"/><text x="68.6113%" y="495.50"></text></g><g><title>__virt_addr_valid (1,073 samples, 0.04%)</title><rect x="68.3808%" y="485" width="0.0446%" height="15" fill="rgb(223,27,42)" fg:x="1643602" fg:w="1073"/><text x="68.6308%" y="495.50"></text></g><g><title>__check_object_size (2,347 samples, 0.10%)</title><rect x="68.3368%" y="501" width="0.0976%" height="15" fill="rgb(232,189,33)" fg:x="1642544" fg:w="2347"/><text x="68.5868%" y="511.50"></text></g><g><title>getname_flags.part.0 (10,145 samples, 0.42%)</title><rect x="68.0132%" y="533" width="0.4221%" height="15" fill="rgb(210,9,39)" fg:x="1634765" fg:w="10145"/><text x="68.2632%" y="543.50"></text></g><g><title>strncpy_from_user (4,948 samples, 0.21%)</title><rect x="68.2294%" y="517" width="0.2059%" height="15" fill="rgb(242,85,26)" fg:x="1639962" fg:w="4948"/><text x="68.4794%" y="527.50"></text></g><g><title>kmem_cache_free (980 samples, 0.04%)</title><rect x="68.4353%" y="533" width="0.0408%" height="15" fill="rgb(248,44,4)" fg:x="1644910" fg:w="980"/><text x="68.6853%" y="543.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (335 samples, 0.01%)</title><rect x="68.4621%" y="517" width="0.0139%" height="15" fill="rgb(250,96,46)" fg:x="1645555" fg:w="335"/><text x="68.7121%" y="527.50"></text></g><g><title>apparmor_path_symlink (622 samples, 0.03%)</title><rect x="68.5063%" y="517" width="0.0259%" height="15" fill="rgb(229,116,26)" fg:x="1646617" fg:w="622"/><text x="68.7563%" y="527.50"></text></g><g><title>security_path_symlink (2,360 samples, 0.10%)</title><rect x="68.4908%" y="533" width="0.0982%" height="15" fill="rgb(246,94,34)" fg:x="1646245" fg:w="2360"/><text x="68.7408%" y="543.50"></text></g><g><title>tomoyo_path_symlink (1,360 samples, 0.06%)</title><rect x="68.5324%" y="517" width="0.0566%" height="15" fill="rgb(251,73,21)" fg:x="1647245" fg:w="1360"/><text x="68.7824%" y="527.50"></text></g><g><title>tomoyo_path_perm (1,309 samples, 0.05%)</title><rect x="68.5345%" y="501" width="0.0545%" height="15" fill="rgb(254,121,25)" fg:x="1647296" fg:w="1309"/><text x="68.7845%" y="511.50"></text></g><g><title>tomoyo_init_request_info (900 samples, 0.04%)</title><rect x="68.5515%" y="485" width="0.0374%" height="15" fill="rgb(215,161,49)" fg:x="1647705" fg:w="900"/><text x="68.8015%" y="495.50"></text></g><g><title>tomoyo_domain (519 samples, 0.02%)</title><rect x="68.5674%" y="469" width="0.0216%" height="15" fill="rgb(221,43,13)" fg:x="1648086" fg:w="519"/><text x="68.8174%" y="479.50"></text></g><g><title>up_write (634 samples, 0.03%)</title><rect x="68.5890%" y="533" width="0.0264%" height="15" fill="rgb(249,5,37)" fg:x="1648605" fg:w="634"/><text x="68.8390%" y="543.50"></text></g><g><title>btrfs_create_pending_block_groups (398 samples, 0.02%)</title><rect x="68.7758%" y="485" width="0.0166%" height="15" fill="rgb(226,25,44)" fg:x="1653096" fg:w="398"/><text x="69.0258%" y="495.50"></text></g><g><title>_raw_spin_lock (1,453 samples, 0.06%)</title><rect x="68.8374%" y="453" width="0.0605%" height="15" fill="rgb(238,189,16)" fg:x="1654576" fg:w="1453"/><text x="69.0874%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (520 samples, 0.02%)</title><rect x="68.8762%" y="437" width="0.0216%" height="15" fill="rgb(251,186,8)" fg:x="1655509" fg:w="520"/><text x="69.1262%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,413 samples, 0.10%)</title><rect x="68.8083%" y="485" width="0.1004%" height="15" fill="rgb(254,34,31)" fg:x="1653876" fg:w="2413"/><text x="69.0583%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (2,194 samples, 0.09%)</title><rect x="68.8174%" y="469" width="0.0913%" height="15" fill="rgb(225,215,27)" fg:x="1654095" fg:w="2194"/><text x="69.0674%" y="479.50"></text></g><g><title>__btrfs_end_transaction (5,512 samples, 0.23%)</title><rect x="68.7151%" y="501" width="0.2293%" height="15" fill="rgb(221,192,48)" fg:x="1651635" fg:w="5512"/><text x="68.9651%" y="511.50"></text></g><g><title>kmem_cache_free (858 samples, 0.04%)</title><rect x="68.9087%" y="485" width="0.0357%" height="15" fill="rgb(219,137,20)" fg:x="1656289" fg:w="858"/><text x="69.1587%" y="495.50"></text></g><g><title>__radix_tree_lookup (405 samples, 0.02%)</title><rect x="68.9759%" y="485" width="0.0168%" height="15" fill="rgb(219,84,11)" fg:x="1657905" fg:w="405"/><text x="69.2259%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,171 samples, 0.05%)</title><rect x="68.9449%" y="501" width="0.0487%" height="15" fill="rgb(224,10,23)" fg:x="1657159" fg:w="1171"/><text x="69.1949%" y="511.50"></text></g><g><title>btrfs_comp_cpu_keys (919 samples, 0.04%)</title><rect x="69.1116%" y="437" width="0.0382%" height="15" fill="rgb(248,22,39)" fg:x="1661167" fg:w="919"/><text x="69.3616%" y="447.50"></text></g><g><title>__btrfs_add_delayed_item (2,295 samples, 0.10%)</title><rect x="69.0732%" y="453" width="0.0955%" height="15" fill="rgb(212,154,20)" fg:x="1660243" fg:w="2295"/><text x="69.3232%" y="463.50"></text></g><g><title>rb_insert_color (452 samples, 0.02%)</title><rect x="69.1499%" y="437" width="0.0188%" height="15" fill="rgb(236,199,50)" fg:x="1662086" fg:w="452"/><text x="69.3999%" y="447.50"></text></g><g><title>_raw_spin_lock (294 samples, 0.01%)</title><rect x="69.1978%" y="437" width="0.0122%" height="15" fill="rgb(211,9,17)" fg:x="1663239" fg:w="294"/><text x="69.4478%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,725 samples, 0.07%)</title><rect x="69.1687%" y="453" width="0.0718%" height="15" fill="rgb(243,216,36)" fg:x="1662538" fg:w="1725"/><text x="69.4187%" y="463.50"></text></g><g><title>mutex_unlock (528 samples, 0.02%)</title><rect x="69.2185%" y="437" width="0.0220%" height="15" fill="rgb(250,2,10)" fg:x="1663735" fg:w="528"/><text x="69.4685%" y="447.50"></text></g><g><title>__slab_alloc (259 samples, 0.01%)</title><rect x="69.2706%" y="437" width="0.0108%" height="15" fill="rgb(226,50,48)" fg:x="1664989" fg:w="259"/><text x="69.5206%" y="447.50"></text></g><g><title>__kmalloc (1,768 samples, 0.07%)</title><rect x="69.2404%" y="453" width="0.0736%" height="15" fill="rgb(243,81,16)" fg:x="1664263" fg:w="1768"/><text x="69.4904%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (441 samples, 0.02%)</title><rect x="69.2956%" y="437" width="0.0183%" height="15" fill="rgb(250,14,2)" fg:x="1665590" fg:w="441"/><text x="69.5456%" y="447.50"></text></g><g><title>mutex_spin_on_owner (1,238 samples, 0.05%)</title><rect x="69.3154%" y="437" width="0.0515%" height="15" fill="rgb(233,135,29)" fg:x="1666064" fg:w="1238"/><text x="69.5654%" y="447.50"></text></g><g><title>__mutex_lock.constprop.0 (1,362 samples, 0.06%)</title><rect x="69.3140%" y="453" width="0.0567%" height="15" fill="rgb(224,64,43)" fg:x="1666031" fg:w="1362"/><text x="69.5640%" y="463.50"></text></g><g><title>_raw_spin_lock (1,087 samples, 0.05%)</title><rect x="69.3864%" y="421" width="0.0452%" height="15" fill="rgb(238,84,13)" fg:x="1667771" fg:w="1087"/><text x="69.6364%" y="431.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,458 samples, 0.06%)</title><rect x="69.3712%" y="453" width="0.0607%" height="15" fill="rgb(253,48,26)" fg:x="1667407" fg:w="1458"/><text x="69.6212%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,258 samples, 0.05%)</title><rect x="69.3796%" y="437" width="0.0523%" height="15" fill="rgb(205,223,31)" fg:x="1667607" fg:w="1258"/><text x="69.6296%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (671 samples, 0.03%)</title><rect x="69.4319%" y="453" width="0.0279%" height="15" fill="rgb(221,41,32)" fg:x="1668865" fg:w="671"/><text x="69.6819%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (576 samples, 0.02%)</title><rect x="69.4358%" y="437" width="0.0240%" height="15" fill="rgb(213,158,31)" fg:x="1668960" fg:w="576"/><text x="69.6858%" y="447.50"></text></g><g><title>memcpy_erms (245 samples, 0.01%)</title><rect x="69.4599%" y="453" width="0.0102%" height="15" fill="rgb(245,126,43)" fg:x="1669537" fg:w="245"/><text x="69.7099%" y="463.50"></text></g><g><title>mutex_lock (262 samples, 0.01%)</title><rect x="69.4700%" y="453" width="0.0109%" height="15" fill="rgb(227,7,22)" fg:x="1669782" fg:w="262"/><text x="69.7200%" y="463.50"></text></g><g><title>btrfs_insert_delayed_dir_index (10,385 samples, 0.43%)</title><rect x="69.0558%" y="469" width="0.4321%" height="15" fill="rgb(252,90,44)" fg:x="1659825" fg:w="10385"/><text x="69.3058%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (444 samples, 0.02%)</title><rect x="69.4879%" y="469" width="0.0185%" height="15" fill="rgb(253,91,0)" fg:x="1670210" fg:w="444"/><text x="69.7379%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (284 samples, 0.01%)</title><rect x="69.4945%" y="453" width="0.0118%" height="15" fill="rgb(252,175,49)" fg:x="1670370" fg:w="284"/><text x="69.7445%" y="463.50"></text></g><g><title>_raw_spin_lock (401 samples, 0.02%)</title><rect x="69.5563%" y="437" width="0.0167%" height="15" fill="rgb(246,150,1)" fg:x="1671855" fg:w="401"/><text x="69.8063%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,368 samples, 0.06%)</title><rect x="69.5164%" y="453" width="0.0569%" height="15" fill="rgb(241,192,25)" fg:x="1670895" fg:w="1368"/><text x="69.7664%" y="463.50"></text></g><g><title>btrfs_release_path (1,954 samples, 0.08%)</title><rect x="69.5063%" y="469" width="0.0813%" height="15" fill="rgb(239,187,11)" fg:x="1670654" fg:w="1954"/><text x="69.7563%" y="479.50"></text></g><g><title>release_extent_buffer (345 samples, 0.01%)</title><rect x="69.5733%" y="453" width="0.0144%" height="15" fill="rgb(218,202,51)" fg:x="1672263" fg:w="345"/><text x="69.8233%" y="463.50"></text></g><g><title>btrfs_set_16 (314 samples, 0.01%)</title><rect x="69.5876%" y="469" width="0.0131%" height="15" fill="rgb(225,176,8)" fg:x="1672608" fg:w="314"/><text x="69.8376%" y="479.50"></text></g><g><title>crc32c (728 samples, 0.03%)</title><rect x="69.6117%" y="469" width="0.0303%" height="15" fill="rgb(219,122,41)" fg:x="1673186" fg:w="728"/><text x="69.8617%" y="479.50"></text></g><g><title>crypto_shash_update (372 samples, 0.02%)</title><rect x="69.6265%" y="453" width="0.0155%" height="15" fill="rgb(248,140,20)" fg:x="1673542" fg:w="372"/><text x="69.8765%" y="463.50"></text></g><g><title>btrfs_get_32 (446 samples, 0.02%)</title><rect x="69.6567%" y="453" width="0.0186%" height="15" fill="rgb(245,41,37)" fg:x="1674269" fg:w="446"/><text x="69.9067%" y="463.50"></text></g><g><title>_raw_read_lock (522 samples, 0.02%)</title><rect x="69.7896%" y="389" width="0.0217%" height="15" fill="rgb(235,82,39)" fg:x="1677464" fg:w="522"/><text x="70.0396%" y="399.50"></text></g><g><title>finish_wait (2,557 samples, 0.11%)</title><rect x="69.8126%" y="389" width="0.1064%" height="15" fill="rgb(230,108,42)" fg:x="1678016" fg:w="2557"/><text x="70.0626%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (2,419 samples, 0.10%)</title><rect x="69.8184%" y="373" width="0.1006%" height="15" fill="rgb(215,150,50)" fg:x="1678154" fg:w="2419"/><text x="70.0684%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,317 samples, 0.10%)</title><rect x="69.8226%" y="357" width="0.0964%" height="15" fill="rgb(233,212,5)" fg:x="1678256" fg:w="2317"/><text x="70.0726%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (6,386 samples, 0.27%)</title><rect x="69.9435%" y="373" width="0.2657%" height="15" fill="rgb(245,80,22)" fg:x="1681161" fg:w="6386"/><text x="70.1935%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,091 samples, 0.25%)</title><rect x="69.9557%" y="357" width="0.2534%" height="15" fill="rgb(238,129,16)" fg:x="1681456" fg:w="6091"/><text x="70.2057%" y="367.50"></text></g><g><title>prepare_to_wait_event (7,077 samples, 0.29%)</title><rect x="69.9192%" y="389" width="0.2944%" height="15" fill="rgb(240,19,0)" fg:x="1680579" fg:w="7077"/><text x="70.1692%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (6,545 samples, 0.27%)</title><rect x="70.2137%" y="389" width="0.2723%" height="15" fill="rgb(232,42,35)" fg:x="1687656" fg:w="6545"/><text x="70.4637%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,851 samples, 0.20%)</title><rect x="70.2842%" y="373" width="0.2018%" height="15" fill="rgb(223,130,24)" fg:x="1689350" fg:w="4851"/><text x="70.5342%" y="383.50"></text></g><g><title>update_curr (340 samples, 0.01%)</title><rect x="70.5323%" y="325" width="0.0141%" height="15" fill="rgb(237,16,22)" fg:x="1695315" fg:w="340"/><text x="70.7823%" y="335.50"></text></g><g><title>dequeue_entity (1,014 samples, 0.04%)</title><rect x="70.5181%" y="341" width="0.0422%" height="15" fill="rgb(248,192,20)" fg:x="1694972" fg:w="1014"/><text x="70.7681%" y="351.50"></text></g><g><title>update_load_avg (331 samples, 0.01%)</title><rect x="70.5465%" y="325" width="0.0138%" height="15" fill="rgb(233,167,2)" fg:x="1695655" fg:w="331"/><text x="70.7965%" y="335.50"></text></g><g><title>dequeue_task_fair (1,226 samples, 0.05%)</title><rect x="70.5117%" y="357" width="0.0510%" height="15" fill="rgb(252,71,44)" fg:x="1694820" fg:w="1226"/><text x="70.7617%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (1,531 samples, 0.06%)</title><rect x="70.5724%" y="341" width="0.0637%" height="15" fill="rgb(238,37,47)" fg:x="1696278" fg:w="1531"/><text x="70.8224%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,463 samples, 0.06%)</title><rect x="70.5752%" y="325" width="0.0609%" height="15" fill="rgb(214,202,54)" fg:x="1696346" fg:w="1463"/><text x="70.8252%" y="335.50"></text></g><g><title>native_write_msr (1,440 samples, 0.06%)</title><rect x="70.5762%" y="309" width="0.0599%" height="15" fill="rgb(254,165,40)" fg:x="1696369" fg:w="1440"/><text x="70.8262%" y="319.50"></text></g><g><title>finish_task_switch (1,860 samples, 0.08%)</title><rect x="70.5627%" y="357" width="0.0774%" height="15" fill="rgb(246,173,38)" fg:x="1696046" fg:w="1860"/><text x="70.8127%" y="367.50"></text></g><g><title>pick_next_task_idle (242 samples, 0.01%)</title><rect x="70.6485%" y="357" width="0.0101%" height="15" fill="rgb(215,3,27)" fg:x="1698108" fg:w="242"/><text x="70.8985%" y="367.50"></text></g><g><title>psi_task_change (895 samples, 0.04%)</title><rect x="70.6586%" y="357" width="0.0372%" height="15" fill="rgb(239,169,51)" fg:x="1698350" fg:w="895"/><text x="70.9086%" y="367.50"></text></g><g><title>psi_group_change (773 samples, 0.03%)</title><rect x="70.6637%" y="341" width="0.0322%" height="15" fill="rgb(212,5,25)" fg:x="1698472" fg:w="773"/><text x="70.9137%" y="351.50"></text></g><g><title>__schedule (5,274 samples, 0.22%)</title><rect x="70.4889%" y="373" width="0.2194%" height="15" fill="rgb(243,45,17)" fg:x="1694271" fg:w="5274"/><text x="70.7389%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (22,660 samples, 0.94%)</title><rect x="69.7656%" y="405" width="0.9428%" height="15" fill="rgb(242,97,9)" fg:x="1676886" fg:w="22660"/><text x="70.0156%" y="415.50"></text></g><g><title>schedule (5,345 samples, 0.22%)</title><rect x="70.4860%" y="389" width="0.2224%" height="15" fill="rgb(228,71,31)" fg:x="1694201" fg:w="5345"/><text x="70.7360%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (23,657 samples, 0.98%)</title><rect x="69.7606%" y="421" width="0.9842%" height="15" fill="rgb(252,184,16)" fg:x="1676766" fg:w="23657"/><text x="70.0106%" y="431.50"></text></g><g><title>btrfs_root_node (876 samples, 0.04%)</title><rect x="70.7084%" y="405" width="0.0364%" height="15" fill="rgb(236,169,46)" fg:x="1699547" fg:w="876"/><text x="70.9584%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (602 samples, 0.03%)</title><rect x="70.7668%" y="389" width="0.0250%" height="15" fill="rgb(207,17,47)" fg:x="1700950" fg:w="602"/><text x="71.0168%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (489 samples, 0.02%)</title><rect x="70.7715%" y="373" width="0.0203%" height="15" fill="rgb(206,201,28)" fg:x="1701063" fg:w="489"/><text x="71.0215%" y="383.50"></text></g><g><title>prepare_to_wait_event (794 samples, 0.03%)</title><rect x="70.7599%" y="405" width="0.0330%" height="15" fill="rgb(224,184,23)" fg:x="1700785" fg:w="794"/><text x="71.0099%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (712 samples, 0.03%)</title><rect x="70.7929%" y="405" width="0.0296%" height="15" fill="rgb(208,139,48)" fg:x="1701579" fg:w="712"/><text x="71.0429%" y="415.50"></text></g><g><title>dequeue_entity (443 samples, 0.02%)</title><rect x="70.8377%" y="357" width="0.0184%" height="15" fill="rgb(208,130,10)" fg:x="1702656" fg:w="443"/><text x="71.0877%" y="367.50"></text></g><g><title>dequeue_task_fair (552 samples, 0.02%)</title><rect x="70.8347%" y="373" width="0.0230%" height="15" fill="rgb(211,213,45)" fg:x="1702582" fg:w="552"/><text x="71.0847%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (565 samples, 0.02%)</title><rect x="70.8617%" y="357" width="0.0235%" height="15" fill="rgb(235,100,30)" fg:x="1703232" fg:w="565"/><text x="71.1117%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (545 samples, 0.02%)</title><rect x="70.8625%" y="341" width="0.0227%" height="15" fill="rgb(206,144,31)" fg:x="1703252" fg:w="545"/><text x="71.1125%" y="351.50"></text></g><g><title>native_write_msr (530 samples, 0.02%)</title><rect x="70.8632%" y="325" width="0.0221%" height="15" fill="rgb(224,200,26)" fg:x="1703267" fg:w="530"/><text x="71.1132%" y="335.50"></text></g><g><title>finish_task_switch (707 samples, 0.03%)</title><rect x="70.8576%" y="373" width="0.0294%" height="15" fill="rgb(247,104,53)" fg:x="1703134" fg:w="707"/><text x="71.1076%" y="383.50"></text></g><g><title>psi_task_change (387 samples, 0.02%)</title><rect x="70.8959%" y="373" width="0.0161%" height="15" fill="rgb(220,14,17)" fg:x="1704055" fg:w="387"/><text x="71.1459%" y="383.50"></text></g><g><title>psi_group_change (326 samples, 0.01%)</title><rect x="70.8985%" y="357" width="0.0136%" height="15" fill="rgb(230,140,40)" fg:x="1704116" fg:w="326"/><text x="71.1485%" y="367.50"></text></g><g><title>__btrfs_tree_lock (4,162 samples, 0.17%)</title><rect x="70.7448%" y="421" width="0.1732%" height="15" fill="rgb(229,2,41)" fg:x="1700423" fg:w="4162"/><text x="70.9948%" y="431.50"></text></g><g><title>schedule (2,294 samples, 0.10%)</title><rect x="70.8226%" y="405" width="0.0954%" height="15" fill="rgb(232,89,16)" fg:x="1702291" fg:w="2294"/><text x="71.0726%" y="415.50"></text></g><g><title>__schedule (2,248 samples, 0.09%)</title><rect x="70.8245%" y="389" width="0.0935%" height="15" fill="rgb(247,59,52)" fg:x="1702337" fg:w="2248"/><text x="71.0745%" y="399.50"></text></g><g><title>btrfs_leaf_free_space (872 samples, 0.04%)</title><rect x="70.9261%" y="421" width="0.0363%" height="15" fill="rgb(226,110,21)" fg:x="1704779" fg:w="872"/><text x="71.1761%" y="431.50"></text></g><g><title>leaf_space_used (719 samples, 0.03%)</title><rect x="70.9324%" y="405" width="0.0299%" height="15" fill="rgb(224,176,43)" fg:x="1704932" fg:w="719"/><text x="71.1824%" y="415.50"></text></g><g><title>btrfs_get_32 (554 samples, 0.02%)</title><rect x="70.9393%" y="389" width="0.0230%" height="15" fill="rgb(221,73,6)" fg:x="1705097" fg:w="554"/><text x="71.1893%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (256 samples, 0.01%)</title><rect x="70.9691%" y="373" width="0.0107%" height="15" fill="rgb(232,78,19)" fg:x="1705813" fg:w="256"/><text x="71.2191%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (242 samples, 0.01%)</title><rect x="70.9697%" y="357" width="0.0101%" height="15" fill="rgb(233,112,48)" fg:x="1705827" fg:w="242"/><text x="71.2197%" y="367.50"></text></g><g><title>prepare_to_wait_event (291 samples, 0.01%)</title><rect x="70.9677%" y="389" width="0.0121%" height="15" fill="rgb(243,131,47)" fg:x="1705780" fg:w="291"/><text x="71.2177%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (300 samples, 0.01%)</title><rect x="70.9798%" y="389" width="0.0125%" height="15" fill="rgb(226,51,1)" fg:x="1706071" fg:w="300"/><text x="71.2298%" y="399.50"></text></g><g><title>__btrfs_tree_lock (1,018 samples, 0.04%)</title><rect x="70.9623%" y="405" width="0.0424%" height="15" fill="rgb(247,58,7)" fg:x="1705651" fg:w="1018"/><text x="71.2123%" y="415.50"></text></g><g><title>schedule (298 samples, 0.01%)</title><rect x="70.9923%" y="389" width="0.0124%" height="15" fill="rgb(209,7,32)" fg:x="1706371" fg:w="298"/><text x="71.2423%" y="399.50"></text></g><g><title>__schedule (293 samples, 0.01%)</title><rect x="70.9925%" y="373" width="0.0122%" height="15" fill="rgb(209,39,41)" fg:x="1706376" fg:w="293"/><text x="71.2425%" y="383.50"></text></g><g><title>btrfs_lock_root_node (1,021 samples, 0.04%)</title><rect x="70.9623%" y="421" width="0.0425%" height="15" fill="rgb(226,182,46)" fg:x="1705651" fg:w="1021"/><text x="71.2123%" y="431.50"></text></g><g><title>_raw_write_lock (348 samples, 0.01%)</title><rect x="71.0196%" y="405" width="0.0145%" height="15" fill="rgb(230,219,10)" fg:x="1707027" fg:w="348"/><text x="71.2696%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (3,044 samples, 0.13%)</title><rect x="71.0147%" y="421" width="0.1266%" height="15" fill="rgb(227,175,30)" fg:x="1706910" fg:w="3044"/><text x="71.2647%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (2,579 samples, 0.11%)</title><rect x="71.0341%" y="405" width="0.1073%" height="15" fill="rgb(217,2,50)" fg:x="1707375" fg:w="2579"/><text x="71.2841%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (616 samples, 0.03%)</title><rect x="71.1157%" y="389" width="0.0256%" height="15" fill="rgb(229,160,0)" fg:x="1709338" fg:w="616"/><text x="71.3657%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (4,663 samples, 0.19%)</title><rect x="71.1416%" y="421" width="0.1940%" height="15" fill="rgb(207,78,37)" fg:x="1709960" fg:w="4663"/><text x="71.3916%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (546 samples, 0.02%)</title><rect x="71.3593%" y="405" width="0.0227%" height="15" fill="rgb(225,57,0)" fg:x="1715192" fg:w="546"/><text x="71.6093%" y="415.50"></text></g><g><title>verify_parent_transid (452 samples, 0.02%)</title><rect x="71.3632%" y="389" width="0.0188%" height="15" fill="rgb(232,154,2)" fg:x="1715286" fg:w="452"/><text x="71.6132%" y="399.50"></text></g><g><title>btrfs_get_64 (616 samples, 0.03%)</title><rect x="71.3820%" y="405" width="0.0256%" height="15" fill="rgb(241,212,25)" fg:x="1715738" fg:w="616"/><text x="71.6320%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,205 samples, 0.09%)</title><rect x="71.4593%" y="389" width="0.0917%" height="15" fill="rgb(226,69,20)" fg:x="1717595" fg:w="2205"/><text x="71.7093%" y="399.50"></text></g><g><title>mark_page_accessed (887 samples, 0.04%)</title><rect x="71.5626%" y="373" width="0.0369%" height="15" fill="rgb(247,184,54)" fg:x="1720078" fg:w="887"/><text x="71.8126%" y="383.50"></text></g><g><title>mark_extent_buffer_accessed (1,159 samples, 0.05%)</title><rect x="71.5514%" y="389" width="0.0482%" height="15" fill="rgb(210,145,0)" fg:x="1719810" fg:w="1159"/><text x="71.8014%" y="399.50"></text></g><g><title>find_extent_buffer (4,414 samples, 0.18%)</title><rect x="71.4168%" y="405" width="0.1836%" height="15" fill="rgb(253,82,12)" fg:x="1716574" fg:w="4414"/><text x="71.6668%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (6,989 samples, 0.29%)</title><rect x="71.3356%" y="421" width="0.2908%" height="15" fill="rgb(245,42,11)" fg:x="1714623" fg:w="6989"/><text x="71.5856%" y="431.50"></text></g><g><title>read_extent_buffer (624 samples, 0.03%)</title><rect x="71.6004%" y="405" width="0.0260%" height="15" fill="rgb(219,147,32)" fg:x="1720988" fg:w="624"/><text x="71.8504%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (611 samples, 0.03%)</title><rect x="71.6317%" y="405" width="0.0254%" height="15" fill="rgb(246,12,7)" fg:x="1721739" fg:w="611"/><text x="71.8817%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (610 samples, 0.03%)</title><rect x="71.6317%" y="389" width="0.0254%" height="15" fill="rgb(243,50,9)" fg:x="1721740" fg:w="610"/><text x="71.8817%" y="399.50"></text></g><g><title>copy_for_split (415 samples, 0.02%)</title><rect x="71.6596%" y="405" width="0.0173%" height="15" fill="rgb(219,149,6)" fg:x="1722409" fg:w="415"/><text x="71.9096%" y="415.50"></text></g><g><title>btrfs_get_token_32 (457 samples, 0.02%)</title><rect x="71.6879%" y="373" width="0.0190%" height="15" fill="rgb(241,51,42)" fg:x="1723090" fg:w="457"/><text x="71.9379%" y="383.50"></text></g><g><title>btrfs_set_token_32 (412 samples, 0.02%)</title><rect x="71.7081%" y="373" width="0.0171%" height="15" fill="rgb(226,128,27)" fg:x="1723576" fg:w="412"/><text x="71.9581%" y="383.50"></text></g><g><title>__push_leaf_left (1,537 samples, 0.06%)</title><rect x="71.6784%" y="389" width="0.0639%" height="15" fill="rgb(244,144,4)" fg:x="1722862" fg:w="1537"/><text x="71.9284%" y="399.50"></text></g><g><title>push_leaf_left (1,744 samples, 0.07%)</title><rect x="71.6768%" y="405" width="0.0726%" height="15" fill="rgb(221,4,13)" fg:x="1722824" fg:w="1744"/><text x="71.9268%" y="415.50"></text></g><g><title>btrfs_get_token_32 (453 samples, 0.02%)</title><rect x="71.7647%" y="373" width="0.0188%" height="15" fill="rgb(208,170,28)" fg:x="1724937" fg:w="453"/><text x="72.0147%" y="383.50"></text></g><g><title>btrfs_set_token_32 (466 samples, 0.02%)</title><rect x="71.7852%" y="373" width="0.0194%" height="15" fill="rgb(226,131,13)" fg:x="1725429" fg:w="466"/><text x="72.0352%" y="383.50"></text></g><g><title>__push_leaf_right (1,717 samples, 0.07%)</title><rect x="71.7530%" y="389" width="0.0714%" height="15" fill="rgb(215,72,41)" fg:x="1724656" fg:w="1717"/><text x="72.0030%" y="399.50"></text></g><g><title>btrfs_read_node_slot (270 samples, 0.01%)</title><rect x="71.8322%" y="389" width="0.0112%" height="15" fill="rgb(243,108,20)" fg:x="1726558" fg:w="270"/><text x="72.0822%" y="399.50"></text></g><g><title>push_leaf_right (2,308 samples, 0.10%)</title><rect x="71.7494%" y="405" width="0.0960%" height="15" fill="rgb(230,189,17)" fg:x="1724568" fg:w="2308"/><text x="71.9994%" y="415.50"></text></g><g><title>split_leaf (5,190 samples, 0.22%)</title><rect x="71.6295%" y="421" width="0.2159%" height="15" fill="rgb(220,50,17)" fg:x="1721687" fg:w="5190"/><text x="71.8795%" y="431.50"></text></g><g><title>split_node (429 samples, 0.02%)</title><rect x="71.8454%" y="421" width="0.0178%" height="15" fill="rgb(248,152,48)" fg:x="1726877" fg:w="429"/><text x="72.0954%" y="431.50"></text></g><g><title>push_nodes_for_insert (419 samples, 0.02%)</title><rect x="71.8459%" y="405" width="0.0174%" height="15" fill="rgb(244,91,11)" fg:x="1726887" fg:w="419"/><text x="72.0959%" y="415.50"></text></g><g><title>select_task_rq_fair (697 samples, 0.03%)</title><rect x="71.9373%" y="341" width="0.0290%" height="15" fill="rgb(220,157,5)" fg:x="1729085" fg:w="697"/><text x="72.1873%" y="351.50"></text></g><g><title>enqueue_entity (610 samples, 0.03%)</title><rect x="71.9777%" y="309" width="0.0254%" height="15" fill="rgb(253,137,8)" fg:x="1730056" fg:w="610"/><text x="72.2277%" y="319.50"></text></g><g><title>enqueue_task_fair (805 samples, 0.03%)</title><rect x="71.9721%" y="325" width="0.0335%" height="15" fill="rgb(217,137,51)" fg:x="1729921" fg:w="805"/><text x="72.2221%" y="335.50"></text></g><g><title>ttwu_do_activate (1,668 samples, 0.07%)</title><rect x="71.9696%" y="341" width="0.0694%" height="15" fill="rgb(218,209,53)" fg:x="1729861" fg:w="1668"/><text x="72.2196%" y="351.50"></text></g><g><title>psi_task_change (801 samples, 0.03%)</title><rect x="72.0057%" y="325" width="0.0333%" height="15" fill="rgb(249,137,25)" fg:x="1730728" fg:w="801"/><text x="72.2557%" y="335.50"></text></g><g><title>psi_group_change (714 samples, 0.03%)</title><rect x="72.0093%" y="309" width="0.0297%" height="15" fill="rgb(239,155,26)" fg:x="1730815" fg:w="714"/><text x="72.2593%" y="319.50"></text></g><g><title>__wake_up_common (3,880 samples, 0.16%)</title><rect x="71.8944%" y="389" width="0.1614%" height="15" fill="rgb(227,85,46)" fg:x="1728055" fg:w="3880"/><text x="72.1444%" y="399.50"></text></g><g><title>autoremove_wake_function (3,830 samples, 0.16%)</title><rect x="71.8965%" y="373" width="0.1593%" height="15" fill="rgb(251,107,43)" fg:x="1728105" fg:w="3830"/><text x="72.1465%" y="383.50"></text></g><g><title>try_to_wake_up (3,694 samples, 0.15%)</title><rect x="71.9022%" y="357" width="0.1537%" height="15" fill="rgb(234,170,33)" fg:x="1728241" fg:w="3694"/><text x="72.1522%" y="367.50"></text></g><g><title>__wake_up_common_lock (4,034 samples, 0.17%)</title><rect x="71.8939%" y="405" width="0.1678%" height="15" fill="rgb(206,29,35)" fg:x="1728042" fg:w="4034"/><text x="72.1439%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (551 samples, 0.02%)</title><rect x="72.0620%" y="405" width="0.0229%" height="15" fill="rgb(227,138,25)" fg:x="1732082" fg:w="551"/><text x="72.3120%" y="415.50"></text></g><g><title>btrfs_search_slot (57,967 samples, 2.41%)</title><rect x="69.6831%" y="437" width="2.4117%" height="15" fill="rgb(249,131,35)" fg:x="1674904" fg:w="57967"/><text x="69.9331%" y="447.50">bt..</text></g><g><title>unlock_up (5,565 samples, 0.23%)</title><rect x="71.8633%" y="421" width="0.2315%" height="15" fill="rgb(239,6,40)" fg:x="1727306" fg:w="5565"/><text x="72.1133%" y="431.50"></text></g><g><title>btrfs_get_32 (374 samples, 0.02%)</title><rect x="72.1970%" y="421" width="0.0156%" height="15" fill="rgb(246,136,47)" fg:x="1735326" fg:w="374"/><text x="72.4470%" y="431.50"></text></g><g><title>btrfs_get_token_32 (11,364 samples, 0.47%)</title><rect x="72.2125%" y="421" width="0.4728%" height="15" fill="rgb(253,58,26)" fg:x="1735700" fg:w="11364"/><text x="72.4625%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,702 samples, 0.07%)</title><rect x="72.6145%" y="405" width="0.0708%" height="15" fill="rgb(237,141,10)" fg:x="1745362" fg:w="1702"/><text x="72.8645%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (998 samples, 0.04%)</title><rect x="72.6853%" y="421" width="0.0415%" height="15" fill="rgb(234,156,12)" fg:x="1747064" fg:w="998"/><text x="72.9353%" y="431.50"></text></g><g><title>leaf_space_used (874 samples, 0.04%)</title><rect x="72.6905%" y="405" width="0.0364%" height="15" fill="rgb(243,224,36)" fg:x="1747188" fg:w="874"/><text x="72.9405%" y="415.50"></text></g><g><title>btrfs_get_32 (642 samples, 0.03%)</title><rect x="72.7001%" y="389" width="0.0267%" height="15" fill="rgb(205,229,51)" fg:x="1747420" fg:w="642"/><text x="72.9501%" y="399.50"></text></g><g><title>btrfs_mark_buffer_dirty (562 samples, 0.02%)</title><rect x="72.7268%" y="421" width="0.0234%" height="15" fill="rgb(223,189,4)" fg:x="1748062" fg:w="562"/><text x="72.9768%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (280 samples, 0.01%)</title><rect x="72.7386%" y="405" width="0.0116%" height="15" fill="rgb(249,167,54)" fg:x="1748344" fg:w="280"/><text x="72.9886%" y="415.50"></text></g><g><title>btrfs_set_token_32 (9,070 samples, 0.38%)</title><rect x="72.7502%" y="421" width="0.3774%" height="15" fill="rgb(218,34,28)" fg:x="1748624" fg:w="9070"/><text x="73.0002%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,523 samples, 0.06%)</title><rect x="73.0642%" y="405" width="0.0634%" height="15" fill="rgb(232,109,42)" fg:x="1756171" fg:w="1523"/><text x="73.3142%" y="415.50"></text></g><g><title>btrfs_unlock_up_safe (290 samples, 0.01%)</title><rect x="73.1276%" y="421" width="0.0121%" height="15" fill="rgb(248,214,46)" fg:x="1757694" fg:w="290"/><text x="73.3776%" y="431.50"></text></g><g><title>copy_pages (469 samples, 0.02%)</title><rect x="73.1499%" y="405" width="0.0195%" height="15" fill="rgb(244,216,40)" fg:x="1758232" fg:w="469"/><text x="73.3999%" y="415.50"></text></g><g><title>memcpy_extent_buffer (3,963 samples, 0.16%)</title><rect x="73.1399%" y="421" width="0.1649%" height="15" fill="rgb(231,226,31)" fg:x="1757990" fg:w="3963"/><text x="73.3899%" y="431.50"></text></g><g><title>memmove (3,252 samples, 0.14%)</title><rect x="73.1695%" y="405" width="0.1353%" height="15" fill="rgb(238,38,43)" fg:x="1758701" fg:w="3252"/><text x="73.4195%" y="415.50"></text></g><g><title>copy_pages (325 samples, 0.01%)</title><rect x="73.3226%" y="405" width="0.0135%" height="15" fill="rgb(208,88,43)" fg:x="1762383" fg:w="325"/><text x="73.5726%" y="415.50"></text></g><g><title>memmove_extent_buffer (3,022 samples, 0.13%)</title><rect x="73.3048%" y="421" width="0.1257%" height="15" fill="rgb(205,136,37)" fg:x="1761953" fg:w="3022"/><text x="73.5548%" y="431.50"></text></g><g><title>memmove (2,267 samples, 0.09%)</title><rect x="73.3362%" y="405" width="0.0943%" height="15" fill="rgb(237,34,14)" fg:x="1762708" fg:w="2267"/><text x="73.5862%" y="415.50"></text></g><g><title>insert_with_overflow (91,460 samples, 3.81%)</title><rect x="69.6420%" y="469" width="3.8051%" height="15" fill="rgb(236,193,44)" fg:x="1673914" fg:w="91460"/><text x="69.8920%" y="479.50">inse..</text></g><g><title>btrfs_insert_empty_items (90,659 samples, 3.77%)</title><rect x="69.6753%" y="453" width="3.7718%" height="15" fill="rgb(231,48,10)" fg:x="1674715" fg:w="90659"/><text x="69.9253%" y="463.50">btrf..</text></g><g><title>setup_items_for_insert (32,503 samples, 1.35%)</title><rect x="72.0948%" y="437" width="1.3523%" height="15" fill="rgb(213,141,34)" fg:x="1732871" fg:w="32503"/><text x="72.3448%" y="447.50"></text></g><g><title>write_extent_buffer (399 samples, 0.02%)</title><rect x="73.4305%" y="421" width="0.0166%" height="15" fill="rgb(249,130,34)" fg:x="1764975" fg:w="399"/><text x="73.6805%" y="431.50"></text></g><g><title>kmem_cache_alloc (668 samples, 0.03%)</title><rect x="73.4471%" y="469" width="0.0278%" height="15" fill="rgb(219,42,41)" fg:x="1765374" fg:w="668"/><text x="73.6971%" y="479.50"></text></g><g><title>kmem_cache_free (644 samples, 0.03%)</title><rect x="73.4749%" y="469" width="0.0268%" height="15" fill="rgb(224,100,54)" fg:x="1766042" fg:w="644"/><text x="73.7249%" y="479.50"></text></g><g><title>btrfs_insert_dir_item (108,428 samples, 4.51%)</title><rect x="69.0269%" y="485" width="4.5111%" height="15" fill="rgb(229,200,27)" fg:x="1659131" fg:w="108428"/><text x="69.2769%" y="495.50">btrfs..</text></g><g><title>write_extent_buffer (873 samples, 0.04%)</title><rect x="73.5017%" y="469" width="0.0363%" height="15" fill="rgb(217,118,10)" fg:x="1766686" fg:w="873"/><text x="73.7517%" y="479.50"></text></g><g><title>_raw_spin_lock (251 samples, 0.01%)</title><rect x="73.5798%" y="437" width="0.0104%" height="15" fill="rgb(206,22,3)" fg:x="1768563" fg:w="251"/><text x="73.8298%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,068 samples, 0.04%)</title><rect x="73.5638%" y="453" width="0.0444%" height="15" fill="rgb(232,163,46)" fg:x="1768180" fg:w="1068"/><text x="73.8138%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (332 samples, 0.01%)</title><rect x="73.6158%" y="453" width="0.0138%" height="15" fill="rgb(206,95,13)" fg:x="1769429" fg:w="332"/><text x="73.8658%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (294 samples, 0.01%)</title><rect x="73.6174%" y="437" width="0.0122%" height="15" fill="rgb(253,154,18)" fg:x="1769467" fg:w="294"/><text x="73.8674%" y="447.50"></text></g><g><title>fill_stack_inode_item (532 samples, 0.02%)</title><rect x="73.6296%" y="453" width="0.0221%" height="15" fill="rgb(219,32,23)" fg:x="1769761" fg:w="532"/><text x="73.8796%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (2,637 samples, 0.11%)</title><rect x="73.5584%" y="469" width="0.1097%" height="15" fill="rgb(230,191,45)" fg:x="1768050" fg:w="2637"/><text x="73.8084%" y="479.50"></text></g><g><title>_raw_spin_lock (502 samples, 0.02%)</title><rect x="73.6729%" y="453" width="0.0209%" height="15" fill="rgb(229,64,36)" fg:x="1770801" fg:w="502"/><text x="73.9229%" y="463.50"></text></g><g><title>btrfs_update_inode (4,140 samples, 0.17%)</title><rect x="73.5380%" y="485" width="0.1722%" height="15" fill="rgb(205,129,25)" fg:x="1767559" fg:w="4140"/><text x="73.7880%" y="495.50"></text></g><g><title>btrfs_update_root_times (1,012 samples, 0.04%)</title><rect x="73.6681%" y="469" width="0.0421%" height="15" fill="rgb(254,112,7)" fg:x="1770687" fg:w="1012"/><text x="73.9181%" y="479.50"></text></g><g><title>ktime_get_real_ts64 (396 samples, 0.02%)</title><rect x="73.6938%" y="453" width="0.0165%" height="15" fill="rgb(226,53,48)" fg:x="1771303" fg:w="396"/><text x="73.9438%" y="463.50"></text></g><g><title>btrfs_add_link (113,657 samples, 4.73%)</title><rect x="68.9936%" y="501" width="4.7286%" height="15" fill="rgb(214,153,38)" fg:x="1658330" fg:w="113657"/><text x="69.2436%" y="511.50">btrfs_..</text></g><g><title>btrfs_balance_delayed_items (792 samples, 0.03%)</title><rect x="73.7448%" y="485" width="0.0330%" height="15" fill="rgb(243,101,7)" fg:x="1772531" fg:w="792"/><text x="73.9948%" y="495.50"></text></g><g><title>_raw_spin_lock (536 samples, 0.02%)</title><rect x="73.7981%" y="453" width="0.0223%" height="15" fill="rgb(240,140,22)" fg:x="1773810" fg:w="536"/><text x="74.0481%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (406 samples, 0.02%)</title><rect x="73.8035%" y="437" width="0.0169%" height="15" fill="rgb(235,114,2)" fg:x="1773940" fg:w="406"/><text x="74.0535%" y="447.50"></text></g><g><title>_raw_spin_lock (339 samples, 0.01%)</title><rect x="73.8390%" y="437" width="0.0141%" height="15" fill="rgb(242,59,12)" fg:x="1774795" fg:w="339"/><text x="74.0890%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (275 samples, 0.01%)</title><rect x="73.8417%" y="421" width="0.0114%" height="15" fill="rgb(252,134,9)" fg:x="1774859" fg:w="275"/><text x="74.0917%" y="431.50"></text></g><g><title>select_task_rq_fair (670 samples, 0.03%)</title><rect x="73.8604%" y="437" width="0.0279%" height="15" fill="rgb(236,4,44)" fg:x="1775308" fg:w="670"/><text x="74.1104%" y="447.50"></text></g><g><title>enqueue_task_fair (487 samples, 0.02%)</title><rect x="73.8949%" y="421" width="0.0203%" height="15" fill="rgb(254,172,41)" fg:x="1776139" fg:w="487"/><text x="74.1449%" y="431.50"></text></g><g><title>enqueue_entity (372 samples, 0.02%)</title><rect x="73.8997%" y="405" width="0.0155%" height="15" fill="rgb(244,63,20)" fg:x="1776254" fg:w="372"/><text x="74.1497%" y="415.50"></text></g><g><title>ttwu_do_activate (821 samples, 0.03%)</title><rect x="73.8925%" y="437" width="0.0342%" height="15" fill="rgb(250,73,31)" fg:x="1776080" fg:w="821"/><text x="74.1425%" y="447.50"></text></g><g><title>psi_task_change (274 samples, 0.01%)</title><rect x="73.9153%" y="421" width="0.0114%" height="15" fill="rgb(241,38,36)" fg:x="1776627" fg:w="274"/><text x="74.1653%" y="431.50"></text></g><g><title>ttwu_do_wakeup (246 samples, 0.01%)</title><rect x="73.9267%" y="437" width="0.0102%" height="15" fill="rgb(245,211,2)" fg:x="1776901" fg:w="246"/><text x="74.1767%" y="447.50"></text></g><g><title>try_to_wake_up (2,777 samples, 0.12%)</title><rect x="73.8287%" y="453" width="0.1155%" height="15" fill="rgb(206,120,28)" fg:x="1774547" fg:w="2777"/><text x="74.0787%" y="463.50"></text></g><g><title>__queue_work (3,762 samples, 0.16%)</title><rect x="73.7878%" y="469" width="0.1565%" height="15" fill="rgb(211,59,34)" fg:x="1773563" fg:w="3762"/><text x="74.0378%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (5,320 samples, 0.22%)</title><rect x="73.7240%" y="501" width="0.2213%" height="15" fill="rgb(233,168,5)" fg:x="1772030" fg:w="5320"/><text x="73.9740%" y="511.50"></text></g><g><title>queue_work_on (3,852 samples, 0.16%)</title><rect x="73.7851%" y="485" width="0.1603%" height="15" fill="rgb(234,33,13)" fg:x="1773498" fg:w="3852"/><text x="74.0351%" y="495.50"></text></g><g><title>mutex_lock (517 samples, 0.02%)</title><rect x="73.9532%" y="485" width="0.0215%" height="15" fill="rgb(231,150,26)" fg:x="1777538" fg:w="517"/><text x="74.2032%" y="495.50"></text></g><g><title>btrfs_find_free_ino (1,112 samples, 0.05%)</title><rect x="73.9470%" y="501" width="0.0463%" height="15" fill="rgb(217,191,4)" fg:x="1777391" fg:w="1112"/><text x="74.1970%" y="511.50"></text></g><g><title>mutex_unlock (448 samples, 0.02%)</title><rect x="73.9747%" y="485" width="0.0186%" height="15" fill="rgb(246,198,38)" fg:x="1778055" fg:w="448"/><text x="74.2247%" y="495.50"></text></g><g><title>_raw_spin_lock (290 samples, 0.01%)</title><rect x="74.2538%" y="405" width="0.0121%" height="15" fill="rgb(245,64,37)" fg:x="1784765" fg:w="290"/><text x="74.5038%" y="415.50"></text></g><g><title>select_task_rq_fair (935 samples, 0.04%)</title><rect x="74.2773%" y="405" width="0.0389%" height="15" fill="rgb(250,30,36)" fg:x="1785330" fg:w="935"/><text x="74.5273%" y="415.50"></text></g><g><title>enqueue_entity (992 samples, 0.04%)</title><rect x="74.3338%" y="373" width="0.0413%" height="15" fill="rgb(217,86,53)" fg:x="1786688" fg:w="992"/><text x="74.5838%" y="383.50"></text></g><g><title>update_load_avg (351 samples, 0.01%)</title><rect x="74.3605%" y="357" width="0.0146%" height="15" fill="rgb(228,157,16)" fg:x="1787329" fg:w="351"/><text x="74.6105%" y="367.50"></text></g><g><title>enqueue_task_fair (1,277 samples, 0.05%)</title><rect x="74.3226%" y="389" width="0.0531%" height="15" fill="rgb(217,59,31)" fg:x="1786417" fg:w="1277"/><text x="74.5726%" y="399.50"></text></g><g><title>ttwu_do_activate (2,533 samples, 0.11%)</title><rect x="74.3196%" y="405" width="0.1054%" height="15" fill="rgb(237,138,41)" fg:x="1786347" fg:w="2533"/><text x="74.5696%" y="415.50"></text></g><g><title>psi_task_change (1,183 samples, 0.05%)</title><rect x="74.3758%" y="389" width="0.0492%" height="15" fill="rgb(227,91,49)" fg:x="1787697" fg:w="1183"/><text x="74.6258%" y="399.50"></text></g><g><title>psi_group_change (1,022 samples, 0.04%)</title><rect x="74.3825%" y="373" width="0.0425%" height="15" fill="rgb(247,21,44)" fg:x="1787858" fg:w="1022"/><text x="74.6325%" y="383.50"></text></g><g><title>ttwu_do_wakeup (325 samples, 0.01%)</title><rect x="74.4250%" y="405" width="0.0135%" height="15" fill="rgb(219,210,51)" fg:x="1788880" fg:w="325"/><text x="74.6750%" y="415.50"></text></g><g><title>check_preempt_curr (302 samples, 0.01%)</title><rect x="74.4260%" y="389" width="0.0126%" height="15" fill="rgb(209,140,6)" fg:x="1788903" fg:w="302"/><text x="74.6760%" y="399.50"></text></g><g><title>ttwu_queue_wakelist (672 samples, 0.03%)</title><rect x="74.4386%" y="405" width="0.0280%" height="15" fill="rgb(221,188,24)" fg:x="1789205" fg:w="672"/><text x="74.6886%" y="415.50"></text></g><g><title>__wake_up_common (11,308 samples, 0.47%)</title><rect x="74.0056%" y="453" width="0.4705%" height="15" fill="rgb(232,154,20)" fg:x="1778799" fg:w="11308"/><text x="74.2556%" y="463.50"></text></g><g><title>autoremove_wake_function (11,078 samples, 0.46%)</title><rect x="74.0152%" y="437" width="0.4609%" height="15" fill="rgb(244,137,50)" fg:x="1779029" fg:w="11078"/><text x="74.2652%" y="447.50"></text></g><g><title>try_to_wake_up (10,975 samples, 0.46%)</title><rect x="74.0195%" y="421" width="0.4566%" height="15" fill="rgb(225,185,43)" fg:x="1779132" fg:w="10975"/><text x="74.2695%" y="431.50"></text></g><g><title>__wake_up_common_lock (11,618 samples, 0.48%)</title><rect x="74.0013%" y="469" width="0.4834%" height="15" fill="rgb(213,205,38)" fg:x="1778696" fg:w="11618"/><text x="74.2513%" y="479.50"></text></g><g><title>btrfs_tree_unlock (336 samples, 0.01%)</title><rect x="74.4847%" y="469" width="0.0140%" height="15" fill="rgb(236,73,12)" fg:x="1790314" fg:w="336"/><text x="74.7347%" y="479.50"></text></g><g><title>_raw_spin_lock (373 samples, 0.02%)</title><rect x="74.5457%" y="453" width="0.0155%" height="15" fill="rgb(235,219,13)" fg:x="1791781" fg:w="373"/><text x="74.7957%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,485 samples, 0.06%)</title><rect x="74.4997%" y="469" width="0.0618%" height="15" fill="rgb(218,59,36)" fg:x="1790675" fg:w="1485"/><text x="74.7497%" y="479.50"></text></g><g><title>btrfs_free_path (13,966 samples, 0.58%)</title><rect x="73.9933%" y="501" width="0.5810%" height="15" fill="rgb(205,110,39)" fg:x="1778503" fg:w="13966"/><text x="74.2433%" y="511.50"></text></g><g><title>btrfs_release_path (13,955 samples, 0.58%)</title><rect x="73.9938%" y="485" width="0.5806%" height="15" fill="rgb(218,206,42)" fg:x="1778514" fg:w="13955"/><text x="74.2438%" y="495.50"></text></g><g><title>release_extent_buffer (309 samples, 0.01%)</title><rect x="74.5615%" y="469" width="0.0129%" height="15" fill="rgb(248,125,24)" fg:x="1792160" fg:w="309"/><text x="74.8115%" y="479.50"></text></g><g><title>btrfs_init_acl (644 samples, 0.03%)</title><rect x="74.5803%" y="501" width="0.0268%" height="15" fill="rgb(242,28,27)" fg:x="1792611" fg:w="644"/><text x="74.8303%" y="511.50"></text></g><g><title>_raw_read_lock (531 samples, 0.02%)</title><rect x="74.7301%" y="437" width="0.0221%" height="15" fill="rgb(216,228,15)" fg:x="1796212" fg:w="531"/><text x="74.9801%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (2,313 samples, 0.10%)</title><rect x="74.7587%" y="421" width="0.0962%" height="15" fill="rgb(235,116,46)" fg:x="1796900" fg:w="2313"/><text x="75.0087%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,199 samples, 0.09%)</title><rect x="74.7634%" y="405" width="0.0915%" height="15" fill="rgb(224,18,32)" fg:x="1797014" fg:w="2199"/><text x="75.0134%" y="415.50"></text></g><g><title>finish_wait (2,442 samples, 0.10%)</title><rect x="74.7534%" y="437" width="0.1016%" height="15" fill="rgb(252,5,12)" fg:x="1796773" fg:w="2442"/><text x="75.0034%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (5,390 samples, 0.22%)</title><rect x="74.8816%" y="421" width="0.2242%" height="15" fill="rgb(251,36,5)" fg:x="1799853" fg:w="5390"/><text x="75.1316%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,104 samples, 0.21%)</title><rect x="74.8935%" y="405" width="0.2123%" height="15" fill="rgb(217,53,14)" fg:x="1800139" fg:w="5104"/><text x="75.1435%" y="415.50"></text></g><g><title>prepare_to_wait_event (6,112 samples, 0.25%)</title><rect x="74.8556%" y="437" width="0.2543%" height="15" fill="rgb(215,86,45)" fg:x="1799230" fg:w="6112"/><text x="75.1056%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (7,924 samples, 0.33%)</title><rect x="75.1099%" y="437" width="0.3297%" height="15" fill="rgb(242,169,11)" fg:x="1805342" fg:w="7924"/><text x="75.3599%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,884 samples, 0.24%)</title><rect x="75.1948%" y="421" width="0.2448%" height="15" fill="rgb(211,213,45)" fg:x="1807382" fg:w="5884"/><text x="75.4448%" y="431.50"></text></g><g><title>update_curr (383 samples, 0.02%)</title><rect x="75.4829%" y="373" width="0.0159%" height="15" fill="rgb(205,88,11)" fg:x="1814306" fg:w="383"/><text x="75.7329%" y="383.50"></text></g><g><title>dequeue_entity (1,076 samples, 0.04%)</title><rect x="75.4684%" y="389" width="0.0448%" height="15" fill="rgb(252,69,26)" fg:x="1813958" fg:w="1076"/><text x="75.7184%" y="399.50"></text></g><g><title>update_load_avg (345 samples, 0.01%)</title><rect x="75.4988%" y="373" width="0.0144%" height="15" fill="rgb(246,123,37)" fg:x="1814689" fg:w="345"/><text x="75.7488%" y="383.50"></text></g><g><title>dequeue_task_fair (1,276 samples, 0.05%)</title><rect x="75.4628%" y="405" width="0.0531%" height="15" fill="rgb(212,205,5)" fg:x="1813824" fg:w="1276"/><text x="75.7128%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,224 samples, 0.05%)</title><rect x="75.5235%" y="389" width="0.0509%" height="15" fill="rgb(253,148,0)" fg:x="1815284" fg:w="1224"/><text x="75.7735%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,175 samples, 0.05%)</title><rect x="75.5256%" y="373" width="0.0489%" height="15" fill="rgb(239,22,4)" fg:x="1815333" fg:w="1175"/><text x="75.7756%" y="383.50"></text></g><g><title>native_write_msr (1,155 samples, 0.05%)</title><rect x="75.5264%" y="357" width="0.0481%" height="15" fill="rgb(226,26,53)" fg:x="1815353" fg:w="1155"/><text x="75.7764%" y="367.50"></text></g><g><title>finish_task_switch (1,473 samples, 0.06%)</title><rect x="75.5159%" y="405" width="0.0613%" height="15" fill="rgb(225,229,45)" fg:x="1815100" fg:w="1473"/><text x="75.7659%" y="415.50"></text></g><g><title>psi_task_change (945 samples, 0.04%)</title><rect x="75.5944%" y="405" width="0.0393%" height="15" fill="rgb(220,60,37)" fg:x="1816988" fg:w="945"/><text x="75.8444%" y="415.50"></text></g><g><title>psi_group_change (809 samples, 0.03%)</title><rect x="75.6001%" y="389" width="0.0337%" height="15" fill="rgb(217,180,35)" fg:x="1817124" fg:w="809"/><text x="75.8501%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (22,558 samples, 0.94%)</title><rect x="74.7068%" y="453" width="0.9385%" height="15" fill="rgb(229,7,53)" fg:x="1795652" fg:w="22558"/><text x="74.9568%" y="463.50"></text></g><g><title>schedule (4,944 samples, 0.21%)</title><rect x="75.4396%" y="437" width="0.2057%" height="15" fill="rgb(254,137,3)" fg:x="1813266" fg:w="4944"/><text x="75.6896%" y="447.50"></text></g><g><title>__schedule (4,878 samples, 0.20%)</title><rect x="75.4423%" y="421" width="0.2029%" height="15" fill="rgb(215,140,41)" fg:x="1813332" fg:w="4878"/><text x="75.6923%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (23,685 samples, 0.99%)</title><rect x="74.7011%" y="469" width="0.9854%" height="15" fill="rgb(250,80,15)" fg:x="1795516" fg:w="23685"/><text x="74.9511%" y="479.50"></text></g><g><title>btrfs_root_node (991 samples, 0.04%)</title><rect x="75.6453%" y="453" width="0.0412%" height="15" fill="rgb(252,191,6)" fg:x="1818210" fg:w="991"/><text x="75.8953%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (1,342 samples, 0.06%)</title><rect x="75.7346%" y="437" width="0.0558%" height="15" fill="rgb(246,217,18)" fg:x="1820356" fg:w="1342"/><text x="75.9846%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,158 samples, 0.05%)</title><rect x="75.7422%" y="421" width="0.0482%" height="15" fill="rgb(223,93,7)" fg:x="1820540" fg:w="1158"/><text x="75.9922%" y="431.50"></text></g><g><title>finish_wait (1,491 samples, 0.06%)</title><rect x="75.7284%" y="453" width="0.0620%" height="15" fill="rgb(225,55,52)" fg:x="1820208" fg:w="1491"/><text x="75.9784%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (5,151 samples, 0.21%)</title><rect x="75.8307%" y="437" width="0.2143%" height="15" fill="rgb(240,31,24)" fg:x="1822666" fg:w="5151"/><text x="76.0807%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,460 samples, 0.19%)</title><rect x="75.8594%" y="421" width="0.1856%" height="15" fill="rgb(205,56,52)" fg:x="1823357" fg:w="4460"/><text x="76.1094%" y="431.50"></text></g><g><title>prepare_to_wait_event (6,302 samples, 0.26%)</title><rect x="75.7928%" y="453" width="0.2622%" height="15" fill="rgb(246,146,12)" fg:x="1821755" fg:w="6302"/><text x="76.0428%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (6,735 samples, 0.28%)</title><rect x="76.0550%" y="453" width="0.2802%" height="15" fill="rgb(239,84,36)" fg:x="1828057" fg:w="6735"/><text x="76.3050%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,714 samples, 0.15%)</title><rect x="76.1806%" y="437" width="0.1545%" height="15" fill="rgb(207,41,40)" fg:x="1831078" fg:w="3714"/><text x="76.4306%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (414 samples, 0.02%)</title><rect x="76.3709%" y="421" width="0.0172%" height="15" fill="rgb(241,179,25)" fg:x="1835651" fg:w="414"/><text x="76.6209%" y="431.50"></text></g><g><title>update_cfs_group (277 samples, 0.01%)</title><rect x="76.4298%" y="389" width="0.0115%" height="15" fill="rgb(210,0,34)" fg:x="1837067" fg:w="277"/><text x="76.6798%" y="399.50"></text></g><g><title>update_curr (884 samples, 0.04%)</title><rect x="76.4413%" y="389" width="0.0368%" height="15" fill="rgb(225,217,29)" fg:x="1837344" fg:w="884"/><text x="76.6913%" y="399.50"></text></g><g><title>__update_load_avg_se (297 samples, 0.01%)</title><rect x="76.4982%" y="373" width="0.0124%" height="15" fill="rgb(216,191,38)" fg:x="1838710" fg:w="297"/><text x="76.7482%" y="383.50"></text></g><g><title>dequeue_entity (2,501 samples, 0.10%)</title><rect x="76.4071%" y="405" width="0.1041%" height="15" fill="rgb(232,140,52)" fg:x="1836520" fg:w="2501"/><text x="76.6571%" y="415.50"></text></g><g><title>update_load_avg (793 samples, 0.03%)</title><rect x="76.4781%" y="389" width="0.0330%" height="15" fill="rgb(223,158,51)" fg:x="1838228" fg:w="793"/><text x="76.7281%" y="399.50"></text></g><g><title>dequeue_task_fair (2,969 samples, 0.12%)</title><rect x="76.3935%" y="421" width="0.1235%" height="15" fill="rgb(235,29,51)" fg:x="1836193" fg:w="2969"/><text x="76.6435%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (2,741 samples, 0.11%)</title><rect x="76.5384%" y="405" width="0.1140%" height="15" fill="rgb(215,181,18)" fg:x="1839676" fg:w="2741"/><text x="76.7884%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,650 samples, 0.11%)</title><rect x="76.5421%" y="389" width="0.1103%" height="15" fill="rgb(227,125,34)" fg:x="1839767" fg:w="2650"/><text x="76.7921%" y="399.50"></text></g><g><title>native_write_msr (2,601 samples, 0.11%)</title><rect x="76.5442%" y="373" width="0.1082%" height="15" fill="rgb(230,197,49)" fg:x="1839816" fg:w="2601"/><text x="76.7942%" y="383.50"></text></g><g><title>finish_task_switch (3,387 samples, 0.14%)</title><rect x="76.5170%" y="421" width="0.1409%" height="15" fill="rgb(239,141,16)" fg:x="1839162" fg:w="3387"/><text x="76.7670%" y="431.50"></text></g><g><title>newidle_balance (284 samples, 0.01%)</title><rect x="76.6638%" y="405" width="0.0118%" height="15" fill="rgb(225,105,43)" fg:x="1842692" fg:w="284"/><text x="76.9138%" y="415.50"></text></g><g><title>pick_next_task_fair (500 samples, 0.02%)</title><rect x="76.6581%" y="421" width="0.0208%" height="15" fill="rgb(214,131,14)" fg:x="1842554" fg:w="500"/><text x="76.9081%" y="431.50"></text></g><g><title>pick_next_task_idle (521 samples, 0.02%)</title><rect x="76.6789%" y="421" width="0.0217%" height="15" fill="rgb(229,177,11)" fg:x="1843054" fg:w="521"/><text x="76.9289%" y="431.50"></text></g><g><title>__update_idle_core (446 samples, 0.02%)</title><rect x="76.6820%" y="405" width="0.0186%" height="15" fill="rgb(231,180,14)" fg:x="1843129" fg:w="446"/><text x="76.9320%" y="415.50"></text></g><g><title>psi_task_change (2,265 samples, 0.09%)</title><rect x="76.7006%" y="421" width="0.0942%" height="15" fill="rgb(232,88,2)" fg:x="1843575" fg:w="2265"/><text x="76.9506%" y="431.50"></text></g><g><title>psi_group_change (1,905 samples, 0.08%)</title><rect x="76.7156%" y="405" width="0.0793%" height="15" fill="rgb(205,220,8)" fg:x="1843935" fg:w="1905"/><text x="76.9656%" y="415.50"></text></g><g><title>record_times (437 samples, 0.02%)</title><rect x="76.7766%" y="389" width="0.0182%" height="15" fill="rgb(225,23,53)" fg:x="1845403" fg:w="437"/><text x="77.0266%" y="399.50"></text></g><g><title>sched_clock_cpu (276 samples, 0.01%)</title><rect x="76.7833%" y="373" width="0.0115%" height="15" fill="rgb(213,62,29)" fg:x="1845564" fg:w="276"/><text x="77.0333%" y="383.50"></text></g><g><title>sched_clock (242 samples, 0.01%)</title><rect x="76.7847%" y="357" width="0.0101%" height="15" fill="rgb(227,75,7)" fg:x="1845598" fg:w="242"/><text x="77.0347%" y="367.50"></text></g><g><title>__schedule (11,473 samples, 0.48%)</title><rect x="76.3434%" y="437" width="0.4773%" height="15" fill="rgb(207,105,14)" fg:x="1834990" fg:w="11473"/><text x="76.5934%" y="447.50"></text></g><g><title>update_rq_clock (246 samples, 0.01%)</title><rect x="76.8105%" y="421" width="0.0102%" height="15" fill="rgb(245,62,29)" fg:x="1846217" fg:w="246"/><text x="77.0605%" y="431.50"></text></g><g><title>__btrfs_tree_lock (27,263 samples, 1.13%)</title><rect x="75.6865%" y="469" width="1.1343%" height="15" fill="rgb(236,202,4)" fg:x="1819201" fg:w="27263"/><text x="75.9365%" y="479.50"></text></g><g><title>schedule (11,672 samples, 0.49%)</title><rect x="76.3352%" y="453" width="0.4856%" height="15" fill="rgb(250,67,1)" fg:x="1834792" fg:w="11672"/><text x="76.5852%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (923 samples, 0.04%)</title><rect x="76.8285%" y="469" width="0.0384%" height="15" fill="rgb(253,115,44)" fg:x="1846649" fg:w="923"/><text x="77.0785%" y="479.50"></text></g><g><title>leaf_space_used (690 samples, 0.03%)</title><rect x="76.8382%" y="453" width="0.0287%" height="15" fill="rgb(251,139,18)" fg:x="1846882" fg:w="690"/><text x="77.0882%" y="463.50"></text></g><g><title>btrfs_get_32 (514 samples, 0.02%)</title><rect x="76.8455%" y="437" width="0.0214%" height="15" fill="rgb(218,22,32)" fg:x="1847058" fg:w="514"/><text x="77.0955%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (314 samples, 0.01%)</title><rect x="76.8987%" y="453" width="0.0131%" height="15" fill="rgb(243,53,5)" fg:x="1848338" fg:w="314"/><text x="77.1487%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (1,278 samples, 0.05%)</title><rect x="76.8707%" y="469" width="0.0532%" height="15" fill="rgb(227,56,16)" fg:x="1847664" fg:w="1278"/><text x="77.1207%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (290 samples, 0.01%)</title><rect x="76.9118%" y="453" width="0.0121%" height="15" fill="rgb(245,53,0)" fg:x="1848652" fg:w="290"/><text x="77.1618%" y="463.50"></text></g><g><title>_raw_write_lock (516 samples, 0.02%)</title><rect x="76.9349%" y="453" width="0.0215%" height="15" fill="rgb(216,170,35)" fg:x="1849207" fg:w="516"/><text x="77.1849%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,279 samples, 0.34%)</title><rect x="77.4927%" y="437" width="0.3444%" height="15" fill="rgb(211,200,8)" fg:x="1862615" fg:w="8279"/><text x="77.7427%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (21,944 samples, 0.91%)</title><rect x="76.9243%" y="469" width="0.9130%" height="15" fill="rgb(228,204,44)" fg:x="1848952" fg:w="21944"/><text x="77.1743%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (21,172 samples, 0.88%)</title><rect x="76.9564%" y="453" width="0.8808%" height="15" fill="rgb(214,121,17)" fg:x="1849724" fg:w="21172"/><text x="77.2064%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (3,535 samples, 0.15%)</title><rect x="77.8372%" y="469" width="0.1471%" height="15" fill="rgb(233,64,38)" fg:x="1870896" fg:w="3535"/><text x="78.0872%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (598 samples, 0.02%)</title><rect x="78.0072%" y="453" width="0.0249%" height="15" fill="rgb(253,54,19)" fg:x="1874980" fg:w="598"/><text x="78.2572%" y="463.50"></text></g><g><title>verify_parent_transid (465 samples, 0.02%)</title><rect x="78.0127%" y="437" width="0.0193%" height="15" fill="rgb(253,94,18)" fg:x="1875113" fg:w="465"/><text x="78.2627%" y="447.50"></text></g><g><title>btrfs_get_64 (726 samples, 0.03%)</title><rect x="78.0320%" y="453" width="0.0302%" height="15" fill="rgb(227,57,52)" fg:x="1875578" fg:w="726"/><text x="78.2820%" y="463.50"></text></g><g><title>btrfs_verify_level_key (284 samples, 0.01%)</title><rect x="78.0646%" y="453" width="0.0118%" height="15" fill="rgb(230,228,50)" fg:x="1876360" fg:w="284"/><text x="78.3146%" y="463.50"></text></g><g><title>__radix_tree_lookup (1,821 samples, 0.08%)</title><rect x="78.1465%" y="437" width="0.0758%" height="15" fill="rgb(217,205,27)" fg:x="1878329" fg:w="1821"/><text x="78.3965%" y="447.50"></text></g><g><title>mark_page_accessed (692 samples, 0.03%)</title><rect x="78.2365%" y="421" width="0.0288%" height="15" fill="rgb(252,71,50)" fg:x="1880493" fg:w="692"/><text x="78.4865%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,032 samples, 0.04%)</title><rect x="78.2227%" y="437" width="0.0429%" height="15" fill="rgb(209,86,4)" fg:x="1880162" fg:w="1032"/><text x="78.4727%" y="447.50"></text></g><g><title>find_extent_buffer (4,590 samples, 0.19%)</title><rect x="78.0764%" y="453" width="0.1910%" height="15" fill="rgb(229,94,0)" fg:x="1876644" fg:w="4590"/><text x="78.3264%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (7,462 samples, 0.31%)</title><rect x="77.9843%" y="469" width="0.3105%" height="15" fill="rgb(252,223,21)" fg:x="1874431" fg:w="7462"/><text x="78.2343%" y="479.50"></text></g><g><title>read_extent_buffer (659 samples, 0.03%)</title><rect x="78.2673%" y="453" width="0.0274%" height="15" fill="rgb(230,210,4)" fg:x="1881234" fg:w="659"/><text x="78.5173%" y="463.50"></text></g><g><title>alloc_extent_buffer (330 samples, 0.01%)</title><rect x="78.2979%" y="421" width="0.0137%" height="15" fill="rgb(240,149,38)" fg:x="1881968" fg:w="330"/><text x="78.5479%" y="431.50"></text></g><g><title>btrfs_add_delayed_tree_ref (262 samples, 0.01%)</title><rect x="78.3116%" y="421" width="0.0109%" height="15" fill="rgb(254,105,20)" fg:x="1882298" fg:w="262"/><text x="78.5616%" y="431.50"></text></g><g><title>btrfs_reserve_extent (355 samples, 0.01%)</title><rect x="78.3233%" y="421" width="0.0148%" height="15" fill="rgb(253,87,46)" fg:x="1882579" fg:w="355"/><text x="78.5733%" y="431.50"></text></g><g><title>find_free_extent (314 samples, 0.01%)</title><rect x="78.3250%" y="405" width="0.0131%" height="15" fill="rgb(253,116,33)" fg:x="1882620" fg:w="314"/><text x="78.5750%" y="415.50"></text></g><g><title>set_extent_bit (283 samples, 0.01%)</title><rect x="78.3401%" y="421" width="0.0118%" height="15" fill="rgb(229,198,5)" fg:x="1882982" fg:w="283"/><text x="78.5901%" y="431.50"></text></g><g><title>__set_extent_bit (277 samples, 0.01%)</title><rect x="78.3403%" y="405" width="0.0115%" height="15" fill="rgb(242,38,37)" fg:x="1882988" fg:w="277"/><text x="78.5903%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,350 samples, 0.06%)</title><rect x="78.2962%" y="453" width="0.0562%" height="15" fill="rgb(242,69,53)" fg:x="1881928" fg:w="1350"/><text x="78.5462%" y="463.50"></text></g><g><title>btrfs_alloc_tree_block (1,344 samples, 0.06%)</title><rect x="78.2965%" y="437" width="0.0559%" height="15" fill="rgb(249,80,16)" fg:x="1881934" fg:w="1344"/><text x="78.5465%" y="447.50"></text></g><g><title>copy_for_split (631 samples, 0.03%)</title><rect x="78.3544%" y="453" width="0.0263%" height="15" fill="rgb(206,128,11)" fg:x="1883327" fg:w="631"/><text x="78.6044%" y="463.50"></text></g><g><title>__push_leaf_left (951 samples, 0.04%)</title><rect x="78.3829%" y="437" width="0.0396%" height="15" fill="rgb(212,35,20)" fg:x="1884012" fg:w="951"/><text x="78.6329%" y="447.50"></text></g><g><title>push_leaf_left (1,239 samples, 0.05%)</title><rect x="78.3811%" y="453" width="0.0515%" height="15" fill="rgb(236,79,13)" fg:x="1883967" fg:w="1239"/><text x="78.6311%" y="463.50"></text></g><g><title>split_leaf (3,364 samples, 0.14%)</title><rect x="78.2948%" y="469" width="0.1400%" height="15" fill="rgb(233,123,3)" fg:x="1881894" fg:w="3364"/><text x="78.5448%" y="479.50"></text></g><g><title>__list_del_entry_valid (284 samples, 0.01%)</title><rect x="78.4817%" y="405" width="0.0118%" height="15" fill="rgb(214,93,52)" fg:x="1886387" fg:w="284"/><text x="78.7317%" y="415.50"></text></g><g><title>_raw_spin_lock (581 samples, 0.02%)</title><rect x="78.5513%" y="389" width="0.0242%" height="15" fill="rgb(251,37,40)" fg:x="1888058" fg:w="581"/><text x="78.8013%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (393 samples, 0.02%)</title><rect x="78.5591%" y="373" width="0.0164%" height="15" fill="rgb(227,80,54)" fg:x="1888246" fg:w="393"/><text x="78.8091%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (480 samples, 0.02%)</title><rect x="78.5754%" y="389" width="0.0200%" height="15" fill="rgb(254,48,11)" fg:x="1888639" fg:w="480"/><text x="78.8254%" y="399.50"></text></g><g><title>available_idle_cpu (463 samples, 0.02%)</title><rect x="78.6392%" y="373" width="0.0193%" height="15" fill="rgb(235,193,26)" fg:x="1890171" fg:w="463"/><text x="78.8892%" y="383.50"></text></g><g><title>select_task_rq_fair (2,225 samples, 0.09%)</title><rect x="78.5977%" y="389" width="0.0926%" height="15" fill="rgb(229,99,21)" fg:x="1889175" fg:w="2225"/><text x="78.8477%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (447 samples, 0.02%)</title><rect x="78.6717%" y="373" width="0.0186%" height="15" fill="rgb(211,140,41)" fg:x="1890953" fg:w="447"/><text x="78.9217%" y="383.50"></text></g><g><title>update_curr (298 samples, 0.01%)</title><rect x="78.7755%" y="341" width="0.0124%" height="15" fill="rgb(240,227,30)" fg:x="1893447" fg:w="298"/><text x="79.0255%" y="351.50"></text></g><g><title>enqueue_entity (2,229 samples, 0.09%)</title><rect x="78.7264%" y="357" width="0.0927%" height="15" fill="rgb(215,224,45)" fg:x="1892267" fg:w="2229"/><text x="78.9764%" y="367.50"></text></g><g><title>update_load_avg (751 samples, 0.03%)</title><rect x="78.7879%" y="341" width="0.0312%" height="15" fill="rgb(206,123,31)" fg:x="1893745" fg:w="751"/><text x="79.0379%" y="351.50"></text></g><g><title>enqueue_task_fair (2,846 samples, 0.12%)</title><rect x="78.7071%" y="373" width="0.1184%" height="15" fill="rgb(210,138,16)" fg:x="1891803" fg:w="2846"/><text x="78.9571%" y="383.50"></text></g><g><title>ttwu_do_activate (5,713 samples, 0.24%)</title><rect x="78.6982%" y="389" width="0.2377%" height="15" fill="rgb(228,57,28)" fg:x="1891589" fg:w="5713"/><text x="78.9482%" y="399.50"></text></g><g><title>psi_task_change (2,649 samples, 0.11%)</title><rect x="78.8256%" y="373" width="0.1102%" height="15" fill="rgb(242,170,10)" fg:x="1894653" fg:w="2649"/><text x="79.0756%" y="383.50"></text></g><g><title>psi_group_change (2,340 samples, 0.10%)</title><rect x="78.8385%" y="357" width="0.0974%" height="15" fill="rgb(228,214,39)" fg:x="1894962" fg:w="2340"/><text x="79.0885%" y="367.50"></text></g><g><title>record_times (370 samples, 0.02%)</title><rect x="78.9205%" y="341" width="0.0154%" height="15" fill="rgb(218,179,33)" fg:x="1896932" fg:w="370"/><text x="79.1705%" y="351.50"></text></g><g><title>resched_curr (255 samples, 0.01%)</title><rect x="78.9493%" y="357" width="0.0106%" height="15" fill="rgb(235,193,39)" fg:x="1897625" fg:w="255"/><text x="79.1993%" y="367.50"></text></g><g><title>ttwu_do_wakeup (581 samples, 0.02%)</title><rect x="78.9358%" y="389" width="0.0242%" height="15" fill="rgb(219,221,36)" fg:x="1897302" fg:w="581"/><text x="79.1858%" y="399.50"></text></g><g><title>check_preempt_curr (525 samples, 0.02%)</title><rect x="78.9382%" y="373" width="0.0218%" height="15" fill="rgb(248,218,19)" fg:x="1897358" fg:w="525"/><text x="79.1882%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (306 samples, 0.01%)</title><rect x="78.9600%" y="389" width="0.0127%" height="15" fill="rgb(205,50,9)" fg:x="1897883" fg:w="306"/><text x="79.2100%" y="399.50"></text></g><g><title>__wake_up_common (12,543 samples, 0.52%)</title><rect x="78.4709%" y="437" width="0.5218%" height="15" fill="rgb(238,81,28)" fg:x="1886127" fg:w="12543"/><text x="78.7209%" y="447.50"></text></g><g><title>autoremove_wake_function (12,318 samples, 0.51%)</title><rect x="78.4803%" y="421" width="0.5125%" height="15" fill="rgb(235,110,19)" fg:x="1886352" fg:w="12318"/><text x="78.7303%" y="431.50"></text></g><g><title>try_to_wake_up (11,991 samples, 0.50%)</title><rect x="78.4939%" y="405" width="0.4989%" height="15" fill="rgb(214,7,14)" fg:x="1886679" fg:w="11991"/><text x="78.7439%" y="415.50"></text></g><g><title>update_rq_clock (481 samples, 0.02%)</title><rect x="78.9727%" y="389" width="0.0200%" height="15" fill="rgb(211,77,3)" fg:x="1898189" fg:w="481"/><text x="79.2227%" y="399.50"></text></g><g><title>__wake_up_common_lock (12,859 samples, 0.53%)</title><rect x="78.4685%" y="453" width="0.5350%" height="15" fill="rgb(229,5,9)" fg:x="1886069" fg:w="12859"/><text x="78.7185%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (491 samples, 0.02%)</title><rect x="79.0038%" y="453" width="0.0204%" height="15" fill="rgb(225,90,11)" fg:x="1898936" fg:w="491"/><text x="79.2538%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (335 samples, 0.01%)</title><rect x="79.0243%" y="453" width="0.0139%" height="15" fill="rgb(242,56,8)" fg:x="1899427" fg:w="335"/><text x="79.2743%" y="463.50"></text></g><g><title>btrfs_tree_unlock (314 samples, 0.01%)</title><rect x="79.0382%" y="453" width="0.0131%" height="15" fill="rgb(249,212,39)" fg:x="1899762" fg:w="314"/><text x="79.2882%" y="463.50"></text></g><g><title>btrfs_search_slot (106,680 samples, 4.44%)</title><rect x="74.6130%" y="485" width="4.4383%" height="15" fill="rgb(236,90,9)" fg:x="1793397" fg:w="106680"/><text x="74.8630%" y="495.50">btrfs..</text></g><g><title>unlock_up (14,787 samples, 0.62%)</title><rect x="78.4361%" y="469" width="0.6152%" height="15" fill="rgb(206,88,35)" fg:x="1885290" fg:w="14787"/><text x="78.6861%" y="479.50"></text></g><g><title>btrfs_get_32 (422 samples, 0.02%)</title><rect x="79.1162%" y="469" width="0.0176%" height="15" fill="rgb(205,126,30)" fg:x="1901638" fg:w="422"/><text x="79.3662%" y="479.50"></text></g><g><title>btrfs_get_token_32 (3,906 samples, 0.16%)</title><rect x="79.1338%" y="469" width="0.1625%" height="15" fill="rgb(230,176,12)" fg:x="1902060" fg:w="3906"/><text x="79.3838%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (579 samples, 0.02%)</title><rect x="79.2722%" y="453" width="0.0241%" height="15" fill="rgb(243,19,9)" fg:x="1905387" fg:w="579"/><text x="79.5222%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (987 samples, 0.04%)</title><rect x="79.2963%" y="469" width="0.0411%" height="15" fill="rgb(245,171,17)" fg:x="1905966" fg:w="987"/><text x="79.5463%" y="479.50"></text></g><g><title>leaf_space_used (819 samples, 0.03%)</title><rect x="79.3033%" y="453" width="0.0341%" height="15" fill="rgb(227,52,21)" fg:x="1906134" fg:w="819"/><text x="79.5533%" y="463.50"></text></g><g><title>btrfs_get_32 (582 samples, 0.02%)</title><rect x="79.3132%" y="437" width="0.0242%" height="15" fill="rgb(238,69,14)" fg:x="1906371" fg:w="582"/><text x="79.5632%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (742 samples, 0.03%)</title><rect x="79.3374%" y="469" width="0.0309%" height="15" fill="rgb(241,156,39)" fg:x="1906953" fg:w="742"/><text x="79.5874%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (371 samples, 0.02%)</title><rect x="79.3528%" y="453" width="0.0154%" height="15" fill="rgb(212,227,28)" fg:x="1907324" fg:w="371"/><text x="79.6028%" y="463.50"></text></g><g><title>btrfs_set_token_32 (3,185 samples, 0.13%)</title><rect x="79.3682%" y="469" width="0.1325%" height="15" fill="rgb(209,118,27)" fg:x="1907695" fg:w="3185"/><text x="79.6182%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (580 samples, 0.02%)</title><rect x="79.4766%" y="453" width="0.0241%" height="15" fill="rgb(226,102,5)" fg:x="1910300" fg:w="580"/><text x="79.7266%" y="463.50"></text></g><g><title>memcpy_extent_buffer (768 samples, 0.03%)</title><rect x="79.5091%" y="469" width="0.0320%" height="15" fill="rgb(223,34,3)" fg:x="1911081" fg:w="768"/><text x="79.7591%" y="479.50"></text></g><g><title>memmove (408 samples, 0.02%)</title><rect x="79.5241%" y="453" width="0.0170%" height="15" fill="rgb(221,81,38)" fg:x="1911441" fg:w="408"/><text x="79.7741%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,384 samples, 0.06%)</title><rect x="79.5411%" y="469" width="0.0576%" height="15" fill="rgb(236,219,28)" fg:x="1911849" fg:w="1384"/><text x="79.7911%" y="479.50"></text></g><g><title>memmove (862 samples, 0.04%)</title><rect x="79.5628%" y="453" width="0.0359%" height="15" fill="rgb(213,200,14)" fg:x="1912371" fg:w="862"/><text x="79.8128%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (120,538 samples, 5.01%)</title><rect x="74.6070%" y="501" width="5.0149%" height="15" fill="rgb(240,33,19)" fg:x="1793255" fg:w="120538"/><text x="74.8570%" y="511.50">btrfs_..</text></g><g><title>setup_items_for_insert (13,716 samples, 0.57%)</title><rect x="79.0513%" y="485" width="0.5706%" height="15" fill="rgb(233,113,27)" fg:x="1900077" fg:w="13716"/><text x="79.3013%" y="495.50"></text></g><g><title>write_extent_buffer (560 samples, 0.02%)</title><rect x="79.5986%" y="469" width="0.0233%" height="15" fill="rgb(220,221,18)" fg:x="1913233" fg:w="560"/><text x="79.8486%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (500 samples, 0.02%)</title><rect x="79.6219%" y="501" width="0.0208%" height="15" fill="rgb(238,92,8)" fg:x="1913793" fg:w="500"/><text x="79.8719%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (367 samples, 0.02%)</title><rect x="79.6275%" y="485" width="0.0153%" height="15" fill="rgb(222,164,16)" fg:x="1913926" fg:w="367"/><text x="79.8775%" y="495.50"></text></g><g><title>_raw_spin_lock (473 samples, 0.02%)</title><rect x="79.7113%" y="485" width="0.0197%" height="15" fill="rgb(241,119,3)" fg:x="1915941" fg:w="473"/><text x="79.9613%" y="495.50"></text></g><g><title>_raw_spin_lock (467 samples, 0.02%)</title><rect x="79.7965%" y="437" width="0.0194%" height="15" fill="rgb(241,44,8)" fg:x="1917989" fg:w="467"/><text x="80.0465%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,567 samples, 0.07%)</title><rect x="79.7510%" y="453" width="0.0652%" height="15" fill="rgb(230,36,40)" fg:x="1916894" fg:w="1567"/><text x="80.0010%" y="463.50"></text></g><g><title>btrfs_free_path (2,359 samples, 0.10%)</title><rect x="79.7321%" y="485" width="0.0981%" height="15" fill="rgb(243,16,36)" fg:x="1916440" fg:w="2359"/><text x="79.9821%" y="495.50"></text></g><g><title>btrfs_release_path (2,341 samples, 0.10%)</title><rect x="79.7328%" y="469" width="0.0974%" height="15" fill="rgb(231,4,26)" fg:x="1916458" fg:w="2341"/><text x="79.9828%" y="479.50"></text></g><g><title>release_extent_buffer (338 samples, 0.01%)</title><rect x="79.8162%" y="453" width="0.0141%" height="15" fill="rgb(240,9,31)" fg:x="1918461" fg:w="338"/><text x="80.0662%" y="463.50"></text></g><g><title>btrfs_get_32 (296 samples, 0.01%)</title><rect x="79.8302%" y="485" width="0.0123%" height="15" fill="rgb(207,173,15)" fg:x="1918799" fg:w="296"/><text x="80.0802%" y="495.50"></text></g><g><title>_raw_read_lock (504 samples, 0.02%)</title><rect x="79.9642%" y="421" width="0.0210%" height="15" fill="rgb(224,192,53)" fg:x="1922019" fg:w="504"/><text x="80.2142%" y="431.50"></text></g><g><title>finish_wait (2,165 samples, 0.09%)</title><rect x="79.9871%" y="421" width="0.0901%" height="15" fill="rgb(223,67,28)" fg:x="1922571" fg:w="2165"/><text x="80.2371%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (2,061 samples, 0.09%)</title><rect x="79.9915%" y="405" width="0.0857%" height="15" fill="rgb(211,20,47)" fg:x="1922675" fg:w="2061"/><text x="80.2415%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,967 samples, 0.08%)</title><rect x="79.9954%" y="389" width="0.0818%" height="15" fill="rgb(240,228,2)" fg:x="1922769" fg:w="1967"/><text x="80.2454%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (5,402 samples, 0.22%)</title><rect x="80.1000%" y="405" width="0.2247%" height="15" fill="rgb(248,151,12)" fg:x="1925283" fg:w="5402"/><text x="80.3500%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,113 samples, 0.21%)</title><rect x="80.1120%" y="389" width="0.2127%" height="15" fill="rgb(244,8,39)" fg:x="1925572" fg:w="5113"/><text x="80.3620%" y="399.50"></text></g><g><title>prepare_to_wait_event (6,040 samples, 0.25%)</title><rect x="80.0776%" y="421" width="0.2513%" height="15" fill="rgb(222,26,8)" fg:x="1924746" fg:w="6040"/><text x="80.3276%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (7,015 samples, 0.29%)</title><rect x="80.3289%" y="421" width="0.2919%" height="15" fill="rgb(213,106,44)" fg:x="1930786" fg:w="7015"/><text x="80.5789%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,917 samples, 0.20%)</title><rect x="80.4162%" y="405" width="0.2046%" height="15" fill="rgb(214,129,20)" fg:x="1932884" fg:w="4917"/><text x="80.6662%" y="415.50"></text></g><g><title>update_curr (409 samples, 0.02%)</title><rect x="80.6657%" y="357" width="0.0170%" height="15" fill="rgb(212,32,13)" fg:x="1938881" fg:w="409"/><text x="80.9157%" y="367.50"></text></g><g><title>dequeue_entity (1,085 samples, 0.05%)</title><rect x="80.6516%" y="373" width="0.0451%" height="15" fill="rgb(208,168,33)" fg:x="1938543" fg:w="1085"/><text x="80.9016%" y="383.50"></text></g><g><title>update_load_avg (338 samples, 0.01%)</title><rect x="80.6827%" y="357" width="0.0141%" height="15" fill="rgb(231,207,8)" fg:x="1939290" fg:w="338"/><text x="80.9327%" y="367.50"></text></g><g><title>dequeue_task_fair (1,262 samples, 0.05%)</title><rect x="80.6466%" y="389" width="0.0525%" height="15" fill="rgb(235,219,23)" fg:x="1938422" fg:w="1262"/><text x="80.8966%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (978 samples, 0.04%)</title><rect x="80.7068%" y="373" width="0.0407%" height="15" fill="rgb(226,216,26)" fg:x="1939868" fg:w="978"/><text x="80.9568%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (930 samples, 0.04%)</title><rect x="80.7088%" y="357" width="0.0387%" height="15" fill="rgb(239,137,16)" fg:x="1939916" fg:w="930"/><text x="80.9588%" y="367.50"></text></g><g><title>native_write_msr (915 samples, 0.04%)</title><rect x="80.7094%" y="341" width="0.0381%" height="15" fill="rgb(207,12,36)" fg:x="1939931" fg:w="915"/><text x="80.9594%" y="351.50"></text></g><g><title>finish_task_switch (1,197 samples, 0.05%)</title><rect x="80.6991%" y="389" width="0.0498%" height="15" fill="rgb(210,214,24)" fg:x="1939684" fg:w="1197"/><text x="80.9491%" y="399.50"></text></g><g><title>pick_next_task_idle (258 samples, 0.01%)</title><rect x="80.7565%" y="389" width="0.0107%" height="15" fill="rgb(206,56,30)" fg:x="1941063" fg:w="258"/><text x="81.0065%" y="399.50"></text></g><g><title>psi_task_change (961 samples, 0.04%)</title><rect x="80.7672%" y="389" width="0.0400%" height="15" fill="rgb(228,143,26)" fg:x="1941321" fg:w="961"/><text x="81.0172%" y="399.50"></text></g><g><title>psi_group_change (795 samples, 0.03%)</title><rect x="80.7741%" y="373" width="0.0331%" height="15" fill="rgb(216,218,46)" fg:x="1941487" fg:w="795"/><text x="81.0241%" y="383.50"></text></g><g><title>__schedule (4,675 samples, 0.19%)</title><rect x="80.6235%" y="405" width="0.1945%" height="15" fill="rgb(206,6,19)" fg:x="1937866" fg:w="4675"/><text x="80.8735%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (21,039 samples, 0.88%)</title><rect x="79.9427%" y="437" width="0.8753%" height="15" fill="rgb(239,177,51)" fg:x="1921503" fg:w="21039"/><text x="80.1927%" y="447.50"></text></g><g><title>schedule (4,741 samples, 0.20%)</title><rect x="80.6208%" y="421" width="0.1972%" height="15" fill="rgb(216,55,25)" fg:x="1937801" fg:w="4741"/><text x="80.8708%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (22,116 samples, 0.92%)</title><rect x="79.9393%" y="453" width="0.9201%" height="15" fill="rgb(231,163,29)" fg:x="1921420" fg:w="22116"/><text x="80.1893%" y="463.50"></text></g><g><title>btrfs_root_node (994 samples, 0.04%)</title><rect x="80.8180%" y="437" width="0.0414%" height="15" fill="rgb(232,149,50)" fg:x="1942542" fg:w="994"/><text x="81.0680%" y="447.50"></text></g><g><title>finish_wait (1,203 samples, 0.05%)</title><rect x="80.8977%" y="437" width="0.0500%" height="15" fill="rgb(223,142,48)" fg:x="1944458" fg:w="1203"/><text x="81.1477%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (1,097 samples, 0.05%)</title><rect x="80.9021%" y="421" width="0.0456%" height="15" fill="rgb(245,83,23)" fg:x="1944564" fg:w="1097"/><text x="81.1521%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (959 samples, 0.04%)</title><rect x="80.9079%" y="405" width="0.0399%" height="15" fill="rgb(224,63,2)" fg:x="1944702" fg:w="959"/><text x="81.1579%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,107 samples, 0.17%)</title><rect x="80.9819%" y="421" width="0.1709%" height="15" fill="rgb(218,65,53)" fg:x="1946480" fg:w="4107"/><text x="81.2319%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,516 samples, 0.15%)</title><rect x="81.0064%" y="405" width="0.1463%" height="15" fill="rgb(221,84,29)" fg:x="1947071" fg:w="3516"/><text x="81.2564%" y="415.50"></text></g><g><title>prepare_to_wait_event (5,025 samples, 0.21%)</title><rect x="80.9502%" y="437" width="0.2091%" height="15" fill="rgb(234,0,32)" fg:x="1945719" fg:w="5025"/><text x="81.2002%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (4,568 samples, 0.19%)</title><rect x="81.1593%" y="437" width="0.1900%" height="15" fill="rgb(206,20,16)" fg:x="1950744" fg:w="4568"/><text x="81.4093%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,280 samples, 0.09%)</title><rect x="81.2545%" y="421" width="0.0949%" height="15" fill="rgb(244,172,18)" fg:x="1953032" fg:w="2280"/><text x="81.5045%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (427 samples, 0.02%)</title><rect x="81.3832%" y="405" width="0.0178%" height="15" fill="rgb(254,133,1)" fg:x="1956127" fg:w="427"/><text x="81.6332%" y="415.50"></text></g><g><title>update_curr (883 samples, 0.04%)</title><rect x="81.4492%" y="373" width="0.0367%" height="15" fill="rgb(222,206,41)" fg:x="1957712" fg:w="883"/><text x="81.6992%" y="383.50"></text></g><g><title>__update_load_avg_se (261 samples, 0.01%)</title><rect x="81.5040%" y="357" width="0.0109%" height="15" fill="rgb(212,3,42)" fg:x="1959030" fg:w="261"/><text x="81.7540%" y="367.50"></text></g><g><title>dequeue_entity (2,325 samples, 0.10%)</title><rect x="81.4186%" y="389" width="0.0967%" height="15" fill="rgb(241,11,4)" fg:x="1956978" fg:w="2325"/><text x="81.6686%" y="399.50"></text></g><g><title>update_load_avg (708 samples, 0.03%)</title><rect x="81.4859%" y="373" width="0.0295%" height="15" fill="rgb(205,19,26)" fg:x="1958595" fg:w="708"/><text x="81.7359%" y="383.50"></text></g><g><title>dequeue_task_fair (2,742 samples, 0.11%)</title><rect x="81.4067%" y="405" width="0.1141%" height="15" fill="rgb(210,179,32)" fg:x="1956691" fg:w="2742"/><text x="81.6567%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (2,759 samples, 0.11%)</title><rect x="81.5423%" y="389" width="0.1148%" height="15" fill="rgb(227,116,49)" fg:x="1959951" fg:w="2759"/><text x="81.7923%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,681 samples, 0.11%)</title><rect x="81.5456%" y="373" width="0.1115%" height="15" fill="rgb(211,146,6)" fg:x="1960029" fg:w="2681"/><text x="81.7956%" y="383.50"></text></g><g><title>native_write_msr (2,643 samples, 0.11%)</title><rect x="81.5471%" y="357" width="0.1100%" height="15" fill="rgb(219,44,39)" fg:x="1960067" fg:w="2643"/><text x="81.7971%" y="367.50"></text></g><g><title>finish_task_switch (3,439 samples, 0.14%)</title><rect x="81.5208%" y="405" width="0.1431%" height="15" fill="rgb(234,128,11)" fg:x="1959433" fg:w="3439"/><text x="81.7708%" y="415.50"></text></g><g><title>newidle_balance (254 samples, 0.01%)</title><rect x="81.6700%" y="389" width="0.0106%" height="15" fill="rgb(220,183,53)" fg:x="1963019" fg:w="254"/><text x="81.9200%" y="399.50"></text></g><g><title>pick_next_task_fair (472 samples, 0.02%)</title><rect x="81.6642%" y="405" width="0.0196%" height="15" fill="rgb(213,219,32)" fg:x="1962881" fg:w="472"/><text x="81.9142%" y="415.50"></text></g><g><title>pick_next_task_idle (482 samples, 0.02%)</title><rect x="81.6838%" y="405" width="0.0201%" height="15" fill="rgb(232,156,16)" fg:x="1963353" fg:w="482"/><text x="81.9338%" y="415.50"></text></g><g><title>__update_idle_core (405 samples, 0.02%)</title><rect x="81.6871%" y="389" width="0.0168%" height="15" fill="rgb(246,135,34)" fg:x="1963430" fg:w="405"/><text x="81.9371%" y="399.50"></text></g><g><title>psi_task_change (2,023 samples, 0.08%)</title><rect x="81.7039%" y="405" width="0.0842%" height="15" fill="rgb(241,99,0)" fg:x="1963835" fg:w="2023"/><text x="81.9539%" y="415.50"></text></g><g><title>psi_group_change (1,682 samples, 0.07%)</title><rect x="81.7181%" y="389" width="0.0700%" height="15" fill="rgb(222,103,45)" fg:x="1964176" fg:w="1682"/><text x="81.9681%" y="399.50"></text></g><g><title>record_times (314 samples, 0.01%)</title><rect x="81.7750%" y="373" width="0.0131%" height="15" fill="rgb(212,57,4)" fg:x="1965544" fg:w="314"/><text x="82.0250%" y="383.50"></text></g><g><title>__btrfs_tree_lock (22,964 samples, 0.96%)</title><rect x="80.8594%" y="453" width="0.9554%" height="15" fill="rgb(215,68,47)" fg:x="1943536" fg:w="22964"/><text x="81.1094%" y="463.50"></text></g><g><title>schedule (11,188 samples, 0.47%)</title><rect x="81.3493%" y="437" width="0.4655%" height="15" fill="rgb(230,84,2)" fg:x="1955312" fg:w="11188"/><text x="81.5993%" y="447.50"></text></g><g><title>__schedule (11,065 samples, 0.46%)</title><rect x="81.3544%" y="421" width="0.4604%" height="15" fill="rgb(220,102,14)" fg:x="1955435" fg:w="11065"/><text x="81.6044%" y="431.50"></text></g><g><title>update_rq_clock (246 samples, 0.01%)</title><rect x="81.8045%" y="405" width="0.0102%" height="15" fill="rgb(240,10,32)" fg:x="1966254" fg:w="246"/><text x="82.0545%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (990 samples, 0.04%)</title><rect x="81.8224%" y="453" width="0.0412%" height="15" fill="rgb(215,47,27)" fg:x="1966683" fg:w="990"/><text x="82.0724%" y="463.50"></text></g><g><title>leaf_space_used (740 samples, 0.03%)</title><rect x="81.8328%" y="437" width="0.0308%" height="15" fill="rgb(233,188,43)" fg:x="1966933" fg:w="740"/><text x="82.0828%" y="447.50"></text></g><g><title>btrfs_get_32 (533 samples, 0.02%)</title><rect x="81.8414%" y="421" width="0.0222%" height="15" fill="rgb(253,190,1)" fg:x="1967140" fg:w="533"/><text x="82.0914%" y="431.50"></text></g><g><title>btrfs_set_lock_blocking_read (243 samples, 0.01%)</title><rect x="81.8793%" y="437" width="0.0101%" height="15" fill="rgb(206,114,52)" fg:x="1968051" fg:w="243"/><text x="82.1293%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (496 samples, 0.02%)</title><rect x="81.8715%" y="453" width="0.0206%" height="15" fill="rgb(233,120,37)" fg:x="1967864" fg:w="496"/><text x="82.1215%" y="463.50"></text></g><g><title>_raw_write_lock (522 samples, 0.02%)</title><rect x="81.9014%" y="437" width="0.0217%" height="15" fill="rgb(214,52,39)" fg:x="1968581" fg:w="522"/><text x="82.1514%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (14,263 samples, 0.59%)</title><rect x="81.8926%" y="453" width="0.5934%" height="15" fill="rgb(223,80,29)" fg:x="1968370" fg:w="14263"/><text x="82.1426%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (13,529 samples, 0.56%)</title><rect x="81.9231%" y="437" width="0.5629%" height="15" fill="rgb(230,101,40)" fg:x="1969104" fg:w="13529"/><text x="82.1731%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,091 samples, 0.17%)</title><rect x="82.3158%" y="421" width="0.1702%" height="15" fill="rgb(219,211,8)" fg:x="1978542" fg:w="4091"/><text x="82.5658%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (3,595 samples, 0.15%)</title><rect x="82.4861%" y="453" width="0.1496%" height="15" fill="rgb(252,126,28)" fg:x="1982635" fg:w="3595"/><text x="82.7361%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (684 samples, 0.03%)</title><rect x="82.6608%" y="437" width="0.0285%" height="15" fill="rgb(215,56,38)" fg:x="1986834" fg:w="684"/><text x="82.9108%" y="447.50"></text></g><g><title>verify_parent_transid (545 samples, 0.02%)</title><rect x="82.6665%" y="421" width="0.0227%" height="15" fill="rgb(249,55,44)" fg:x="1986973" fg:w="545"/><text x="82.9165%" y="431.50"></text></g><g><title>btrfs_get_64 (691 samples, 0.03%)</title><rect x="82.6892%" y="437" width="0.0287%" height="15" fill="rgb(220,221,32)" fg:x="1987518" fg:w="691"/><text x="82.9392%" y="447.50"></text></g><g><title>__radix_tree_lookup (2,058 samples, 0.09%)</title><rect x="82.8127%" y="421" width="0.0856%" height="15" fill="rgb(212,216,41)" fg:x="1990485" fg:w="2058"/><text x="83.0627%" y="431.50"></text></g><g><title>mark_page_accessed (785 samples, 0.03%)</title><rect x="82.9131%" y="405" width="0.0327%" height="15" fill="rgb(228,213,43)" fg:x="1992900" fg:w="785"/><text x="83.1631%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,132 samples, 0.05%)</title><rect x="82.8992%" y="421" width="0.0471%" height="15" fill="rgb(211,31,26)" fg:x="1992566" fg:w="1132"/><text x="83.1492%" y="431.50"></text></g><g><title>find_extent_buffer (5,261 samples, 0.22%)</title><rect x="82.7288%" y="437" width="0.2189%" height="15" fill="rgb(229,202,19)" fg:x="1988470" fg:w="5261"/><text x="82.9788%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (8,176 samples, 0.34%)</title><rect x="82.6356%" y="453" width="0.3402%" height="15" fill="rgb(229,105,46)" fg:x="1986230" fg:w="8176"/><text x="82.8856%" y="463.50"></text></g><g><title>read_extent_buffer (675 samples, 0.03%)</title><rect x="82.9477%" y="437" width="0.0281%" height="15" fill="rgb(235,108,1)" fg:x="1993731" fg:w="675"/><text x="83.1977%" y="447.50"></text></g><g><title>alloc_extent_buffer (433 samples, 0.02%)</title><rect x="82.9793%" y="405" width="0.0180%" height="15" fill="rgb(245,111,35)" fg:x="1994490" fg:w="433"/><text x="83.2293%" y="415.50"></text></g><g><title>btrfs_add_delayed_tree_ref (288 samples, 0.01%)</title><rect x="82.9973%" y="405" width="0.0120%" height="15" fill="rgb(219,185,31)" fg:x="1994924" fg:w="288"/><text x="83.2473%" y="415.50"></text></g><g><title>btrfs_reserve_extent (418 samples, 0.02%)</title><rect x="83.0105%" y="405" width="0.0174%" height="15" fill="rgb(214,4,43)" fg:x="1995241" fg:w="418"/><text x="83.2605%" y="415.50"></text></g><g><title>find_free_extent (364 samples, 0.02%)</title><rect x="83.0128%" y="389" width="0.0151%" height="15" fill="rgb(235,227,40)" fg:x="1995295" fg:w="364"/><text x="83.2628%" y="399.50"></text></g><g><title>set_extent_bit (325 samples, 0.01%)</title><rect x="83.0309%" y="405" width="0.0135%" height="15" fill="rgb(230,88,30)" fg:x="1995730" fg:w="325"/><text x="83.2809%" y="415.50"></text></g><g><title>__set_extent_bit (322 samples, 0.01%)</title><rect x="83.0310%" y="389" width="0.0134%" height="15" fill="rgb(216,217,1)" fg:x="1995733" fg:w="322"/><text x="83.2810%" y="399.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,620 samples, 0.07%)</title><rect x="82.9777%" y="437" width="0.0674%" height="15" fill="rgb(248,139,50)" fg:x="1994452" fg:w="1620"/><text x="83.2277%" y="447.50"></text></g><g><title>btrfs_alloc_tree_block (1,617 samples, 0.07%)</title><rect x="82.9778%" y="421" width="0.0673%" height="15" fill="rgb(233,1,21)" fg:x="1994455" fg:w="1617"/><text x="83.2278%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (257 samples, 0.01%)</title><rect x="83.0539%" y="421" width="0.0107%" height="15" fill="rgb(215,183,12)" fg:x="1996284" fg:w="257"/><text x="83.3039%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (243 samples, 0.01%)</title><rect x="83.0545%" y="405" width="0.0101%" height="15" fill="rgb(229,104,42)" fg:x="1996298" fg:w="243"/><text x="83.3045%" y="415.50"></text></g><g><title>copy_for_split (712 samples, 0.03%)</title><rect x="83.0468%" y="437" width="0.0296%" height="15" fill="rgb(243,34,48)" fg:x="1996114" fg:w="712"/><text x="83.2968%" y="447.50"></text></g><g><title>btrfs_get_token_32 (271 samples, 0.01%)</title><rect x="83.0897%" y="405" width="0.0113%" height="15" fill="rgb(239,11,44)" fg:x="1997144" fg:w="271"/><text x="83.3397%" y="415.50"></text></g><g><title>btrfs_set_token_32 (278 samples, 0.01%)</title><rect x="83.1019%" y="405" width="0.0116%" height="15" fill="rgb(231,98,35)" fg:x="1997438" fg:w="278"/><text x="83.3519%" y="415.50"></text></g><g><title>__push_leaf_left (1,198 samples, 0.05%)</title><rect x="83.0787%" y="421" width="0.0498%" height="15" fill="rgb(233,28,25)" fg:x="1996879" fg:w="1198"/><text x="83.3287%" y="431.50"></text></g><g><title>push_leaf_left (1,476 samples, 0.06%)</title><rect x="83.0765%" y="437" width="0.0614%" height="15" fill="rgb(234,123,11)" fg:x="1996827" fg:w="1476"/><text x="83.3265%" y="447.50"></text></g><g><title>split_leaf (3,935 samples, 0.16%)</title><rect x="82.9759%" y="453" width="0.1637%" height="15" fill="rgb(220,69,3)" fg:x="1994409" fg:w="3935"/><text x="83.2259%" y="463.50"></text></g><g><title>__list_del_entry_valid (328 samples, 0.01%)</title><rect x="83.1882%" y="389" width="0.0136%" height="15" fill="rgb(214,64,36)" fg:x="1999511" fg:w="328"/><text x="83.4382%" y="399.50"></text></g><g><title>_raw_spin_lock (560 samples, 0.02%)</title><rect x="83.2569%" y="373" width="0.0233%" height="15" fill="rgb(211,138,32)" fg:x="2001164" fg:w="560"/><text x="83.5069%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (378 samples, 0.02%)</title><rect x="83.2645%" y="357" width="0.0157%" height="15" fill="rgb(213,118,47)" fg:x="2001346" fg:w="378"/><text x="83.5145%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (525 samples, 0.02%)</title><rect x="83.2802%" y="373" width="0.0218%" height="15" fill="rgb(243,124,49)" fg:x="2001724" fg:w="525"/><text x="83.5302%" y="383.50"></text></g><g><title>available_idle_cpu (498 samples, 0.02%)</title><rect x="83.3479%" y="357" width="0.0207%" height="15" fill="rgb(221,30,28)" fg:x="2003350" fg:w="498"/><text x="83.5979%" y="367.50"></text></g><g><title>select_task_rq_fair (2,351 samples, 0.10%)</title><rect x="83.3040%" y="373" width="0.0978%" height="15" fill="rgb(246,37,13)" fg:x="2002296" fg:w="2351"/><text x="83.5540%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (480 samples, 0.02%)</title><rect x="83.3819%" y="357" width="0.0200%" height="15" fill="rgb(249,66,14)" fg:x="2004167" fg:w="480"/><text x="83.6319%" y="367.50"></text></g><g><title>update_curr (322 samples, 0.01%)</title><rect x="83.4859%" y="325" width="0.0134%" height="15" fill="rgb(213,166,5)" fg:x="2006668" fg:w="322"/><text x="83.7359%" y="335.50"></text></g><g><title>enqueue_entity (2,306 samples, 0.10%)</title><rect x="83.4372%" y="341" width="0.0959%" height="15" fill="rgb(221,66,24)" fg:x="2005497" fg:w="2306"/><text x="83.6872%" y="351.50"></text></g><g><title>update_load_avg (813 samples, 0.03%)</title><rect x="83.4993%" y="325" width="0.0338%" height="15" fill="rgb(210,132,17)" fg:x="2006990" fg:w="813"/><text x="83.7493%" y="335.50"></text></g><g><title>enqueue_task_fair (2,882 samples, 0.12%)</title><rect x="83.4197%" y="357" width="0.1199%" height="15" fill="rgb(243,202,5)" fg:x="2005075" fg:w="2882"/><text x="83.6697%" y="367.50"></text></g><g><title>ttwu_do_activate (5,828 samples, 0.24%)</title><rect x="83.4093%" y="373" width="0.2425%" height="15" fill="rgb(233,70,48)" fg:x="2004827" fg:w="5828"/><text x="83.6593%" y="383.50"></text></g><g><title>psi_task_change (2,691 samples, 0.11%)</title><rect x="83.5399%" y="357" width="0.1120%" height="15" fill="rgb(238,41,26)" fg:x="2007964" fg:w="2691"/><text x="83.7899%" y="367.50"></text></g><g><title>psi_group_change (2,390 samples, 0.10%)</title><rect x="83.5524%" y="341" width="0.0994%" height="15" fill="rgb(241,19,31)" fg:x="2008265" fg:w="2390"/><text x="83.8024%" y="351.50"></text></g><g><title>record_times (378 samples, 0.02%)</title><rect x="83.6361%" y="325" width="0.0157%" height="15" fill="rgb(214,76,10)" fg:x="2010277" fg:w="378"/><text x="83.8861%" y="335.50"></text></g><g><title>sched_clock_cpu (258 samples, 0.01%)</title><rect x="83.6411%" y="309" width="0.0107%" height="15" fill="rgb(254,202,22)" fg:x="2010397" fg:w="258"/><text x="83.8911%" y="319.50"></text></g><g><title>ttwu_do_wakeup (621 samples, 0.03%)</title><rect x="83.6518%" y="373" width="0.0258%" height="15" fill="rgb(214,72,24)" fg:x="2010655" fg:w="621"/><text x="83.9018%" y="383.50"></text></g><g><title>check_preempt_curr (546 samples, 0.02%)</title><rect x="83.6549%" y="357" width="0.0227%" height="15" fill="rgb(221,92,46)" fg:x="2010730" fg:w="546"/><text x="83.9049%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (285 samples, 0.01%)</title><rect x="83.6777%" y="373" width="0.0119%" height="15" fill="rgb(246,13,50)" fg:x="2011276" fg:w="285"/><text x="83.9277%" y="383.50"></text></g><g><title>__wake_up_common (12,822 samples, 0.53%)</title><rect x="83.1777%" y="421" width="0.5334%" height="15" fill="rgb(240,165,38)" fg:x="1999260" fg:w="12822"/><text x="83.4277%" y="431.50"></text></g><g><title>autoremove_wake_function (12,621 samples, 0.53%)</title><rect x="83.1861%" y="405" width="0.5251%" height="15" fill="rgb(241,24,51)" fg:x="1999461" fg:w="12621"/><text x="83.4361%" y="415.50"></text></g><g><title>try_to_wake_up (12,227 samples, 0.51%)</title><rect x="83.2025%" y="389" width="0.5087%" height="15" fill="rgb(227,51,44)" fg:x="1999855" fg:w="12227"/><text x="83.4525%" y="399.50"></text></g><g><title>update_rq_clock (521 samples, 0.02%)</title><rect x="83.6895%" y="373" width="0.0217%" height="15" fill="rgb(231,121,3)" fg:x="2011561" fg:w="521"/><text x="83.9395%" y="383.50"></text></g><g><title>__wake_up_common_lock (13,111 samples, 0.55%)</title><rect x="83.1755%" y="437" width="0.5455%" height="15" fill="rgb(245,3,41)" fg:x="1999207" fg:w="13111"/><text x="83.4255%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (476 samples, 0.02%)</title><rect x="83.7211%" y="437" width="0.0198%" height="15" fill="rgb(214,13,26)" fg:x="2012321" fg:w="476"/><text x="83.9711%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (366 samples, 0.02%)</title><rect x="83.7409%" y="437" width="0.0152%" height="15" fill="rgb(252,75,11)" fg:x="2012797" fg:w="366"/><text x="83.9909%" y="447.50"></text></g><g><title>btrfs_search_slot (94,104 samples, 3.92%)</title><rect x="79.8557%" y="469" width="3.9151%" height="15" fill="rgb(218,226,17)" fg:x="1919411" fg:w="94104"/><text x="80.1057%" y="479.50">btrf..</text></g><g><title>unlock_up (15,126 samples, 0.63%)</title><rect x="83.1415%" y="453" width="0.6293%" height="15" fill="rgb(248,89,38)" fg:x="1998389" fg:w="15126"/><text x="83.3915%" y="463.50"></text></g><g><title>btrfs_tree_unlock (352 samples, 0.01%)</title><rect x="83.7562%" y="437" width="0.0146%" height="15" fill="rgb(237,73,46)" fg:x="2013163" fg:w="352"/><text x="84.0062%" y="447.50"></text></g><g><title>btrfs_get_32 (447 samples, 0.02%)</title><rect x="83.8480%" y="453" width="0.0186%" height="15" fill="rgb(242,78,33)" fg:x="2015371" fg:w="447"/><text x="84.0980%" y="463.50"></text></g><g><title>btrfs_get_token_32 (4,124 samples, 0.17%)</title><rect x="83.8666%" y="453" width="0.1716%" height="15" fill="rgb(235,60,3)" fg:x="2015818" fg:w="4124"/><text x="84.1166%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (563 samples, 0.02%)</title><rect x="84.0148%" y="437" width="0.0234%" height="15" fill="rgb(216,172,19)" fg:x="2019379" fg:w="563"/><text x="84.2648%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,039 samples, 0.04%)</title><rect x="84.0382%" y="453" width="0.0432%" height="15" fill="rgb(227,6,42)" fg:x="2019942" fg:w="1039"/><text x="84.2882%" y="463.50"></text></g><g><title>leaf_space_used (853 samples, 0.04%)</title><rect x="84.0459%" y="437" width="0.0355%" height="15" fill="rgb(223,207,42)" fg:x="2020128" fg:w="853"/><text x="84.2959%" y="447.50"></text></g><g><title>btrfs_get_32 (605 samples, 0.03%)</title><rect x="84.0562%" y="421" width="0.0252%" height="15" fill="rgb(246,138,30)" fg:x="2020376" fg:w="605"/><text x="84.3062%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (839 samples, 0.03%)</title><rect x="84.0814%" y="453" width="0.0349%" height="15" fill="rgb(251,199,47)" fg:x="2020981" fg:w="839"/><text x="84.3314%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (367 samples, 0.02%)</title><rect x="84.1011%" y="437" width="0.0153%" height="15" fill="rgb(228,218,44)" fg:x="2021453" fg:w="367"/><text x="84.3511%" y="447.50"></text></g><g><title>btrfs_set_token_32 (3,263 samples, 0.14%)</title><rect x="84.1163%" y="453" width="0.1358%" height="15" fill="rgb(220,68,6)" fg:x="2021820" fg:w="3263"/><text x="84.3663%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (612 samples, 0.03%)</title><rect x="84.2266%" y="437" width="0.0255%" height="15" fill="rgb(240,60,26)" fg:x="2024471" fg:w="612"/><text x="84.4766%" y="447.50"></text></g><g><title>memcpy_extent_buffer (378 samples, 0.02%)</title><rect x="84.2617%" y="453" width="0.0157%" height="15" fill="rgb(211,200,19)" fg:x="2025315" fg:w="378"/><text x="84.5117%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,658 samples, 0.07%)</title><rect x="84.2775%" y="453" width="0.0690%" height="15" fill="rgb(242,145,30)" fg:x="2025693" fg:w="1658"/><text x="84.5275%" y="463.50"></text></g><g><title>memmove (901 samples, 0.04%)</title><rect x="84.3090%" y="437" width="0.0375%" height="15" fill="rgb(225,64,13)" fg:x="2026450" fg:w="901"/><text x="84.5590%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (109,100 samples, 4.54%)</title><rect x="79.8497%" y="485" width="4.5390%" height="15" fill="rgb(218,103,35)" fg:x="1919267" fg:w="109100"/><text x="80.0997%" y="495.50">btrfs..</text></g><g><title>setup_items_for_insert (14,852 samples, 0.62%)</title><rect x="83.7708%" y="469" width="0.6179%" height="15" fill="rgb(216,93,46)" fg:x="2013515" fg:w="14852"/><text x="84.0208%" y="479.50"></text></g><g><title>write_extent_buffer (1,016 samples, 0.04%)</title><rect x="84.3464%" y="453" width="0.0423%" height="15" fill="rgb(225,159,27)" fg:x="2027351" fg:w="1016"/><text x="84.5964%" y="463.50"></text></g><g><title>btrfs_mark_buffer_dirty (534 samples, 0.02%)</title><rect x="84.3887%" y="485" width="0.0222%" height="15" fill="rgb(225,204,11)" fg:x="2028367" fg:w="534"/><text x="84.6387%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (361 samples, 0.02%)</title><rect x="84.3959%" y="469" width="0.0150%" height="15" fill="rgb(205,56,4)" fg:x="2028540" fg:w="361"/><text x="84.6459%" y="479.50"></text></g><g><title>btrfs_set_16 (357 samples, 0.01%)</title><rect x="84.4109%" y="485" width="0.0149%" height="15" fill="rgb(206,6,35)" fg:x="2028901" fg:w="357"/><text x="84.6609%" y="495.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (313 samples, 0.01%)</title><rect x="84.4349%" y="485" width="0.0130%" height="15" fill="rgb(247,73,52)" fg:x="2029478" fg:w="313"/><text x="84.6849%" y="495.50"></text></g><g><title>btrfs_update_root_times (574 samples, 0.02%)</title><rect x="84.4480%" y="485" width="0.0239%" height="15" fill="rgb(246,97,4)" fg:x="2029791" fg:w="574"/><text x="84.6980%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (343 samples, 0.01%)</title><rect x="84.4576%" y="469" width="0.0143%" height="15" fill="rgb(212,37,15)" fg:x="2030022" fg:w="343"/><text x="84.7076%" y="479.50"></text></g><g><title>current_time (622 samples, 0.03%)</title><rect x="84.4718%" y="485" width="0.0259%" height="15" fill="rgb(208,130,40)" fg:x="2030365" fg:w="622"/><text x="84.7218%" y="495.50"></text></g><g><title>ktime_get_coarse_real_ts64 (281 samples, 0.01%)</title><rect x="84.4860%" y="469" width="0.0117%" height="15" fill="rgb(236,55,29)" fg:x="2030706" fg:w="281"/><text x="84.7360%" y="479.50"></text></g><g><title>btrfs_set_token_32 (1,474 samples, 0.06%)</title><rect x="84.5273%" y="469" width="0.0613%" height="15" fill="rgb(209,156,45)" fg:x="2031699" fg:w="1474"/><text x="84.7773%" y="479.50"></text></g><g><title>btrfs_set_token_64 (1,993 samples, 0.08%)</title><rect x="84.5887%" y="469" width="0.0829%" height="15" fill="rgb(249,107,4)" fg:x="2033173" fg:w="1993"/><text x="84.8387%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (274 samples, 0.01%)</title><rect x="84.6602%" y="453" width="0.0114%" height="15" fill="rgb(227,7,13)" fg:x="2034892" fg:w="274"/><text x="84.9102%" y="463.50"></text></g><g><title>inode_get_bytes (261 samples, 0.01%)</title><rect x="84.6734%" y="469" width="0.0109%" height="15" fill="rgb(250,129,14)" fg:x="2035210" fg:w="261"/><text x="84.9234%" y="479.50"></text></g><g><title>fill_inode_item (4,783 samples, 0.20%)</title><rect x="84.4977%" y="485" width="0.1990%" height="15" fill="rgb(229,92,13)" fg:x="2030987" fg:w="4783"/><text x="84.7477%" y="495.50"></text></g><g><title>map_id_up (299 samples, 0.01%)</title><rect x="84.6843%" y="469" width="0.0124%" height="15" fill="rgb(245,98,39)" fg:x="2035471" fg:w="299"/><text x="84.9343%" y="479.50"></text></g><g><title>inherit_props (406 samples, 0.02%)</title><rect x="84.6967%" y="485" width="0.0169%" height="15" fill="rgb(234,135,48)" fg:x="2035770" fg:w="406"/><text x="84.9467%" y="495.50"></text></g><g><title>inode_init_owner (605 samples, 0.03%)</title><rect x="84.7136%" y="485" width="0.0252%" height="15" fill="rgb(230,98,28)" fg:x="2036176" fg:w="605"/><text x="84.9636%" y="495.50"></text></g><g><title>_raw_spin_lock (882 samples, 0.04%)</title><rect x="85.0948%" y="469" width="0.0367%" height="15" fill="rgb(223,121,0)" fg:x="2045339" fg:w="882"/><text x="85.3448%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (310 samples, 0.01%)</title><rect x="85.1186%" y="453" width="0.0129%" height="15" fill="rgb(234,173,33)" fg:x="2045911" fg:w="310"/><text x="85.3686%" y="463.50"></text></g><g><title>inode_tree_add (10,267 samples, 0.43%)</title><rect x="84.7446%" y="485" width="0.4272%" height="15" fill="rgb(245,47,8)" fg:x="2036921" fg:w="10267"/><text x="84.9946%" y="495.50"></text></g><g><title>rb_insert_color (916 samples, 0.04%)</title><rect x="85.1336%" y="469" width="0.0381%" height="15" fill="rgb(205,17,20)" fg:x="2046272" fg:w="916"/><text x="85.3836%" y="479.50"></text></g><g><title>_raw_spin_lock (610 samples, 0.03%)</title><rect x="85.1791%" y="453" width="0.0254%" height="15" fill="rgb(232,151,16)" fg:x="2047364" fg:w="610"/><text x="85.4291%" y="463.50"></text></g><g><title>insert_inode_locked4 (1,750 samples, 0.07%)</title><rect x="85.1717%" y="485" width="0.0728%" height="15" fill="rgb(208,30,32)" fg:x="2047188" fg:w="1750"/><text x="85.4217%" y="495.50"></text></g><g><title>inode_insert5 (1,731 samples, 0.07%)</title><rect x="85.1725%" y="469" width="0.0720%" height="15" fill="rgb(254,26,3)" fg:x="2047207" fg:w="1731"/><text x="85.4225%" y="479.50"></text></g><g><title>find_inode (963 samples, 0.04%)</title><rect x="85.2045%" y="453" width="0.0401%" height="15" fill="rgb(240,177,30)" fg:x="2047975" fg:w="963"/><text x="85.4545%" y="463.50"></text></g><g><title>kmem_cache_alloc (694 samples, 0.03%)</title><rect x="85.2445%" y="485" width="0.0289%" height="15" fill="rgb(248,76,44)" fg:x="2048938" fg:w="694"/><text x="85.4945%" y="495.50"></text></g><g><title>kmem_cache_free (630 samples, 0.03%)</title><rect x="85.2734%" y="485" width="0.0262%" height="15" fill="rgb(241,186,54)" fg:x="2049632" fg:w="630"/><text x="85.5234%" y="495.50"></text></g><g><title>memzero_extent_buffer (526 samples, 0.02%)</title><rect x="85.2996%" y="485" width="0.0219%" height="15" fill="rgb(249,171,29)" fg:x="2050262" fg:w="526"/><text x="85.5496%" y="495.50"></text></g><g><title>_raw_spin_lock (338 samples, 0.01%)</title><rect x="85.3252%" y="469" width="0.0141%" height="15" fill="rgb(237,151,44)" fg:x="2050877" fg:w="338"/><text x="85.5752%" y="479.50"></text></g><g><title>btrfs_init_metadata_block_rsv (738 samples, 0.03%)</title><rect x="85.3969%" y="437" width="0.0307%" height="15" fill="rgb(228,174,30)" fg:x="2052599" fg:w="738"/><text x="85.6469%" y="447.50"></text></g><g><title>btrfs_find_space_info (574 samples, 0.02%)</title><rect x="85.4037%" y="421" width="0.0239%" height="15" fill="rgb(252,14,37)" fg:x="2052763" fg:w="574"/><text x="85.6537%" y="431.50"></text></g><g><title>get_page_from_freelist (308 samples, 0.01%)</title><rect x="85.4913%" y="357" width="0.0128%" height="15" fill="rgb(207,111,40)" fg:x="2054868" fg:w="308"/><text x="85.7413%" y="367.50"></text></g><g><title>__alloc_pages_nodemask (327 samples, 0.01%)</title><rect x="85.4906%" y="373" width="0.0136%" height="15" fill="rgb(248,171,54)" fg:x="2054851" fg:w="327"/><text x="85.7406%" y="383.50"></text></g><g><title>allocate_slab (582 samples, 0.02%)</title><rect x="85.4886%" y="389" width="0.0242%" height="15" fill="rgb(211,127,2)" fg:x="2054803" fg:w="582"/><text x="85.7386%" y="399.50"></text></g><g><title>___slab_alloc (1,034 samples, 0.04%)</title><rect x="85.4750%" y="405" width="0.0430%" height="15" fill="rgb(236,87,47)" fg:x="2054477" fg:w="1034"/><text x="85.7250%" y="415.50"></text></g><g><title>__slab_alloc (1,078 samples, 0.04%)</title><rect x="85.4737%" y="421" width="0.0448%" height="15" fill="rgb(223,190,45)" fg:x="2054445" fg:w="1078"/><text x="85.7237%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,350 samples, 0.06%)</title><rect x="85.5191%" y="421" width="0.0562%" height="15" fill="rgb(215,5,16)" fg:x="2055536" fg:w="1350"/><text x="85.7691%" y="431.50"></text></g><g><title>get_obj_cgroup_from_current (507 samples, 0.02%)</title><rect x="85.5882%" y="405" width="0.0211%" height="15" fill="rgb(252,82,33)" fg:x="2057199" fg:w="507"/><text x="85.8382%" y="415.50"></text></g><g><title>__memcg_kmem_charge (302 samples, 0.01%)</title><rect x="85.6270%" y="389" width="0.0126%" height="15" fill="rgb(247,213,44)" fg:x="2058131" fg:w="302"/><text x="85.8770%" y="399.50"></text></g><g><title>try_charge (264 samples, 0.01%)</title><rect x="85.6286%" y="373" width="0.0110%" height="15" fill="rgb(205,196,44)" fg:x="2058169" fg:w="264"/><text x="85.8786%" y="383.50"></text></g><g><title>obj_cgroup_charge (944 samples, 0.04%)</title><rect x="85.6093%" y="405" width="0.0393%" height="15" fill="rgb(237,96,54)" fg:x="2057706" fg:w="944"/><text x="85.8593%" y="415.50"></text></g><g><title>btrfs_alloc_inode (6,999 samples, 0.29%)</title><rect x="85.3578%" y="453" width="0.2912%" height="15" fill="rgb(230,113,34)" fg:x="2051659" fg:w="6999"/><text x="85.6078%" y="463.50"></text></g><g><title>kmem_cache_alloc (4,946 samples, 0.21%)</title><rect x="85.4432%" y="437" width="0.2058%" height="15" fill="rgb(221,224,12)" fg:x="2053712" fg:w="4946"/><text x="85.6932%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,767 samples, 0.07%)</title><rect x="85.5754%" y="421" width="0.0735%" height="15" fill="rgb(219,112,44)" fg:x="2056891" fg:w="1767"/><text x="85.8254%" y="431.50"></text></g><g><title>alloc_inode (9,198 samples, 0.38%)</title><rect x="85.3393%" y="469" width="0.3827%" height="15" fill="rgb(210,31,13)" fg:x="2051215" fg:w="9198"/><text x="85.5893%" y="479.50"></text></g><g><title>inode_init_always (1,755 samples, 0.07%)</title><rect x="85.6489%" y="453" width="0.0730%" height="15" fill="rgb(230,25,16)" fg:x="2058658" fg:w="1755"/><text x="85.8989%" y="463.50"></text></g><g><title>security_inode_alloc (451 samples, 0.02%)</title><rect x="85.7032%" y="437" width="0.0188%" height="15" fill="rgb(246,108,53)" fg:x="2059962" fg:w="451"/><text x="85.9532%" y="447.50"></text></g><g><title>__list_add_valid (261 samples, 0.01%)</title><rect x="85.7249%" y="453" width="0.0109%" height="15" fill="rgb(241,172,50)" fg:x="2060483" fg:w="261"/><text x="85.9749%" y="463.50"></text></g><g><title>new_inode (10,202 samples, 0.42%)</title><rect x="85.3215%" y="485" width="0.4244%" height="15" fill="rgb(235,141,10)" fg:x="2050788" fg:w="10202"/><text x="85.5715%" y="495.50"></text></g><g><title>inode_sb_list_add (576 samples, 0.02%)</title><rect x="85.7220%" y="469" width="0.0240%" height="15" fill="rgb(220,174,43)" fg:x="2060414" fg:w="576"/><text x="85.9720%" y="479.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="85.7357%" y="453" width="0.0102%" height="15" fill="rgb(215,181,40)" fg:x="2060744" fg:w="246"/><text x="85.9857%" y="463.50"></text></g><g><title>btrfs_new_inode (147,215 samples, 6.12%)</title><rect x="79.6427%" y="501" width="6.1248%" height="15" fill="rgb(230,97,2)" fg:x="1914293" fg:w="147215"/><text x="79.8927%" y="511.50">btrfs_ne..</text></g><g><title>write_extent_buffer (518 samples, 0.02%)</title><rect x="85.7460%" y="485" width="0.0216%" height="15" fill="rgb(211,25,27)" fg:x="2060990" fg:w="518"/><text x="85.9960%" y="495.50"></text></g><g><title>btrfs_set_64 (385 samples, 0.02%)</title><rect x="85.7762%" y="501" width="0.0160%" height="15" fill="rgb(230,87,26)" fg:x="2061717" fg:w="385"/><text x="86.0262%" y="511.50"></text></g><g><title>btrfs_set_8 (376 samples, 0.02%)</title><rect x="85.7922%" y="501" width="0.0156%" height="15" fill="rgb(227,160,17)" fg:x="2062102" fg:w="376"/><text x="86.0422%" y="511.50"></text></g><g><title>__list_add_valid (530 samples, 0.02%)</title><rect x="85.9126%" y="453" width="0.0221%" height="15" fill="rgb(244,85,34)" fg:x="2064996" fg:w="530"/><text x="86.1626%" y="463.50"></text></g><g><title>_raw_spin_lock (329 samples, 0.01%)</title><rect x="85.9347%" y="453" width="0.0137%" height="15" fill="rgb(207,70,0)" fg:x="2065526" fg:w="329"/><text x="86.1847%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,307 samples, 0.10%)</title><rect x="85.8672%" y="469" width="0.0960%" height="15" fill="rgb(223,129,7)" fg:x="2063905" fg:w="2307"/><text x="86.1172%" y="479.50"></text></g><g><title>_raw_spin_lock (1,120 samples, 0.05%)</title><rect x="85.9706%" y="453" width="0.0466%" height="15" fill="rgb(246,105,7)" fg:x="2066390" fg:w="1120"/><text x="86.2206%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,289 samples, 0.05%)</title><rect x="85.9637%" y="469" width="0.0536%" height="15" fill="rgb(215,154,42)" fg:x="2066223" fg:w="1289"/><text x="86.2137%" y="479.50"></text></g><g><title>_raw_spin_lock (254 samples, 0.01%)</title><rect x="86.0533%" y="453" width="0.0106%" height="15" fill="rgb(220,215,30)" fg:x="2068377" fg:w="254"/><text x="86.3033%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,489 samples, 0.10%)</title><rect x="86.0710%" y="437" width="0.1036%" height="15" fill="rgb(228,81,51)" fg:x="2068802" fg:w="2489"/><text x="86.3210%" y="447.50"></text></g><g><title>_raw_spin_lock (424 samples, 0.02%)</title><rect x="86.1745%" y="437" width="0.0176%" height="15" fill="rgb(247,71,54)" fg:x="2071291" fg:w="424"/><text x="86.4245%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (3,105 samples, 0.13%)</title><rect x="86.0640%" y="453" width="0.1292%" height="15" fill="rgb(234,176,34)" fg:x="2068634" fg:w="3105"/><text x="86.3140%" y="463.50"></text></g><g><title>allocate_slab (260 samples, 0.01%)</title><rect x="86.2418%" y="405" width="0.0108%" height="15" fill="rgb(241,103,54)" fg:x="2072907" fg:w="260"/><text x="86.4918%" y="415.50"></text></g><g><title>___slab_alloc (708 samples, 0.03%)</title><rect x="86.2253%" y="421" width="0.0295%" height="15" fill="rgb(228,22,34)" fg:x="2072511" fg:w="708"/><text x="86.4753%" y="431.50"></text></g><g><title>__slab_alloc (764 samples, 0.03%)</title><rect x="86.2231%" y="437" width="0.0318%" height="15" fill="rgb(241,179,48)" fg:x="2072459" fg:w="764"/><text x="86.4731%" y="447.50"></text></g><g><title>memset_erms (251 samples, 0.01%)</title><rect x="86.2583%" y="437" width="0.0104%" height="15" fill="rgb(235,167,37)" fg:x="2073305" fg:w="251"/><text x="86.5083%" y="447.50"></text></g><g><title>__schedule (273 samples, 0.01%)</title><rect x="86.2731%" y="405" width="0.0114%" height="15" fill="rgb(213,109,30)" fg:x="2073660" fg:w="273"/><text x="86.5231%" y="415.50"></text></g><g><title>_cond_resched (293 samples, 0.01%)</title><rect x="86.2723%" y="421" width="0.0122%" height="15" fill="rgb(222,172,16)" fg:x="2073642" fg:w="293"/><text x="86.5223%" y="431.50"></text></g><g><title>kmem_cache_alloc (2,199 samples, 0.09%)</title><rect x="86.1932%" y="453" width="0.0915%" height="15" fill="rgb(233,192,5)" fg:x="2071739" fg:w="2199"/><text x="86.4432%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (382 samples, 0.02%)</title><rect x="86.2688%" y="437" width="0.0159%" height="15" fill="rgb(247,189,41)" fg:x="2073556" fg:w="382"/><text x="86.5188%" y="447.50"></text></g><g><title>radix_tree_insert (820 samples, 0.03%)</title><rect x="86.2847%" y="453" width="0.0341%" height="15" fill="rgb(218,134,47)" fg:x="2073938" fg:w="820"/><text x="86.5347%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (7,329 samples, 0.30%)</title><rect x="86.0173%" y="469" width="0.3049%" height="15" fill="rgb(216,29,3)" fg:x="2067512" fg:w="7329"/><text x="86.2673%" y="479.50"></text></g><g><title>inode_get_bytes (245 samples, 0.01%)</title><rect x="86.3307%" y="453" width="0.0102%" height="15" fill="rgb(246,140,12)" fg:x="2075045" fg:w="245"/><text x="86.5807%" y="463.50"></text></g><g><title>fill_stack_inode_item (582 samples, 0.02%)</title><rect x="86.3222%" y="469" width="0.0242%" height="15" fill="rgb(230,136,11)" fg:x="2074841" fg:w="582"/><text x="86.5722%" y="479.50"></text></g><g><title>mutex_lock (449 samples, 0.02%)</title><rect x="86.3464%" y="469" width="0.0187%" height="15" fill="rgb(247,22,47)" fg:x="2075423" fg:w="449"/><text x="86.5964%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (12,903 samples, 0.54%)</title><rect x="85.8347%" y="485" width="0.5368%" height="15" fill="rgb(218,84,22)" fg:x="2063122" fg:w="12903"/><text x="86.0847%" y="495.50"></text></g><g><title>_raw_spin_lock (500 samples, 0.02%)</title><rect x="86.3752%" y="469" width="0.0208%" height="15" fill="rgb(216,87,39)" fg:x="2076115" fg:w="500"/><text x="86.6252%" y="479.50"></text></g><g><title>btrfs_update_inode (14,423 samples, 0.60%)</title><rect x="85.8135%" y="501" width="0.6001%" height="15" fill="rgb(221,178,8)" fg:x="2062614" fg:w="14423"/><text x="86.0635%" y="511.50"></text></g><g><title>btrfs_update_root_times (1,012 samples, 0.04%)</title><rect x="86.3715%" y="485" width="0.0421%" height="15" fill="rgb(230,42,11)" fg:x="2076025" fg:w="1012"/><text x="86.6215%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (421 samples, 0.02%)</title><rect x="86.3961%" y="469" width="0.0175%" height="15" fill="rgb(237,229,4)" fg:x="2076616" fg:w="421"/><text x="86.6461%" y="479.50"></text></g><g><title>__d_instantiate (948 samples, 0.04%)</title><rect x="86.4324%" y="485" width="0.0394%" height="15" fill="rgb(222,31,33)" fg:x="2077488" fg:w="948"/><text x="86.6824%" y="495.50"></text></g><g><title>d_flags_for_inode (433 samples, 0.02%)</title><rect x="86.4538%" y="469" width="0.0180%" height="15" fill="rgb(210,17,39)" fg:x="2078003" fg:w="433"/><text x="86.7038%" y="479.50"></text></g><g><title>security_d_instantiate (382 samples, 0.02%)</title><rect x="86.4814%" y="485" width="0.0159%" height="15" fill="rgb(244,93,20)" fg:x="2078668" fg:w="382"/><text x="86.7314%" y="495.50"></text></g><g><title>d_instantiate_new (2,022 samples, 0.08%)</title><rect x="86.4209%" y="501" width="0.0841%" height="15" fill="rgb(210,40,47)" fg:x="2077212" fg:w="2022"/><text x="86.6709%" y="511.50"></text></g><g><title>__schedule (288 samples, 0.01%)</title><rect x="86.5498%" y="453" width="0.0120%" height="15" fill="rgb(239,211,47)" fg:x="2080310" fg:w="288"/><text x="86.7998%" y="463.50"></text></g><g><title>_cond_resched (414 samples, 0.02%)</title><rect x="86.5469%" y="469" width="0.0172%" height="15" fill="rgb(251,223,49)" fg:x="2080241" fg:w="414"/><text x="86.7969%" y="479.50"></text></g><g><title>kmem_cache_alloc (1,278 samples, 0.05%)</title><rect x="86.5114%" y="501" width="0.0532%" height="15" fill="rgb(221,149,5)" fg:x="2079388" fg:w="1278"/><text x="86.7614%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (565 samples, 0.02%)</title><rect x="86.5411%" y="485" width="0.0235%" height="15" fill="rgb(219,224,51)" fg:x="2080101" fg:w="565"/><text x="86.7911%" y="495.50"></text></g><g><title>kmem_cache_free (624 samples, 0.03%)</title><rect x="86.5646%" y="501" width="0.0260%" height="15" fill="rgb(223,7,8)" fg:x="2080666" fg:w="624"/><text x="86.8146%" y="511.50"></text></g><g><title>security_inode_init_security (400 samples, 0.02%)</title><rect x="86.5907%" y="501" width="0.0166%" height="15" fill="rgb(241,217,22)" fg:x="2081293" fg:w="400"/><text x="86.8407%" y="511.50"></text></g><g><title>_raw_spin_lock (623 samples, 0.03%)</title><rect x="86.7042%" y="469" width="0.0259%" height="15" fill="rgb(248,209,0)" fg:x="2084021" fg:w="623"/><text x="86.9542%" y="479.50"></text></g><g><title>_raw_spin_lock (1,162 samples, 0.05%)</title><rect x="86.7754%" y="437" width="0.0483%" height="15" fill="rgb(217,205,4)" fg:x="2085733" fg:w="1162"/><text x="87.0254%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (478 samples, 0.02%)</title><rect x="86.8038%" y="421" width="0.0199%" height="15" fill="rgb(228,124,39)" fg:x="2086417" fg:w="478"/><text x="87.0538%" y="431.50"></text></g><g><title>_raw_spin_lock (295 samples, 0.01%)</title><rect x="86.8890%" y="405" width="0.0123%" height="15" fill="rgb(250,116,42)" fg:x="2088465" fg:w="295"/><text x="87.1390%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,862 samples, 0.08%)</title><rect x="86.8239%" y="437" width="0.0775%" height="15" fill="rgb(223,202,9)" fg:x="2086900" fg:w="1862"/><text x="87.0739%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (756 samples, 0.03%)</title><rect x="86.8699%" y="421" width="0.0315%" height="15" fill="rgb(242,222,40)" fg:x="2088006" fg:w="756"/><text x="87.1199%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (308 samples, 0.01%)</title><rect x="86.9171%" y="421" width="0.0128%" height="15" fill="rgb(229,99,46)" fg:x="2089139" fg:w="308"/><text x="87.1671%" y="431.50"></text></g><g><title>_raw_spin_lock (446 samples, 0.02%)</title><rect x="86.9405%" y="405" width="0.0186%" height="15" fill="rgb(225,56,46)" fg:x="2089702" fg:w="446"/><text x="87.1905%" y="415.50"></text></g><g><title>__reserve_bytes (5,031 samples, 0.21%)</title><rect x="86.7500%" y="453" width="0.2093%" height="15" fill="rgb(227,94,5)" fg:x="2085122" fg:w="5031"/><text x="87.0000%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (1,391 samples, 0.06%)</title><rect x="86.9014%" y="437" width="0.0579%" height="15" fill="rgb(205,112,38)" fg:x="2088762" fg:w="1391"/><text x="87.1514%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (706 samples, 0.03%)</title><rect x="86.9299%" y="421" width="0.0294%" height="15" fill="rgb(231,133,46)" fg:x="2089447" fg:w="706"/><text x="87.1799%" y="431.50"></text></g><g><title>btrfs_block_rsv_add (6,290 samples, 0.26%)</title><rect x="86.6977%" y="485" width="0.2617%" height="15" fill="rgb(217,16,9)" fg:x="2083865" fg:w="6290"/><text x="86.9477%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,511 samples, 0.23%)</title><rect x="86.7301%" y="469" width="0.2293%" height="15" fill="rgb(249,173,9)" fg:x="2084644" fg:w="5511"/><text x="86.9801%" y="479.50"></text></g><g><title>_raw_spin_lock (455 samples, 0.02%)</title><rect x="86.9845%" y="469" width="0.0189%" height="15" fill="rgb(205,163,53)" fg:x="2090760" fg:w="455"/><text x="87.2345%" y="479.50"></text></g><g><title>join_transaction (984 samples, 0.04%)</title><rect x="86.9627%" y="485" width="0.0409%" height="15" fill="rgb(217,54,41)" fg:x="2090235" fg:w="984"/><text x="87.2127%" y="495.50"></text></g><g><title>kmem_cache_alloc (1,012 samples, 0.04%)</title><rect x="87.0036%" y="485" width="0.0421%" height="15" fill="rgb(228,216,12)" fg:x="2091219" fg:w="1012"/><text x="87.2536%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (290 samples, 0.01%)</title><rect x="87.0337%" y="469" width="0.0121%" height="15" fill="rgb(244,228,15)" fg:x="2091941" fg:w="290"/><text x="87.2837%" y="479.50"></text></g><g><title>start_transaction (11,530 samples, 0.48%)</title><rect x="86.6073%" y="501" width="0.4797%" height="15" fill="rgb(221,176,53)" fg:x="2081693" fg:w="11530"/><text x="86.8573%" y="511.50"></text></g><g><title>wait_current_trans (992 samples, 0.04%)</title><rect x="87.0457%" y="485" width="0.0413%" height="15" fill="rgb(205,94,34)" fg:x="2092231" fg:w="992"/><text x="87.2957%" y="495.50"></text></g><g><title>_raw_spin_lock (673 samples, 0.03%)</title><rect x="87.0590%" y="469" width="0.0280%" height="15" fill="rgb(213,110,48)" fg:x="2092550" fg:w="673"/><text x="87.3090%" y="479.50"></text></g><g><title>strlen (2,911 samples, 0.12%)</title><rect x="87.0870%" y="501" width="0.1211%" height="15" fill="rgb(236,142,28)" fg:x="2093223" fg:w="2911"/><text x="87.3370%" y="511.50"></text></g><g><title>btrfs_symlink (446,923 samples, 18.59%)</title><rect x="68.6446%" y="517" width="18.5939%" height="15" fill="rgb(225,135,29)" fg:x="1649942" fg:w="446923"/><text x="68.8946%" y="527.50">btrfs_symlink</text></g><g><title>write_extent_buffer (731 samples, 0.03%)</title><rect x="87.2081%" y="501" width="0.0304%" height="15" fill="rgb(252,45,31)" fg:x="2096134" fg:w="731"/><text x="87.4581%" y="511.50"></text></g><g><title>fsnotify (541 samples, 0.02%)</title><rect x="87.2390%" y="517" width="0.0225%" height="15" fill="rgb(211,187,50)" fg:x="2096876" fg:w="541"/><text x="87.4890%" y="527.50"></text></g><g><title>btrfs_permission (386 samples, 0.02%)</title><rect x="87.2731%" y="501" width="0.0161%" height="15" fill="rgb(229,109,7)" fg:x="2097697" fg:w="386"/><text x="87.5231%" y="511.50"></text></g><g><title>inode_permission.part.0 (706 samples, 0.03%)</title><rect x="87.2615%" y="517" width="0.0294%" height="15" fill="rgb(251,131,51)" fg:x="2097417" fg:w="706"/><text x="87.5115%" y="527.50"></text></g><g><title>do_symlinkat (571,684 samples, 23.78%)</title><rect x="63.5224%" y="549" width="23.7845%" height="15" fill="rgb(251,180,35)" fg:x="1526824" fg:w="571684"/><text x="63.7724%" y="559.50">do_symlinkat</text></g><g><title>vfs_symlink (449,269 samples, 18.69%)</title><rect x="68.6154%" y="533" width="18.6915%" height="15" fill="rgb(211,46,32)" fg:x="1649239" fg:w="449269"/><text x="68.8654%" y="543.50">vfs_symlink</text></g><g><title>do_syscall_64 (572,587 samples, 23.82%)</title><rect x="63.4975%" y="565" width="23.8221%" height="15" fill="rgb(248,123,17)" fg:x="1526226" fg:w="572587"/><text x="63.7475%" y="575.50">do_syscall_64</text></g><g><title>syscall_enter_from_user_mode (305 samples, 0.01%)</title><rect x="87.3069%" y="549" width="0.0127%" height="15" fill="rgb(227,141,18)" fg:x="2098508" fg:w="305"/><text x="87.5569%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (574,323 samples, 23.89%)</title><rect x="63.4790%" y="581" width="23.8943%" height="15" fill="rgb(216,102,9)" fg:x="1525782" fg:w="574323"/><text x="63.7290%" y="591.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (1,292 samples, 0.05%)</title><rect x="87.3196%" y="565" width="0.0538%" height="15" fill="rgb(253,47,13)" fg:x="2098813" fg:w="1292"/><text x="87.5696%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,139 samples, 0.05%)</title><rect x="87.3259%" y="549" width="0.0474%" height="15" fill="rgb(226,93,23)" fg:x="2098966" fg:w="1139"/><text x="87.5759%" y="559.50"></text></g><g><title>switch_fpu_return (787 samples, 0.03%)</title><rect x="87.3406%" y="533" width="0.0327%" height="15" fill="rgb(247,104,17)" fg:x="2099318" fg:w="787"/><text x="87.5906%" y="543.50"></text></g><g><title>copy_kernel_to_fpregs (265 samples, 0.01%)</title><rect x="87.3623%" y="517" width="0.0110%" height="15" fill="rgb(233,203,26)" fg:x="2099840" fg:w="265"/><text x="87.6123%" y="527.50"></text></g><g><title>syscall_return_via_sysret (338 samples, 0.01%)</title><rect x="87.3794%" y="581" width="0.0141%" height="15" fill="rgb(244,98,49)" fg:x="2100251" fg:w="338"/><text x="87.6294%" y="591.50"></text></g><g><title>__symlink (576,438 samples, 23.98%)</title><rect x="63.4121%" y="597" width="23.9823%" height="15" fill="rgb(235,134,22)" fg:x="1524174" fg:w="576438"/><text x="63.6621%" y="607.50">__symlink</text></g><g><title>_int_free (725 samples, 0.03%)</title><rect x="87.3944%" y="597" width="0.0302%" height="15" fill="rgb(221,70,32)" fg:x="2100612" fg:w="725"/><text x="87.6444%" y="607.50"></text></g><g><title>free@plt (502 samples, 0.02%)</title><rect x="87.4274%" y="597" width="0.0209%" height="15" fill="rgb(238,15,50)" fg:x="2101405" fg:w="502"/><text x="87.6774%" y="607.50"></text></g><g><title>jni_ExceptionOccurred (602 samples, 0.03%)</title><rect x="87.4483%" y="597" width="0.0250%" height="15" fill="rgb(215,221,48)" fg:x="2101907" fg:w="602"/><text x="87.6983%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (525 samples, 0.02%)</title><rect x="87.4954%" y="581" width="0.0218%" height="15" fill="rgb(236,73,3)" fg:x="2103040" fg:w="525"/><text x="87.7454%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (435 samples, 0.02%)</title><rect x="87.5173%" y="581" width="0.0181%" height="15" fill="rgb(250,107,11)" fg:x="2103565" fg:w="435"/><text x="87.7673%" y="591.50"></text></g><g><title>[libc-2.31.so] (652 samples, 0.03%)</title><rect x="87.5354%" y="581" width="0.0271%" height="15" fill="rgb(242,39,14)" fg:x="2104000" fg:w="652"/><text x="87.7854%" y="591.50"></text></g><g><title>check_bounds (742 samples, 0.03%)</title><rect x="87.5629%" y="581" width="0.0309%" height="15" fill="rgb(248,164,37)" fg:x="2104661" fg:w="742"/><text x="87.8129%" y="591.50"></text></g><g><title>jni_GetByteArrayRegion (3,201 samples, 0.13%)</title><rect x="87.4733%" y="597" width="0.1332%" height="15" fill="rgb(217,60,12)" fg:x="2102509" fg:w="3201"/><text x="87.7233%" y="607.50"></text></g><g><title>memmove@plt (307 samples, 0.01%)</title><rect x="87.5937%" y="581" width="0.0128%" height="15" fill="rgb(240,125,29)" fg:x="2105403" fg:w="307"/><text x="87.8437%" y="591.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (850 samples, 0.04%)</title><rect x="87.6374%" y="565" width="0.0354%" height="15" fill="rgb(208,207,28)" fg:x="2106453" fg:w="850"/><text x="87.8874%" y="575.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (765 samples, 0.03%)</title><rect x="87.6410%" y="549" width="0.0318%" height="15" fill="rgb(209,159,27)" fg:x="2106538" fg:w="765"/><text x="87.8910%" y="559.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<802934ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 802934ul>::oop_access_barrier (991 samples, 0.04%)</title><rect x="87.6316%" y="581" width="0.0412%" height="15" fill="rgb(251,176,53)" fg:x="2106313" fg:w="991"/><text x="87.8816%" y="591.50"></text></g><g><title>HandleMark::pop_and_restore (692 samples, 0.03%)</title><rect x="87.6728%" y="581" width="0.0288%" height="15" fill="rgb(211,85,7)" fg:x="2107304" fg:w="692"/><text x="87.9228%" y="591.50"></text></g><g><title>JNIHandles::make_local (833 samples, 0.03%)</title><rect x="87.7016%" y="581" width="0.0347%" height="15" fill="rgb(216,64,54)" fg:x="2107996" fg:w="833"/><text x="87.9516%" y="591.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (392 samples, 0.02%)</title><rect x="87.7365%" y="581" width="0.0163%" height="15" fill="rgb(217,54,24)" fg:x="2108835" fg:w="392"/><text x="87.9865%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (505 samples, 0.02%)</title><rect x="87.7528%" y="581" width="0.0210%" height="15" fill="rgb(208,206,53)" fg:x="2109227" fg:w="505"/><text x="88.0028%" y="591.50"></text></g><g><title>jni_GetObjectField (4,034 samples, 0.17%)</title><rect x="87.6066%" y="597" width="0.1678%" height="15" fill="rgb(251,74,39)" fg:x="2105712" fg:w="4034"/><text x="87.8566%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (368 samples, 0.02%)</title><rect x="87.8234%" y="581" width="0.0153%" height="15" fill="rgb(226,47,5)" fg:x="2110923" fg:w="368"/><text x="88.0734%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (901 samples, 0.04%)</title><rect x="87.8387%" y="581" width="0.0375%" height="15" fill="rgb(234,111,33)" fg:x="2111291" fg:w="901"/><text x="88.0887%" y="591.50"></text></g><g><title>jni_GetStringLength (2,457 samples, 0.10%)</title><rect x="87.7744%" y="597" width="0.1022%" height="15" fill="rgb(251,14,10)" fg:x="2109746" fg:w="2457"/><text x="88.0244%" y="607.50"></text></g><g><title>operator delete@plt (669 samples, 0.03%)</title><rect x="87.8940%" y="597" width="0.0278%" height="15" fill="rgb(232,43,0)" fg:x="2112619" fg:w="669"/><text x="88.1440%" y="607.50"></text></g><g><title>__GI___libc_malloc (854 samples, 0.04%)</title><rect x="87.9321%" y="581" width="0.0355%" height="15" fill="rgb(222,68,43)" fg:x="2113535" fg:w="854"/><text x="88.1821%" y="591.50"></text></g><g><title>tcache_get (378 samples, 0.02%)</title><rect x="87.9519%" y="565" width="0.0157%" height="15" fill="rgb(217,24,23)" fg:x="2114011" fg:w="378"/><text x="88.2019%" y="575.50"></text></g><g><title>operator new (1,060 samples, 0.04%)</title><rect x="87.9315%" y="597" width="0.0441%" height="15" fill="rgb(229,209,14)" fg:x="2113521" fg:w="1060"/><text x="88.1815%" y="607.50"></text></g><g><title>operator new@plt (421 samples, 0.02%)</title><rect x="87.9756%" y="597" width="0.0175%" height="15" fill="rgb(250,149,48)" fg:x="2114581" fg:w="421"/><text x="88.2256%" y="607.50"></text></g><g><title>operator new[] (251 samples, 0.01%)</title><rect x="87.9931%" y="597" width="0.0104%" height="15" fill="rgb(210,120,37)" fg:x="2115002" fg:w="251"/><text x="88.2431%" y="607.50"></text></g><g><title>_int_malloc (475 samples, 0.02%)</title><rect x="88.0361%" y="549" width="0.0198%" height="15" fill="rgb(210,21,8)" fg:x="2116035" fg:w="475"/><text x="88.2861%" y="559.50"></text></g><g><title>__GI___libc_malloc (1,005 samples, 0.04%)</title><rect x="88.0188%" y="565" width="0.0418%" height="15" fill="rgb(243,145,7)" fg:x="2115620" fg:w="1005"/><text x="88.2688%" y="575.50"></text></g><g><title>operator new (1,075 samples, 0.04%)</title><rect x="88.0184%" y="581" width="0.0447%" height="15" fill="rgb(238,178,32)" fg:x="2115611" fg:w="1075"/><text x="88.2684%" y="591.50"></text></g><g><title>[libunix_jni.so] (1,942,842 samples, 80.83%)</title><rect x="7.2359%" y="613" width="80.8305%" height="15" fill="rgb(222,4,10)" fg:x="173921" fg:w="1942842"/><text x="7.4859%" y="623.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (1,242 samples, 0.05%)</title><rect x="88.0147%" y="597" width="0.0517%" height="15" fill="rgb(239,7,37)" fg:x="2115521" fg:w="1242"/><text x="88.2647%" y="607.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (283 samples, 0.01%)</title><rect x="92.5372%" y="581" width="0.0118%" height="15" fill="rgb(215,31,37)" fg:x="2224224" fg:w="283"/><text x="92.7872%" y="591.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (287 samples, 0.01%)</title><rect x="92.5371%" y="597" width="0.0119%" height="15" fill="rgb(224,83,33)" fg:x="2224222" fg:w="287"/><text x="92.7871%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (318 samples, 0.01%)</title><rect x="92.5614%" y="581" width="0.0132%" height="15" fill="rgb(239,55,3)" fg:x="2224806" fg:w="318"/><text x="92.8114%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (477 samples, 0.02%)</title><rect x="92.5585%" y="597" width="0.0198%" height="15" fill="rgb(247,92,11)" fg:x="2224735" fg:w="477"/><text x="92.8085%" y="607.50"></text></g><g><title>SymbolTable::lookup_only (285 samples, 0.01%)</title><rect x="92.6127%" y="453" width="0.0119%" height="15" fill="rgb(239,200,7)" fg:x="2226039" fg:w="285"/><text x="92.8627%" y="463.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (326 samples, 0.01%)</title><rect x="92.6110%" y="469" width="0.0136%" height="15" fill="rgb(227,115,8)" fg:x="2225999" fg:w="326"/><text x="92.8610%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (334 samples, 0.01%)</title><rect x="92.6109%" y="485" width="0.0139%" height="15" fill="rgb(215,189,27)" fg:x="2225995" fg:w="334"/><text x="92.8609%" y="495.50"></text></g><g><title>ClassFileParser::ClassFileParser (434 samples, 0.02%)</title><rect x="92.6108%" y="517" width="0.0181%" height="15" fill="rgb(251,216,39)" fg:x="2225993" fg:w="434"/><text x="92.8608%" y="527.50"></text></g><g><title>ClassFileParser::parse_stream (434 samples, 0.02%)</title><rect x="92.6108%" y="501" width="0.0181%" height="15" fill="rgb(207,29,47)" fg:x="2225993" fg:w="434"/><text x="92.8608%" y="511.50"></text></g><g><title>KlassFactory::create_from_stream (528 samples, 0.02%)</title><rect x="92.6108%" y="533" width="0.0220%" height="15" fill="rgb(210,71,34)" fg:x="2225993" fg:w="528"/><text x="92.8608%" y="543.50"></text></g><g><title>JVM_DefineClassWithSource (566 samples, 0.02%)</title><rect x="92.6105%" y="581" width="0.0235%" height="15" fill="rgb(253,217,51)" fg:x="2225985" fg:w="566"/><text x="92.8605%" y="591.50"></text></g><g><title>jvm_define_class_common (566 samples, 0.02%)</title><rect x="92.6105%" y="565" width="0.0235%" height="15" fill="rgb(222,117,46)" fg:x="2225985" fg:w="566"/><text x="92.8605%" y="575.50"></text></g><g><title>SystemDictionary::resolve_from_stream (558 samples, 0.02%)</title><rect x="92.6108%" y="549" width="0.0232%" height="15" fill="rgb(226,132,6)" fg:x="2225993" fg:w="558"/><text x="92.8608%" y="559.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (589 samples, 0.02%)</title><rect x="92.6104%" y="597" width="0.0245%" height="15" fill="rgb(254,145,51)" fg:x="2225984" fg:w="589"/><text x="92.8604%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (379 samples, 0.02%)</title><rect x="92.6485%" y="501" width="0.0158%" height="15" fill="rgb(231,199,27)" fg:x="2226900" fg:w="379"/><text x="92.8985%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (371 samples, 0.02%)</title><rect x="92.6489%" y="485" width="0.0154%" height="15" fill="rgb(245,158,14)" fg:x="2226908" fg:w="371"/><text x="92.8989%" y="495.50"></text></g><g><title>native_write_msr (371 samples, 0.02%)</title><rect x="92.6489%" y="469" width="0.0154%" height="15" fill="rgb(240,113,14)" fg:x="2226908" fg:w="371"/><text x="92.8989%" y="479.50"></text></g><g><title>schedule_tail (405 samples, 0.02%)</title><rect x="92.6480%" y="533" width="0.0168%" height="15" fill="rgb(210,20,13)" fg:x="2226887" fg:w="405"/><text x="92.8980%" y="543.50"></text></g><g><title>finish_task_switch (403 samples, 0.02%)</title><rect x="92.6481%" y="517" width="0.0168%" height="15" fill="rgb(241,144,13)" fg:x="2226889" fg:w="403"/><text x="92.8981%" y="527.50"></text></g><g><title>__libc_vfork (567 samples, 0.02%)</title><rect x="92.6415%" y="565" width="0.0236%" height="15" fill="rgb(235,43,34)" fg:x="2226732" fg:w="567"/><text x="92.8915%" y="575.50"></text></g><g><title>ret_from_fork (420 samples, 0.02%)</title><rect x="92.6477%" y="549" width="0.0175%" height="15" fill="rgb(208,36,20)" fg:x="2226879" fg:w="420"/><text x="92.8977%" y="559.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,007 samples, 0.04%)</title><rect x="92.6384%" y="597" width="0.0419%" height="15" fill="rgb(239,204,10)" fg:x="2226657" fg:w="1007"/><text x="92.8884%" y="607.50"></text></g><g><title>vforkChild (933 samples, 0.04%)</title><rect x="92.6415%" y="581" width="0.0388%" height="15" fill="rgb(217,84,43)" fg:x="2226731" fg:w="933"/><text x="92.8915%" y="591.50"></text></g><g><title>childProcess (365 samples, 0.02%)</title><rect x="92.6651%" y="565" width="0.0152%" height="15" fill="rgb(241,170,50)" fg:x="2227299" fg:w="365"/><text x="92.9151%" y="575.50"></text></g><g><title>OptoRuntime::new_array_C (254 samples, 0.01%)</title><rect x="92.6820%" y="597" width="0.0106%" height="15" fill="rgb(226,205,29)" fg:x="2227704" fg:w="254"/><text x="92.9320%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (304 samples, 0.01%)</title><rect x="92.7391%" y="373" width="0.0126%" height="15" fill="rgb(233,113,1)" fg:x="2229076" fg:w="304"/><text x="92.9891%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (298 samples, 0.01%)</title><rect x="92.7393%" y="357" width="0.0124%" height="15" fill="rgb(253,98,13)" fg:x="2229082" fg:w="298"/><text x="92.9893%" y="367.50"></text></g><g><title>native_write_msr (296 samples, 0.01%)</title><rect x="92.7394%" y="341" width="0.0123%" height="15" fill="rgb(211,115,12)" fg:x="2229084" fg:w="296"/><text x="92.9894%" y="351.50"></text></g><g><title>finish_task_switch (319 samples, 0.01%)</title><rect x="92.7388%" y="389" width="0.0133%" height="15" fill="rgb(208,12,16)" fg:x="2229069" fg:w="319"/><text x="92.9888%" y="399.50"></text></g><g><title>futex_wait_queue_me (402 samples, 0.02%)</title><rect x="92.7370%" y="437" width="0.0167%" height="15" fill="rgb(237,193,54)" fg:x="2229026" fg:w="402"/><text x="92.9870%" y="447.50"></text></g><g><title>schedule (395 samples, 0.02%)</title><rect x="92.7373%" y="421" width="0.0164%" height="15" fill="rgb(243,22,42)" fg:x="2229033" fg:w="395"/><text x="92.9873%" y="431.50"></text></g><g><title>__schedule (394 samples, 0.02%)</title><rect x="92.7373%" y="405" width="0.0164%" height="15" fill="rgb(233,151,36)" fg:x="2229034" fg:w="394"/><text x="92.9873%" y="415.50"></text></g><g><title>do_syscall_64 (406 samples, 0.02%)</title><rect x="92.7369%" y="501" width="0.0169%" height="15" fill="rgb(237,57,45)" fg:x="2229025" fg:w="406"/><text x="92.9869%" y="511.50"></text></g><g><title>__x64_sys_futex (405 samples, 0.02%)</title><rect x="92.7370%" y="485" width="0.0168%" height="15" fill="rgb(221,88,17)" fg:x="2229026" fg:w="405"/><text x="92.9870%" y="495.50"></text></g><g><title>do_futex (405 samples, 0.02%)</title><rect x="92.7370%" y="469" width="0.0168%" height="15" fill="rgb(230,79,15)" fg:x="2229026" fg:w="405"/><text x="92.9870%" y="479.50"></text></g><g><title>futex_wait (405 samples, 0.02%)</title><rect x="92.7370%" y="453" width="0.0168%" height="15" fill="rgb(213,57,13)" fg:x="2229026" fg:w="405"/><text x="92.9870%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (416 samples, 0.02%)</title><rect x="92.7369%" y="517" width="0.0173%" height="15" fill="rgb(222,116,39)" fg:x="2229023" fg:w="416"/><text x="92.9869%" y="527.50"></text></g><g><title>__pthread_cond_wait (439 samples, 0.02%)</title><rect x="92.7361%" y="565" width="0.0183%" height="15" fill="rgb(245,107,2)" fg:x="2229004" fg:w="439"/><text x="92.9861%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (439 samples, 0.02%)</title><rect x="92.7361%" y="549" width="0.0183%" height="15" fill="rgb(238,1,10)" fg:x="2229004" fg:w="439"/><text x="92.9861%" y="559.50"></text></g><g><title>futex_wait_cancelable (432 samples, 0.02%)</title><rect x="92.7364%" y="533" width="0.0180%" height="15" fill="rgb(249,4,48)" fg:x="2229011" fg:w="432"/><text x="92.9864%" y="543.50"></text></g><g><title>Parker::park (517 samples, 0.02%)</title><rect x="92.7340%" y="581" width="0.0215%" height="15" fill="rgb(223,151,18)" fg:x="2228955" fg:w="517"/><text x="92.9840%" y="591.50"></text></g><g><title>Unsafe_Park (526 samples, 0.02%)</title><rect x="92.7339%" y="597" width="0.0219%" height="15" fill="rgb(227,65,43)" fg:x="2228951" fg:w="526"/><text x="92.9839%" y="607.50"></text></g><g><title>__x64_sys_futex (307 samples, 0.01%)</title><rect x="92.7594%" y="517" width="0.0128%" height="15" fill="rgb(218,40,45)" fg:x="2229564" fg:w="307"/><text x="93.0094%" y="527.50"></text></g><g><title>do_futex (306 samples, 0.01%)</title><rect x="92.7594%" y="501" width="0.0127%" height="15" fill="rgb(252,121,31)" fg:x="2229565" fg:w="306"/><text x="93.0094%" y="511.50"></text></g><g><title>futex_wake (304 samples, 0.01%)</title><rect x="92.7595%" y="485" width="0.0126%" height="15" fill="rgb(219,158,43)" fg:x="2229567" fg:w="304"/><text x="93.0095%" y="495.50"></text></g><g><title>wake_up_q (252 samples, 0.01%)</title><rect x="92.7616%" y="469" width="0.0105%" height="15" fill="rgb(231,162,42)" fg:x="2229619" fg:w="252"/><text x="93.0116%" y="479.50"></text></g><g><title>try_to_wake_up (251 samples, 0.01%)</title><rect x="92.7617%" y="453" width="0.0104%" height="15" fill="rgb(217,179,25)" fg:x="2229620" fg:w="251"/><text x="93.0117%" y="463.50"></text></g><g><title>do_syscall_64 (312 samples, 0.01%)</title><rect x="92.7593%" y="533" width="0.0130%" height="15" fill="rgb(206,212,31)" fg:x="2229562" fg:w="312"/><text x="93.0093%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (324 samples, 0.01%)</title><rect x="92.7592%" y="549" width="0.0135%" height="15" fill="rgb(235,144,12)" fg:x="2229561" fg:w="324"/><text x="93.0092%" y="559.50"></text></g><g><title>__pthread_cond_signal (352 samples, 0.01%)</title><rect x="92.7583%" y="581" width="0.0146%" height="15" fill="rgb(213,51,10)" fg:x="2229538" fg:w="352"/><text x="93.0083%" y="591.50"></text></g><g><title>futex_wake (340 samples, 0.01%)</title><rect x="92.7588%" y="565" width="0.0141%" height="15" fill="rgb(231,145,14)" fg:x="2229550" fg:w="340"/><text x="93.0088%" y="575.50"></text></g><g><title>Unsafe_Unpark (415 samples, 0.02%)</title><rect x="92.7557%" y="597" width="0.0173%" height="15" fill="rgb(235,15,28)" fg:x="2229477" fg:w="415"/><text x="93.0057%" y="607.50"></text></g><g><title>asm_common_interrupt (248 samples, 0.01%)</title><rect x="92.7800%" y="597" width="0.0103%" height="15" fill="rgb(237,206,10)" fg:x="2230061" fg:w="248"/><text x="93.0300%" y="607.50"></text></g><g><title>common_interrupt (248 samples, 0.01%)</title><rect x="92.7800%" y="581" width="0.0103%" height="15" fill="rgb(236,227,27)" fg:x="2230061" fg:w="248"/><text x="93.0300%" y="591.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (249 samples, 0.01%)</title><rect x="92.7911%" y="597" width="0.0104%" height="15" fill="rgb(246,83,35)" fg:x="2230326" fg:w="249"/><text x="93.0411%" y="607.50"></text></g><g><title>do_filp_open (317 samples, 0.01%)</title><rect x="92.8223%" y="501" width="0.0132%" height="15" fill="rgb(220,136,24)" fg:x="2231078" fg:w="317"/><text x="93.0723%" y="511.50"></text></g><g><title>path_openat (312 samples, 0.01%)</title><rect x="92.8226%" y="485" width="0.0130%" height="15" fill="rgb(217,3,25)" fg:x="2231083" fg:w="312"/><text x="93.0726%" y="495.50"></text></g><g><title>__x64_sys_openat (377 samples, 0.02%)</title><rect x="92.8214%" y="533" width="0.0157%" height="15" fill="rgb(239,24,14)" fg:x="2231056" fg:w="377"/><text x="93.0714%" y="543.50"></text></g><g><title>do_sys_openat2 (377 samples, 0.02%)</title><rect x="92.8214%" y="517" width="0.0157%" height="15" fill="rgb(244,16,53)" fg:x="2231056" fg:w="377"/><text x="93.0714%" y="527.50"></text></g><g><title>do_syscall_64 (379 samples, 0.02%)</title><rect x="92.8214%" y="549" width="0.0158%" height="15" fill="rgb(208,175,44)" fg:x="2231055" fg:w="379"/><text x="93.0714%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (382 samples, 0.02%)</title><rect x="92.8214%" y="565" width="0.0159%" height="15" fill="rgb(252,18,48)" fg:x="2231055" fg:w="382"/><text x="93.0714%" y="575.50"></text></g><g><title>__libc_open64 (390 samples, 0.02%)</title><rect x="92.8211%" y="581" width="0.0162%" height="15" fill="rgb(234,199,32)" fg:x="2231048" fg:w="390"/><text x="93.0711%" y="591.50"></text></g><g><title>fileOpen (534 samples, 0.02%)</title><rect x="92.8163%" y="597" width="0.0222%" height="15" fill="rgb(225,77,54)" fg:x="2230932" fg:w="534"/><text x="93.0663%" y="607.50"></text></g><g><title>[perf-996087.map] (114,921 samples, 4.78%)</title><rect x="88.0664%" y="613" width="4.7812%" height="15" fill="rgb(225,42,25)" fg:x="2116763" fg:w="114921"/><text x="88.3164%" y="623.50">[perf-..</text></g><g><title>SharedRuntime::resolve_sub_helper (284 samples, 0.01%)</title><rect x="92.8529%" y="597" width="0.0118%" height="15" fill="rgb(242,227,46)" fg:x="2231813" fg:w="284"/><text x="93.1029%" y="607.50"></text></g><g><title>new_sync_read (255 samples, 0.01%)</title><rect x="92.8897%" y="469" width="0.0106%" height="15" fill="rgb(246,197,35)" fg:x="2232698" fg:w="255"/><text x="93.1397%" y="479.50"></text></g><g><title>ksys_read (336 samples, 0.01%)</title><rect x="92.8875%" y="501" width="0.0140%" height="15" fill="rgb(215,159,26)" fg:x="2232645" fg:w="336"/><text x="93.1375%" y="511.50"></text></g><g><title>vfs_read (302 samples, 0.01%)</title><rect x="92.8890%" y="485" width="0.0126%" height="15" fill="rgb(212,194,50)" fg:x="2232679" fg:w="302"/><text x="93.1390%" y="495.50"></text></g><g><title>do_syscall_64 (341 samples, 0.01%)</title><rect x="92.8875%" y="517" width="0.0142%" height="15" fill="rgb(246,132,1)" fg:x="2232644" fg:w="341"/><text x="93.1375%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (352 samples, 0.01%)</title><rect x="92.8873%" y="533" width="0.0146%" height="15" fill="rgb(217,71,7)" fg:x="2232639" fg:w="352"/><text x="93.1373%" y="543.50"></text></g><g><title>__libc_read (371 samples, 0.02%)</title><rect x="92.8865%" y="565" width="0.0154%" height="15" fill="rgb(252,59,32)" fg:x="2232621" fg:w="371"/><text x="93.1365%" y="575.50"></text></g><g><title>__libc_read (370 samples, 0.02%)</title><rect x="92.8866%" y="549" width="0.0154%" height="15" fill="rgb(253,204,25)" fg:x="2232622" fg:w="370"/><text x="93.1366%" y="559.50"></text></g><g><title>handleRead (374 samples, 0.02%)</title><rect x="92.8865%" y="581" width="0.0156%" height="15" fill="rgb(232,21,16)" fg:x="2232620" fg:w="374"/><text x="93.1365%" y="591.50"></text></g><g><title>readBytes (522 samples, 0.02%)</title><rect x="92.8860%" y="597" width="0.0217%" height="15" fill="rgb(248,90,29)" fg:x="2232608" fg:w="522"/><text x="93.1360%" y="607.50"></text></g><g><title>[unknown] (1,499 samples, 0.06%)</title><rect x="92.8476%" y="613" width="0.0624%" height="15" fill="rgb(249,223,7)" fg:x="2231684" fg:w="1499"/><text x="93.0976%" y="623.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (277 samples, 0.01%)</title><rect x="92.9304%" y="613" width="0.0115%" height="15" fill="rgb(231,119,42)" fg:x="2233675" fg:w="277"/><text x="93.1804%" y="623.50"></text></g><g><title>skyframe-evalua (2,065,075 samples, 85.92%)</title><rect x="7.0383%" y="629" width="85.9159%" height="15" fill="rgb(215,41,35)" fg:x="169173" fg:w="2065075"/><text x="7.2883%" y="639.50">skyframe-evalua</text></g><g><title>kernel_init_free_pages (476 samples, 0.02%)</title><rect x="95.1849%" y="469" width="0.0198%" height="15" fill="rgb(220,44,45)" fg:x="2287864" fg:w="476"/><text x="95.4349%" y="479.50"></text></g><g><title>clear_page_erms (462 samples, 0.02%)</title><rect x="95.1855%" y="453" width="0.0192%" height="15" fill="rgb(253,197,36)" fg:x="2287878" fg:w="462"/><text x="95.4355%" y="463.50"></text></g><g><title>get_page_from_freelist (832 samples, 0.03%)</title><rect x="95.1703%" y="501" width="0.0346%" height="15" fill="rgb(245,225,54)" fg:x="2287513" fg:w="832"/><text x="95.4203%" y="511.50"></text></g><g><title>prep_new_page (508 samples, 0.02%)</title><rect x="95.1838%" y="485" width="0.0211%" height="15" fill="rgb(239,94,37)" fg:x="2287837" fg:w="508"/><text x="95.4338%" y="495.50"></text></g><g><title>__alloc_pages_nodemask (1,044 samples, 0.04%)</title><rect x="95.1617%" y="517" width="0.0434%" height="15" fill="rgb(242,217,10)" fg:x="2287307" fg:w="1044"/><text x="95.4117%" y="527.50"></text></g><g><title>alloc_pages_vma (1,124 samples, 0.05%)</title><rect x="95.1594%" y="533" width="0.0468%" height="15" fill="rgb(250,193,7)" fg:x="2287251" fg:w="1124"/><text x="95.4094%" y="543.50"></text></g><g><title>page_add_file_rmap (306 samples, 0.01%)</title><rect x="95.2499%" y="501" width="0.0127%" height="15" fill="rgb(230,104,19)" fg:x="2289426" fg:w="306"/><text x="95.4999%" y="511.50"></text></g><g><title>alloc_set_pte (468 samples, 0.02%)</title><rect x="95.2442%" y="517" width="0.0195%" height="15" fill="rgb(230,181,4)" fg:x="2289290" fg:w="468"/><text x="95.4942%" y="527.50"></text></g><g><title>filemap_map_pages (1,204 samples, 0.05%)</title><rect x="95.2224%" y="533" width="0.0501%" height="15" fill="rgb(216,219,49)" fg:x="2288766" fg:w="1204"/><text x="95.4724%" y="543.50"></text></g><g><title>lru_cache_add (279 samples, 0.01%)</title><rect x="95.2729%" y="533" width="0.0116%" height="15" fill="rgb(254,144,0)" fg:x="2289979" fg:w="279"/><text x="95.5229%" y="543.50"></text></g><g><title>mem_cgroup_charge (257 samples, 0.01%)</title><rect x="95.2848%" y="533" width="0.0107%" height="15" fill="rgb(205,209,38)" fg:x="2290266" fg:w="257"/><text x="95.5348%" y="543.50"></text></g><g><title>handle_mm_fault (4,231 samples, 0.18%)</title><rect x="95.1293%" y="549" width="0.1760%" height="15" fill="rgb(240,21,42)" fg:x="2286528" fg:w="4231"/><text x="95.3793%" y="559.50"></text></g><g><title>do_user_addr_fault (4,564 samples, 0.19%)</title><rect x="95.1186%" y="565" width="0.1899%" height="15" fill="rgb(241,132,3)" fg:x="2286271" fg:w="4564"/><text x="95.3686%" y="575.50"></text></g><g><title>exc_page_fault (4,611 samples, 0.19%)</title><rect x="95.1169%" y="581" width="0.1918%" height="15" fill="rgb(225,14,2)" fg:x="2286229" fg:w="4611"/><text x="95.3669%" y="591.50"></text></g><g><title>asm_exc_page_fault (4,699 samples, 0.20%)</title><rect x="95.1147%" y="597" width="0.1955%" height="15" fill="rgb(210,141,35)" fg:x="2286178" fg:w="4699"/><text x="95.3647%" y="607.50"></text></g><g><title>entry_SYSCALL_64 (2,161 samples, 0.09%)</title><rect x="95.3220%" y="597" width="0.0899%" height="15" fill="rgb(251,14,44)" fg:x="2291160" fg:w="2161"/><text x="95.5720%" y="607.50"></text></g><g><title>_copy_to_user (293 samples, 0.01%)</title><rect x="95.4738%" y="533" width="0.0122%" height="15" fill="rgb(247,48,18)" fg:x="2294809" fg:w="293"/><text x="95.7238%" y="543.50"></text></g><g><title>copy_user_enhanced_fast_string (250 samples, 0.01%)</title><rect x="95.4756%" y="517" width="0.0104%" height="15" fill="rgb(225,0,40)" fg:x="2294852" fg:w="250"/><text x="95.7256%" y="527.50"></text></g><g><title>cp_new_stat (534 samples, 0.02%)</title><rect x="95.4697%" y="549" width="0.0222%" height="15" fill="rgb(221,31,33)" fg:x="2294709" fg:w="534"/><text x="95.7197%" y="559.50"></text></g><g><title>btrfs_getattr (1,240 samples, 0.05%)</title><rect x="95.5018%" y="533" width="0.0516%" height="15" fill="rgb(237,42,40)" fg:x="2295481" fg:w="1240"/><text x="95.7518%" y="543.50"></text></g><g><title>security_inode_getattr (627 samples, 0.03%)</title><rect x="95.5569%" y="533" width="0.0261%" height="15" fill="rgb(233,51,29)" fg:x="2296805" fg:w="627"/><text x="95.8069%" y="543.50"></text></g><g><title>tomoyo_path_perm (432 samples, 0.02%)</title><rect x="95.5650%" y="517" width="0.0180%" height="15" fill="rgb(226,58,20)" fg:x="2297000" fg:w="432"/><text x="95.8150%" y="527.50"></text></g><g><title>__do_sys_newfstat (2,966 samples, 0.12%)</title><rect x="95.4686%" y="565" width="0.1234%" height="15" fill="rgb(208,98,7)" fg:x="2294683" fg:w="2966"/><text x="95.7186%" y="575.50"></text></g><g><title>vfs_fstat (2,406 samples, 0.10%)</title><rect x="95.4919%" y="549" width="0.1001%" height="15" fill="rgb(228,143,44)" fg:x="2295243" fg:w="2406"/><text x="95.7419%" y="559.50"></text></g><g><title>__close_fd (247 samples, 0.01%)</title><rect x="95.5968%" y="549" width="0.0103%" height="15" fill="rgb(246,55,38)" fg:x="2297764" fg:w="247"/><text x="95.8468%" y="559.50"></text></g><g><title>fput_many (383 samples, 0.02%)</title><rect x="95.6105%" y="533" width="0.0159%" height="15" fill="rgb(247,87,16)" fg:x="2298095" fg:w="383"/><text x="95.8605%" y="543.50"></text></g><g><title>task_work_add (261 samples, 0.01%)</title><rect x="95.6156%" y="517" width="0.0109%" height="15" fill="rgb(234,129,42)" fg:x="2298217" fg:w="261"/><text x="95.8656%" y="527.50"></text></g><g><title>__x64_sys_close (817 samples, 0.03%)</title><rect x="95.5959%" y="565" width="0.0340%" height="15" fill="rgb(220,82,16)" fg:x="2297742" fg:w="817"/><text x="95.8459%" y="575.50"></text></g><g><title>filp_close (548 samples, 0.02%)</title><rect x="95.6070%" y="549" width="0.0228%" height="15" fill="rgb(211,88,4)" fg:x="2298011" fg:w="548"/><text x="95.8570%" y="559.50"></text></g><g><title>bprm_execve (264 samples, 0.01%)</title><rect x="95.6301%" y="533" width="0.0110%" height="15" fill="rgb(248,151,21)" fg:x="2298564" fg:w="264"/><text x="95.8801%" y="543.50"></text></g><g><title>__x64_sys_execve (318 samples, 0.01%)</title><rect x="95.6299%" y="565" width="0.0132%" height="15" fill="rgb(238,163,6)" fg:x="2298560" fg:w="318"/><text x="95.8799%" y="575.50"></text></g><g><title>do_execveat_common (318 samples, 0.01%)</title><rect x="95.6299%" y="549" width="0.0132%" height="15" fill="rgb(209,183,11)" fg:x="2298560" fg:w="318"/><text x="95.8799%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (5,676 samples, 0.24%)</title><rect x="95.6727%" y="453" width="0.2361%" height="15" fill="rgb(219,37,20)" fg:x="2299590" fg:w="5676"/><text x="95.9227%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,593 samples, 0.23%)</title><rect x="95.6762%" y="437" width="0.2327%" height="15" fill="rgb(210,158,4)" fg:x="2299673" fg:w="5593"/><text x="95.9262%" y="447.50"></text></g><g><title>native_write_msr (5,563 samples, 0.23%)</title><rect x="95.6774%" y="421" width="0.2314%" height="15" fill="rgb(221,167,53)" fg:x="2299703" fg:w="5563"/><text x="95.9274%" y="431.50"></text></g><g><title>finish_task_switch (6,002 samples, 0.25%)</title><rect x="95.6685%" y="469" width="0.2497%" height="15" fill="rgb(237,151,45)" fg:x="2299488" fg:w="6002"/><text x="95.9185%" y="479.50"></text></g><g><title>futex_wait_queue_me (6,696 samples, 0.28%)</title><rect x="95.6519%" y="517" width="0.2786%" height="15" fill="rgb(231,39,3)" fg:x="2299088" fg:w="6696"/><text x="95.9019%" y="527.50"></text></g><g><title>schedule (6,621 samples, 0.28%)</title><rect x="95.6550%" y="501" width="0.2755%" height="15" fill="rgb(212,167,28)" fg:x="2299163" fg:w="6621"/><text x="95.9050%" y="511.50"></text></g><g><title>__schedule (6,608 samples, 0.27%)</title><rect x="95.6555%" y="485" width="0.2749%" height="15" fill="rgb(232,178,8)" fg:x="2299176" fg:w="6608"/><text x="95.9055%" y="495.50"></text></g><g><title>futex_wait (6,802 samples, 0.28%)</title><rect x="95.6497%" y="533" width="0.2830%" height="15" fill="rgb(225,151,20)" fg:x="2299036" fg:w="6802"/><text x="95.8997%" y="543.50"></text></g><g><title>__x64_sys_futex (7,438 samples, 0.31%)</title><rect x="95.6477%" y="565" width="0.3095%" height="15" fill="rgb(238,3,37)" fg:x="2298988" fg:w="7438"/><text x="95.8977%" y="575.50"></text></g><g><title>do_futex (7,415 samples, 0.31%)</title><rect x="95.6487%" y="549" width="0.3085%" height="15" fill="rgb(251,147,42)" fg:x="2299011" fg:w="7415"/><text x="95.8987%" y="559.50"></text></g><g><title>futex_wake (588 samples, 0.02%)</title><rect x="95.9327%" y="533" width="0.0245%" height="15" fill="rgb(208,173,10)" fg:x="2305838" fg:w="588"/><text x="96.1827%" y="543.50"></text></g><g><title>wake_up_q (496 samples, 0.02%)</title><rect x="95.9365%" y="517" width="0.0206%" height="15" fill="rgb(246,225,4)" fg:x="2305930" fg:w="496"/><text x="96.1865%" y="527.50"></text></g><g><title>try_to_wake_up (488 samples, 0.02%)</title><rect x="95.9368%" y="501" width="0.0203%" height="15" fill="rgb(248,102,6)" fg:x="2305938" fg:w="488"/><text x="96.1868%" y="511.50"></text></g><g><title>tlb_finish_mmu (477 samples, 0.02%)</title><rect x="95.9771%" y="501" width="0.0198%" height="15" fill="rgb(232,6,21)" fg:x="2306905" fg:w="477"/><text x="96.2271%" y="511.50"></text></g><g><title>release_pages (366 samples, 0.02%)</title><rect x="95.9817%" y="485" width="0.0152%" height="15" fill="rgb(221,179,22)" fg:x="2307016" fg:w="366"/><text x="96.2317%" y="495.50"></text></g><g><title>unmap_page_range (260 samples, 0.01%)</title><rect x="95.9972%" y="485" width="0.0108%" height="15" fill="rgb(252,50,20)" fg:x="2307389" fg:w="260"/><text x="96.2472%" y="495.50"></text></g><g><title>unmap_region (882 samples, 0.04%)</title><rect x="95.9715%" y="517" width="0.0367%" height="15" fill="rgb(222,56,38)" fg:x="2306770" fg:w="882"/><text x="96.2215%" y="527.50"></text></g><g><title>unmap_vmas (264 samples, 0.01%)</title><rect x="95.9972%" y="501" width="0.0110%" height="15" fill="rgb(206,193,29)" fg:x="2307388" fg:w="264"/><text x="96.2472%" y="511.50"></text></g><g><title>__do_munmap (1,126 samples, 0.05%)</title><rect x="95.9615%" y="533" width="0.0468%" height="15" fill="rgb(239,192,45)" fg:x="2306530" fg:w="1126"/><text x="96.2115%" y="543.50"></text></g><g><title>__vm_munmap (1,134 samples, 0.05%)</title><rect x="95.9613%" y="549" width="0.0472%" height="15" fill="rgb(254,18,36)" fg:x="2306527" fg:w="1134"/><text x="96.2113%" y="559.50"></text></g><g><title>__x64_sys_munmap (1,138 samples, 0.05%)</title><rect x="95.9613%" y="565" width="0.0473%" height="15" fill="rgb(221,127,11)" fg:x="2306526" fg:w="1138"/><text x="96.2113%" y="575.50"></text></g><g><title>do_filp_open (512 samples, 0.02%)</title><rect x="96.0093%" y="533" width="0.0213%" height="15" fill="rgb(234,146,35)" fg:x="2307680" fg:w="512"/><text x="96.2593%" y="543.50"></text></g><g><title>path_openat (510 samples, 0.02%)</title><rect x="96.0094%" y="517" width="0.0212%" height="15" fill="rgb(254,201,37)" fg:x="2307682" fg:w="510"/><text x="96.2594%" y="527.50"></text></g><g><title>__x64_sys_open (545 samples, 0.02%)</title><rect x="96.0089%" y="565" width="0.0227%" height="15" fill="rgb(211,202,23)" fg:x="2307670" fg:w="545"/><text x="96.2589%" y="575.50"></text></g><g><title>do_sys_openat2 (542 samples, 0.02%)</title><rect x="96.0090%" y="549" width="0.0225%" height="15" fill="rgb(237,91,2)" fg:x="2307673" fg:w="542"/><text x="96.2590%" y="559.50"></text></g><g><title>__alloc_fd (532 samples, 0.02%)</title><rect x="96.0413%" y="533" width="0.0221%" height="15" fill="rgb(226,228,36)" fg:x="2308448" fg:w="532"/><text x="96.2913%" y="543.50"></text></g><g><title>___slab_alloc (322 samples, 0.01%)</title><rect x="96.1399%" y="437" width="0.0134%" height="15" fill="rgb(213,63,50)" fg:x="2310818" fg:w="322"/><text x="96.3899%" y="447.50"></text></g><g><title>__slab_alloc (352 samples, 0.01%)</title><rect x="96.1388%" y="453" width="0.0146%" height="15" fill="rgb(235,194,19)" fg:x="2310791" fg:w="352"/><text x="96.3888%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (917 samples, 0.04%)</title><rect x="96.1535%" y="453" width="0.0382%" height="15" fill="rgb(207,204,18)" fg:x="2311146" fg:w="917"/><text x="96.4035%" y="463.50"></text></g><g><title>get_obj_cgroup_from_current (540 samples, 0.02%)</title><rect x="96.2034%" y="437" width="0.0225%" height="15" fill="rgb(248,8,7)" fg:x="2312344" fg:w="540"/><text x="96.4534%" y="447.50"></text></g><g><title>obj_cgroup_charge (260 samples, 0.01%)</title><rect x="96.2258%" y="437" width="0.0108%" height="15" fill="rgb(223,145,47)" fg:x="2312884" fg:w="260"/><text x="96.4758%" y="447.50"></text></g><g><title>kmem_cache_alloc (2,726 samples, 0.11%)</title><rect x="96.1235%" y="469" width="0.1134%" height="15" fill="rgb(228,84,11)" fg:x="2310425" fg:w="2726"/><text x="96.3735%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (963 samples, 0.04%)</title><rect x="96.1969%" y="453" width="0.0401%" height="15" fill="rgb(218,76,45)" fg:x="2312188" fg:w="963"/><text x="96.4469%" y="463.50"></text></g><g><title>apparmor_file_alloc_security (499 samples, 0.02%)</title><rect x="96.2414%" y="453" width="0.0208%" height="15" fill="rgb(223,80,15)" fg:x="2313258" fg:w="499"/><text x="96.4914%" y="463.50"></text></g><g><title>__alloc_file (3,978 samples, 0.17%)</title><rect x="96.1127%" y="485" width="0.1655%" height="15" fill="rgb(219,218,33)" fg:x="2310166" fg:w="3978"/><text x="96.3627%" y="495.50"></text></g><g><title>security_file_alloc (993 samples, 0.04%)</title><rect x="96.2369%" y="469" width="0.0413%" height="15" fill="rgb(208,51,11)" fg:x="2313151" fg:w="993"/><text x="96.4869%" y="479.50"></text></g><g><title>kmem_cache_alloc (386 samples, 0.02%)</title><rect x="96.2622%" y="453" width="0.0161%" height="15" fill="rgb(229,165,39)" fg:x="2313758" fg:w="386"/><text x="96.5122%" y="463.50"></text></g><g><title>alloc_empty_file (4,099 samples, 0.17%)</title><rect x="96.1090%" y="501" width="0.1705%" height="15" fill="rgb(241,100,24)" fg:x="2310076" fg:w="4099"/><text x="96.3590%" y="511.50"></text></g><g><title>errseq_sample (417 samples, 0.02%)</title><rect x="96.2991%" y="485" width="0.0173%" height="15" fill="rgb(228,14,23)" fg:x="2314646" fg:w="417"/><text x="96.5491%" y="495.50"></text></g><g><title>apparmor_file_open (352 samples, 0.01%)</title><rect x="96.3328%" y="469" width="0.0146%" height="15" fill="rgb(247,116,52)" fg:x="2315454" fg:w="352"/><text x="96.5828%" y="479.50"></text></g><g><title>tomoyo_check_open_permission (610 samples, 0.03%)</title><rect x="96.3474%" y="469" width="0.0254%" height="15" fill="rgb(216,149,33)" fg:x="2315806" fg:w="610"/><text x="96.5974%" y="479.50"></text></g><g><title>do_dentry_open (2,271 samples, 0.09%)</title><rect x="96.2805%" y="501" width="0.0945%" height="15" fill="rgb(238,142,29)" fg:x="2314197" fg:w="2271"/><text x="96.5305%" y="511.50"></text></g><g><title>security_file_open (1,079 samples, 0.04%)</title><rect x="96.3300%" y="485" width="0.0449%" height="15" fill="rgb(224,83,40)" fg:x="2315389" fg:w="1079"/><text x="96.5800%" y="495.50"></text></g><g><title>btrfs_dentry_delete (500 samples, 0.02%)</title><rect x="96.3865%" y="485" width="0.0208%" height="15" fill="rgb(234,165,11)" fg:x="2316746" fg:w="500"/><text x="96.6365%" y="495.50"></text></g><g><title>dput (661 samples, 0.03%)</title><rect x="96.3842%" y="501" width="0.0275%" height="15" fill="rgb(215,96,23)" fg:x="2316691" fg:w="661"/><text x="96.6342%" y="511.50"></text></g><g><title>generic_permission (1,332 samples, 0.06%)</title><rect x="96.7459%" y="469" width="0.0554%" height="15" fill="rgb(233,179,26)" fg:x="2325384" fg:w="1332"/><text x="96.9959%" y="479.50"></text></g><g><title>inode_permission.part.0 (4,816 samples, 0.20%)</title><rect x="96.6010%" y="485" width="0.2004%" height="15" fill="rgb(225,129,33)" fg:x="2321901" fg:w="4816"/><text x="96.8510%" y="495.50"></text></g><g><title>security_inode_permission (492 samples, 0.02%)</title><rect x="96.8013%" y="485" width="0.0205%" height="15" fill="rgb(237,49,13)" fg:x="2326717" fg:w="492"/><text x="97.0513%" y="495.50"></text></g><g><title>dput (360 samples, 0.01%)</title><rect x="96.8763%" y="469" width="0.0150%" height="15" fill="rgb(211,3,31)" fg:x="2328518" fg:w="360"/><text x="97.1263%" y="479.50"></text></g><g><title>_raw_spin_lock (2,747 samples, 0.11%)</title><rect x="97.0540%" y="437" width="0.1143%" height="15" fill="rgb(216,152,19)" fg:x="2332789" fg:w="2747"/><text x="97.3040%" y="447.50"></text></g><g><title>__d_lookup (5,511 samples, 0.23%)</title><rect x="96.9413%" y="453" width="0.2293%" height="15" fill="rgb(251,121,35)" fg:x="2330081" fg:w="5511"/><text x="97.1913%" y="463.50"></text></g><g><title>__d_lookup_rcu (3,628 samples, 0.15%)</title><rect x="97.1706%" y="453" width="0.1509%" height="15" fill="rgb(210,217,47)" fg:x="2335592" fg:w="3628"/><text x="97.4206%" y="463.50"></text></g><g><title>lookup_fast (10,346 samples, 0.43%)</title><rect x="96.8912%" y="469" width="0.4304%" height="15" fill="rgb(244,116,22)" fg:x="2328878" fg:w="10346"/><text x="97.1412%" y="479.50"></text></g><g><title>__traverse_mounts (323 samples, 0.01%)</title><rect x="97.4164%" y="453" width="0.0134%" height="15" fill="rgb(228,17,21)" fg:x="2341500" fg:w="323"/><text x="97.6664%" y="463.50"></text></g><g><title>_cond_resched (289 samples, 0.01%)</title><rect x="97.4523%" y="437" width="0.0120%" height="15" fill="rgb(240,149,34)" fg:x="2342363" fg:w="289"/><text x="97.7023%" y="447.50"></text></g><g><title>dput (2,176 samples, 0.09%)</title><rect x="97.4352%" y="453" width="0.0905%" height="15" fill="rgb(208,125,47)" fg:x="2341952" fg:w="2176"/><text x="97.6852%" y="463.50"></text></g><g><title>lockref_put_or_lock (1,473 samples, 0.06%)</title><rect x="97.4644%" y="437" width="0.0613%" height="15" fill="rgb(249,186,39)" fg:x="2342655" fg:w="1473"/><text x="97.7144%" y="447.50"></text></g><g><title>dput (340 samples, 0.01%)</title><rect x="97.5274%" y="437" width="0.0141%" height="15" fill="rgb(240,220,33)" fg:x="2344168" fg:w="340"/><text x="97.7774%" y="447.50"></text></g><g><title>lockref_put_or_lock (264 samples, 0.01%)</title><rect x="97.5305%" y="421" width="0.0110%" height="15" fill="rgb(243,110,23)" fg:x="2344244" fg:w="264"/><text x="97.7805%" y="431.50"></text></g><g><title>nd_jump_root (644 samples, 0.03%)</title><rect x="97.5258%" y="453" width="0.0268%" height="15" fill="rgb(219,163,46)" fg:x="2344131" fg:w="644"/><text x="97.7758%" y="463.50"></text></g><g><title>do_read_cache_page (673 samples, 0.03%)</title><rect x="97.5562%" y="437" width="0.0280%" height="15" fill="rgb(216,126,30)" fg:x="2344862" fg:w="673"/><text x="97.8062%" y="447.50"></text></g><g><title>pagecache_get_page (539 samples, 0.02%)</title><rect x="97.5618%" y="421" width="0.0224%" height="15" fill="rgb(208,139,11)" fg:x="2344996" fg:w="539"/><text x="97.8118%" y="431.50"></text></g><g><title>find_get_entry (466 samples, 0.02%)</title><rect x="97.5649%" y="405" width="0.0194%" height="15" fill="rgb(213,118,36)" fg:x="2345069" fg:w="466"/><text x="97.8149%" y="415.50"></text></g><g><title>page_get_link (780 samples, 0.03%)</title><rect x="97.5526%" y="453" width="0.0325%" height="15" fill="rgb(226,43,17)" fg:x="2344775" fg:w="780"/><text x="97.8026%" y="463.50"></text></g><g><title>touch_atime (441 samples, 0.02%)</title><rect x="97.5858%" y="453" width="0.0183%" height="15" fill="rgb(254,217,4)" fg:x="2345572" fg:w="441"/><text x="97.8358%" y="463.50"></text></g><g><title>__legitimize_mnt (277 samples, 0.01%)</title><rect x="97.6083%" y="421" width="0.0115%" height="15" fill="rgb(210,134,47)" fg:x="2346114" fg:w="277"/><text x="97.8583%" y="431.50"></text></g><g><title>__legitimize_path (648 samples, 0.03%)</title><rect x="97.6070%" y="437" width="0.0270%" height="15" fill="rgb(237,24,49)" fg:x="2346082" fg:w="648"/><text x="97.8570%" y="447.50"></text></g><g><title>lockref_get_not_dead (339 samples, 0.01%)</title><rect x="97.6199%" y="421" width="0.0141%" height="15" fill="rgb(251,39,46)" fg:x="2346391" fg:w="339"/><text x="97.8699%" y="431.50"></text></g><g><title>__legitimize_mnt (382 samples, 0.02%)</title><rect x="97.6394%" y="405" width="0.0159%" height="15" fill="rgb(251,220,3)" fg:x="2346860" fg:w="382"/><text x="97.8894%" y="415.50"></text></g><g><title>legitimize_links (826 samples, 0.03%)</title><rect x="97.6340%" y="437" width="0.0344%" height="15" fill="rgb(228,105,12)" fg:x="2346730" fg:w="826"/><text x="97.8840%" y="447.50"></text></g><g><title>__legitimize_path (733 samples, 0.03%)</title><rect x="97.6378%" y="421" width="0.0305%" height="15" fill="rgb(215,196,1)" fg:x="2346823" fg:w="733"/><text x="97.8878%" y="431.50"></text></g><g><title>lockref_get_not_dead (314 samples, 0.01%)</title><rect x="97.6553%" y="405" width="0.0131%" height="15" fill="rgb(214,33,39)" fg:x="2347242" fg:w="314"/><text x="97.9053%" y="415.50"></text></g><g><title>link_path_walk.part.0 (30,224 samples, 1.26%)</title><rect x="96.4117%" y="501" width="1.2574%" height="15" fill="rgb(220,19,52)" fg:x="2317352" fg:w="30224"/><text x="96.6617%" y="511.50"></text></g><g><title>walk_component (20,367 samples, 0.85%)</title><rect x="96.8218%" y="485" width="0.8474%" height="15" fill="rgb(221,78,38)" fg:x="2327209" fg:w="20367"/><text x="97.0718%" y="495.50"></text></g><g><title>step_into (8,165 samples, 0.34%)</title><rect x="97.3295%" y="469" width="0.3397%" height="15" fill="rgb(253,30,16)" fg:x="2339411" fg:w="8165"/><text x="97.5795%" y="479.50"></text></g><g><title>try_to_unlazy (1,563 samples, 0.07%)</title><rect x="97.6041%" y="453" width="0.0650%" height="15" fill="rgb(242,65,0)" fg:x="2346013" fg:w="1563"/><text x="97.8541%" y="463.50"></text></g><g><title>__d_lookup (1,589 samples, 0.07%)</title><rect x="97.6728%" y="485" width="0.0661%" height="15" fill="rgb(235,201,12)" fg:x="2347664" fg:w="1589"/><text x="97.9228%" y="495.50"></text></g><g><title>__d_lookup_rcu (1,650 samples, 0.07%)</title><rect x="97.7389%" y="485" width="0.0686%" height="15" fill="rgb(233,161,9)" fg:x="2349253" fg:w="1650"/><text x="97.9889%" y="495.50"></text></g><g><title>lookup_fast (3,328 samples, 0.14%)</title><rect x="97.6692%" y="501" width="0.1385%" height="15" fill="rgb(241,207,41)" fg:x="2347576" fg:w="3328"/><text x="97.9192%" y="511.50"></text></g><g><title>may_open (971 samples, 0.04%)</title><rect x="97.8076%" y="501" width="0.0404%" height="15" fill="rgb(212,69,46)" fg:x="2350904" fg:w="971"/><text x="98.0576%" y="511.50"></text></g><g><title>__fget_light (325 samples, 0.01%)</title><rect x="97.8657%" y="485" width="0.0135%" height="15" fill="rgb(239,69,45)" fg:x="2352301" fg:w="325"/><text x="98.1157%" y="495.50"></text></g><g><title>__fget_files (275 samples, 0.01%)</title><rect x="97.8678%" y="469" width="0.0114%" height="15" fill="rgb(242,117,48)" fg:x="2352351" fg:w="275"/><text x="98.1178%" y="479.50"></text></g><g><title>path_init (708 samples, 0.03%)</title><rect x="97.8540%" y="501" width="0.0295%" height="15" fill="rgb(228,41,36)" fg:x="2352018" fg:w="708"/><text x="98.1040%" y="511.50"></text></g><g><title>atime_needs_update (250 samples, 0.01%)</title><rect x="97.9567%" y="485" width="0.0104%" height="15" fill="rgb(212,3,32)" fg:x="2354487" fg:w="250"/><text x="98.2067%" y="495.50"></text></g><g><title>__alloc_pages_nodemask (291 samples, 0.01%)</title><rect x="97.9890%" y="453" width="0.0121%" height="15" fill="rgb(233,41,49)" fg:x="2355264" fg:w="291"/><text x="98.2390%" y="463.50"></text></g><g><title>__add_to_page_cache_locked (248 samples, 0.01%)</title><rect x="98.0015%" y="437" width="0.0103%" height="15" fill="rgb(252,170,49)" fg:x="2355564" fg:w="248"/><text x="98.2515%" y="447.50"></text></g><g><title>add_to_page_cache_lru (337 samples, 0.01%)</title><rect x="98.0011%" y="453" width="0.0140%" height="15" fill="rgb(229,53,26)" fg:x="2355555" fg:w="337"/><text x="98.2511%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (273 samples, 0.01%)</title><rect x="98.0523%" y="325" width="0.0114%" height="15" fill="rgb(217,157,12)" fg:x="2356785" fg:w="273"/><text x="98.3023%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath (249 samples, 0.01%)</title><rect x="98.0533%" y="309" width="0.0104%" height="15" fill="rgb(227,17,9)" fg:x="2356809" fg:w="249"/><text x="98.3033%" y="319.50"></text></g><g><title>prepare_to_wait_event (313 samples, 0.01%)</title><rect x="98.0509%" y="341" width="0.0130%" height="15" fill="rgb(218,84,12)" fg:x="2356752" fg:w="313"/><text x="98.3009%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (519 samples, 0.02%)</title><rect x="98.0776%" y="293" width="0.0216%" height="15" fill="rgb(212,79,24)" fg:x="2357393" fg:w="519"/><text x="98.3276%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (505 samples, 0.02%)</title><rect x="98.0782%" y="277" width="0.0210%" height="15" fill="rgb(217,222,37)" fg:x="2357407" fg:w="505"/><text x="98.3282%" y="287.50"></text></g><g><title>native_write_msr (502 samples, 0.02%)</title><rect x="98.0783%" y="261" width="0.0209%" height="15" fill="rgb(246,208,8)" fg:x="2357410" fg:w="502"/><text x="98.3283%" y="271.50"></text></g><g><title>finish_task_switch (544 samples, 0.02%)</title><rect x="98.0771%" y="309" width="0.0226%" height="15" fill="rgb(244,133,10)" fg:x="2357381" fg:w="544"/><text x="98.3271%" y="319.50"></text></g><g><title>__btrfs_tree_read_lock (1,383 samples, 0.06%)</title><rect x="98.0457%" y="357" width="0.0575%" height="15" fill="rgb(209,219,41)" fg:x="2356626" fg:w="1383"/><text x="98.2957%" y="367.50"></text></g><g><title>schedule (718 samples, 0.03%)</title><rect x="98.0733%" y="341" width="0.0299%" height="15" fill="rgb(253,175,45)" fg:x="2357291" fg:w="718"/><text x="98.3233%" y="351.50"></text></g><g><title>__schedule (716 samples, 0.03%)</title><rect x="98.0734%" y="325" width="0.0298%" height="15" fill="rgb(235,100,37)" fg:x="2357293" fg:w="716"/><text x="98.3234%" y="335.50"></text></g><g><title>__btrfs_read_lock_root_node (1,436 samples, 0.06%)</title><rect x="98.0456%" y="373" width="0.0597%" height="15" fill="rgb(225,87,19)" fg:x="2356623" fg:w="1436"/><text x="98.2956%" y="383.50"></text></g><g><title>find_extent_buffer (255 samples, 0.01%)</title><rect x="98.1336%" y="357" width="0.0106%" height="15" fill="rgb(217,152,17)" fg:x="2358740" fg:w="255"/><text x="98.3836%" y="367.50"></text></g><g><title>read_block_for_search.isra.0 (397 samples, 0.02%)</title><rect x="98.1289%" y="373" width="0.0165%" height="15" fill="rgb(235,72,13)" fg:x="2358627" fg:w="397"/><text x="98.3789%" y="383.50"></text></g><g><title>btrfs_lookup_file_extent (2,493 samples, 0.10%)</title><rect x="98.0428%" y="405" width="0.1037%" height="15" fill="rgb(233,140,18)" fg:x="2356557" fg:w="2493"/><text x="98.2928%" y="415.50"></text></g><g><title>btrfs_search_slot (2,487 samples, 0.10%)</title><rect x="98.0431%" y="389" width="0.1035%" height="15" fill="rgb(207,212,28)" fg:x="2356563" fg:w="2487"/><text x="98.2931%" y="399.50"></text></g><g><title>btrfs_get_extent (3,263 samples, 0.14%)</title><rect x="98.0272%" y="421" width="0.1358%" height="15" fill="rgb(220,130,25)" fg:x="2356181" fg:w="3263"/><text x="98.2772%" y="431.50"></text></g><g><title>btrfs_do_readpage (3,574 samples, 0.15%)</title><rect x="98.0168%" y="437" width="0.1487%" height="15" fill="rgb(205,55,34)" fg:x="2355931" fg:w="3574"/><text x="98.2668%" y="447.50"></text></g><g><title>btrfs_readpage (3,784 samples, 0.16%)</title><rect x="98.0161%" y="453" width="0.1574%" height="15" fill="rgb(237,54,35)" fg:x="2355915" fg:w="3784"/><text x="98.2661%" y="463.50"></text></g><g><title>do_read_cache_page (4,502 samples, 0.19%)</title><rect x="97.9876%" y="469" width="0.1873%" height="15" fill="rgb(208,67,23)" fg:x="2355231" fg:w="4502"/><text x="98.2376%" y="479.50"></text></g><g><title>pagecache_get_page (694 samples, 0.03%)</title><rect x="98.1749%" y="469" width="0.0289%" height="15" fill="rgb(206,207,50)" fg:x="2359733" fg:w="694"/><text x="98.4249%" y="479.50"></text></g><g><title>find_get_entry (647 samples, 0.03%)</title><rect x="98.1769%" y="453" width="0.0269%" height="15" fill="rgb(213,211,42)" fg:x="2359780" fg:w="647"/><text x="98.4269%" y="463.50"></text></g><g><title>page_get_link (5,356 samples, 0.22%)</title><rect x="97.9811%" y="485" width="0.2228%" height="15" fill="rgb(252,197,50)" fg:x="2355073" fg:w="5356"/><text x="98.2311%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (426 samples, 0.02%)</title><rect x="98.2102%" y="437" width="0.0177%" height="15" fill="rgb(251,211,41)" fg:x="2360581" fg:w="426"/><text x="98.4602%" y="447.50"></text></g><g><title>btrfs_update_inode (474 samples, 0.02%)</title><rect x="98.2100%" y="453" width="0.0197%" height="15" fill="rgb(229,211,5)" fg:x="2360575" fg:w="474"/><text x="98.4600%" y="463.50"></text></g><g><title>btrfs_dirty_inode (743 samples, 0.03%)</title><rect x="98.2062%" y="469" width="0.0309%" height="15" fill="rgb(239,36,31)" fg:x="2360484" fg:w="743"/><text x="98.4562%" y="479.50"></text></g><g><title>touch_atime (818 samples, 0.03%)</title><rect x="98.2047%" y="485" width="0.0340%" height="15" fill="rgb(248,67,31)" fg:x="2360448" fg:w="818"/><text x="98.4547%" y="495.50"></text></g><g><title>step_into (8,568 samples, 0.36%)</title><rect x="97.8837%" y="501" width="0.3565%" height="15" fill="rgb(249,55,44)" fg:x="2352733" fg:w="8568"/><text x="98.1337%" y="511.50"></text></g><g><title>dput (489 samples, 0.02%)</title><rect x="98.2425%" y="485" width="0.0203%" height="15" fill="rgb(216,82,12)" fg:x="2361356" fg:w="489"/><text x="98.4925%" y="495.50"></text></g><g><title>lockref_put_or_lock (363 samples, 0.02%)</title><rect x="98.2477%" y="469" width="0.0151%" height="15" fill="rgb(242,174,1)" fg:x="2361482" fg:w="363"/><text x="98.4977%" y="479.50"></text></g><g><title>terminate_walk (675 samples, 0.03%)</title><rect x="98.2402%" y="501" width="0.0281%" height="15" fill="rgb(208,120,29)" fg:x="2361301" fg:w="675"/><text x="98.4902%" y="511.50"></text></g><g><title>do_filp_open (52,614 samples, 2.19%)</title><rect x="96.0805%" y="533" width="2.1890%" height="15" fill="rgb(221,105,43)" fg:x="2309392" fg:w="52614"/><text x="96.3305%" y="543.50">d..</text></g><g><title>path_openat (52,395 samples, 2.18%)</title><rect x="96.0897%" y="517" width="2.1799%" height="15" fill="rgb(234,124,22)" fg:x="2309611" fg:w="52395"/><text x="96.3397%" y="527.50">p..</text></g><g><title>memset_erms (1,065 samples, 0.04%)</title><rect x="98.3030%" y="501" width="0.0443%" height="15" fill="rgb(212,23,30)" fg:x="2362810" fg:w="1065"/><text x="98.5530%" y="511.50"></text></g><g><title>kmem_cache_alloc (1,686 samples, 0.07%)</title><rect x="98.2877%" y="517" width="0.0701%" height="15" fill="rgb(219,122,53)" fg:x="2362442" fg:w="1686"/><text x="98.5377%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (253 samples, 0.01%)</title><rect x="98.3473%" y="501" width="0.0105%" height="15" fill="rgb(248,84,24)" fg:x="2363875" fg:w="253"/><text x="98.5973%" y="511.50"></text></g><g><title>__virt_addr_valid (339 samples, 0.01%)</title><rect x="98.3867%" y="485" width="0.0141%" height="15" fill="rgb(245,115,18)" fg:x="2364822" fg:w="339"/><text x="98.6367%" y="495.50"></text></g><g><title>getname_flags.part.0 (2,876 samples, 0.12%)</title><rect x="98.2821%" y="533" width="0.1197%" height="15" fill="rgb(227,176,51)" fg:x="2362308" fg:w="2876"/><text x="98.5321%" y="543.50"></text></g><g><title>strncpy_from_user (1,056 samples, 0.04%)</title><rect x="98.3578%" y="517" width="0.0439%" height="15" fill="rgb(229,63,42)" fg:x="2364128" fg:w="1056"/><text x="98.6078%" y="527.50"></text></g><g><title>__check_object_size (621 samples, 0.03%)</title><rect x="98.3759%" y="501" width="0.0258%" height="15" fill="rgb(247,202,24)" fg:x="2364563" fg:w="621"/><text x="98.6259%" y="511.50"></text></g><g><title>kmem_cache_free (444 samples, 0.02%)</title><rect x="98.4017%" y="533" width="0.0185%" height="15" fill="rgb(244,173,20)" fg:x="2365184" fg:w="444"/><text x="98.6517%" y="543.50"></text></g><g><title>__x64_sys_openat (57,479 samples, 2.39%)</title><rect x="96.0316%" y="565" width="2.3914%" height="15" fill="rgb(242,81,47)" fg:x="2308215" fg:w="57479"/><text x="96.2816%" y="575.50">__..</text></g><g><title>do_sys_openat2 (57,409 samples, 2.39%)</title><rect x="96.0345%" y="549" width="2.3885%" height="15" fill="rgb(231,185,54)" fg:x="2308285" fg:w="57409"/><text x="96.2845%" y="559.50">do..</text></g><g><title>__fget_files (1,149 samples, 0.05%)</title><rect x="98.4796%" y="517" width="0.0478%" height="15" fill="rgb(243,55,32)" fg:x="2367056" fg:w="1149"/><text x="98.7296%" y="527.50"></text></g><g><title>__fget_light (1,342 samples, 0.06%)</title><rect x="98.4716%" y="533" width="0.0558%" height="15" fill="rgb(208,167,19)" fg:x="2366864" fg:w="1342"/><text x="98.7216%" y="543.50"></text></g><g><title>__fdget_pos (2,429 samples, 0.10%)</title><rect x="98.4582%" y="549" width="0.1011%" height="15" fill="rgb(231,72,35)" fg:x="2366541" fg:w="2429"/><text x="98.7082%" y="559.50"></text></g><g><title>mutex_lock (762 samples, 0.03%)</title><rect x="98.5275%" y="533" width="0.0317%" height="15" fill="rgb(250,173,51)" fg:x="2368208" fg:w="762"/><text x="98.7775%" y="543.50"></text></g><g><title>fput_many (516 samples, 0.02%)</title><rect x="98.5603%" y="549" width="0.0215%" height="15" fill="rgb(209,5,22)" fg:x="2368995" fg:w="516"/><text x="98.8103%" y="559.50"></text></g><g><title>mutex_unlock (622 samples, 0.03%)</title><rect x="98.5818%" y="549" width="0.0259%" height="15" fill="rgb(250,174,19)" fg:x="2369511" fg:w="622"/><text x="98.8318%" y="559.50"></text></g><g><title>__fsnotify_parent (1,043 samples, 0.04%)</title><rect x="98.6620%" y="533" width="0.0434%" height="15" fill="rgb(217,3,49)" fg:x="2371441" fg:w="1043"/><text x="98.9120%" y="543.50"></text></g><g><title>asm_exc_page_fault (334 samples, 0.01%)</title><rect x="99.1569%" y="469" width="0.0139%" height="15" fill="rgb(218,225,5)" fg:x="2383336" fg:w="334"/><text x="99.4069%" y="479.50"></text></g><g><title>copy_user_enhanced_fast_string (5,747 samples, 0.24%)</title><rect x="98.9329%" y="485" width="0.2391%" height="15" fill="rgb(236,89,11)" fg:x="2377950" fg:w="5747"/><text x="99.1829%" y="495.50"></text></g><g><title>copy_page_to_iter (7,102 samples, 0.30%)</title><rect x="98.8789%" y="501" width="0.2955%" height="15" fill="rgb(206,33,28)" fg:x="2376653" fg:w="7102"/><text x="99.1289%" y="511.50"></text></g><g><title>pagecache_get_page (3,674 samples, 0.15%)</title><rect x="99.1811%" y="501" width="0.1529%" height="15" fill="rgb(241,56,42)" fg:x="2383916" fg:w="3674"/><text x="99.4311%" y="511.50"></text></g><g><title>find_get_entry (3,070 samples, 0.13%)</title><rect x="99.2062%" y="485" width="0.1277%" height="15" fill="rgb(222,44,11)" fg:x="2384520" fg:w="3070"/><text x="99.4562%" y="495.50"></text></g><g><title>xas_load (880 samples, 0.04%)</title><rect x="99.2973%" y="469" width="0.0366%" height="15" fill="rgb(234,111,20)" fg:x="2386710" fg:w="880"/><text x="99.5473%" y="479.50"></text></g><g><title>xas_start (613 samples, 0.03%)</title><rect x="99.3084%" y="453" width="0.0255%" height="15" fill="rgb(237,77,6)" fg:x="2386977" fg:w="613"/><text x="99.5584%" y="463.50"></text></g><g><title>generic_file_buffered_read (15,085 samples, 0.63%)</title><rect x="98.7587%" y="517" width="0.6276%" height="15" fill="rgb(235,111,23)" fg:x="2373765" fg:w="15085"/><text x="99.0087%" y="527.50"></text></g><g><title>touch_atime (1,260 samples, 0.05%)</title><rect x="99.3339%" y="501" width="0.0524%" height="15" fill="rgb(251,135,29)" fg:x="2387590" fg:w="1260"/><text x="99.5839%" y="511.50"></text></g><g><title>atime_needs_update (988 samples, 0.04%)</title><rect x="99.3452%" y="485" width="0.0411%" height="15" fill="rgb(217,57,1)" fg:x="2387862" fg:w="988"/><text x="99.5952%" y="495.50"></text></g><g><title>current_time (538 samples, 0.02%)</title><rect x="99.3640%" y="469" width="0.0224%" height="15" fill="rgb(249,119,31)" fg:x="2388312" fg:w="538"/><text x="99.6140%" y="479.50"></text></g><g><title>new_sync_read (16,500 samples, 0.69%)</title><rect x="98.7057%" y="533" width="0.6865%" height="15" fill="rgb(233,164,33)" fg:x="2372490" fg:w="16500"/><text x="98.9557%" y="543.50"></text></g><g><title>aa_file_perm (339 samples, 0.01%)</title><rect x="99.4576%" y="501" width="0.0141%" height="15" fill="rgb(250,217,43)" fg:x="2390563" fg:w="339"/><text x="99.7076%" y="511.50"></text></g><g><title>apparmor_file_permission (1,170 samples, 0.05%)</title><rect x="99.4232%" y="517" width="0.0487%" height="15" fill="rgb(232,154,50)" fg:x="2389736" fg:w="1170"/><text x="99.6732%" y="527.50"></text></g><g><title>security_file_permission (1,715 samples, 0.07%)</title><rect x="99.4006%" y="533" width="0.0714%" height="15" fill="rgb(227,190,8)" fg:x="2389193" fg:w="1715"/><text x="99.6506%" y="543.50"></text></g><g><title>ksys_read (24,805 samples, 1.03%)</title><rect x="98.4400%" y="565" width="1.0320%" height="15" fill="rgb(209,217,32)" fg:x="2366104" fg:w="24805"/><text x="98.6900%" y="575.50"></text></g><g><title>vfs_read (20,776 samples, 0.86%)</title><rect x="98.6076%" y="549" width="0.8644%" height="15" fill="rgb(243,203,50)" fg:x="2370133" fg:w="20776"/><text x="98.8576%" y="559.50"></text></g><g><title>syscall_enter_from_user_mode (247 samples, 0.01%)</title><rect x="99.4727%" y="565" width="0.0103%" height="15" fill="rgb(232,152,27)" fg:x="2390925" fg:w="247"/><text x="99.7227%" y="575.50"></text></g><g><title>do_mmap (509 samples, 0.02%)</title><rect x="99.4833%" y="549" width="0.0212%" height="15" fill="rgb(240,34,29)" fg:x="2391181" fg:w="509"/><text x="99.7333%" y="559.50"></text></g><g><title>mmap_region (405 samples, 0.02%)</title><rect x="99.4876%" y="533" width="0.0168%" height="15" fill="rgb(215,185,52)" fg:x="2391285" fg:w="405"/><text x="99.7376%" y="543.50"></text></g><g><title>do_syscall_64 (97,790 samples, 4.07%)</title><rect x="95.4399%" y="581" width="4.0685%" height="15" fill="rgb(240,89,49)" fg:x="2293993" fg:w="97790"/><text x="95.6899%" y="591.50">do_s..</text></g><g><title>vm_mmap_pgoff (611 samples, 0.03%)</title><rect x="99.4829%" y="565" width="0.0254%" height="15" fill="rgb(225,12,52)" fg:x="2391172" fg:w="611"/><text x="99.7329%" y="575.50"></text></g><g><title>btrfs_release_file (578 samples, 0.02%)</title><rect x="99.5923%" y="517" width="0.0240%" height="15" fill="rgb(239,128,45)" fg:x="2393800" fg:w="578"/><text x="99.8423%" y="527.50"></text></g><g><title>dput (352 samples, 0.01%)</title><rect x="99.6163%" y="517" width="0.0146%" height="15" fill="rgb(211,78,47)" fg:x="2394378" fg:w="352"/><text x="99.8663%" y="527.50"></text></g><g><title>kmem_cache_free (332 samples, 0.01%)</title><rect x="99.6310%" y="517" width="0.0138%" height="15" fill="rgb(232,31,21)" fg:x="2394731" fg:w="332"/><text x="99.8810%" y="527.50"></text></g><g><title>__fput (2,378 samples, 0.10%)</title><rect x="99.5754%" y="533" width="0.0989%" height="15" fill="rgb(222,168,14)" fg:x="2393394" fg:w="2378"/><text x="99.8254%" y="543.50"></text></g><g><title>security_file_free (335 samples, 0.01%)</title><rect x="99.6604%" y="517" width="0.0139%" height="15" fill="rgb(209,128,24)" fg:x="2395437" fg:w="335"/><text x="99.9104%" y="527.50"></text></g><g><title>apparmor_file_free_security (267 samples, 0.01%)</title><rect x="99.6632%" y="501" width="0.0111%" height="15" fill="rgb(249,35,13)" fg:x="2395505" fg:w="267"/><text x="99.9132%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103,074 samples, 4.29%)</title><rect x="95.4119%" y="597" width="4.2883%" height="15" fill="rgb(218,7,2)" fg:x="2293321" fg:w="103074"/><text x="95.6619%" y="607.50">entry..</text></g><g><title>syscall_exit_to_user_mode (4,612 samples, 0.19%)</title><rect x="99.5084%" y="581" width="0.1919%" height="15" fill="rgb(238,107,27)" fg:x="2391783" fg:w="4612"/><text x="99.7584%" y="591.50"></text></g><g><title>exit_to_user_mode_prepare (4,314 samples, 0.18%)</title><rect x="99.5208%" y="565" width="0.1795%" height="15" fill="rgb(217,88,38)" fg:x="2392081" fg:w="4314"/><text x="99.7708%" y="575.50"></text></g><g><title>task_work_run (3,163 samples, 0.13%)</title><rect x="99.5686%" y="549" width="0.1316%" height="15" fill="rgb(230,207,0)" fg:x="2393232" fg:w="3163"/><text x="99.8186%" y="559.50"></text></g><g><title>call_rcu (538 samples, 0.02%)</title><rect x="99.6779%" y="533" width="0.0224%" height="15" fill="rgb(249,64,54)" fg:x="2395857" fg:w="538"/><text x="99.9279%" y="543.50"></text></g><g><title>error_entry (412 samples, 0.02%)</title><rect x="99.7002%" y="597" width="0.0171%" height="15" fill="rgb(231,7,11)" fg:x="2396395" fg:w="412"/><text x="99.9502%" y="607.50"></text></g><g><title>sync_regs (361 samples, 0.02%)</title><rect x="99.7024%" y="581" width="0.0150%" height="15" fill="rgb(205,149,21)" fg:x="2396446" fg:w="361"/><text x="99.9524%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (2,279 samples, 0.09%)</title><rect x="99.7262%" y="549" width="0.0948%" height="15" fill="rgb(215,126,34)" fg:x="2397019" fg:w="2279"/><text x="99.9762%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,256 samples, 0.09%)</title><rect x="99.7272%" y="533" width="0.0939%" height="15" fill="rgb(241,132,45)" fg:x="2397042" fg:w="2256"/><text x="99.9772%" y="543.50"></text></g><g><title>native_write_msr (2,246 samples, 0.09%)</title><rect x="99.7276%" y="517" width="0.0934%" height="15" fill="rgb(252,69,32)" fg:x="2397052" fg:w="2246"/><text x="99.9776%" y="527.50"></text></g><g><title>schedule_tail (2,414 samples, 0.10%)</title><rect x="99.7238%" y="581" width="0.1004%" height="15" fill="rgb(232,204,19)" fg:x="2396962" fg:w="2414"/><text x="99.9738%" y="591.50"></text></g><g><title>finish_task_switch (2,409 samples, 0.10%)</title><rect x="99.7240%" y="565" width="0.1002%" height="15" fill="rgb(249,15,47)" fg:x="2396967" fg:w="2409"/><text x="99.9740%" y="575.50"></text></g><g><title>ret_from_fork (2,551 samples, 0.11%)</title><rect x="99.7211%" y="597" width="0.1061%" height="15" fill="rgb(209,227,23)" fg:x="2396897" fg:w="2551"/><text x="99.9711%" y="607.50"></text></g><g><title>syscall_return_via_sysret (824 samples, 0.03%)</title><rect x="99.8273%" y="597" width="0.0343%" height="15" fill="rgb(248,92,24)" fg:x="2399448" fg:w="824"/><text x="100.0773%" y="607.50"></text></g><g><title>[zig] (165,551 samples, 6.89%)</title><rect x="92.9741%" y="613" width="6.8876%" height="15" fill="rgb(247,59,2)" fg:x="2234726" fg:w="165551"/><text x="93.2241%" y="623.50">[zig]</text></g><g><title>asm_exc_page_fault (931 samples, 0.04%)</title><rect x="99.8620%" y="613" width="0.0387%" height="15" fill="rgb(221,30,5)" fg:x="2400283" fg:w="931"/><text x="100.1120%" y="623.50"></text></g><g><title>exit_mmap (356 samples, 0.01%)</title><rect x="99.9130%" y="485" width="0.0148%" height="15" fill="rgb(208,108,53)" fg:x="2401508" fg:w="356"/><text x="100.1630%" y="495.50"></text></g><g><title>unmap_vmas (280 samples, 0.01%)</title><rect x="99.9161%" y="469" width="0.0116%" height="15" fill="rgb(211,183,26)" fg:x="2401584" fg:w="280"/><text x="100.1661%" y="479.50"></text></g><g><title>unmap_page_range (279 samples, 0.01%)</title><rect x="99.9162%" y="453" width="0.0116%" height="15" fill="rgb(232,132,4)" fg:x="2401585" fg:w="279"/><text x="100.1662%" y="463.50"></text></g><g><title>mmput (360 samples, 0.01%)</title><rect x="99.9129%" y="501" width="0.0150%" height="15" fill="rgb(253,128,37)" fg:x="2401506" fg:w="360"/><text x="100.1629%" y="511.50"></text></g><g><title>begin_new_exec (370 samples, 0.02%)</title><rect x="99.9126%" y="517" width="0.0154%" height="15" fill="rgb(221,58,24)" fg:x="2401499" fg:w="370"/><text x="100.1626%" y="527.50"></text></g><g><title>__x64_sys_execve (428 samples, 0.02%)</title><rect x="99.9116%" y="581" width="0.0178%" height="15" fill="rgb(230,54,45)" fg:x="2401476" fg:w="428"/><text x="100.1616%" y="591.50"></text></g><g><title>do_execveat_common (428 samples, 0.02%)</title><rect x="99.9116%" y="565" width="0.0178%" height="15" fill="rgb(254,21,18)" fg:x="2401476" fg:w="428"/><text x="100.1616%" y="575.50"></text></g><g><title>bprm_execve (428 samples, 0.02%)</title><rect x="99.9116%" y="549" width="0.0178%" height="15" fill="rgb(221,108,0)" fg:x="2401476" fg:w="428"/><text x="100.1616%" y="559.50"></text></g><g><title>load_elf_binary (428 samples, 0.02%)</title><rect x="99.9116%" y="533" width="0.0178%" height="15" fill="rgb(206,95,1)" fg:x="2401476" fg:w="428"/><text x="100.1616%" y="543.50"></text></g><g><title>mmput (707 samples, 0.03%)</title><rect x="99.9308%" y="533" width="0.0294%" height="15" fill="rgb(237,52,5)" fg:x="2401936" fg:w="707"/><text x="100.1808%" y="543.50"></text></g><g><title>exit_mmap (707 samples, 0.03%)</title><rect x="99.9308%" y="517" width="0.0294%" height="15" fill="rgb(218,150,34)" fg:x="2401936" fg:w="707"/><text x="100.1808%" y="527.50"></text></g><g><title>unmap_vmas (534 samples, 0.02%)</title><rect x="99.9380%" y="501" width="0.0222%" height="15" fill="rgb(235,194,28)" fg:x="2402109" fg:w="534"/><text x="100.1880%" y="511.50"></text></g><g><title>unmap_page_range (533 samples, 0.02%)</title><rect x="99.9380%" y="485" width="0.0222%" height="15" fill="rgb(245,92,18)" fg:x="2402110" fg:w="533"/><text x="100.1880%" y="495.50"></text></g><g><title>__x64_sys_exit_group (719 samples, 0.03%)</title><rect x="99.9304%" y="581" width="0.0299%" height="15" fill="rgb(253,203,53)" fg:x="2401927" fg:w="719"/><text x="100.1804%" y="591.50"></text></g><g><title>do_group_exit (719 samples, 0.03%)</title><rect x="99.9304%" y="565" width="0.0299%" height="15" fill="rgb(249,185,47)" fg:x="2401927" fg:w="719"/><text x="100.1804%" y="575.50"></text></g><g><title>do_exit (719 samples, 0.03%)</title><rect x="99.9304%" y="549" width="0.0299%" height="15" fill="rgb(252,194,52)" fg:x="2401927" fg:w="719"/><text x="100.1804%" y="559.50"></text></g><g><title>do_syscall_64 (1,178 samples, 0.05%)</title><rect x="99.9116%" y="597" width="0.0490%" height="15" fill="rgb(210,53,36)" fg:x="2401476" fg:w="1178"/><text x="100.1616%" y="607.50"></text></g><g><title>mmput (322 samples, 0.01%)</title><rect x="99.9634%" y="501" width="0.0134%" height="15" fill="rgb(237,37,25)" fg:x="2402721" fg:w="322"/><text x="100.2134%" y="511.50"></text></g><g><title>exit_mmap (319 samples, 0.01%)</title><rect x="99.9636%" y="485" width="0.0133%" height="15" fill="rgb(242,116,27)" fg:x="2402724" fg:w="319"/><text x="100.2136%" y="495.50"></text></g><g><title>unmap_vmas (252 samples, 0.01%)</title><rect x="99.9663%" y="469" width="0.0105%" height="15" fill="rgb(213,185,26)" fg:x="2402791" fg:w="252"/><text x="100.2163%" y="479.50"></text></g><g><title>unmap_page_range (251 samples, 0.01%)</title><rect x="99.9664%" y="453" width="0.0104%" height="15" fill="rgb(225,204,8)" fg:x="2402792" fg:w="251"/><text x="100.2164%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,823 samples, 0.08%)</title><rect x="99.9014%" y="613" width="0.0758%" height="15" fill="rgb(254,111,37)" fg:x="2401231" fg:w="1823"/><text x="100.1514%" y="623.50"></text></g><g><title>syscall_exit_to_user_mode (400 samples, 0.02%)</title><rect x="99.9606%" y="597" width="0.0166%" height="15" fill="rgb(242,35,9)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="607.50"></text></g><g><title>exit_to_user_mode_prepare (400 samples, 0.02%)</title><rect x="99.9606%" y="581" width="0.0166%" height="15" fill="rgb(232,138,49)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="591.50"></text></g><g><title>arch_do_signal (400 samples, 0.02%)</title><rect x="99.9606%" y="565" width="0.0166%" height="15" fill="rgb(247,56,4)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="575.50"></text></g><g><title>get_signal (400 samples, 0.02%)</title><rect x="99.9606%" y="549" width="0.0166%" height="15" fill="rgb(226,179,17)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="559.50"></text></g><g><title>do_group_exit (400 samples, 0.02%)</title><rect x="99.9606%" y="533" width="0.0166%" height="15" fill="rgb(216,163,45)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="543.50"></text></g><g><title>do_exit (400 samples, 0.02%)</title><rect x="99.9606%" y="517" width="0.0166%" height="15" fill="rgb(211,157,3)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="527.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (405 samples, 0.02%)</title><rect x="99.9773%" y="613" width="0.0168%" height="15" fill="rgb(234,44,20)" fg:x="2403054" fg:w="405"/><text x="100.2273%" y="623.50"></text></g><g><title>all (2,403,600 samples, 100%)</title><rect x="0.0000%" y="645" width="100.0000%" height="15" fill="rgb(254,138,23)" fg:x="0" fg:w="2403600"/><text x="0.2500%" y="655.50"></text></g><g><title>zig (169,117 samples, 7.04%)</title><rect x="92.9640%" y="629" width="7.0360%" height="15" fill="rgb(206,119,39)" fg:x="2234483" fg:w="169117"/><text x="93.2140%" y="639.50">zig</text></g></svg></svg> |