1
Fork 0
test-zig-cc/results/llvm.svg

414 lines
937 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="710" onload="init(evt)" viewBox="0 0 1200 710" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { 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;
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");
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);
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.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
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();
if (!isEdge) {
svg.removeAttribute("viewBox");
}
}, 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 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 (/^ *\$/.test(txt) || 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;
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);
update_text(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);
update_text(e);
}
}
}
}
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(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="710" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="693.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="693.00"> </text><svg id="frames" x="10" width="1180" total_samples="2322316"><g><title>[anon] (1,714 samples, 0.07%)</title><rect x="0.0056%" y="629" width="0.0738%" height="15" fill="rgb(227,0,7)" fg:x="130" fg:w="1714"/><text x="0.2556%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (236 samples, 0.01%)</title><rect x="0.1125%" y="421" width="0.0102%" height="15" fill="rgb(217,0,24)" fg:x="2612" fg:w="236"/><text x="0.3625%" y="431.50"></text></g><g><title>BlockBegin::iterate_preorder (235 samples, 0.01%)</title><rect x="0.1125%" y="405" width="0.0101%" height="15" fill="rgb(221,193,54)" fg:x="2613" fg:w="235"/><text x="0.3625%" y="415.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (459 samples, 0.02%)</title><rect x="0.1093%" y="437" width="0.0198%" height="15" fill="rgb(248,212,6)" fg:x="2538" fg:w="459"/><text x="0.3593%" y="447.50"></text></g><g><title>GraphBuilder::access_field (240 samples, 0.01%)</title><rect x="0.1523%" y="373" width="0.0103%" height="15" fill="rgb(208,68,35)" fg:x="3538" fg:w="240"/><text x="0.4023%" y="383.50"></text></g><g><title>GraphBuilder::invoke (247 samples, 0.01%)</title><rect x="0.2116%" y="133" width="0.0106%" height="15" fill="rgb(232,128,0)" fg:x="4915" fg:w="247"/><text x="0.4616%" y="143.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (357 samples, 0.02%)</title><rect x="0.2077%" y="165" width="0.0154%" height="15" fill="rgb(207,160,47)" fg:x="4823" fg:w="357"/><text x="0.4577%" y="175.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (355 samples, 0.02%)</title><rect x="0.2078%" y="149" width="0.0153%" height="15" fill="rgb(228,23,34)" fg:x="4825" fg:w="355"/><text x="0.4578%" y="159.50"></text></g><g><title>GraphBuilder::try_inline_full (468 samples, 0.02%)</title><rect x="0.2067%" y="181" width="0.0202%" height="15" fill="rgb(218,30,26)" fg:x="4800" fg:w="468"/><text x="0.4567%" y="191.50"></text></g><g><title>GraphBuilder::try_inline (536 samples, 0.02%)</title><rect x="0.2063%" y="197" width="0.0231%" height="15" fill="rgb(220,122,19)" fg:x="4791" fg:w="536"/><text x="0.4563%" y="207.50"></text></g><g><title>GraphBuilder::invoke (720 samples, 0.03%)</title><rect x="0.2055%" y="213" width="0.0310%" height="15" fill="rgb(250,228,42)" fg:x="4773" fg:w="720"/><text x="0.4555%" y="223.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (974 samples, 0.04%)</title><rect x="0.1972%" y="245" width="0.0419%" height="15" fill="rgb(240,193,28)" fg:x="4580" fg:w="974"/><text x="0.4472%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (960 samples, 0.04%)</title><rect x="0.1978%" y="229" width="0.0413%" height="15" fill="rgb(216,20,37)" fg:x="4594" fg:w="960"/><text x="0.4478%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (1,201 samples, 0.05%)</title><rect x="0.1961%" y="261" width="0.0517%" height="15" fill="rgb(206,188,39)" fg:x="4554" fg:w="1201"/><text x="0.4461%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (1,254 samples, 0.05%)</title><rect x="0.1959%" y="277" width="0.0540%" height="15" fill="rgb(217,207,13)" fg:x="4549" fg:w="1254"/><text x="0.4459%" y="287.50"></text></g><g><title>GraphBuilder::invoke (1,597 samples, 0.07%)</title><rect x="0.1942%" y="293" width="0.0688%" height="15" fill="rgb(231,73,38)" fg:x="4511" fg:w="1597"/><text x="0.4442%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,050 samples, 0.09%)</title><rect x="0.1785%" y="325" width="0.0883%" height="15" fill="rgb(225,20,46)" fg:x="4146" fg:w="2050"/><text x="0.4285%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,038 samples, 0.09%)</title><rect x="0.1790%" y="309" width="0.0878%" height="15" fill="rgb(210,31,41)" fg:x="4158" fg:w="2038"/><text x="0.4290%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (2,544 samples, 0.11%)</title><rect x="0.1748%" y="341" width="0.1095%" height="15" fill="rgb(221,200,47)" fg:x="4059" fg:w="2544"/><text x="0.4248%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (2,570 samples, 0.11%)</title><rect x="0.1740%" y="357" width="0.1107%" height="15" fill="rgb(226,26,5)" fg:x="4040" fg:w="2570"/><text x="0.4240%" y="367.50"></text></g><g><title>ciObjectFactory::get_metadata (240 samples, 0.01%)</title><rect x="0.2962%" y="325" width="0.0103%" height="15" fill="rgb(249,33,26)" fg:x="6878" fg:w="240"/><text x="0.5462%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (445 samples, 0.02%)</title><rect x="0.2878%" y="357" width="0.0192%" height="15" fill="rgb(235,183,28)" fg:x="6683" fg:w="445"/><text x="0.5378%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (411 samples, 0.02%)</title><rect x="0.2892%" y="341" width="0.0177%" height="15" fill="rgb(221,5,38)" fg:x="6717" fg:w="411"/><text x="0.5392%" y="351.50"></text></g><g><title>GraphBuilder::invoke (3,316 samples, 0.14%)</title><rect x="0.1688%" y="373" width="0.1428%" height="15" fill="rgb(247,18,42)" fg:x="3919" fg:w="3316"/><text x="0.4188%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,924 samples, 0.17%)</title><rect x="0.1465%" y="389" width="0.1690%" height="15" fill="rgb(241,131,45)" fg:x="3403" fg:w="3924"/><text x="0.3965%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,987 samples, 0.17%)</title><rect x="0.1446%" y="405" width="0.1717%" height="15" fill="rgb(249,31,29)" fg:x="3358" fg:w="3987"/><text x="0.3946%" y="415.50"></text></g><g><title>GraphBuilder::GraphBuilder (4,401 samples, 0.19%)</title><rect x="0.1292%" y="421" width="0.1895%" height="15" fill="rgb(225,111,53)" fg:x="3001" fg:w="4401"/><text x="0.3792%" y="431.50"></text></g><g><title>IR::IR (4,427 samples, 0.19%)</title><rect x="0.1291%" y="437" width="0.1906%" height="15" fill="rgb(238,160,17)" fg:x="2997" fg:w="4427"/><text x="0.3791%" y="447.50"></text></g><g><title>Compilation::build_hir (5,498 samples, 0.24%)</title><rect x="0.1089%" y="453" width="0.2367%" height="15" fill="rgb(214,148,48)" fg:x="2530" fg:w="5498"/><text x="0.3589%" y="463.50"></text></g><g><title>LIR_Assembler::emit_code (795 samples, 0.03%)</title><rect x="0.3471%" y="437" width="0.0342%" height="15" fill="rgb(232,36,49)" fg:x="8061" fg:w="795"/><text x="0.5971%" y="447.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (399 samples, 0.02%)</title><rect x="0.3843%" y="437" width="0.0172%" height="15" fill="rgb(209,103,24)" fg:x="8924" fg:w="399"/><text x="0.6343%" y="447.50"></text></g><g><title>Compilation::emit_code_body (1,317 samples, 0.06%)</title><rect x="0.3457%" y="453" width="0.0567%" height="15" fill="rgb(229,88,8)" fg:x="8028" fg:w="1317"/><text x="0.5957%" y="463.50"></text></g><g><title>LIRGenerator::move_to_phi (290 samples, 0.01%)</title><rect x="0.4125%" y="389" width="0.0125%" height="15" fill="rgb(213,181,19)" fg:x="9579" fg:w="290"/><text x="0.6625%" y="399.50"></text></g><g><title>LIRGenerator::do_Goto (310 samples, 0.01%)</title><rect x="0.4119%" y="405" width="0.0133%" height="15" fill="rgb(254,191,54)" fg:x="9566" fg:w="310"/><text x="0.6619%" y="415.50"></text></g><g><title>LIRGenerator::block_do (1,159 samples, 0.05%)</title><rect x="0.4030%" y="421" width="0.0499%" height="15" fill="rgb(241,83,37)" fg:x="9359" fg:w="1159"/><text x="0.6530%" y="431.50"></text></g><g><title>BlockList::iterate_forward (1,165 samples, 0.05%)</title><rect x="0.4028%" y="437" width="0.0502%" height="15" fill="rgb(233,36,39)" fg:x="9354" fg:w="1165"/><text x="0.6528%" y="447.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (564 samples, 0.02%)</title><rect x="0.4679%" y="373" width="0.0243%" height="15" fill="rgb(226,3,54)" fg:x="10866" fg:w="564"/><text x="0.7179%" y="383.50"></text></g><g><title>LinearScanWalker::activate_current (885 samples, 0.04%)</title><rect x="0.4663%" y="389" width="0.0381%" height="15" fill="rgb(245,192,40)" fg:x="10828" fg:w="885"/><text x="0.7163%" y="399.50"></text></g><g><title>IntervalWalker::walk_to (1,091 samples, 0.05%)</title><rect x="0.4575%" y="405" width="0.0470%" height="15" fill="rgb(238,167,29)" fg:x="10624" fg:w="1091"/><text x="0.7075%" y="415.50"></text></g><g><title>LinearScan::allocate_registers (1,192 samples, 0.05%)</title><rect x="0.4568%" y="421" width="0.0513%" height="15" fill="rgb(232,182,51)" fg:x="10608" fg:w="1192"/><text x="0.7068%" y="431.50"></text></g><g><title>LinearScan::compute_oop_map (234 samples, 0.01%)</title><rect x="0.5338%" y="389" width="0.0101%" height="15" fill="rgb(231,60,39)" fg:x="12397" fg:w="234"/><text x="0.7838%" y="399.50"></text></g><g><title>LinearScan::assign_reg_num (823 samples, 0.04%)</title><rect x="0.5085%" y="405" width="0.0354%" height="15" fill="rgb(208,69,12)" fg:x="11810" fg:w="823"/><text x="0.7585%" y="415.50"></text></g><g><title>LinearScan::assign_reg_num (863 samples, 0.04%)</title><rect x="0.5081%" y="421" width="0.0372%" height="15" fill="rgb(235,93,37)" fg:x="11800" fg:w="863"/><text x="0.7581%" y="431.50"></text></g><g><title>LinearScan::build_intervals (961 samples, 0.04%)</title><rect x="0.5453%" y="421" width="0.0414%" height="15" fill="rgb(213,116,39)" fg:x="12663" fg:w="961"/><text x="0.7953%" y="431.50"></text></g><g><title>LinearScan::compute_local_live_sets (349 samples, 0.02%)</title><rect x="0.5901%" y="421" width="0.0150%" height="15" fill="rgb(222,207,29)" fg:x="13703" fg:w="349"/><text x="0.8401%" y="431.50"></text></g><g><title>LinearScan::do_linear_scan (3,930 samples, 0.17%)</title><rect x="0.4557%" y="437" width="0.1692%" height="15" fill="rgb(206,96,30)" fg:x="10583" fg:w="3930"/><text x="0.7057%" y="447.50"></text></g><g><title>Compilation::emit_lir (5,174 samples, 0.22%)</title><rect x="0.4024%" y="453" width="0.2228%" height="15" fill="rgb(218,138,4)" fg:x="9345" fg:w="5174"/><text x="0.6524%" y="463.50"></text></g><g><title>Compilation::compile_java_method (12,178 samples, 0.52%)</title><rect x="0.1084%" y="469" width="0.5244%" height="15" fill="rgb(250,191,14)" fg:x="2517" fg:w="12178"/><text x="0.3584%" y="479.50"></text></g><g><title>nmethod::nmethod (353 samples, 0.02%)</title><rect x="0.6496%" y="437" width="0.0152%" height="15" fill="rgb(239,60,40)" fg:x="15086" fg:w="353"/><text x="0.8996%" y="447.50"></text></g><g><title>nmethod::new_nmethod (618 samples, 0.03%)</title><rect x="0.6383%" y="453" width="0.0266%" height="15" fill="rgb(206,27,48)" fg:x="14824" fg:w="618"/><text x="0.8883%" y="463.50"></text></g><g><title>ciEnv::register_method (699 samples, 0.03%)</title><rect x="0.6349%" y="469" width="0.0301%" height="15" fill="rgb(225,35,8)" fg:x="14744" fg:w="699"/><text x="0.8849%" y="479.50"></text></g><g><title>Compilation::compile_method (12,935 samples, 0.56%)</title><rect x="0.1081%" y="485" width="0.5570%" height="15" fill="rgb(250,213,24)" fg:x="2511" fg:w="12935"/><text x="0.3581%" y="495.50"></text></g><g><title>Compilation::Compilation (12,954 samples, 0.56%)</title><rect x="0.1078%" y="501" width="0.5578%" height="15" fill="rgb(247,123,22)" fg:x="2503" fg:w="12954"/><text x="0.3578%" y="511.50"></text></g><g><title>Compiler::compile_method (12,986 samples, 0.56%)</title><rect x="0.1065%" y="517" width="0.5592%" height="15" fill="rgb(231,138,38)" fg:x="2474" fg:w="12986"/><text x="0.3565%" y="527.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (13,650 samples, 0.59%)</title><rect x="0.0940%" y="533" width="0.5878%" height="15" fill="rgb(231,145,46)" fg:x="2184" fg:w="13650"/><text x="0.3440%" y="543.50"></text></g><g><title>CompileQueue::get (278 samples, 0.01%)</title><rect x="0.6842%" y="533" width="0.0120%" height="15" fill="rgb(251,118,11)" fg:x="15890" fg:w="278"/><text x="0.9342%" y="543.50"></text></g><g><title>__clone3 (14,035 samples, 0.60%)</title><rect x="0.0925%" y="629" width="0.6044%" height="15" fill="rgb(217,147,25)" fg:x="2147" fg:w="14035"/><text x="0.3425%" y="639.50"></text></g><g><title>start_thread (14,015 samples, 0.60%)</title><rect x="0.0933%" y="613" width="0.6035%" height="15" fill="rgb(247,81,37)" fg:x="2167" fg:w="14015"/><text x="0.3433%" y="623.50"></text></g><g><title>thread_native_entry (14,013 samples, 0.60%)</title><rect x="0.0934%" y="597" width="0.6034%" height="15" fill="rgb(209,12,38)" fg:x="2169" fg:w="14013"/><text x="0.3434%" y="607.50"></text></g><g><title>Thread::call_run (14,005 samples, 0.60%)</title><rect x="0.0937%" y="581" width="0.6031%" height="15" fill="rgb(227,1,9)" fg:x="2177" fg:w="14005"/><text x="0.3437%" y="591.50"></text></g><g><title>JavaThread::thread_main_inner (14,003 samples, 0.60%)</title><rect x="0.0938%" y="565" width="0.6030%" height="15" fill="rgb(248,47,43)" fg:x="2179" fg:w="14003"/><text x="0.3438%" y="575.50"></text></g><g><title>CompileBroker::compiler_thread_loop (14,003 samples, 0.60%)</title><rect x="0.0938%" y="549" width="0.6030%" height="15" fill="rgb(221,10,30)" fg:x="2179" fg:w="14003"/><text x="0.3438%" y="559.50"></text></g><g><title>C1_CompilerThre (16,195 samples, 0.70%)</title><rect x="0.0025%" y="645" width="0.6974%" height="15" fill="rgb(210,229,1)" fg:x="58" fg:w="16195"/><text x="0.2525%" y="655.50"></text></g><g><title>_dl_update_slotinfo (328 samples, 0.01%)</title><rect x="0.8605%" y="613" width="0.0141%" height="15" fill="rgb(222,148,37)" fg:x="19984" fg:w="328"/><text x="1.1105%" y="623.50"></text></g><g><title>[anon] (4,553 samples, 0.20%)</title><rect x="0.7176%" y="629" width="0.1961%" height="15" fill="rgb(234,67,33)" fg:x="16665" fg:w="4553"/><text x="0.9676%" y="639.50"></text></g><g><title>Parse::do_one_block (396 samples, 0.02%)</title><rect x="0.9594%" y="245" width="0.0171%" height="15" fill="rgb(247,98,35)" fg:x="22280" fg:w="396"/><text x="1.2094%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (393 samples, 0.02%)</title><rect x="0.9595%" y="229" width="0.0169%" height="15" fill="rgb(247,138,52)" fg:x="22283" fg:w="393"/><text x="1.2095%" y="239.50"></text></g><g><title>Parse::do_all_blocks (407 samples, 0.02%)</title><rect x="0.9593%" y="261" width="0.0175%" height="15" fill="rgb(213,79,30)" fg:x="22277" fg:w="407"/><text x="1.2093%" y="271.50"></text></g><g><title>ParseGenerator::generate (477 samples, 0.02%)</title><rect x="0.9578%" y="293" width="0.0205%" height="15" fill="rgb(246,177,23)" fg:x="22242" fg:w="477"/><text x="1.2078%" y="303.50"></text></g><g><title>Parse::Parse (477 samples, 0.02%)</title><rect x="0.9578%" y="277" width="0.0205%" height="15" fill="rgb(230,62,27)" fg:x="22242" fg:w="477"/><text x="1.2078%" y="287.50"></text></g><g><title>Parse::do_call (731 samples, 0.03%)</title><rect x="0.9504%" y="309" width="0.0315%" height="15" fill="rgb(216,154,8)" fg:x="22072" fg:w="731"/><text x="1.2004%" y="319.50"></text></g><g><title>Parse::do_one_block (1,064 samples, 0.05%)</title><rect x="0.9475%" y="341" width="0.0458%" height="15" fill="rgb(244,35,45)" fg:x="22005" fg:w="1064"/><text x="1.1975%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (1,051 samples, 0.05%)</title><rect x="0.9481%" y="325" width="0.0453%" height="15" fill="rgb(251,115,12)" fg:x="22018" fg:w="1051"/><text x="1.1981%" y="335.50"></text></g><g><title>Parse::do_all_blocks (1,087 samples, 0.05%)</title><rect x="0.9473%" y="357" width="0.0468%" height="15" fill="rgb(240,54,50)" fg:x="21999" fg:w="1087"/><text x="1.1973%" y="367.50"></text></g><g><title>ParseGenerator::generate (1,188 samples, 0.05%)</title><rect x="0.9450%" y="389" width="0.0512%" height="15" fill="rgb(233,84,52)" fg:x="21946" fg:w="1188"/><text x="1.1950%" y="399.50"></text></g><g><title>Parse::Parse (1,188 samples, 0.05%)</title><rect x="0.9450%" y="373" width="0.0512%" height="15" fill="rgb(207,117,47)" fg:x="21946" fg:w="1188"/><text x="1.1950%" y="383.50"></text></g><g><title>Parse::do_call (1,766 samples, 0.08%)</title><rect x="0.9305%" y="405" width="0.0760%" height="15" fill="rgb(249,43,39)" fg:x="21609" fg:w="1766"/><text x="1.1805%" y="415.50"></text></g><g><title>Parse::do_one_block (2,013 samples, 0.09%)</title><rect x="0.9290%" y="437" width="0.0867%" height="15" fill="rgb(209,38,44)" fg:x="21575" fg:w="2013"/><text x="1.1790%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (2,008 samples, 0.09%)</title><rect x="0.9292%" y="421" width="0.0865%" height="15" fill="rgb(236,212,23)" fg:x="21580" fg:w="2008"/><text x="1.1792%" y="431.50"></text></g><g><title>Parse::do_all_blocks (2,015 samples, 0.09%)</title><rect x="0.9290%" y="453" width="0.0868%" height="15" fill="rgb(242,79,21)" fg:x="21575" fg:w="2015"/><text x="1.1790%" y="463.50"></text></g><g><title>ParseGenerator::generate (2,038 samples, 0.09%)</title><rect x="0.9282%" y="485" width="0.0878%" height="15" fill="rgb(211,96,35)" fg:x="21556" fg:w="2038"/><text x="1.1782%" y="495.50"></text></g><g><title>Parse::Parse (2,038 samples, 0.09%)</title><rect x="0.9282%" y="469" width="0.0878%" height="15" fill="rgb(253,215,40)" fg:x="21556" fg:w="2038"/><text x="1.1782%" y="479.50"></text></g><g><title>Parse::do_one_block (237 samples, 0.01%)</title><rect x="1.0203%" y="325" width="0.0102%" height="15" fill="rgb(211,81,21)" fg:x="23694" fg:w="237"/><text x="1.2703%" y="335.50"></text></g><g><title>Parse::do_all_blocks (243 samples, 0.01%)</title><rect x="1.0203%" y="341" width="0.0105%" height="15" fill="rgb(208,190,38)" fg:x="23694" fg:w="243"/><text x="1.2703%" y="351.50"></text></g><g><title>ParseGenerator::generate (264 samples, 0.01%)</title><rect x="1.0196%" y="373" width="0.0114%" height="15" fill="rgb(235,213,38)" fg:x="23678" fg:w="264"/><text x="1.2696%" y="383.50"></text></g><g><title>Parse::Parse (264 samples, 0.01%)</title><rect x="1.0196%" y="357" width="0.0114%" height="15" fill="rgb(237,122,38)" fg:x="23678" fg:w="264"/><text x="1.2696%" y="367.50"></text></g><g><title>Parse::do_call (370 samples, 0.02%)</title><rect x="1.0169%" y="389" width="0.0159%" height="15" fill="rgb(244,218,35)" fg:x="23615" fg:w="370"/><text x="1.2669%" y="399.50"></text></g><g><title>Parse::do_all_blocks (428 samples, 0.02%)</title><rect x="1.0164%" y="437" width="0.0184%" height="15" fill="rgb(240,68,47)" fg:x="23605" fg:w="428"/><text x="1.2664%" y="447.50"></text></g><g><title>Parse::do_one_block (428 samples, 0.02%)</title><rect x="1.0164%" y="421" width="0.0184%" height="15" fill="rgb(210,16,53)" fg:x="23605" fg:w="428"/><text x="1.2664%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (426 samples, 0.02%)</title><rect x="1.0165%" y="405" width="0.0183%" height="15" fill="rgb(235,124,12)" fg:x="23607" fg:w="426"/><text x="1.2665%" y="415.50"></text></g><g><title>ParseGenerator::generate (437 samples, 0.02%)</title><rect x="1.0161%" y="469" width="0.0188%" height="15" fill="rgb(224,169,11)" fg:x="23598" fg:w="437"/><text x="1.2661%" y="479.50"></text></g><g><title>Parse::Parse (437 samples, 0.02%)</title><rect x="1.0161%" y="453" width="0.0188%" height="15" fill="rgb(250,166,2)" fg:x="23598" fg:w="437"/><text x="1.2661%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (536 samples, 0.02%)</title><rect x="1.0160%" y="485" width="0.0231%" height="15" fill="rgb(242,216,29)" fg:x="23594" fg:w="536"/><text x="1.2660%" y="495.50"></text></g><g><title>Parse::do_call (2,823 samples, 0.12%)</title><rect x="0.9180%" y="501" width="0.1216%" height="15" fill="rgb(230,116,27)" fg:x="21320" fg:w="2823"/><text x="1.1680%" y="511.50"></text></g><g><title>Parse::do_all_blocks (2,840 samples, 0.12%)</title><rect x="0.9180%" y="549" width="0.1223%" height="15" fill="rgb(228,99,48)" fg:x="21318" fg:w="2840"/><text x="1.1680%" y="559.50"></text></g><g><title>Parse::do_one_block (2,840 samples, 0.12%)</title><rect x="0.9180%" y="533" width="0.1223%" height="15" fill="rgb(253,11,6)" fg:x="21318" fg:w="2840"/><text x="1.1680%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (2,840 samples, 0.12%)</title><rect x="0.9180%" y="517" width="0.1223%" height="15" fill="rgb(247,143,39)" fg:x="21318" fg:w="2840"/><text x="1.1680%" y="527.50"></text></g><g><title>C2Compiler::compile_method (2,913 samples, 0.13%)</title><rect x="0.9149%" y="613" width="0.1254%" height="15" fill="rgb(236,97,10)" fg:x="21248" fg:w="2913"/><text x="1.1649%" y="623.50"></text></g><g><title>Compile::Compile (2,913 samples, 0.13%)</title><rect x="0.9149%" y="597" width="0.1254%" height="15" fill="rgb(233,208,19)" fg:x="21248" fg:w="2913"/><text x="1.1649%" y="607.50"></text></g><g><title>ParseGenerator::generate (2,843 samples, 0.12%)</title><rect x="0.9180%" y="581" width="0.1224%" height="15" fill="rgb(216,164,2)" fg:x="21318" fg:w="2843"/><text x="1.1680%" y="591.50"></text></g><g><title>Parse::Parse (2,843 samples, 0.12%)</title><rect x="0.9180%" y="565" width="0.1224%" height="15" fill="rgb(220,129,5)" fg:x="21318" fg:w="2843"/><text x="1.1680%" y="575.50"></text></g><g><title>PhaseCFG::sched_call (258 samples, 0.01%)</title><rect x="1.0484%" y="549" width="0.0111%" height="15" fill="rgb(242,17,10)" fg:x="24348" fg:w="258"/><text x="1.2984%" y="559.50"></text></g><g><title>PhaseCFG::schedule_local (259 samples, 0.01%)</title><rect x="1.0484%" y="565" width="0.0112%" height="15" fill="rgb(242,107,0)" fg:x="24348" fg:w="259"/><text x="1.2984%" y="575.50"></text></g><g><title>PhaseCFG::do_global_code_motion (344 samples, 0.01%)</title><rect x="1.0450%" y="597" width="0.0148%" height="15" fill="rgb(251,28,31)" fg:x="24269" fg:w="344"/><text x="1.2950%" y="607.50"></text></g><g><title>PhaseCFG::global_code_motion (344 samples, 0.01%)</title><rect x="1.0450%" y="581" width="0.0148%" height="15" fill="rgb(233,223,10)" fg:x="24269" fg:w="344"/><text x="1.2950%" y="591.50"></text></g><g><title>Compile::Code_Gen (525 samples, 0.02%)</title><rect x="1.0404%" y="613" width="0.0226%" height="15" fill="rgb(215,21,27)" fg:x="24161" fg:w="525"/><text x="1.2904%" y="623.50"></text></g><g><title>OopFlow::compute_reach (270 samples, 0.01%)</title><rect x="1.0913%" y="549" width="0.0116%" height="15" fill="rgb(232,23,21)" fg:x="25344" fg:w="270"/><text x="1.3413%" y="559.50"></text></g><g><title>Compile::BuildOopMaps (1,024 samples, 0.04%)</title><rect x="1.0638%" y="565" width="0.0441%" height="15" fill="rgb(244,5,23)" fg:x="24705" fg:w="1024"/><text x="1.3138%" y="575.50"></text></g><g><title>Compile::shorten_branches (440 samples, 0.02%)</title><rect x="1.1112%" y="549" width="0.0189%" height="15" fill="rgb(226,81,46)" fg:x="25806" fg:w="440"/><text x="1.3612%" y="559.50"></text></g><g><title>Compile::Output (1,553 samples, 0.07%)</title><rect x="1.0635%" y="581" width="0.0669%" height="15" fill="rgb(247,70,30)" fg:x="24698" fg:w="1553"/><text x="1.3135%" y="591.50"></text></g><g><title>Compile::init_buffer (522 samples, 0.02%)</title><rect x="1.1079%" y="565" width="0.0225%" height="15" fill="rgb(212,68,19)" fg:x="25729" fg:w="522"/><text x="1.3579%" y="575.50"></text></g><g><title>Compile::Process_OopMap_Node (271 samples, 0.01%)</title><rect x="1.1402%" y="565" width="0.0117%" height="15" fill="rgb(240,187,13)" fg:x="26479" fg:w="271"/><text x="1.3902%" y="575.50"></text></g><g><title>Compile::fill_buffer (737 samples, 0.03%)</title><rect x="1.1304%" y="581" width="0.0317%" height="15" fill="rgb(223,113,26)" fg:x="26252" fg:w="737"/><text x="1.3804%" y="591.50"></text></g><g><title>Matcher::find_shared (475 samples, 0.02%)</title><rect x="1.1669%" y="565" width="0.0205%" height="15" fill="rgb(206,192,2)" fg:x="27098" fg:w="475"/><text x="1.4169%" y="575.50"></text></g><g><title>Arena::contains (699 samples, 0.03%)</title><rect x="1.2082%" y="549" width="0.0301%" height="15" fill="rgb(241,108,4)" fg:x="28059" fg:w="699"/><text x="1.4582%" y="559.50"></text></g><g><title>Matcher::Label_Root (386 samples, 0.02%)</title><rect x="1.2654%" y="517" width="0.0166%" height="15" fill="rgb(247,173,49)" fg:x="29387" fg:w="386"/><text x="1.5154%" y="527.50"></text></g><g><title>Matcher::Label_Root (608 samples, 0.03%)</title><rect x="1.2603%" y="533" width="0.0262%" height="15" fill="rgb(224,114,35)" fg:x="29269" fg:w="608"/><text x="1.5103%" y="543.50"></text></g><g><title>Matcher::ReduceInst_Interior (247 samples, 0.01%)</title><rect x="1.2887%" y="517" width="0.0106%" height="15" fill="rgb(245,159,27)" fg:x="29928" fg:w="247"/><text x="1.5387%" y="527.50"></text></g><g><title>Matcher::ReduceInst (475 samples, 0.02%)</title><rect x="1.2865%" y="533" width="0.0205%" height="15" fill="rgb(245,172,44)" fg:x="29877" fg:w="475"/><text x="1.5365%" y="543.50"></text></g><g><title>Matcher::match_tree (1,383 samples, 0.06%)</title><rect x="1.2482%" y="549" width="0.0596%" height="15" fill="rgb(236,23,11)" fg:x="28986" fg:w="1383"/><text x="1.4982%" y="559.50"></text></g><g><title>Matcher::xform (2,968 samples, 0.13%)</title><rect x="1.1877%" y="565" width="0.1278%" height="15" fill="rgb(205,117,38)" fg:x="27583" fg:w="2968"/><text x="1.4377%" y="575.50"></text></g><g><title>Matcher::match (3,554 samples, 0.15%)</title><rect x="1.1629%" y="581" width="0.1530%" height="15" fill="rgb(237,72,25)" fg:x="27007" fg:w="3554"/><text x="1.4129%" y="591.50"></text></g><g><title>Node_Backward_Iterator::next (335 samples, 0.01%)</title><rect x="1.3756%" y="533" width="0.0144%" height="15" fill="rgb(244,70,9)" fg:x="31946" fg:w="335"/><text x="1.6256%" y="543.50"></text></g><g><title>PhaseCFG::schedule_late (949 samples, 0.04%)</title><rect x="1.3691%" y="549" width="0.0409%" height="15" fill="rgb(217,125,39)" fg:x="31794" fg:w="949"/><text x="1.6191%" y="559.50"></text></g><g><title>PhaseCFG::schedule_local (804 samples, 0.03%)</title><rect x="1.4099%" y="549" width="0.0346%" height="15" fill="rgb(235,36,10)" fg:x="32743" fg:w="804"/><text x="1.6599%" y="559.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (583 samples, 0.03%)</title><rect x="1.4470%" y="549" width="0.0251%" height="15" fill="rgb(251,123,47)" fg:x="33603" fg:w="583"/><text x="1.6970%" y="559.50"></text></g><g><title>PhaseIFG::init (237 samples, 0.01%)</title><rect x="1.4786%" y="549" width="0.0102%" height="15" fill="rgb(221,13,13)" fg:x="34338" fg:w="237"/><text x="1.7286%" y="559.50"></text></g><g><title>PhaseLive::add_livein (252 samples, 0.01%)</title><rect x="1.5065%" y="533" width="0.0109%" height="15" fill="rgb(238,131,9)" fg:x="34986" fg:w="252"/><text x="1.7565%" y="543.50"></text></g><g><title>PhaseLive::add_liveout (498 samples, 0.02%)</title><rect x="1.5174%" y="533" width="0.0214%" height="15" fill="rgb(211,50,8)" fg:x="35238" fg:w="498"/><text x="1.7674%" y="543.50"></text></g><g><title>PhaseLive::compute (1,162 samples, 0.05%)</title><rect x="1.4889%" y="549" width="0.0500%" height="15" fill="rgb(245,182,24)" fg:x="34577" fg:w="1162"/><text x="1.7389%" y="559.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,796 samples, 0.21%)</title><rect x="1.3337%" y="581" width="0.2065%" height="15" fill="rgb(242,14,37)" fg:x="30973" fg:w="4796"/><text x="1.5837%" y="591.50"></text></g><g><title>PhaseCFG::global_code_motion (4,587 samples, 0.20%)</title><rect x="1.3427%" y="565" width="0.1975%" height="15" fill="rgb(246,228,12)" fg:x="31182" fg:w="4587"/><text x="1.5927%" y="575.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,495 samples, 0.06%)</title><rect x="1.5545%" y="565" width="0.0644%" height="15" fill="rgb(213,55,15)" fg:x="36101" fg:w="1495"/><text x="1.8045%" y="575.50"></text></g><g><title>IndexSetIterator::advance_and_next (375 samples, 0.02%)</title><rect x="1.6512%" y="549" width="0.0161%" height="15" fill="rgb(209,9,3)" fg:x="38346" fg:w="375"/><text x="1.9012%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (452 samples, 0.02%)</title><rect x="1.7047%" y="533" width="0.0195%" height="15" fill="rgb(230,59,30)" fg:x="39589" fg:w="452"/><text x="1.9547%" y="543.50"></text></g><g><title>PhaseIFG::re_insert (1,117 samples, 0.05%)</title><rect x="1.6772%" y="549" width="0.0481%" height="15" fill="rgb(209,121,21)" fg:x="38949" fg:w="1117"/><text x="1.9272%" y="559.50"></text></g><g><title>PhaseChaitin::Select (2,679 samples, 0.12%)</title><rect x="1.6189%" y="565" width="0.1154%" height="15" fill="rgb(220,109,13)" fg:x="37596" fg:w="2679"/><text x="1.8689%" y="575.50"></text></g><g><title>IndexSetIterator::advance_and_next (392 samples, 0.02%)</title><rect x="1.7506%" y="549" width="0.0169%" height="15" fill="rgb(232,18,1)" fg:x="40655" fg:w="392"/><text x="2.0006%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (540 samples, 0.02%)</title><rect x="1.7954%" y="533" width="0.0233%" height="15" fill="rgb(215,41,42)" fg:x="41696" fg:w="540"/><text x="2.0454%" y="543.50"></text></g><g><title>PhaseIFG::remove_node (1,194 samples, 0.05%)</title><rect x="1.7675%" y="549" width="0.0514%" height="15" fill="rgb(224,123,36)" fg:x="41047" fg:w="1194"/><text x="2.0175%" y="559.50"></text></g><g><title>PhaseChaitin::Simplify (1,968 samples, 0.08%)</title><rect x="1.7343%" y="565" width="0.0847%" height="15" fill="rgb(240,125,3)" fg:x="40275" fg:w="1968"/><text x="1.9843%" y="575.50"></text></g><g><title>PhaseChaitin::Split (4,290 samples, 0.18%)</title><rect x="1.8190%" y="565" width="0.1847%" height="15" fill="rgb(205,98,50)" fg:x="42243" fg:w="4290"/><text x="2.0690%" y="575.50"></text></g><g><title>IndexSet::IndexSet (345 samples, 0.01%)</title><rect x="2.0509%" y="549" width="0.0149%" height="15" fill="rgb(205,185,37)" fg:x="47629" fg:w="345"/><text x="2.3009%" y="559.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (999 samples, 0.04%)</title><rect x="2.0722%" y="549" width="0.0430%" height="15" fill="rgb(238,207,15)" fg:x="48123" fg:w="999"/><text x="2.3222%" y="559.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (699 samples, 0.03%)</title><rect x="2.1204%" y="549" width="0.0301%" height="15" fill="rgb(213,199,42)" fg:x="49242" fg:w="699"/><text x="2.3704%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,097 samples, 0.05%)</title><rect x="2.2668%" y="533" width="0.0472%" height="15" fill="rgb(235,201,11)" fg:x="52642" fg:w="1097"/><text x="2.5168%" y="543.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,804 samples, 0.16%)</title><rect x="2.1505%" y="549" width="0.1638%" height="15" fill="rgb(207,46,11)" fg:x="49941" fg:w="3804"/><text x="2.4005%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (271 samples, 0.01%)</title><rect x="2.3456%" y="533" width="0.0117%" height="15" fill="rgb(241,35,35)" fg:x="54473" fg:w="271"/><text x="2.5956%" y="543.50"></text></g><g><title>RegMask::Size (408 samples, 0.02%)</title><rect x="2.3573%" y="533" width="0.0176%" height="15" fill="rgb(243,32,47)" fg:x="54744" fg:w="408"/><text x="2.6073%" y="543.50"></text></g><g><title>RegMask::smear_to_sets (911 samples, 0.04%)</title><rect x="2.3749%" y="533" width="0.0392%" height="15" fill="rgb(247,202,23)" fg:x="55152" fg:w="911"/><text x="2.6249%" y="543.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,200 samples, 0.09%)</title><rect x="2.3200%" y="549" width="0.0947%" height="15" fill="rgb(219,102,11)" fg:x="53877" fg:w="2200"/><text x="2.5700%" y="559.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (9,614 samples, 0.41%)</title><rect x="2.0038%" y="565" width="0.4140%" height="15" fill="rgb(243,110,44)" fg:x="46535" fg:w="9614"/><text x="2.2538%" y="575.50"></text></g><g><title>PhaseChaitin::interfere_with_live (470 samples, 0.02%)</title><rect x="2.4262%" y="549" width="0.0202%" height="15" fill="rgb(222,74,54)" fg:x="56345" fg:w="470"/><text x="2.6762%" y="559.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (678 samples, 0.03%)</title><rect x="2.4178%" y="565" width="0.0292%" height="15" fill="rgb(216,99,12)" fg:x="56149" fg:w="678"/><text x="2.6678%" y="575.50"></text></g><g><title>RegMask::Size (1,585 samples, 0.07%)</title><rect x="2.5785%" y="549" width="0.0683%" height="15" fill="rgb(226,22,26)" fg:x="59880" fg:w="1585"/><text x="2.8285%" y="559.50"></text></g><g><title>RegMask::clear_to_sets (255 samples, 0.01%)</title><rect x="2.6467%" y="549" width="0.0110%" height="15" fill="rgb(217,163,10)" fg:x="61465" fg:w="255"/><text x="2.8967%" y="559.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (5,058 samples, 0.22%)</title><rect x="2.4656%" y="565" width="0.2178%" height="15" fill="rgb(213,25,53)" fg:x="57259" fg:w="5058"/><text x="2.7156%" y="575.50"></text></g><g><title>PhaseChaitin::merge_multidefs (679 samples, 0.03%)</title><rect x="2.6837%" y="565" width="0.0292%" height="15" fill="rgb(252,105,26)" fg:x="62323" fg:w="679"/><text x="2.9337%" y="575.50"></text></g><g><title>PhaseChaitin::elide_copy (2,684 samples, 0.12%)</title><rect x="2.8161%" y="549" width="0.1156%" height="15" fill="rgb(220,39,43)" fg:x="65398" fg:w="2684"/><text x="3.0661%" y="559.50"></text></g><g><title>find_lowest_bit (463 samples, 0.02%)</title><rect x="2.9394%" y="549" width="0.0199%" height="15" fill="rgb(229,68,48)" fg:x="68263" fg:w="463"/><text x="3.1894%" y="559.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,728 samples, 0.25%)</title><rect x="2.7129%" y="565" width="0.2467%" height="15" fill="rgb(252,8,32)" fg:x="63002" fg:w="5728"/><text x="2.9629%" y="575.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (263 samples, 0.01%)</title><rect x="2.9595%" y="565" width="0.0113%" height="15" fill="rgb(223,20,43)" fg:x="68730" fg:w="263"/><text x="3.2095%" y="575.50"></text></g><g><title>IndexSet::lrg_union (327 samples, 0.01%)</title><rect x="2.9917%" y="517" width="0.0141%" height="15" fill="rgb(229,81,49)" fg:x="69477" fg:w="327"/><text x="3.2417%" y="527.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (307 samples, 0.01%)</title><rect x="3.0065%" y="517" width="0.0132%" height="15" fill="rgb(236,28,36)" fg:x="69821" fg:w="307"/><text x="3.2565%" y="527.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (802 samples, 0.03%)</title><rect x="2.9901%" y="533" width="0.0345%" height="15" fill="rgb(249,185,26)" fg:x="69439" fg:w="802"/><text x="3.2401%" y="543.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,251 samples, 0.05%)</title><rect x="2.9709%" y="565" width="0.0539%" height="15" fill="rgb(249,174,33)" fg:x="68993" fg:w="1251"/><text x="3.2209%" y="575.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,022 samples, 0.04%)</title><rect x="2.9807%" y="549" width="0.0440%" height="15" fill="rgb(233,201,37)" fg:x="69222" fg:w="1022"/><text x="3.2307%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (657 samples, 0.03%)</title><rect x="3.0498%" y="549" width="0.0283%" height="15" fill="rgb(221,78,26)" fg:x="70827" fg:w="657"/><text x="3.2998%" y="559.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,242 samples, 0.05%)</title><rect x="3.0247%" y="565" width="0.0535%" height="15" fill="rgb(250,127,30)" fg:x="70244" fg:w="1242"/><text x="3.2747%" y="575.50"></text></g><g><title>IndexSetIterator::advance_and_next (522 samples, 0.02%)</title><rect x="3.1050%" y="549" width="0.0225%" height="15" fill="rgb(230,49,44)" fg:x="72108" fg:w="522"/><text x="3.3550%" y="559.50"></text></g><g><title>PhaseIFG::SquareUp (1,145 samples, 0.05%)</title><rect x="3.0782%" y="565" width="0.0493%" height="15" fill="rgb(229,67,23)" fg:x="71486" fg:w="1145"/><text x="3.3282%" y="575.50"></text></g><g><title>PhaseIFG::init (456 samples, 0.02%)</title><rect x="3.1275%" y="565" width="0.0196%" height="15" fill="rgb(249,83,47)" fg:x="72631" fg:w="456"/><text x="3.3775%" y="575.50"></text></g><g><title>IndexSet::alloc_block_containing (276 samples, 0.01%)</title><rect x="3.2700%" y="533" width="0.0119%" height="15" fill="rgb(215,43,3)" fg:x="75940" fg:w="276"/><text x="3.5200%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (400 samples, 0.02%)</title><rect x="3.2850%" y="533" width="0.0172%" height="15" fill="rgb(238,154,13)" fg:x="76289" fg:w="400"/><text x="3.5350%" y="543.50"></text></g><g><title>PhaseLive::add_liveout (1,735 samples, 0.07%)</title><rect x="3.2286%" y="549" width="0.0747%" height="15" fill="rgb(219,56,2)" fg:x="74979" fg:w="1735"/><text x="3.4786%" y="559.50"></text></g><g><title>PhaseLive::compute (3,643 samples, 0.16%)</title><rect x="3.1472%" y="565" width="0.1569%" height="15" fill="rgb(233,0,4)" fg:x="73089" fg:w="3643"/><text x="3.3972%" y="575.50"></text></g><g><title>PhaseChaitin::Register_Allocate (40,939 samples, 1.76%)</title><rect x="1.5475%" y="581" width="1.7629%" height="15" fill="rgb(235,30,7)" fg:x="35938" fg:w="40939"/><text x="1.7975%" y="591.50"></text></g><g><title>Compile::Code_Gen (52,266 samples, 2.25%)</title><rect x="1.0633%" y="597" width="2.2506%" height="15" fill="rgb(250,79,13)" fg:x="24693" fg:w="52266"/><text x="1.3133%" y="607.50">C..</text></g><g><title>Parse::do_call (290 samples, 0.01%)</title><rect x="3.3244%" y="37" width="0.0125%" height="15" fill="rgb(211,146,34)" fg:x="77204" fg:w="290"/><text x="3.5744%" y="47.50"></text></g><g><title>Parse::do_one_block (405 samples, 0.02%)</title><rect x="3.3234%" y="69" width="0.0174%" height="15" fill="rgb(228,22,38)" fg:x="77180" fg:w="405"/><text x="3.5734%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (400 samples, 0.02%)</title><rect x="3.3236%" y="53" width="0.0172%" height="15" fill="rgb(235,168,5)" fg:x="77185" fg:w="400"/><text x="3.5736%" y="63.50"></text></g><g><title>Parse::do_all_blocks (414 samples, 0.02%)</title><rect x="3.3233%" y="85" width="0.0178%" height="15" fill="rgb(221,155,16)" fg:x="77178" fg:w="414"/><text x="3.5733%" y="95.50"></text></g><g><title>ParseGenerator::generate (453 samples, 0.02%)</title><rect x="3.3223%" y="117" width="0.0195%" height="15" fill="rgb(215,215,53)" fg:x="77154" fg:w="453"/><text x="3.5723%" y="127.50"></text></g><g><title>Parse::Parse (453 samples, 0.02%)</title><rect x="3.3223%" y="101" width="0.0195%" height="15" fill="rgb(223,4,10)" fg:x="77154" fg:w="453"/><text x="3.5723%" y="111.50"></text></g><g><title>Parse::do_call (578 samples, 0.02%)</title><rect x="3.3189%" y="133" width="0.0249%" height="15" fill="rgb(234,103,6)" fg:x="77075" fg:w="578"/><text x="3.5689%" y="143.50"></text></g><g><title>Parse::do_all_blocks (661 samples, 0.03%)</title><rect x="3.3184%" y="181" width="0.0285%" height="15" fill="rgb(227,97,0)" fg:x="77063" fg:w="661"/><text x="3.5684%" y="191.50"></text></g><g><title>Parse::do_one_block (661 samples, 0.03%)</title><rect x="3.3184%" y="165" width="0.0285%" height="15" fill="rgb(234,150,53)" fg:x="77063" fg:w="661"/><text x="3.5684%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (660 samples, 0.03%)</title><rect x="3.3184%" y="149" width="0.0284%" height="15" fill="rgb(228,201,54)" fg:x="77064" fg:w="660"/><text x="3.5684%" y="159.50"></text></g><g><title>ParseGenerator::generate (667 samples, 0.03%)</title><rect x="3.3182%" y="213" width="0.0287%" height="15" fill="rgb(222,22,37)" fg:x="77058" fg:w="667"/><text x="3.5682%" y="223.50"></text></g><g><title>Parse::Parse (667 samples, 0.03%)</title><rect x="3.3182%" y="197" width="0.0287%" height="15" fill="rgb(237,53,32)" fg:x="77058" fg:w="667"/><text x="3.5682%" y="207.50"></text></g><g><title>Parse::do_call (771 samples, 0.03%)</title><rect x="3.3161%" y="229" width="0.0332%" height="15" fill="rgb(233,25,53)" fg:x="77011" fg:w="771"/><text x="3.5661%" y="239.50"></text></g><g><title>ParseGenerator::generate (789 samples, 0.03%)</title><rect x="3.3160%" y="309" width="0.0340%" height="15" fill="rgb(210,40,34)" fg:x="77009" fg:w="789"/><text x="3.5660%" y="319.50"></text></g><g><title>Parse::Parse (789 samples, 0.03%)</title><rect x="3.3160%" y="293" width="0.0340%" height="15" fill="rgb(241,220,44)" fg:x="77009" fg:w="789"/><text x="3.5660%" y="303.50"></text></g><g><title>Parse::do_all_blocks (788 samples, 0.03%)</title><rect x="3.3161%" y="277" width="0.0339%" height="15" fill="rgb(235,28,35)" fg:x="77010" fg:w="788"/><text x="3.5661%" y="287.50"></text></g><g><title>Parse::do_one_block (788 samples, 0.03%)</title><rect x="3.3161%" y="261" width="0.0339%" height="15" fill="rgb(210,56,17)" fg:x="77010" fg:w="788"/><text x="3.5661%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (788 samples, 0.03%)</title><rect x="3.3161%" y="245" width="0.0339%" height="15" fill="rgb(224,130,29)" fg:x="77010" fg:w="788"/><text x="3.5661%" y="255.50"></text></g><g><title>Parse::do_call (942 samples, 0.04%)</title><rect x="3.3150%" y="325" width="0.0406%" height="15" fill="rgb(235,212,8)" fg:x="76984" fg:w="942"/><text x="3.5650%" y="335.50"></text></g><g><title>ParseGenerator::generate (946 samples, 0.04%)</title><rect x="3.3150%" y="405" width="0.0407%" height="15" fill="rgb(223,33,50)" fg:x="76984" fg:w="946"/><text x="3.5650%" y="415.50"></text></g><g><title>Parse::Parse (946 samples, 0.04%)</title><rect x="3.3150%" y="389" width="0.0407%" height="15" fill="rgb(219,149,13)" fg:x="76984" fg:w="946"/><text x="3.5650%" y="399.50"></text></g><g><title>Parse::do_all_blocks (946 samples, 0.04%)</title><rect x="3.3150%" y="373" width="0.0407%" height="15" fill="rgb(250,156,29)" fg:x="76984" fg:w="946"/><text x="3.5650%" y="383.50"></text></g><g><title>Parse::do_one_block (946 samples, 0.04%)</title><rect x="3.3150%" y="357" width="0.0407%" height="15" fill="rgb(216,193,19)" fg:x="76984" fg:w="946"/><text x="3.5650%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (946 samples, 0.04%)</title><rect x="3.3150%" y="341" width="0.0407%" height="15" fill="rgb(216,135,14)" fg:x="76984" fg:w="946"/><text x="3.5650%" y="351.50"></text></g><g><title>ParseGenerator::generate (1,120 samples, 0.05%)</title><rect x="3.3149%" y="501" width="0.0482%" height="15" fill="rgb(241,47,5)" fg:x="76982" fg:w="1120"/><text x="3.5649%" y="511.50"></text></g><g><title>Parse::Parse (1,120 samples, 0.05%)</title><rect x="3.3149%" y="485" width="0.0482%" height="15" fill="rgb(233,42,35)" fg:x="76982" fg:w="1120"/><text x="3.5649%" y="495.50"></text></g><g><title>Parse::do_all_blocks (1,120 samples, 0.05%)</title><rect x="3.3149%" y="469" width="0.0482%" height="15" fill="rgb(231,13,6)" fg:x="76982" fg:w="1120"/><text x="3.5649%" y="479.50"></text></g><g><title>Parse::do_one_block (1,120 samples, 0.05%)</title><rect x="3.3149%" y="453" width="0.0482%" height="15" fill="rgb(207,181,40)" fg:x="76982" fg:w="1120"/><text x="3.5649%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (1,120 samples, 0.05%)</title><rect x="3.3149%" y="437" width="0.0482%" height="15" fill="rgb(254,173,49)" fg:x="76982" fg:w="1120"/><text x="3.5649%" y="447.50"></text></g><g><title>Parse::do_call (1,120 samples, 0.05%)</title><rect x="3.3149%" y="421" width="0.0482%" height="15" fill="rgb(221,1,38)" fg:x="76982" fg:w="1120"/><text x="3.5649%" y="431.50"></text></g><g><title>Parse::do_call (250 samples, 0.01%)</title><rect x="3.3635%" y="213" width="0.0108%" height="15" fill="rgb(206,124,46)" fg:x="78110" fg:w="250"/><text x="3.6135%" y="223.50"></text></g><g><title>Parse::do_all_blocks (263 samples, 0.01%)</title><rect x="3.3635%" y="261" width="0.0113%" height="15" fill="rgb(249,21,11)" fg:x="78110" fg:w="263"/><text x="3.6135%" y="271.50"></text></g><g><title>Parse::do_one_block (263 samples, 0.01%)</title><rect x="3.3635%" y="245" width="0.0113%" height="15" fill="rgb(222,201,40)" fg:x="78110" fg:w="263"/><text x="3.6135%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (263 samples, 0.01%)</title><rect x="3.3635%" y="229" width="0.0113%" height="15" fill="rgb(235,61,29)" fg:x="78110" fg:w="263"/><text x="3.6135%" y="239.50"></text></g><g><title>ParseGenerator::generate (264 samples, 0.01%)</title><rect x="3.3635%" y="293" width="0.0114%" height="15" fill="rgb(219,207,3)" fg:x="78110" fg:w="264"/><text x="3.6135%" y="303.50"></text></g><g><title>Parse::Parse (264 samples, 0.01%)</title><rect x="3.3635%" y="277" width="0.0114%" height="15" fill="rgb(222,56,46)" fg:x="78110" fg:w="264"/><text x="3.6135%" y="287.50"></text></g><g><title>Parse::do_call (285 samples, 0.01%)</title><rect x="3.3631%" y="309" width="0.0123%" height="15" fill="rgb(239,76,54)" fg:x="78102" fg:w="285"/><text x="3.6131%" y="319.50"></text></g><g><title>ParseGenerator::generate (286 samples, 0.01%)</title><rect x="3.3631%" y="389" width="0.0123%" height="15" fill="rgb(231,124,27)" fg:x="78102" fg:w="286"/><text x="3.6131%" y="399.50"></text></g><g><title>Parse::Parse (286 samples, 0.01%)</title><rect x="3.3631%" y="373" width="0.0123%" height="15" fill="rgb(249,195,6)" fg:x="78102" fg:w="286"/><text x="3.6131%" y="383.50"></text></g><g><title>Parse::do_all_blocks (286 samples, 0.01%)</title><rect x="3.3631%" y="357" width="0.0123%" height="15" fill="rgb(237,174,47)" fg:x="78102" fg:w="286"/><text x="3.6131%" y="367.50"></text></g><g><title>Parse::do_one_block (286 samples, 0.01%)</title><rect x="3.3631%" y="341" width="0.0123%" height="15" fill="rgb(206,201,31)" fg:x="78102" fg:w="286"/><text x="3.6131%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (286 samples, 0.01%)</title><rect x="3.3631%" y="325" width="0.0123%" height="15" fill="rgb(231,57,52)" fg:x="78102" fg:w="286"/><text x="3.6131%" y="335.50"></text></g><g><title>ParseGenerator::generate (311 samples, 0.01%)</title><rect x="3.3631%" y="485" width="0.0134%" height="15" fill="rgb(248,177,22)" fg:x="78102" fg:w="311"/><text x="3.6131%" y="495.50"></text></g><g><title>Parse::Parse (311 samples, 0.01%)</title><rect x="3.3631%" y="469" width="0.0134%" height="15" fill="rgb(215,211,37)" fg:x="78102" fg:w="311"/><text x="3.6131%" y="479.50"></text></g><g><title>Parse::do_all_blocks (311 samples, 0.01%)</title><rect x="3.3631%" y="453" width="0.0134%" height="15" fill="rgb(241,128,51)" fg:x="78102" fg:w="311"/><text x="3.6131%" y="463.50"></text></g><g><title>Parse::do_one_block (311 samples, 0.01%)</title><rect x="3.3631%" y="437" width="0.0134%" height="15" fill="rgb(227,165,31)" fg:x="78102" fg:w="311"/><text x="3.6131%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (311 samples, 0.01%)</title><rect x="3.3631%" y="421" width="0.0134%" height="15" fill="rgb(228,167,24)" fg:x="78102" fg:w="311"/><text x="3.6131%" y="431.50"></text></g><g><title>Parse::do_call (311 samples, 0.01%)</title><rect x="3.3631%" y="405" width="0.0134%" height="15" fill="rgb(228,143,12)" fg:x="78102" fg:w="311"/><text x="3.6131%" y="415.50"></text></g><g><title>ParseGenerator::generate (1,493 samples, 0.06%)</title><rect x="3.3145%" y="597" width="0.0643%" height="15" fill="rgb(249,149,8)" fg:x="76974" fg:w="1493"/><text x="3.5645%" y="607.50"></text></g><g><title>Parse::Parse (1,493 samples, 0.06%)</title><rect x="3.3145%" y="581" width="0.0643%" height="15" fill="rgb(243,35,44)" fg:x="76974" fg:w="1493"/><text x="3.5645%" y="591.50"></text></g><g><title>Parse::do_all_blocks (1,493 samples, 0.06%)</title><rect x="3.3145%" y="565" width="0.0643%" height="15" fill="rgb(246,89,9)" fg:x="76974" fg:w="1493"/><text x="3.5645%" y="575.50"></text></g><g><title>Parse::do_one_block (1,493 samples, 0.06%)</title><rect x="3.3145%" y="549" width="0.0643%" height="15" fill="rgb(233,213,13)" fg:x="76974" fg:w="1493"/><text x="3.5645%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (1,493 samples, 0.06%)</title><rect x="3.3145%" y="533" width="0.0643%" height="15" fill="rgb(233,141,41)" fg:x="76974" fg:w="1493"/><text x="3.5645%" y="543.50"></text></g><g><title>Parse::do_call (1,493 samples, 0.06%)</title><rect x="3.3145%" y="517" width="0.0643%" height="15" fill="rgb(239,167,4)" fg:x="76974" fg:w="1493"/><text x="3.5645%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (365 samples, 0.02%)</title><rect x="3.3631%" y="501" width="0.0157%" height="15" fill="rgb(209,217,16)" fg:x="78102" fg:w="365"/><text x="3.6131%" y="511.50"></text></g><g><title>Compile::Compile (53,783 samples, 2.32%)</title><rect x="1.0630%" y="613" width="2.3159%" height="15" fill="rgb(219,88,35)" fg:x="24686" fg:w="53783"/><text x="1.3130%" y="623.50">C..</text></g><g><title>Compile::final_graph_reshaping (358 samples, 0.02%)</title><rect x="3.3790%" y="597" width="0.0154%" height="15" fill="rgb(220,193,23)" fg:x="78470" fg:w="358"/><text x="3.6290%" y="607.50"></text></g><g><title>Compile::final_graph_reshaping_walk (352 samples, 0.02%)</title><rect x="3.3792%" y="581" width="0.0152%" height="15" fill="rgb(230,90,52)" fg:x="78476" fg:w="352"/><text x="3.6292%" y="591.50"></text></g><g><title>Compile::remove_speculative_types (319 samples, 0.01%)</title><rect x="3.3969%" y="597" width="0.0137%" height="15" fill="rgb(252,106,19)" fg:x="78887" fg:w="319"/><text x="3.6469%" y="607.50"></text></g><g><title>ConnectionGraph::compute_escape (743 samples, 0.03%)</title><rect x="3.4110%" y="581" width="0.0320%" height="15" fill="rgb(206,74,20)" fg:x="79215" fg:w="743"/><text x="3.6610%" y="591.50"></text></g><g><title>ConnectionGraph::do_analysis (750 samples, 0.03%)</title><rect x="3.4108%" y="597" width="0.0323%" height="15" fill="rgb(230,138,44)" fg:x="79209" fg:w="750"/><text x="3.6608%" y="607.50"></text></g><g><title>PhaseCCP::analyze (957 samples, 0.04%)</title><rect x="3.4432%" y="597" width="0.0412%" height="15" fill="rgb(235,182,43)" fg:x="79963" fg:w="957"/><text x="3.6932%" y="607.50"></text></g><g><title>PhaseCCP::do_transform (271 samples, 0.01%)</title><rect x="3.4845%" y="597" width="0.0117%" height="15" fill="rgb(242,16,51)" fg:x="80920" fg:w="271"/><text x="3.7345%" y="607.50"></text></g><g><title>PhaseCCP::transform (271 samples, 0.01%)</title><rect x="3.4845%" y="581" width="0.0117%" height="15" fill="rgb(248,9,4)" fg:x="80920" fg:w="271"/><text x="3.7345%" y="591.50"></text></g><g><title>IdealLoopTree::iteration_split (252 samples, 0.01%)</title><rect x="3.5026%" y="565" width="0.0109%" height="15" fill="rgb(210,31,22)" fg:x="81342" fg:w="252"/><text x="3.7526%" y="575.50"></text></g><g><title>IdealLoopTree::iteration_split (288 samples, 0.01%)</title><rect x="3.5022%" y="581" width="0.0124%" height="15" fill="rgb(239,54,39)" fg:x="81333" fg:w="288"/><text x="3.7522%" y="591.50"></text></g><g><title>IdealLoopTree::loop_predication (357 samples, 0.02%)</title><rect x="3.5146%" y="581" width="0.0154%" height="15" fill="rgb(230,99,41)" fg:x="81621" fg:w="357"/><text x="3.7646%" y="591.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (237 samples, 0.01%)</title><rect x="3.5198%" y="565" width="0.0102%" height="15" fill="rgb(253,106,12)" fg:x="81741" fg:w="237"/><text x="3.7698%" y="575.50"></text></g><g><title>NTarjan::DFS (423 samples, 0.02%)</title><rect x="3.5710%" y="565" width="0.0182%" height="15" fill="rgb(213,46,41)" fg:x="82929" fg:w="423"/><text x="3.8210%" y="575.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,393 samples, 0.06%)</title><rect x="3.5323%" y="581" width="0.0600%" height="15" fill="rgb(215,133,35)" fg:x="82031" fg:w="1393"/><text x="3.7823%" y="591.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (528 samples, 0.02%)</title><rect x="3.6558%" y="565" width="0.0227%" height="15" fill="rgb(213,28,5)" fg:x="84899" fg:w="528"/><text x="3.9058%" y="575.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (474 samples, 0.02%)</title><rect x="3.6581%" y="549" width="0.0204%" height="15" fill="rgb(215,77,49)" fg:x="84953" fg:w="474"/><text x="3.9081%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,114 samples, 0.09%)</title><rect x="3.5923%" y="581" width="0.0910%" height="15" fill="rgb(248,100,22)" fg:x="83424" fg:w="2114"/><text x="3.8423%" y="591.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (376 samples, 0.02%)</title><rect x="3.8340%" y="517" width="0.0162%" height="15" fill="rgb(208,67,9)" fg:x="89037" fg:w="376"/><text x="4.0840%" y="527.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (522 samples, 0.02%)</title><rect x="3.8297%" y="533" width="0.0225%" height="15" fill="rgb(219,133,21)" fg:x="88937" fg:w="522"/><text x="4.0797%" y="543.50"></text></g><g><title>PhaseIdealLoop::dom_depth (1,208 samples, 0.05%)</title><rect x="4.0798%" y="517" width="0.0520%" height="15" fill="rgb(246,46,29)" fg:x="94745" fg:w="1208"/><text x="4.3298%" y="527.50"></text></g><g><title>PhaseIdealLoop::is_dominator (6,275 samples, 0.27%)</title><rect x="3.8624%" y="533" width="0.2702%" height="15" fill="rgb(246,185,52)" fg:x="89696" fg:w="6275"/><text x="4.1124%" y="543.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (7,808 samples, 0.34%)</title><rect x="3.7975%" y="549" width="0.3362%" height="15" fill="rgb(252,136,11)" fg:x="88189" fg:w="7808"/><text x="4.0475%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (8,926 samples, 0.38%)</title><rect x="3.7536%" y="565" width="0.3844%" height="15" fill="rgb(219,138,53)" fg:x="87171" fg:w="8926"/><text x="4.0036%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (10,580 samples, 0.46%)</title><rect x="3.6833%" y="581" width="0.4556%" height="15" fill="rgb(211,51,23)" fg:x="85538" fg:w="10580"/><text x="3.9333%" y="591.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (294 samples, 0.01%)</title><rect x="4.1712%" y="565" width="0.0127%" height="15" fill="rgb(247,221,28)" fg:x="96868" fg:w="294"/><text x="4.4212%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,055 samples, 0.05%)</title><rect x="4.1392%" y="581" width="0.0454%" height="15" fill="rgb(251,222,45)" fg:x="96125" fg:w="1055"/><text x="4.3892%" y="591.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (322 samples, 0.01%)</title><rect x="4.2179%" y="565" width="0.0139%" height="15" fill="rgb(217,162,53)" fg:x="97954" fg:w="322"/><text x="4.4679%" y="575.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (267 samples, 0.01%)</title><rect x="4.2576%" y="549" width="0.0115%" height="15" fill="rgb(229,93,14)" fg:x="98876" fg:w="267"/><text x="4.5076%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (933 samples, 0.04%)</title><rect x="4.2318%" y="565" width="0.0402%" height="15" fill="rgb(209,67,49)" fg:x="98276" fg:w="933"/><text x="4.4818%" y="575.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,970 samples, 0.08%)</title><rect x="4.1875%" y="581" width="0.0848%" height="15" fill="rgb(213,87,29)" fg:x="97246" fg:w="1970"/><text x="4.4375%" y="591.50"></text></g><g><title>RegionNode::Ideal (265 samples, 0.01%)</title><rect x="4.3253%" y="549" width="0.0114%" height="15" fill="rgb(205,151,52)" fg:x="100446" fg:w="265"/><text x="4.5753%" y="559.50"></text></g><g><title>PhaseIterGVN::transform_old (1,669 samples, 0.07%)</title><rect x="4.2748%" y="565" width="0.0719%" height="15" fill="rgb(253,215,39)" fg:x="99274" fg:w="1669"/><text x="4.5248%" y="575.50"></text></g><g><title>PhaseIterGVN::optimize (1,737 samples, 0.07%)</title><rect x="4.2723%" y="581" width="0.0748%" height="15" fill="rgb(221,220,41)" fg:x="99217" fg:w="1737"/><text x="4.5223%" y="591.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (19,903 samples, 0.86%)</title><rect x="3.4973%" y="597" width="0.8570%" height="15" fill="rgb(218,133,21)" fg:x="81219" fg:w="19903"/><text x="3.7473%" y="607.50"></text></g><g><title>IfNode::Ideal (396 samples, 0.02%)</title><rect x="4.3824%" y="565" width="0.0171%" height="15" fill="rgb(221,193,43)" fg:x="101774" fg:w="396"/><text x="4.6324%" y="575.50"></text></g><g><title>LoadNode::Ideal (276 samples, 0.01%)</title><rect x="4.4014%" y="565" width="0.0119%" height="15" fill="rgb(240,128,52)" fg:x="102214" fg:w="276"/><text x="4.6514%" y="575.50"></text></g><g><title>PhaseIterGVN::subsume_node (294 samples, 0.01%)</title><rect x="4.4355%" y="565" width="0.0127%" height="15" fill="rgb(253,114,12)" fg:x="103007" fg:w="294"/><text x="4.6855%" y="575.50"></text></g><g><title>RegionNode::Ideal (488 samples, 0.02%)</title><rect x="4.4635%" y="565" width="0.0210%" height="15" fill="rgb(215,223,47)" fg:x="103657" fg:w="488"/><text x="4.7135%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (234 samples, 0.01%)</title><rect x="4.4854%" y="325" width="0.0101%" height="15" fill="rgb(248,225,23)" fg:x="104166" fg:w="234"/><text x="4.7354%" y="335.50"></text></g><g><title>InitializeNode::detect_init_independence (264 samples, 0.01%)</title><rect x="4.4854%" y="341" width="0.0114%" height="15" fill="rgb(250,108,0)" fg:x="104166" fg:w="264"/><text x="4.7354%" y="351.50"></text></g><g><title>InitializeNode::detect_init_independence (294 samples, 0.01%)</title><rect x="4.4854%" y="357" width="0.0127%" height="15" fill="rgb(228,208,7)" fg:x="104166" fg:w="294"/><text x="4.7354%" y="367.50"></text></g><g><title>InitializeNode::detect_init_independence (325 samples, 0.01%)</title><rect x="4.4854%" y="373" width="0.0140%" height="15" fill="rgb(244,45,10)" fg:x="104166" fg:w="325"/><text x="4.7354%" y="383.50"></text></g><g><title>InitializeNode::detect_init_independence (358 samples, 0.02%)</title><rect x="4.4854%" y="389" width="0.0154%" height="15" fill="rgb(207,125,25)" fg:x="104166" fg:w="358"/><text x="4.7354%" y="399.50"></text></g><g><title>InitializeNode::detect_init_independence (381 samples, 0.02%)</title><rect x="4.4854%" y="405" width="0.0164%" height="15" fill="rgb(210,195,18)" fg:x="104166" fg:w="381"/><text x="4.7354%" y="415.50"></text></g><g><title>InitializeNode::detect_init_independence (413 samples, 0.02%)</title><rect x="4.4854%" y="421" width="0.0178%" height="15" fill="rgb(249,80,12)" fg:x="104166" fg:w="413"/><text x="4.7354%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (441 samples, 0.02%)</title><rect x="4.4854%" y="437" width="0.0190%" height="15" fill="rgb(221,65,9)" fg:x="104166" fg:w="441"/><text x="4.7354%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (467 samples, 0.02%)</title><rect x="4.4854%" y="453" width="0.0201%" height="15" fill="rgb(235,49,36)" fg:x="104165" fg:w="467"/><text x="4.7354%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (494 samples, 0.02%)</title><rect x="4.4854%" y="469" width="0.0213%" height="15" fill="rgb(225,32,20)" fg:x="104165" fg:w="494"/><text x="4.7354%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (528 samples, 0.02%)</title><rect x="4.4854%" y="485" width="0.0227%" height="15" fill="rgb(215,141,46)" fg:x="104165" fg:w="528"/><text x="4.7354%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (575 samples, 0.02%)</title><rect x="4.4854%" y="501" width="0.0248%" height="15" fill="rgb(250,160,47)" fg:x="104165" fg:w="575"/><text x="4.7354%" y="511.50"></text></g><g><title>InitializeNode::can_capture_store (616 samples, 0.03%)</title><rect x="4.4854%" y="549" width="0.0265%" height="15" fill="rgb(216,222,40)" fg:x="104165" fg:w="616"/><text x="4.7354%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (616 samples, 0.03%)</title><rect x="4.4854%" y="533" width="0.0265%" height="15" fill="rgb(234,217,39)" fg:x="104165" fg:w="616"/><text x="4.7354%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (616 samples, 0.03%)</title><rect x="4.4854%" y="517" width="0.0265%" height="15" fill="rgb(207,178,40)" fg:x="104165" fg:w="616"/><text x="4.7354%" y="527.50"></text></g><g><title>StoreNode::Ideal (661 samples, 0.03%)</title><rect x="4.4853%" y="565" width="0.0285%" height="15" fill="rgb(221,136,13)" fg:x="104162" fg:w="661"/><text x="4.7353%" y="575.50"></text></g><g><title>PhaseIterGVN::transform_old (3,496 samples, 0.15%)</title><rect x="4.3662%" y="581" width="0.1505%" height="15" fill="rgb(249,199,10)" fg:x="101398" fg:w="3496"/><text x="4.6162%" y="591.50"></text></g><g><title>PhaseIterGVN::optimize (3,635 samples, 0.16%)</title><rect x="4.3612%" y="597" width="0.1565%" height="15" fill="rgb(249,222,13)" fg:x="101282" fg:w="3635"/><text x="4.6112%" y="607.50"></text></g><g><title>PhaseIterGVN::transform_old (313 samples, 0.01%)</title><rect x="4.5212%" y="565" width="0.0135%" height="15" fill="rgb(244,185,38)" fg:x="104997" fg:w="313"/><text x="4.7712%" y="575.50"></text></g><g><title>PhaseIterGVN::optimize (339 samples, 0.01%)</title><rect x="4.5203%" y="581" width="0.0146%" height="15" fill="rgb(236,202,9)" fg:x="104976" fg:w="339"/><text x="4.7703%" y="591.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (511 samples, 0.02%)</title><rect x="4.5201%" y="597" width="0.0220%" height="15" fill="rgb(250,229,37)" fg:x="104971" fg:w="511"/><text x="4.7701%" y="607.50"></text></g><g><title>Compile::Optimize (27,233 samples, 1.17%)</title><rect x="3.3789%" y="613" width="1.1727%" height="15" fill="rgb(206,174,23)" fg:x="78469" fg:w="27233"/><text x="3.6289%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (254 samples, 0.01%)</title><rect x="4.5519%" y="613" width="0.0109%" height="15" fill="rgb(211,33,43)" fg:x="105709" fg:w="254"/><text x="4.8019%" y="623.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (254 samples, 0.01%)</title><rect x="4.5519%" y="597" width="0.0109%" height="15" fill="rgb(245,58,50)" fg:x="105709" fg:w="254"/><text x="4.8019%" y="607.50"></text></g><g><title>C2Compiler::compile_method (254 samples, 0.01%)</title><rect x="4.5519%" y="581" width="0.0109%" height="15" fill="rgb(244,68,36)" fg:x="105709" fg:w="254"/><text x="4.8019%" y="591.50"></text></g><g><title>Compile::Compile (254 samples, 0.01%)</title><rect x="4.5519%" y="565" width="0.0109%" height="15" fill="rgb(232,229,15)" fg:x="105709" fg:w="254"/><text x="4.8019%" y="575.50"></text></g><g><title>ParseGenerator::generate (261 samples, 0.01%)</title><rect x="4.5797%" y="469" width="0.0112%" height="15" fill="rgb(254,30,23)" fg:x="106356" fg:w="261"/><text x="4.8297%" y="479.50"></text></g><g><title>Parse::Parse (259 samples, 0.01%)</title><rect x="4.5798%" y="453" width="0.0112%" height="15" fill="rgb(235,160,14)" fg:x="106358" fg:w="259"/><text x="4.8298%" y="463.50"></text></g><g><title>Parse::do_call (620 samples, 0.03%)</title><rect x="4.5709%" y="485" width="0.0267%" height="15" fill="rgb(212,155,44)" fg:x="106151" fg:w="620"/><text x="4.8209%" y="495.50"></text></g><g><title>Parse::do_all_blocks (883 samples, 0.04%)</title><rect x="4.5690%" y="533" width="0.0380%" height="15" fill="rgb(226,2,50)" fg:x="106107" fg:w="883"/><text x="4.8190%" y="543.50"></text></g><g><title>Parse::do_one_block (880 samples, 0.04%)</title><rect x="4.5691%" y="517" width="0.0379%" height="15" fill="rgb(234,177,6)" fg:x="106110" fg:w="880"/><text x="4.8191%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (873 samples, 0.04%)</title><rect x="4.5694%" y="501" width="0.0376%" height="15" fill="rgb(217,24,9)" fg:x="106117" fg:w="873"/><text x="4.8194%" y="511.50"></text></g><g><title>ParseGenerator::generate (896 samples, 0.04%)</title><rect x="4.5690%" y="565" width="0.0386%" height="15" fill="rgb(220,13,46)" fg:x="106107" fg:w="896"/><text x="4.8190%" y="575.50"></text></g><g><title>Parse::Parse (896 samples, 0.04%)</title><rect x="4.5690%" y="549" width="0.0386%" height="15" fill="rgb(239,221,27)" fg:x="106107" fg:w="896"/><text x="4.8190%" y="559.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,076 samples, 0.05%)</title><rect x="4.5628%" y="613" width="0.0463%" height="15" fill="rgb(222,198,25)" fg:x="105963" fg:w="1076"/><text x="4.8128%" y="623.50"></text></g><g><title>C2Compiler::compile_method (1,076 samples, 0.05%)</title><rect x="4.5628%" y="597" width="0.0463%" height="15" fill="rgb(211,99,13)" fg:x="105963" fg:w="1076"/><text x="4.8128%" y="607.50"></text></g><g><title>Compile::Compile (1,076 samples, 0.05%)</title><rect x="4.5628%" y="581" width="0.0463%" height="15" fill="rgb(232,111,31)" fg:x="105963" fg:w="1076"/><text x="4.8128%" y="591.50"></text></g><g><title>ParseGenerator::generate (252 samples, 0.01%)</title><rect x="4.6313%" y="613" width="0.0109%" height="15" fill="rgb(245,82,37)" fg:x="107554" fg:w="252"/><text x="4.8813%" y="623.50"></text></g><g><title>Parse::Parse (252 samples, 0.01%)</title><rect x="4.6313%" y="597" width="0.0109%" height="15" fill="rgb(227,149,46)" fg:x="107554" fg:w="252"/><text x="4.8813%" y="607.50"></text></g><g><title>Parse::do_all_blocks (252 samples, 0.01%)</title><rect x="4.6313%" y="581" width="0.0109%" height="15" fill="rgb(218,36,50)" fg:x="107554" fg:w="252"/><text x="4.8813%" y="591.50"></text></g><g><title>Parse::do_one_block (252 samples, 0.01%)</title><rect x="4.6313%" y="565" width="0.0109%" height="15" fill="rgb(226,80,48)" fg:x="107554" fg:w="252"/><text x="4.8813%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (252 samples, 0.01%)</title><rect x="4.6313%" y="549" width="0.0109%" height="15" fill="rgb(238,224,15)" fg:x="107554" fg:w="252"/><text x="4.8813%" y="559.50"></text></g><g><title>Parse::do_call (252 samples, 0.01%)</title><rect x="4.6313%" y="533" width="0.0109%" height="15" fill="rgb(241,136,10)" fg:x="107554" fg:w="252"/><text x="4.8813%" y="543.50"></text></g><g><title>[unknown] (86,931 samples, 3.74%)</title><rect x="0.9149%" y="629" width="3.7433%" height="15" fill="rgb(208,32,45)" fg:x="21246" fg:w="86931"/><text x="1.1649%" y="639.50">[unk..</text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (574 samples, 0.02%)</title><rect x="4.6710%" y="485" width="0.0247%" height="15" fill="rgb(207,135,9)" fg:x="108476" fg:w="574"/><text x="4.9210%" y="495.50"></text></g><g><title>Compile::Compile (880 samples, 0.04%)</title><rect x="4.6604%" y="501" width="0.0379%" height="15" fill="rgb(206,86,44)" fg:x="108230" fg:w="880"/><text x="4.9104%" y="511.50"></text></g><g><title>C2Compiler::compile_method (896 samples, 0.04%)</title><rect x="4.6598%" y="517" width="0.0386%" height="15" fill="rgb(245,177,15)" fg:x="108215" fg:w="896"/><text x="4.9098%" y="527.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,091 samples, 0.05%)</title><rect x="4.6597%" y="533" width="0.0470%" height="15" fill="rgb(206,64,50)" fg:x="108212" fg:w="1091"/><text x="4.9097%" y="543.50"></text></g><g><title>CompileQueue::get (265 samples, 0.01%)</title><rect x="4.7075%" y="533" width="0.0114%" height="15" fill="rgb(234,36,40)" fg:x="109322" fg:w="265"/><text x="4.9575%" y="543.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,387 samples, 0.06%)</title><rect x="4.6594%" y="549" width="0.0597%" height="15" fill="rgb(213,64,8)" fg:x="108207" fg:w="1387"/><text x="4.9094%" y="559.50"></text></g><g><title>__clone3 (1,402 samples, 0.06%)</title><rect x="4.6590%" y="629" width="0.0604%" height="15" fill="rgb(210,75,36)" fg:x="108196" fg:w="1402"/><text x="4.9090%" y="639.50"></text></g><g><title>start_thread (1,396 samples, 0.06%)</title><rect x="4.6592%" y="613" width="0.0601%" height="15" fill="rgb(229,88,21)" fg:x="108202" fg:w="1396"/><text x="4.9092%" y="623.50"></text></g><g><title>thread_native_entry (1,392 samples, 0.06%)</title><rect x="4.6594%" y="597" width="0.0599%" height="15" fill="rgb(252,204,47)" fg:x="108206" fg:w="1392"/><text x="4.9094%" y="607.50"></text></g><g><title>Thread::call_run (1,392 samples, 0.06%)</title><rect x="4.6594%" y="581" width="0.0599%" height="15" fill="rgb(208,77,27)" fg:x="108206" fg:w="1392"/><text x="4.9094%" y="591.50"></text></g><g><title>JavaThread::thread_main_inner (1,391 samples, 0.06%)</title><rect x="4.6594%" y="565" width="0.0599%" height="15" fill="rgb(221,76,26)" fg:x="108207" fg:w="1391"/><text x="4.9094%" y="575.50"></text></g><g><title>C2_CompilerThre (93,490 samples, 4.03%)</title><rect x="0.6999%" y="645" width="4.0257%" height="15" fill="rgb(225,139,18)" fg:x="16253" fg:w="93490"/><text x="0.9499%" y="655.50">C2_C..</text></g><g><title>entry_SYSCALL_64_after_hwframe (241 samples, 0.01%)</title><rect x="4.7640%" y="501" width="0.0104%" height="15" fill="rgb(230,137,11)" fg:x="110636" fg:w="241"/><text x="5.0140%" y="511.50"></text></g><g><title>do_syscall_64 (238 samples, 0.01%)</title><rect x="4.7642%" y="485" width="0.0102%" height="15" fill="rgb(212,28,1)" fg:x="110639" fg:w="238"/><text x="5.0142%" y="495.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (254 samples, 0.01%)</title><rect x="4.7636%" y="549" width="0.0109%" height="15" fill="rgb(248,164,17)" fg:x="110627" fg:w="254"/><text x="5.0136%" y="559.50"></text></g><g><title>__futex_abstimed_wait_common (254 samples, 0.01%)</title><rect x="4.7636%" y="533" width="0.0109%" height="15" fill="rgb(222,171,42)" fg:x="110627" fg:w="254"/><text x="5.0136%" y="543.50"></text></g><g><title>__futex_abstimed_wait_common64 (253 samples, 0.01%)</title><rect x="4.7637%" y="517" width="0.0109%" height="15" fill="rgb(243,84,45)" fg:x="110628" fg:w="253"/><text x="5.0137%" y="527.50"></text></g><g><title>___pthread_cond_timedwait64 (270 samples, 0.01%)</title><rect x="4.7635%" y="581" width="0.0116%" height="15" fill="rgb(252,49,23)" fg:x="110623" fg:w="270"/><text x="5.0135%" y="591.50"></text></g><g><title>__pthread_cond_wait_common (269 samples, 0.01%)</title><rect x="4.7635%" y="565" width="0.0116%" height="15" fill="rgb(215,19,7)" fg:x="110624" fg:w="269"/><text x="5.0135%" y="575.50"></text></g><g><title>Parker::park (405 samples, 0.02%)</title><rect x="4.7623%" y="597" width="0.0174%" height="15" fill="rgb(238,81,41)" fg:x="110595" fg:w="405"/><text x="5.0123%" y="607.50"></text></g><g><title>Unsafe_Park (421 samples, 0.02%)</title><rect x="4.7617%" y="613" width="0.0181%" height="15" fill="rgb(210,199,37)" fg:x="110581" fg:w="421"/><text x="5.0117%" y="623.50"></text></g><g><title>[perf-731527.map] (1,010 samples, 0.04%)</title><rect x="4.7373%" y="629" width="0.0435%" height="15" fill="rgb(244,192,49)" fg:x="110015" fg:w="1010"/><text x="4.9873%" y="639.50"></text></g><g><title>ForkJoinPool.co (1,040 samples, 0.04%)</title><rect x="4.7366%" y="645" width="0.0448%" height="15" fill="rgb(226,211,11)" fg:x="109998" fg:w="1040"/><text x="4.9866%" y="655.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (284 samples, 0.01%)</title><rect x="4.7933%" y="549" width="0.0122%" height="15" fill="rgb(236,162,54)" fg:x="111316" fg:w="284"/><text x="5.0433%" y="559.50"></text></g><g><title>G1_Young_RemSet (302 samples, 0.01%)</title><rect x="4.7929%" y="645" width="0.0130%" height="15" fill="rgb(220,229,9)" fg:x="111307" fg:w="302"/><text x="5.0429%" y="655.50"></text></g><g><title>__clone3 (293 samples, 0.01%)</title><rect x="4.7933%" y="629" width="0.0126%" height="15" fill="rgb(250,87,22)" fg:x="111316" fg:w="293"/><text x="5.0433%" y="639.50"></text></g><g><title>start_thread (293 samples, 0.01%)</title><rect x="4.7933%" y="613" width="0.0126%" height="15" fill="rgb(239,43,17)" fg:x="111316" fg:w="293"/><text x="5.0433%" y="623.50"></text></g><g><title>thread_native_entry (293 samples, 0.01%)</title><rect x="4.7933%" y="597" width="0.0126%" height="15" fill="rgb(231,177,25)" fg:x="111316" fg:w="293"/><text x="5.0433%" y="607.50"></text></g><g><title>Thread::call_run (293 samples, 0.01%)</title><rect x="4.7933%" y="581" width="0.0126%" height="15" fill="rgb(219,179,1)" fg:x="111316" fg:w="293"/><text x="5.0433%" y="591.50"></text></g><g><title>ConcurrentGCThread::run (293 samples, 0.01%)</title><rect x="4.7933%" y="565" width="0.0126%" height="15" fill="rgb(238,219,53)" fg:x="111316" fg:w="293"/><text x="5.0433%" y="575.50"></text></g><g><title>G1ParTask::work (548 samples, 0.02%)</title><rect x="4.8070%" y="549" width="0.0236%" height="15" fill="rgb(232,167,36)" fg:x="111634" fg:w="548"/><text x="5.0570%" y="559.50"></text></g><g><title>__clone3 (832 samples, 0.04%)</title><rect x="4.8068%" y="629" width="0.0358%" height="15" fill="rgb(244,19,51)" fg:x="111629" fg:w="832"/><text x="5.0568%" y="639.50"></text></g><g><title>start_thread (832 samples, 0.04%)</title><rect x="4.8068%" y="613" width="0.0358%" height="15" fill="rgb(224,6,22)" fg:x="111629" fg:w="832"/><text x="5.0568%" y="623.50"></text></g><g><title>thread_native_entry (832 samples, 0.04%)</title><rect x="4.8068%" y="597" width="0.0358%" height="15" fill="rgb(224,145,5)" fg:x="111629" fg:w="832"/><text x="5.0568%" y="607.50"></text></g><g><title>Thread::call_run (832 samples, 0.04%)</title><rect x="4.8068%" y="581" width="0.0358%" height="15" fill="rgb(234,130,49)" fg:x="111629" fg:w="832"/><text x="5.0568%" y="591.50"></text></g><g><title>GangWorker::loop (832 samples, 0.04%)</title><rect x="4.8068%" y="565" width="0.0358%" height="15" fill="rgb(254,6,2)" fg:x="111629" fg:w="832"/><text x="5.0568%" y="575.50"></text></g><g><title>GC_Thread#0 (861 samples, 0.04%)</title><rect x="4.8059%" y="645" width="0.0371%" height="15" fill="rgb(208,96,46)" fg:x="111609" fg:w="861"/><text x="5.0559%" y="655.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (233 samples, 0.01%)</title><rect x="4.8445%" y="533" width="0.0100%" height="15" fill="rgb(239,3,39)" fg:x="112504" fg:w="233"/><text x="5.0945%" y="543.50"></text></g><g><title>G1ParTask::work (538 samples, 0.02%)</title><rect x="4.8445%" y="549" width="0.0232%" height="15" fill="rgb(233,210,1)" fg:x="112504" fg:w="538"/><text x="5.0945%" y="559.50"></text></g><g><title>__clone3 (793 samples, 0.03%)</title><rect x="4.8440%" y="629" width="0.0341%" height="15" fill="rgb(244,137,37)" fg:x="112494" fg:w="793"/><text x="5.0940%" y="639.50"></text></g><g><title>start_thread (793 samples, 0.03%)</title><rect x="4.8440%" y="613" width="0.0341%" height="15" fill="rgb(240,136,2)" fg:x="112494" fg:w="793"/><text x="5.0940%" y="623.50"></text></g><g><title>thread_native_entry (793 samples, 0.03%)</title><rect x="4.8440%" y="597" width="0.0341%" height="15" fill="rgb(239,18,37)" fg:x="112494" fg:w="793"/><text x="5.0940%" y="607.50"></text></g><g><title>Thread::call_run (793 samples, 0.03%)</title><rect x="4.8440%" y="581" width="0.0341%" height="15" fill="rgb(218,185,22)" fg:x="112494" fg:w="793"/><text x="5.0940%" y="591.50"></text></g><g><title>GangWorker::loop (793 samples, 0.03%)</title><rect x="4.8440%" y="565" width="0.0341%" height="15" fill="rgb(225,218,4)" fg:x="112494" fg:w="793"/><text x="5.0940%" y="575.50"></text></g><g><title>GC_Thread#1 (826 samples, 0.04%)</title><rect x="4.8430%" y="645" width="0.0356%" height="15" fill="rgb(230,182,32)" fg:x="112470" fg:w="826"/><text x="5.0930%" y="655.50"></text></g><g><title>G1ParTask::work (445 samples, 0.02%)</title><rect x="4.8801%" y="549" width="0.0192%" height="15" fill="rgb(242,56,43)" fg:x="113332" fg:w="445"/><text x="5.1301%" y="559.50"></text></g><g><title>__clone3 (643 samples, 0.03%)</title><rect x="4.8791%" y="629" width="0.0277%" height="15" fill="rgb(233,99,24)" fg:x="113308" fg:w="643"/><text x="5.1291%" y="639.50"></text></g><g><title>start_thread (643 samples, 0.03%)</title><rect x="4.8791%" y="613" width="0.0277%" height="15" fill="rgb(234,209,42)" fg:x="113308" fg:w="643"/><text x="5.1291%" y="623.50"></text></g><g><title>thread_native_entry (643 samples, 0.03%)</title><rect x="4.8791%" y="597" width="0.0277%" height="15" fill="rgb(227,7,12)" fg:x="113308" fg:w="643"/><text x="5.1291%" y="607.50"></text></g><g><title>Thread::call_run (643 samples, 0.03%)</title><rect x="4.8791%" y="581" width="0.0277%" height="15" fill="rgb(245,203,43)" fg:x="113308" fg:w="643"/><text x="5.1291%" y="591.50"></text></g><g><title>GangWorker::loop (643 samples, 0.03%)</title><rect x="4.8791%" y="565" width="0.0277%" height="15" fill="rgb(238,205,33)" fg:x="113308" fg:w="643"/><text x="5.1291%" y="575.50"></text></g><g><title>GC_Thread#2 (658 samples, 0.03%)</title><rect x="4.8786%" y="645" width="0.0283%" height="15" fill="rgb(231,56,7)" fg:x="113296" fg:w="658"/><text x="5.1286%" y="655.50"></text></g><g><title>G1ParTask::work (446 samples, 0.02%)</title><rect x="4.9082%" y="549" width="0.0192%" height="15" fill="rgb(244,186,29)" fg:x="113985" fg:w="446"/><text x="5.1582%" y="559.50"></text></g><g><title>__clone3 (662 samples, 0.03%)</title><rect x="4.9076%" y="629" width="0.0285%" height="15" fill="rgb(234,111,31)" fg:x="113969" fg:w="662"/><text x="5.1576%" y="639.50"></text></g><g><title>start_thread (662 samples, 0.03%)</title><rect x="4.9076%" y="613" width="0.0285%" height="15" fill="rgb(241,149,10)" fg:x="113969" fg:w="662"/><text x="5.1576%" y="623.50"></text></g><g><title>thread_native_entry (662 samples, 0.03%)</title><rect x="4.9076%" y="597" width="0.0285%" height="15" fill="rgb(249,206,44)" fg:x="113969" fg:w="662"/><text x="5.1576%" y="607.50"></text></g><g><title>Thread::call_run (662 samples, 0.03%)</title><rect x="4.9076%" y="581" width="0.0285%" height="15" fill="rgb(251,153,30)" fg:x="113969" fg:w="662"/><text x="5.1576%" y="591.50"></text></g><g><title>GangWorker::loop (662 samples, 0.03%)</title><rect x="4.9076%" y="565" width="0.0285%" height="15" fill="rgb(239,152,38)" fg:x="113969" fg:w="662"/><text x="5.1576%" y="575.50"></text></g><g><title>GC_Thread#3 (680 samples, 0.03%)</title><rect x="4.9069%" y="645" width="0.0293%" height="15" fill="rgb(249,139,47)" fg:x="113954" fg:w="680"/><text x="5.1569%" y="655.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (248 samples, 0.01%)</title><rect x="4.9377%" y="533" width="0.0107%" height="15" fill="rgb(244,64,35)" fg:x="114670" fg:w="248"/><text x="5.1877%" y="543.50"></text></g><g><title>G1ParTask::work (549 samples, 0.02%)</title><rect x="4.9377%" y="549" width="0.0236%" height="15" fill="rgb(216,46,15)" fg:x="114670" fg:w="549"/><text x="5.1877%" y="559.50"></text></g><g><title>__clone3 (762 samples, 0.03%)</title><rect x="4.9370%" y="629" width="0.0328%" height="15" fill="rgb(250,74,19)" fg:x="114652" fg:w="762"/><text x="5.1870%" y="639.50"></text></g><g><title>start_thread (762 samples, 0.03%)</title><rect x="4.9370%" y="613" width="0.0328%" height="15" fill="rgb(249,42,33)" fg:x="114652" fg:w="762"/><text x="5.1870%" y="623.50"></text></g><g><title>thread_native_entry (762 samples, 0.03%)</title><rect x="4.9370%" y="597" width="0.0328%" height="15" fill="rgb(242,149,17)" fg:x="114652" fg:w="762"/><text x="5.1870%" y="607.50"></text></g><g><title>Thread::call_run (762 samples, 0.03%)</title><rect x="4.9370%" y="581" width="0.0328%" height="15" fill="rgb(244,29,21)" fg:x="114652" fg:w="762"/><text x="5.1870%" y="591.50"></text></g><g><title>GangWorker::loop (762 samples, 0.03%)</title><rect x="4.9370%" y="565" width="0.0328%" height="15" fill="rgb(220,130,37)" fg:x="114652" fg:w="762"/><text x="5.1870%" y="575.50"></text></g><g><title>GC_Thread#4 (790 samples, 0.03%)</title><rect x="4.9362%" y="645" width="0.0340%" height="15" fill="rgb(211,67,2)" fg:x="114634" fg:w="790"/><text x="5.1862%" y="655.50"></text></g><g><title>G1ParTask::work (396 samples, 0.02%)</title><rect x="4.9718%" y="549" width="0.0171%" height="15" fill="rgb(235,68,52)" fg:x="115460" fg:w="396"/><text x="5.2218%" y="559.50"></text></g><g><title>__clone3 (629 samples, 0.03%)</title><rect x="4.9712%" y="629" width="0.0271%" height="15" fill="rgb(246,142,3)" fg:x="115448" fg:w="629"/><text x="5.2212%" y="639.50"></text></g><g><title>start_thread (629 samples, 0.03%)</title><rect x="4.9712%" y="613" width="0.0271%" height="15" fill="rgb(241,25,7)" fg:x="115448" fg:w="629"/><text x="5.2212%" y="623.50"></text></g><g><title>thread_native_entry (629 samples, 0.03%)</title><rect x="4.9712%" y="597" width="0.0271%" height="15" fill="rgb(242,119,39)" fg:x="115448" fg:w="629"/><text x="5.2212%" y="607.50"></text></g><g><title>Thread::call_run (629 samples, 0.03%)</title><rect x="4.9712%" y="581" width="0.0271%" height="15" fill="rgb(241,98,45)" fg:x="115448" fg:w="629"/><text x="5.2212%" y="591.50"></text></g><g><title>GangWorker::loop (629 samples, 0.03%)</title><rect x="4.9712%" y="565" width="0.0271%" height="15" fill="rgb(254,28,30)" fg:x="115448" fg:w="629"/><text x="5.2212%" y="575.50"></text></g><g><title>GC_Thread#5 (655 samples, 0.03%)</title><rect x="4.9702%" y="645" width="0.0282%" height="15" fill="rgb(241,142,54)" fg:x="115424" fg:w="655"/><text x="5.2202%" y="655.50"></text></g><g><title>G1ParTask::work (526 samples, 0.02%)</title><rect x="5.0001%" y="549" width="0.0226%" height="15" fill="rgb(222,85,15)" fg:x="116119" fg:w="526"/><text x="5.2501%" y="559.50"></text></g><g><title>__clone3 (717 samples, 0.03%)</title><rect x="4.9988%" y="629" width="0.0309%" height="15" fill="rgb(210,85,47)" fg:x="116089" fg:w="717"/><text x="5.2488%" y="639.50"></text></g><g><title>start_thread (717 samples, 0.03%)</title><rect x="4.9988%" y="613" width="0.0309%" height="15" fill="rgb(224,206,25)" fg:x="116089" fg:w="717"/><text x="5.2488%" y="623.50"></text></g><g><title>thread_native_entry (717 samples, 0.03%)</title><rect x="4.9988%" y="597" width="0.0309%" height="15" fill="rgb(243,201,19)" fg:x="116089" fg:w="717"/><text x="5.2488%" y="607.50"></text></g><g><title>Thread::call_run (717 samples, 0.03%)</title><rect x="4.9988%" y="581" width="0.0309%" height="15" fill="rgb(236,59,4)" fg:x="116089" fg:w="717"/><text x="5.2488%" y="591.50"></text></g><g><title>GangWorker::loop (717 samples, 0.03%)</title><rect x="4.9988%" y="565" width="0.0309%" height="15" fill="rgb(254,179,45)" fg:x="116089" fg:w="717"/><text x="5.2488%" y="575.50"></text></g><g><title>GC_Thread#6 (728 samples, 0.03%)</title><rect x="4.9984%" y="645" width="0.0313%" height="15" fill="rgb(226,14,10)" fg:x="116079" fg:w="728"/><text x="5.2484%" y="655.50"></text></g><g><title>G1ParTask::work (366 samples, 0.02%)</title><rect x="5.0317%" y="549" width="0.0158%" height="15" fill="rgb(244,27,41)" fg:x="116852" fg:w="366"/><text x="5.2817%" y="559.50"></text></g><g><title>__clone3 (583 samples, 0.03%)</title><rect x="5.0307%" y="629" width="0.0251%" height="15" fill="rgb(235,35,32)" fg:x="116828" fg:w="583"/><text x="5.2807%" y="639.50"></text></g><g><title>start_thread (583 samples, 0.03%)</title><rect x="5.0307%" y="613" width="0.0251%" height="15" fill="rgb(218,68,31)" fg:x="116828" fg:w="583"/><text x="5.2807%" y="623.50"></text></g><g><title>thread_native_entry (583 samples, 0.03%)</title><rect x="5.0307%" y="597" width="0.0251%" height="15" fill="rgb(207,120,37)" fg:x="116828" fg:w="583"/><text x="5.2807%" y="607.50"></text></g><g><title>Thread::call_run (583 samples, 0.03%)</title><rect x="5.0307%" y="581" width="0.0251%" height="15" fill="rgb(227,98,0)" fg:x="116828" fg:w="583"/><text x="5.2807%" y="591.50"></text></g><g><title>GangWorker::loop (583 samples, 0.03%)</title><rect x="5.0307%" y="565" width="0.0251%" height="15" fill="rgb(207,7,3)" fg:x="116828" fg:w="583"/><text x="5.2807%" y="575.50"></text></g><g><title>GC_Thread#7 (611 samples, 0.03%)</title><rect x="5.0298%" y="645" width="0.0263%" height="15" fill="rgb(206,98,19)" fg:x="116807" fg:w="611"/><text x="5.2798%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (242 samples, 0.01%)</title><rect x="5.0663%" y="405" width="0.0104%" height="15" fill="rgb(217,5,26)" fg:x="117656" fg:w="242"/><text x="5.3163%" y="415.50"></text></g><g><title>do_syscall_64 (240 samples, 0.01%)</title><rect x="5.0664%" y="389" width="0.0103%" height="15" fill="rgb(235,190,38)" fg:x="117658" fg:w="240"/><text x="5.3164%" y="399.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (254 samples, 0.01%)</title><rect x="5.0660%" y="453" width="0.0109%" height="15" fill="rgb(247,86,24)" fg:x="117648" fg:w="254"/><text x="5.3160%" y="463.50"></text></g><g><title>__futex_abstimed_wait_common (254 samples, 0.01%)</title><rect x="5.0660%" y="437" width="0.0109%" height="15" fill="rgb(205,101,16)" fg:x="117648" fg:w="254"/><text x="5.3160%" y="447.50"></text></g><g><title>__futex_abstimed_wait_common64 (254 samples, 0.01%)</title><rect x="5.0660%" y="421" width="0.0109%" height="15" fill="rgb(246,168,33)" fg:x="117648" fg:w="254"/><text x="5.3160%" y="431.50"></text></g><g><title>___pthread_cond_timedwait64 (263 samples, 0.01%)</title><rect x="5.0659%" y="485" width="0.0113%" height="15" fill="rgb(231,114,1)" fg:x="117646" fg:w="263"/><text x="5.3159%" y="495.50"></text></g><g><title>__pthread_cond_wait_common (262 samples, 0.01%)</title><rect x="5.0659%" y="469" width="0.0113%" height="15" fill="rgb(207,184,53)" fg:x="117647" fg:w="262"/><text x="5.3159%" y="479.50"></text></g><g><title>Monitor::IWait (300 samples, 0.01%)</title><rect x="5.0657%" y="517" width="0.0129%" height="15" fill="rgb(224,95,51)" fg:x="117642" fg:w="300"/><text x="5.3157%" y="527.50"></text></g><g><title>os::PlatformEvent::park (297 samples, 0.01%)</title><rect x="5.0658%" y="501" width="0.0128%" height="15" fill="rgb(212,188,45)" fg:x="117645" fg:w="297"/><text x="5.3158%" y="511.50"></text></g><g><title>Monitor::wait (302 samples, 0.01%)</title><rect x="5.0657%" y="533" width="0.0130%" height="15" fill="rgb(223,154,38)" fg:x="117641" fg:w="302"/><text x="5.3157%" y="543.50"></text></g><g><title>__clone3 (502 samples, 0.02%)</title><rect x="5.0651%" y="629" width="0.0216%" height="15" fill="rgb(251,22,52)" fg:x="117628" fg:w="502"/><text x="5.3151%" y="639.50"></text></g><g><title>start_thread (502 samples, 0.02%)</title><rect x="5.0651%" y="613" width="0.0216%" height="15" fill="rgb(229,209,22)" fg:x="117628" fg:w="502"/><text x="5.3151%" y="623.50"></text></g><g><title>thread_native_entry (502 samples, 0.02%)</title><rect x="5.0651%" y="597" width="0.0216%" height="15" fill="rgb(234,138,34)" fg:x="117628" fg:w="502"/><text x="5.3151%" y="607.50"></text></g><g><title>Thread::call_run (502 samples, 0.02%)</title><rect x="5.0651%" y="581" width="0.0216%" height="15" fill="rgb(212,95,11)" fg:x="117628" fg:w="502"/><text x="5.3151%" y="591.50"></text></g><g><title>JavaThread::thread_main_inner (502 samples, 0.02%)</title><rect x="5.0651%" y="565" width="0.0216%" height="15" fill="rgb(240,179,47)" fg:x="117628" fg:w="502"/><text x="5.3151%" y="575.50"></text></g><g><title>NMethodSweeper::sweeper_loop (501 samples, 0.02%)</title><rect x="5.0652%" y="549" width="0.0216%" height="15" fill="rgb(240,163,11)" fg:x="117629" fg:w="501"/><text x="5.3152%" y="559.50"></text></g><g><title>Sweeper_thread (523 samples, 0.02%)</title><rect x="5.0645%" y="645" width="0.0225%" height="15" fill="rgb(236,37,12)" fg:x="117613" fg:w="523"/><text x="5.3145%" y="655.50"></text></g><g><title>get_cpu_load (259 samples, 0.01%)</title><rect x="5.1332%" y="613" width="0.0112%" height="15" fill="rgb(232,164,16)" fg:x="119210" fg:w="259"/><text x="5.3832%" y="623.50"></text></g><g><title>get_cpuload_internal (259 samples, 0.01%)</title><rect x="5.1332%" y="597" width="0.0112%" height="15" fill="rgb(244,205,15)" fg:x="119210" fg:w="259"/><text x="5.3832%" y="607.50"></text></g><g><title>get_totalticks (259 samples, 0.01%)</title><rect x="5.1332%" y="581" width="0.0112%" height="15" fill="rgb(223,117,47)" fg:x="119210" fg:w="259"/><text x="5.3832%" y="591.50"></text></g><g><title>[perf-731527.map] (1,291 samples, 0.06%)</title><rect x="5.0897%" y="629" width="0.0556%" height="15" fill="rgb(244,107,35)" fg:x="118200" fg:w="1291"/><text x="5.3397%" y="639.50"></text></g><g><title>Thread-0 (1,444 samples, 0.06%)</title><rect x="5.0870%" y="645" width="0.0622%" height="15" fill="rgb(205,140,8)" fg:x="118136" fg:w="1444"/><text x="5.3370%" y="655.50"></text></g><g><title>Monitor::wait (255 samples, 0.01%)</title><rect x="5.1536%" y="533" width="0.0110%" height="15" fill="rgb(228,84,46)" fg:x="119682" fg:w="255"/><text x="5.4036%" y="543.50"></text></g><g><title>Monitor::IWait (254 samples, 0.01%)</title><rect x="5.1536%" y="517" width="0.0109%" height="15" fill="rgb(254,188,9)" fg:x="119683" fg:w="254"/><text x="5.4036%" y="527.50"></text></g><g><title>os::PlatformEvent::park (243 samples, 0.01%)</title><rect x="5.1541%" y="501" width="0.0105%" height="15" fill="rgb(206,112,54)" fg:x="119694" fg:w="243"/><text x="5.4041%" y="511.50"></text></g><g><title>__clone3 (350 samples, 0.02%)</title><rect x="5.1503%" y="629" width="0.0151%" height="15" fill="rgb(216,84,49)" fg:x="119607" fg:w="350"/><text x="5.4003%" y="639.50"></text></g><g><title>start_thread (350 samples, 0.02%)</title><rect x="5.1503%" y="613" width="0.0151%" height="15" fill="rgb(214,194,35)" fg:x="119607" fg:w="350"/><text x="5.4003%" y="623.50"></text></g><g><title>thread_native_entry (350 samples, 0.02%)</title><rect x="5.1503%" y="597" width="0.0151%" height="15" fill="rgb(249,28,3)" fg:x="119607" fg:w="350"/><text x="5.4003%" y="607.50"></text></g><g><title>Thread::call_run (350 samples, 0.02%)</title><rect x="5.1503%" y="581" width="0.0151%" height="15" fill="rgb(222,56,52)" fg:x="119607" fg:w="350"/><text x="5.4003%" y="591.50"></text></g><g><title>WatcherThread::run (350 samples, 0.02%)</title><rect x="5.1503%" y="565" width="0.0151%" height="15" fill="rgb(245,217,50)" fg:x="119607" fg:w="350"/><text x="5.4003%" y="575.50"></text></g><g><title>WatcherThread::sleep (282 samples, 0.01%)</title><rect x="5.1533%" y="549" width="0.0121%" height="15" fill="rgb(213,201,24)" fg:x="119675" fg:w="282"/><text x="5.4033%" y="559.50"></text></g><g><title>VM_Periodic_Tas (379 samples, 0.02%)</title><rect x="5.1492%" y="645" width="0.0163%" height="15" fill="rgb(248,116,28)" fg:x="119580" fg:w="379"/><text x="5.3992%" y="655.50"></text></g><g><title>SafepointSynchronize::begin (490 samples, 0.02%)</title><rect x="5.1765%" y="533" width="0.0211%" height="15" fill="rgb(219,72,43)" fg:x="120214" fg:w="490"/><text x="5.4265%" y="543.50"></text></g><g><title>Thread::call_run (798 samples, 0.03%)</title><rect x="5.1713%" y="581" width="0.0344%" height="15" fill="rgb(209,138,14)" fg:x="120094" fg:w="798"/><text x="5.4213%" y="591.50"></text></g><g><title>VMThread::run (798 samples, 0.03%)</title><rect x="5.1713%" y="565" width="0.0344%" height="15" fill="rgb(222,18,33)" fg:x="120094" fg:w="798"/><text x="5.4213%" y="575.50"></text></g><g><title>VMThread::loop (798 samples, 0.03%)</title><rect x="5.1713%" y="549" width="0.0344%" height="15" fill="rgb(213,199,7)" fg:x="120094" fg:w="798"/><text x="5.4213%" y="559.50"></text></g><g><title>__clone3 (801 samples, 0.03%)</title><rect x="5.1712%" y="629" width="0.0345%" height="15" fill="rgb(250,110,10)" fg:x="120092" fg:w="801"/><text x="5.4212%" y="639.50"></text></g><g><title>start_thread (799 samples, 0.03%)</title><rect x="5.1713%" y="613" width="0.0344%" height="15" fill="rgb(248,123,6)" fg:x="120094" fg:w="799"/><text x="5.4213%" y="623.50"></text></g><g><title>thread_native_entry (799 samples, 0.03%)</title><rect x="5.1713%" y="597" width="0.0344%" height="15" fill="rgb(206,91,31)" fg:x="120094" fg:w="799"/><text x="5.4213%" y="607.50"></text></g><g><title>VM_Thread (941 samples, 0.04%)</title><rect x="5.1655%" y="645" width="0.0405%" height="15" fill="rgb(211,154,13)" fg:x="119959" fg:w="941"/><text x="5.4155%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (256 samples, 0.01%)</title><rect x="5.2153%" y="613" width="0.0110%" height="15" fill="rgb(225,148,7)" fg:x="121115" fg:w="256"/><text x="5.4653%" y="623.50"></text></g><g><title>do_syscall_64 (255 samples, 0.01%)</title><rect x="5.2153%" y="597" width="0.0110%" height="15" fill="rgb(220,160,43)" fg:x="121116" fg:w="255"/><text x="5.4653%" y="607.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (459 samples, 0.02%)</title><rect x="5.2083%" y="629" width="0.0198%" height="15" fill="rgb(213,52,39)" fg:x="120954" fg:w="459"/><text x="5.4583%" y="639.50"></text></g><g><title>bazel (509 samples, 0.02%)</title><rect x="5.2082%" y="645" width="0.0219%" height="15" fill="rgb(243,137,7)" fg:x="120951" fg:w="509"/><text x="5.4582%" y="655.50"></text></g><g><title>dl_main (350 samples, 0.02%)</title><rect x="5.2436%" y="565" width="0.0151%" height="15" fill="rgb(230,79,13)" fg:x="121772" fg:w="350"/><text x="5.4936%" y="575.50"></text></g><g><title>_dl_start_final (361 samples, 0.02%)</title><rect x="5.2434%" y="597" width="0.0155%" height="15" fill="rgb(247,105,23)" fg:x="121768" fg:w="361"/><text x="5.4934%" y="607.50"></text></g><g><title>_dl_sysdep_start (359 samples, 0.02%)</title><rect x="5.2435%" y="581" width="0.0155%" height="15" fill="rgb(223,179,41)" fg:x="121770" fg:w="359"/><text x="5.4935%" y="591.50"></text></g><g><title>_dl_start (363 samples, 0.02%)</title><rect x="5.2434%" y="613" width="0.0156%" height="15" fill="rgb(218,9,34)" fg:x="121768" fg:w="363"/><text x="5.4934%" y="623.50"></text></g><g><title>_start (566 samples, 0.02%)</title><rect x="5.2348%" y="629" width="0.0244%" height="15" fill="rgb(222,106,8)" fg:x="121569" fg:w="566"/><text x="5.4848%" y="639.50"></text></g><g><title>build-runfiles (796 samples, 0.03%)</title><rect x="5.2301%" y="645" width="0.0343%" height="15" fill="rgb(211,220,0)" fg:x="121460" fg:w="796"/><text x="5.4801%" y="655.50"></text></g><g><title>_ZdlPv (476 samples, 0.02%)</title><rect x="5.2798%" y="133" width="0.0205%" height="15" fill="rgb(229,52,16)" fg:x="122613" fg:w="476"/><text x="5.5298%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (260 samples, 0.01%)</title><rect x="5.2891%" y="117" width="0.0112%" height="15" fill="rgb(212,155,18)" fg:x="122829" fg:w="260"/><text x="5.5391%" y="127.50"></text></g><g><title>_ZdlPv (481 samples, 0.02%)</title><rect x="5.2796%" y="165" width="0.0207%" height="15" fill="rgb(242,21,14)" fg:x="122609" fg:w="481"/><text x="5.5296%" y="175.50"></text></g><g><title>_ZdlPv (480 samples, 0.02%)</title><rect x="5.2796%" y="149" width="0.0207%" height="15" fill="rgb(222,19,48)" fg:x="122610" fg:w="480"/><text x="5.5296%" y="159.50"></text></g><g><title>_ZdlPv (299 samples, 0.01%)</title><rect x="5.3004%" y="101" width="0.0129%" height="15" fill="rgb(232,45,27)" fg:x="123093" fg:w="299"/><text x="5.5504%" y="111.50"></text></g><g><title>_ZdlPv (304 samples, 0.01%)</title><rect x="5.3004%" y="117" width="0.0131%" height="15" fill="rgb(249,103,42)" fg:x="123092" fg:w="304"/><text x="5.5504%" y="127.50"></text></g><g><title>_ZdlPv (305 samples, 0.01%)</title><rect x="5.3004%" y="149" width="0.0131%" height="15" fill="rgb(246,81,33)" fg:x="123092" fg:w="305"/><text x="5.5504%" y="159.50"></text></g><g><title>_ZdlPv (305 samples, 0.01%)</title><rect x="5.3004%" y="133" width="0.0131%" height="15" fill="rgb(252,33,42)" fg:x="123092" fg:w="305"/><text x="5.5504%" y="143.50"></text></g><g><title>cshook_security_sb_free_security (321 samples, 0.01%)</title><rect x="5.3004%" y="165" width="0.0138%" height="15" fill="rgb(209,212,41)" fg:x="123091" fg:w="321"/><text x="5.5504%" y="175.50"></text></g><g><title>cshook_security_file_permission (808 samples, 0.03%)</title><rect x="5.2796%" y="213" width="0.0348%" height="15" fill="rgb(207,154,6)" fg:x="122608" fg:w="808"/><text x="5.5296%" y="223.50"></text></g><g><title>cshook_security_sb_free_security (807 samples, 0.03%)</title><rect x="5.2796%" y="197" width="0.0347%" height="15" fill="rgb(223,64,47)" fg:x="122609" fg:w="807"/><text x="5.5296%" y="207.50"></text></g><g><title>cshook_security_sb_free_security (807 samples, 0.03%)</title><rect x="5.2796%" y="181" width="0.0347%" height="15" fill="rgb(211,161,38)" fg:x="122609" fg:w="807"/><text x="5.5296%" y="191.50"></text></g><g><title>exec_binprm (873 samples, 0.04%)</title><rect x="5.2769%" y="309" width="0.0376%" height="15" fill="rgb(219,138,40)" fg:x="122546" fg:w="873"/><text x="5.5269%" y="319.50"></text></g><g><title>search_binary_handler (873 samples, 0.04%)</title><rect x="5.2769%" y="293" width="0.0376%" height="15" fill="rgb(241,228,46)" fg:x="122546" fg:w="873"/><text x="5.5269%" y="303.50"></text></g><g><title>security_bprm_check (818 samples, 0.04%)</title><rect x="5.2793%" y="277" width="0.0352%" height="15" fill="rgb(223,209,38)" fg:x="122601" fg:w="818"/><text x="5.5293%" y="287.50"></text></g><g><title>pinnedhook_security_bprm_check_security (817 samples, 0.04%)</title><rect x="5.2793%" y="261" width="0.0352%" height="15" fill="rgb(236,164,45)" fg:x="122602" fg:w="817"/><text x="5.5293%" y="271.50"></text></g><g><title>cshook_security_bprm_check_security (817 samples, 0.04%)</title><rect x="5.2793%" y="245" width="0.0352%" height="15" fill="rgb(231,15,5)" fg:x="122602" fg:w="817"/><text x="5.5293%" y="255.50"></text></g><g><title>cshook_security_file_permission (817 samples, 0.04%)</title><rect x="5.2793%" y="229" width="0.0352%" height="15" fill="rgb(252,35,15)" fg:x="122602" fg:w="817"/><text x="5.5293%" y="239.50"></text></g><g><title>bprm_execve.part.0 (945 samples, 0.04%)</title><rect x="5.2765%" y="325" width="0.0407%" height="15" fill="rgb(248,181,18)" fg:x="122537" fg:w="945"/><text x="5.5265%" y="335.50"></text></g><g><title>bprm_execve (947 samples, 0.04%)</title><rect x="5.2765%" y="341" width="0.0408%" height="15" fill="rgb(233,39,42)" fg:x="122537" fg:w="947"/><text x="5.5265%" y="351.50"></text></g><g><title>shell_execve (963 samples, 0.04%)</title><rect x="5.2764%" y="437" width="0.0415%" height="15" fill="rgb(238,110,33)" fg:x="122535" fg:w="963"/><text x="5.5264%" y="447.50"></text></g><g><title>__GI_execve (963 samples, 0.04%)</title><rect x="5.2764%" y="421" width="0.0415%" height="15" fill="rgb(233,195,10)" fg:x="122535" fg:w="963"/><text x="5.5264%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (963 samples, 0.04%)</title><rect x="5.2764%" y="405" width="0.0415%" height="15" fill="rgb(254,105,3)" fg:x="122535" fg:w="963"/><text x="5.5264%" y="415.50"></text></g><g><title>do_syscall_64 (963 samples, 0.04%)</title><rect x="5.2764%" y="389" width="0.0415%" height="15" fill="rgb(221,225,9)" fg:x="122535" fg:w="963"/><text x="5.5264%" y="399.50"></text></g><g><title>__x64_sys_execve (963 samples, 0.04%)</title><rect x="5.2764%" y="373" width="0.0415%" height="15" fill="rgb(224,227,45)" fg:x="122535" fg:w="963"/><text x="5.5264%" y="383.50"></text></g><g><title>do_execveat_common.isra.0 (963 samples, 0.04%)</title><rect x="5.2764%" y="357" width="0.0415%" height="15" fill="rgb(229,198,43)" fg:x="122535" fg:w="963"/><text x="5.5264%" y="367.50"></text></g><g><title>exec_builtin (975 samples, 0.04%)</title><rect x="5.2760%" y="453" width="0.0420%" height="15" fill="rgb(206,209,35)" fg:x="122526" fg:w="975"/><text x="5.5260%" y="463.50"></text></g><g><title>[bash] (994 samples, 0.04%)</title><rect x="5.2753%" y="469" width="0.0428%" height="15" fill="rgb(245,195,53)" fg:x="122510" fg:w="994"/><text x="5.5253%" y="479.50"></text></g><g><title>[bash] (1,044 samples, 0.04%)</title><rect x="5.2753%" y="485" width="0.0450%" height="15" fill="rgb(240,92,26)" fg:x="122509" fg:w="1044"/><text x="5.5253%" y="495.50"></text></g><g><title>execute_command (1,060 samples, 0.05%)</title><rect x="5.2746%" y="549" width="0.0456%" height="15" fill="rgb(207,40,23)" fg:x="122494" fg:w="1060"/><text x="5.5246%" y="559.50"></text></g><g><title>execute_command_internal (1,059 samples, 0.05%)</title><rect x="5.2747%" y="533" width="0.0456%" height="15" fill="rgb(223,111,35)" fg:x="122495" fg:w="1059"/><text x="5.5247%" y="543.50"></text></g><g><title>execute_command (1,049 samples, 0.05%)</title><rect x="5.2751%" y="517" width="0.0452%" height="15" fill="rgb(229,147,28)" fg:x="122505" fg:w="1049"/><text x="5.5251%" y="527.50"></text></g><g><title>execute_command_internal (1,047 samples, 0.05%)</title><rect x="5.2752%" y="501" width="0.0451%" height="15" fill="rgb(211,29,28)" fg:x="122507" fg:w="1047"/><text x="5.5252%" y="511.50"></text></g><g><title>reader_loop (1,101 samples, 0.05%)</title><rect x="5.2746%" y="565" width="0.0474%" height="15" fill="rgb(228,72,33)" fg:x="122493" fg:w="1101"/><text x="5.5246%" y="575.50"></text></g><g><title>__libc_start_main_impl (1,326 samples, 0.06%)</title><rect x="5.2663%" y="613" width="0.0571%" height="15" fill="rgb(205,214,31)" fg:x="122299" fg:w="1326"/><text x="5.5163%" y="623.50"></text></g><g><title>__libc_start_call_main (1,323 samples, 0.06%)</title><rect x="5.2664%" y="597" width="0.0570%" height="15" fill="rgb(224,111,15)" fg:x="122302" fg:w="1323"/><text x="5.5164%" y="607.50"></text></g><g><title>main (1,323 samples, 0.06%)</title><rect x="5.2664%" y="581" width="0.0570%" height="15" fill="rgb(253,21,26)" fg:x="122302" fg:w="1323"/><text x="5.5164%" y="591.50"></text></g><g><title>dl_main (233 samples, 0.01%)</title><rect x="5.3236%" y="565" width="0.0100%" height="15" fill="rgb(245,139,43)" fg:x="123631" fg:w="233"/><text x="5.5736%" y="575.50"></text></g><g><title>_dl_start_final (246 samples, 0.01%)</title><rect x="5.3233%" y="597" width="0.0106%" height="15" fill="rgb(252,170,7)" fg:x="123625" fg:w="246"/><text x="5.5733%" y="607.50"></text></g><g><title>_dl_sysdep_start (244 samples, 0.01%)</title><rect x="5.3234%" y="581" width="0.0105%" height="15" fill="rgb(231,118,14)" fg:x="123627" fg:w="244"/><text x="5.5734%" y="591.50"></text></g><g><title>_dl_start (253 samples, 0.01%)</title><rect x="5.3233%" y="613" width="0.0109%" height="15" fill="rgb(238,83,0)" fg:x="123625" fg:w="253"/><text x="5.5733%" y="623.50"></text></g><g><title>_start (1,588 samples, 0.07%)</title><rect x="5.2662%" y="629" width="0.0684%" height="15" fill="rgb(221,39,39)" fg:x="122298" fg:w="1588"/><text x="5.5162%" y="639.50"></text></g><g><title>cc_wrapper.sh (1,762 samples, 0.08%)</title><rect x="5.2644%" y="645" width="0.0759%" height="15" fill="rgb(222,119,46)" fg:x="122256" fg:w="1762"/><text x="5.5144%" y="655.50"></text></g><g><title>[[heap]] (389 samples, 0.02%)</title><rect x="5.3403%" y="629" width="0.0168%" height="15" fill="rgb(222,165,49)" fg:x="124019" fg:w="389"/><text x="5.5903%" y="639.50"></text></g><g><title>[[stack]] (235 samples, 0.01%)</title><rect x="5.3571%" y="629" width="0.0101%" height="15" fill="rgb(219,113,52)" fg:x="124408" fg:w="235"/><text x="5.6071%" y="639.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (259 samples, 0.01%)</title><rect x="5.3924%" y="389" width="0.0112%" height="15" fill="rgb(214,7,15)" fg:x="125229" fg:w="259"/><text x="5.6424%" y="399.50"></text></g><g><title>clang::Preprocessor::Lex (259 samples, 0.01%)</title><rect x="5.3924%" y="373" width="0.0112%" height="15" fill="rgb(235,32,4)" fg:x="125229" fg:w="259"/><text x="5.6424%" y="383.50"></text></g><g><title>clang::Preprocessor::CachingLex (259 samples, 0.01%)</title><rect x="5.3924%" y="357" width="0.0112%" height="15" fill="rgb(238,90,54)" fg:x="125229" fg:w="259"/><text x="5.6424%" y="367.50"></text></g><g><title>clang::Preprocessor::Lex (259 samples, 0.01%)</title><rect x="5.3924%" y="341" width="0.0112%" height="15" fill="rgb(213,208,19)" fg:x="125229" fg:w="259"/><text x="5.6424%" y="351.50"></text></g><g><title>clang::Lexer::LexTokenInternal (259 samples, 0.01%)</title><rect x="5.3924%" y="325" width="0.0112%" height="15" fill="rgb(233,156,4)" fg:x="125229" fg:w="259"/><text x="5.6424%" y="335.50"></text></g><g><title>clang::Preprocessor::HandleDirective (245 samples, 0.01%)</title><rect x="5.3930%" y="309" width="0.0105%" height="15" fill="rgb(207,194,5)" fg:x="125243" fg:w="245"/><text x="5.6430%" y="319.50"></text></g><g><title>clang::Parser::ParseDeclGroup (312 samples, 0.01%)</title><rect x="5.3924%" y="405" width="0.0134%" height="15" fill="rgb(206,111,30)" fg:x="125229" fg:w="312"/><text x="5.6424%" y="415.50"></text></g><g><title>clang::Parser::ParseDeclaration (342 samples, 0.01%)</title><rect x="5.3924%" y="437" width="0.0147%" height="15" fill="rgb(243,70,54)" fg:x="125229" fg:w="342"/><text x="5.6424%" y="447.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (342 samples, 0.01%)</title><rect x="5.3924%" y="421" width="0.0147%" height="15" fill="rgb(242,28,8)" fg:x="125229" fg:w="342"/><text x="5.6424%" y="431.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (544 samples, 0.02%)</title><rect x="5.3924%" y="453" width="0.0234%" height="15" fill="rgb(219,106,18)" fg:x="125229" fg:w="544"/><text x="5.6424%" y="463.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (566 samples, 0.02%)</title><rect x="5.3919%" y="533" width="0.0244%" height="15" fill="rgb(244,222,10)" fg:x="125217" fg:w="566"/><text x="5.6419%" y="543.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (566 samples, 0.02%)</title><rect x="5.3919%" y="517" width="0.0244%" height="15" fill="rgb(236,179,52)" fg:x="125217" fg:w="566"/><text x="5.6419%" y="527.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (566 samples, 0.02%)</title><rect x="5.3919%" y="501" width="0.0244%" height="15" fill="rgb(213,23,39)" fg:x="125217" fg:w="566"/><text x="5.6419%" y="511.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (566 samples, 0.02%)</title><rect x="5.3919%" y="485" width="0.0244%" height="15" fill="rgb(238,48,10)" fg:x="125217" fg:w="566"/><text x="5.6419%" y="495.50"></text></g><g><title>clang::Parser::ParseLinkage (554 samples, 0.02%)</title><rect x="5.3924%" y="469" width="0.0239%" height="15" fill="rgb(251,196,23)" fg:x="125229" fg:w="554"/><text x="5.6424%" y="479.50"></text></g><g><title>cc1_main (864 samples, 0.04%)</title><rect x="5.3797%" y="613" width="0.0372%" height="15" fill="rgb(250,152,24)" fg:x="124933" fg:w="864"/><text x="5.6297%" y="623.50"></text></g><g><title>clang::ExecuteCompilerInvocation (802 samples, 0.03%)</title><rect x="5.3823%" y="597" width="0.0345%" height="15" fill="rgb(209,150,17)" fg:x="124995" fg:w="802"/><text x="5.6323%" y="607.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (802 samples, 0.03%)</title><rect x="5.3823%" y="581" width="0.0345%" height="15" fill="rgb(234,202,34)" fg:x="124995" fg:w="802"/><text x="5.6323%" y="591.50"></text></g><g><title>clang::FrontendAction::Execute (787 samples, 0.03%)</title><rect x="5.3830%" y="565" width="0.0339%" height="15" fill="rgb(253,148,53)" fg:x="125010" fg:w="787"/><text x="5.6330%" y="575.50"></text></g><g><title>clang::ParseAST (787 samples, 0.03%)</title><rect x="5.3830%" y="549" width="0.0339%" height="15" fill="rgb(218,129,16)" fg:x="125010" fg:w="787"/><text x="5.6330%" y="559.50"></text></g><g><title>open_last_lookups (279 samples, 0.01%)</title><rect x="5.4409%" y="357" width="0.0120%" height="15" fill="rgb(216,85,19)" fg:x="126354" fg:w="279"/><text x="5.6909%" y="367.50"></text></g><g><title>do_filp_open (424 samples, 0.02%)</title><rect x="5.4348%" y="389" width="0.0183%" height="15" fill="rgb(235,228,7)" fg:x="126214" fg:w="424"/><text x="5.6848%" y="399.50"></text></g><g><title>path_openat (420 samples, 0.02%)</title><rect x="5.4350%" y="373" width="0.0181%" height="15" fill="rgb(245,175,0)" fg:x="126218" fg:w="420"/><text x="5.6850%" y="383.50"></text></g><g><title>do_sys_openat2 (447 samples, 0.02%)</title><rect x="5.4348%" y="405" width="0.0192%" height="15" fill="rgb(208,168,36)" fg:x="126214" fg:w="447"/><text x="5.6848%" y="415.50"></text></g><g><title>__x64_sys_openat (448 samples, 0.02%)</title><rect x="5.4348%" y="421" width="0.0193%" height="15" fill="rgb(246,171,24)" fg:x="126214" fg:w="448"/><text x="5.6848%" y="431.50"></text></g><g><title>__libc_open64 (558 samples, 0.02%)</title><rect x="5.4333%" y="485" width="0.0240%" height="15" fill="rgb(215,142,24)" fg:x="126178" fg:w="558"/><text x="5.6833%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (556 samples, 0.02%)</title><rect x="5.4334%" y="469" width="0.0239%" height="15" fill="rgb(250,187,7)" fg:x="126180" fg:w="556"/><text x="5.6834%" y="479.50"></text></g><g><title>do_syscall_64 (553 samples, 0.02%)</title><rect x="5.4335%" y="453" width="0.0238%" height="15" fill="rgb(228,66,33)" fg:x="126183" fg:w="553"/><text x="5.6835%" y="463.50"></text></g><g><title>unload_network_ops_symbols (525 samples, 0.02%)</title><rect x="5.4347%" y="437" width="0.0226%" height="15" fill="rgb(234,215,21)" fg:x="126211" fg:w="525"/><text x="5.6847%" y="447.50"></text></g><g><title>llvm::sys::fs::openFile (574 samples, 0.02%)</title><rect x="5.4330%" y="501" width="0.0247%" height="15" fill="rgb(222,191,20)" fg:x="126172" fg:w="574"/><text x="5.6830%" y="511.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (674 samples, 0.03%)</title><rect x="5.4288%" y="613" width="0.0290%" height="15" fill="rgb(245,79,54)" fg:x="126073" fg:w="674"/><text x="5.6788%" y="623.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (673 samples, 0.03%)</title><rect x="5.4288%" y="597" width="0.0290%" height="15" fill="rgb(240,10,37)" fg:x="126074" fg:w="673"/><text x="5.6788%" y="607.50"></text></g><g><title>clang::FileManager::getFileRef (673 samples, 0.03%)</title><rect x="5.4288%" y="581" width="0.0290%" height="15" fill="rgb(214,192,32)" fg:x="126074" fg:w="673"/><text x="5.6788%" y="591.50"></text></g><g><title>clang::FileManager::getStatValue (673 samples, 0.03%)</title><rect x="5.4288%" y="565" width="0.0290%" height="15" fill="rgb(209,36,54)" fg:x="126074" fg:w="673"/><text x="5.6788%" y="575.50"></text></g><g><title>clang::FileSystemStatCache::get (673 samples, 0.03%)</title><rect x="5.4288%" y="549" width="0.0290%" height="15" fill="rgb(220,10,11)" fg:x="126074" fg:w="673"/><text x="5.6788%" y="559.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (673 samples, 0.03%)</title><rect x="5.4288%" y="533" width="0.0290%" height="15" fill="rgb(221,106,17)" fg:x="126074" fg:w="673"/><text x="5.6788%" y="543.50"></text></g><g><title>llvm::sys::fs::openFileForRead (673 samples, 0.03%)</title><rect x="5.4288%" y="517" width="0.0290%" height="15" fill="rgb(251,142,44)" fg:x="126074" fg:w="673"/><text x="5.6788%" y="527.50"></text></g><g><title>clang::driver::ToolChain::GetFilePath[abi:cxx11] (298 samples, 0.01%)</title><rect x="5.5363%" y="517" width="0.0128%" height="15" fill="rgb(238,13,15)" fg:x="128571" fg:w="298"/><text x="5.7863%" y="527.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (297 samples, 0.01%)</title><rect x="5.5364%" y="501" width="0.0128%" height="15" fill="rgb(208,107,27)" fg:x="128572" fg:w="297"/><text x="5.7864%" y="511.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (429 samples, 0.02%)</title><rect x="5.5362%" y="533" width="0.0185%" height="15" fill="rgb(205,136,37)" fg:x="128569" fg:w="429"/><text x="5.7862%" y="543.50"></text></g><g><title>clang::driver::Driver::BuildJobs (541 samples, 0.02%)</title><rect x="5.5315%" y="581" width="0.0233%" height="15" fill="rgb(250,205,27)" fg:x="128460" fg:w="541"/><text x="5.7815%" y="591.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (541 samples, 0.02%)</title><rect x="5.5315%" y="565" width="0.0233%" height="15" fill="rgb(210,80,43)" fg:x="128460" fg:w="541"/><text x="5.7815%" y="575.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (541 samples, 0.02%)</title><rect x="5.5315%" y="549" width="0.0233%" height="15" fill="rgb(247,160,36)" fg:x="128460" fg:w="541"/><text x="5.7815%" y="559.50"></text></g><g><title>do_filp_open (249 samples, 0.01%)</title><rect x="5.5677%" y="373" width="0.0107%" height="15" fill="rgb(234,13,49)" fg:x="129300" fg:w="249"/><text x="5.8177%" y="383.50"></text></g><g><title>path_openat (246 samples, 0.01%)</title><rect x="5.5678%" y="357" width="0.0106%" height="15" fill="rgb(234,122,0)" fg:x="129303" fg:w="246"/><text x="5.8178%" y="367.50"></text></g><g><title>do_sys_openat2 (270 samples, 0.01%)</title><rect x="5.5677%" y="389" width="0.0116%" height="15" fill="rgb(207,146,38)" fg:x="129299" fg:w="270"/><text x="5.8177%" y="399.50"></text></g><g><title>__x64_sys_openat (272 samples, 0.01%)</title><rect x="5.5677%" y="405" width="0.0117%" height="15" fill="rgb(207,177,25)" fg:x="129299" fg:w="272"/><text x="5.8177%" y="415.50"></text></g><g><title>do_syscall_64 (335 samples, 0.01%)</title><rect x="5.5659%" y="437" width="0.0144%" height="15" fill="rgb(211,178,42)" fg:x="129257" fg:w="335"/><text x="5.8159%" y="447.50"></text></g><g><title>unload_network_ops_symbols (294 samples, 0.01%)</title><rect x="5.5676%" y="421" width="0.0127%" height="15" fill="rgb(230,69,54)" fg:x="129298" fg:w="294"/><text x="5.8176%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (338 samples, 0.01%)</title><rect x="5.5658%" y="453" width="0.0146%" height="15" fill="rgb(214,135,41)" fg:x="129256" fg:w="338"/><text x="5.8158%" y="463.50"></text></g><g><title>__GI___open64_nocancel (343 samples, 0.01%)</title><rect x="5.5657%" y="469" width="0.0148%" height="15" fill="rgb(237,67,25)" fg:x="129252" fg:w="343"/><text x="5.8157%" y="479.50"></text></g><g><title>__opendir (357 samples, 0.02%)</title><rect x="5.5656%" y="485" width="0.0154%" height="15" fill="rgb(222,189,50)" fg:x="129251" fg:w="357"/><text x="5.8156%" y="495.50"></text></g><g><title>llvm::sys::fs::detail::directory_iterator_construct (406 samples, 0.02%)</title><rect x="5.5653%" y="501" width="0.0175%" height="15" fill="rgb(245,148,34)" fg:x="129245" fg:w="406"/><text x="5.8153%" y="511.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (411 samples, 0.02%)</title><rect x="5.5652%" y="517" width="0.0177%" height="15" fill="rgb(222,29,6)" fg:x="129241" fg:w="411"/><text x="5.8152%" y="527.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (639 samples, 0.03%)</title><rect x="5.5571%" y="533" width="0.0275%" height="15" fill="rgb(221,189,43)" fg:x="129053" fg:w="639"/><text x="5.8071%" y="543.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (859 samples, 0.04%)</title><rect x="5.5560%" y="549" width="0.0370%" height="15" fill="rgb(207,36,27)" fg:x="129029" fg:w="859"/><text x="5.8060%" y="559.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (294 samples, 0.01%)</title><rect x="5.5930%" y="549" width="0.0127%" height="15" fill="rgb(217,90,24)" fg:x="129888" fg:w="294"/><text x="5.8430%" y="559.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (1,728 samples, 0.07%)</title><rect x="5.5314%" y="597" width="0.0744%" height="15" fill="rgb(224,66,35)" fg:x="128456" fg:w="1728"/><text x="5.7814%" y="607.50"></text></g><g><title>clang::driver::Driver::getToolChain (1,183 samples, 0.05%)</title><rect x="5.5548%" y="581" width="0.0509%" height="15" fill="rgb(221,13,50)" fg:x="129001" fg:w="1183"/><text x="5.8048%" y="591.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (1,183 samples, 0.05%)</title><rect x="5.5548%" y="565" width="0.0509%" height="15" fill="rgb(236,68,49)" fg:x="129001" fg:w="1183"/><text x="5.8048%" y="575.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (368 samples, 0.02%)</title><rect x="5.6088%" y="437" width="0.0158%" height="15" fill="rgb(229,146,28)" fg:x="130253" fg:w="368"/><text x="5.8588%" y="447.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (298 samples, 0.01%)</title><rect x="5.6246%" y="437" width="0.0128%" height="15" fill="rgb(225,31,38)" fg:x="130621" fg:w="298"/><text x="5.8746%" y="447.50"></text></g><g><title>clang::Preprocessor::HandleDirective (485 samples, 0.02%)</title><rect x="5.6509%" y="373" width="0.0209%" height="15" fill="rgb(250,208,3)" fg:x="131232" fg:w="485"/><text x="5.9009%" y="383.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (1,489 samples, 0.06%)</title><rect x="5.6077%" y="453" width="0.0641%" height="15" fill="rgb(246,54,23)" fg:x="130229" fg:w="1489"/><text x="5.8577%" y="463.50"></text></g><g><title>clang::FrontendAction::Execute (799 samples, 0.03%)</title><rect x="5.6374%" y="437" width="0.0344%" height="15" fill="rgb(243,76,11)" fg:x="130919" fg:w="799"/><text x="5.8874%" y="447.50"></text></g><g><title>clang::ParseAST (792 samples, 0.03%)</title><rect x="5.6377%" y="421" width="0.0341%" height="15" fill="rgb(245,21,50)" fg:x="130926" fg:w="792"/><text x="5.8877%" y="431.50"></text></g><g><title>clang::Preprocessor::Lex (519 samples, 0.02%)</title><rect x="5.6495%" y="405" width="0.0223%" height="15" fill="rgb(228,9,43)" fg:x="131199" fg:w="519"/><text x="5.8995%" y="415.50"></text></g><g><title>clang::Lexer::LexTokenInternal (514 samples, 0.02%)</title><rect x="5.6497%" y="389" width="0.0221%" height="15" fill="rgb(208,100,47)" fg:x="131204" fg:w="514"/><text x="5.8997%" y="399.50"></text></g><g><title>clang::ExecuteCompilerInvocation (1,519 samples, 0.07%)</title><rect x="5.6076%" y="469" width="0.0654%" height="15" fill="rgb(232,26,8)" fg:x="130226" fg:w="1519"/><text x="5.8576%" y="479.50"></text></g><g><title>clang::driver::CC1Command::Execute (1,588 samples, 0.07%)</title><rect x="5.6058%" y="549" width="0.0684%" height="15" fill="rgb(216,166,38)" fg:x="130184" fg:w="1588"/><text x="5.8558%" y="559.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (1,588 samples, 0.07%)</title><rect x="5.6058%" y="533" width="0.0684%" height="15" fill="rgb(251,202,51)" fg:x="130184" fg:w="1588"/><text x="5.8558%" y="543.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (1,582 samples, 0.07%)</title><rect x="5.6060%" y="517" width="0.0681%" height="15" fill="rgb(254,216,34)" fg:x="130190" fg:w="1582"/><text x="5.8560%" y="527.50"></text></g><g><title>ExecuteCC1Tool (1,582 samples, 0.07%)</title><rect x="5.6060%" y="501" width="0.0681%" height="15" fill="rgb(251,32,27)" fg:x="130190" fg:w="1582"/><text x="5.8560%" y="511.50"></text></g><g><title>cc1_main (1,582 samples, 0.07%)</title><rect x="5.6060%" y="485" width="0.0681%" height="15" fill="rgb(208,127,28)" fg:x="130190" fg:w="1582"/><text x="5.8560%" y="495.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (1,600 samples, 0.07%)</title><rect x="5.6058%" y="597" width="0.0689%" height="15" fill="rgb(224,137,22)" fg:x="130184" fg:w="1600"/><text x="5.8558%" y="607.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (1,600 samples, 0.07%)</title><rect x="5.6058%" y="581" width="0.0689%" height="15" fill="rgb(254,70,32)" fg:x="130184" fg:w="1600"/><text x="5.8558%" y="591.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (1,600 samples, 0.07%)</title><rect x="5.6058%" y="565" width="0.0689%" height="15" fill="rgb(229,75,37)" fg:x="130184" fg:w="1600"/><text x="5.8558%" y="575.50"></text></g><g><title>main (3,383 samples, 0.15%)</title><rect x="5.5314%" y="613" width="0.1457%" height="15" fill="rgb(252,64,23)" fg:x="128456" fg:w="3383"/><text x="5.7814%" y="623.50"></text></g><g><title>[unknown] (7,087 samples, 0.31%)</title><rect x="5.3726%" y="629" width="0.3052%" height="15" fill="rgb(232,162,48)" fg:x="124769" fg:w="7087"/><text x="5.6226%" y="639.50"></text></g><g><title>_ZdlPv (280 samples, 0.01%)</title><rect x="5.6805%" y="341" width="0.0121%" height="15" fill="rgb(246,160,12)" fg:x="131919" fg:w="280"/><text x="5.9305%" y="351.50"></text></g><g><title>_ZdlPv (280 samples, 0.01%)</title><rect x="5.6805%" y="325" width="0.0121%" height="15" fill="rgb(247,166,0)" fg:x="131919" fg:w="280"/><text x="5.9305%" y="335.50"></text></g><g><title>_ZdlPv (280 samples, 0.01%)</title><rect x="5.6805%" y="309" width="0.0121%" height="15" fill="rgb(249,219,21)" fg:x="131919" fg:w="280"/><text x="5.9305%" y="319.50"></text></g><g><title>cshook_security_file_permission (487 samples, 0.02%)</title><rect x="5.6805%" y="389" width="0.0210%" height="15" fill="rgb(205,209,3)" fg:x="131918" fg:w="487"/><text x="5.9305%" y="399.50"></text></g><g><title>cshook_security_sb_free_security (486 samples, 0.02%)</title><rect x="5.6805%" y="373" width="0.0209%" height="15" fill="rgb(243,44,1)" fg:x="131919" fg:w="486"/><text x="5.9305%" y="383.50"></text></g><g><title>cshook_security_sb_free_security (486 samples, 0.02%)</title><rect x="5.6805%" y="357" width="0.0209%" height="15" fill="rgb(206,159,16)" fg:x="131919" fg:w="486"/><text x="5.9305%" y="367.50"></text></g><g><title>exec_binprm (515 samples, 0.02%)</title><rect x="5.6793%" y="485" width="0.0222%" height="15" fill="rgb(244,77,30)" fg:x="131891" fg:w="515"/><text x="5.9293%" y="495.50"></text></g><g><title>search_binary_handler (515 samples, 0.02%)</title><rect x="5.6793%" y="469" width="0.0222%" height="15" fill="rgb(218,69,12)" fg:x="131891" fg:w="515"/><text x="5.9293%" y="479.50"></text></g><g><title>security_bprm_check (491 samples, 0.02%)</title><rect x="5.6803%" y="453" width="0.0211%" height="15" fill="rgb(212,87,7)" fg:x="131915" fg:w="491"/><text x="5.9303%" y="463.50"></text></g><g><title>pinnedhook_security_bprm_check_security (491 samples, 0.02%)</title><rect x="5.6803%" y="437" width="0.0211%" height="15" fill="rgb(245,114,25)" fg:x="131915" fg:w="491"/><text x="5.9303%" y="447.50"></text></g><g><title>cshook_security_bprm_check_security (491 samples, 0.02%)</title><rect x="5.6803%" y="421" width="0.0211%" height="15" fill="rgb(210,61,42)" fg:x="131915" fg:w="491"/><text x="5.9303%" y="431.50"></text></g><g><title>cshook_security_file_permission (491 samples, 0.02%)</title><rect x="5.6803%" y="405" width="0.0211%" height="15" fill="rgb(211,52,33)" fg:x="131915" fg:w="491"/><text x="5.9303%" y="415.50"></text></g><g><title>bprm_execve.part.0 (527 samples, 0.02%)</title><rect x="5.6792%" y="501" width="0.0227%" height="15" fill="rgb(234,58,33)" fg:x="131889" fg:w="527"/><text x="5.9292%" y="511.50"></text></g><g><title>bprm_execve (530 samples, 0.02%)</title><rect x="5.6792%" y="517" width="0.0228%" height="15" fill="rgb(220,115,36)" fg:x="131889" fg:w="530"/><text x="5.9292%" y="527.50"></text></g><g><title>do_execveat_common.isra.0 (539 samples, 0.02%)</title><rect x="5.6791%" y="533" width="0.0232%" height="15" fill="rgb(243,153,54)" fg:x="131886" fg:w="539"/><text x="5.9291%" y="543.50"></text></g><g><title>__spawni_child (561 samples, 0.02%)</title><rect x="5.6782%" y="613" width="0.0242%" height="15" fill="rgb(251,47,18)" fg:x="131865" fg:w="561"/><text x="5.9282%" y="623.50"></text></g><g><title>__GI_execve (540 samples, 0.02%)</title><rect x="5.6791%" y="597" width="0.0233%" height="15" fill="rgb(242,102,42)" fg:x="131886" fg:w="540"/><text x="5.9291%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (540 samples, 0.02%)</title><rect x="5.6791%" y="581" width="0.0233%" height="15" fill="rgb(234,31,38)" fg:x="131886" fg:w="540"/><text x="5.9291%" y="591.50"></text></g><g><title>do_syscall_64 (540 samples, 0.02%)</title><rect x="5.6791%" y="565" width="0.0233%" height="15" fill="rgb(221,117,51)" fg:x="131886" fg:w="540"/><text x="5.9291%" y="575.50"></text></g><g><title>__x64_sys_execve (540 samples, 0.02%)</title><rect x="5.6791%" y="549" width="0.0233%" height="15" fill="rgb(212,20,18)" fg:x="131886" fg:w="540"/><text x="5.9291%" y="559.50"></text></g><g><title>__clone3 (807 samples, 0.03%)</title><rect x="5.6781%" y="629" width="0.0347%" height="15" fill="rgb(245,133,36)" fg:x="131864" fg:w="807"/><text x="5.9281%" y="639.50"></text></g><g><title>__libc_csu_init (1,292 samples, 0.06%)</title><rect x="5.7147%" y="597" width="0.0556%" height="15" fill="rgb(212,6,19)" fg:x="132714" fg:w="1292"/><text x="5.9647%" y="607.50"></text></g><g><title>__libc_start_call_main (1,024 samples, 0.04%)</title><rect x="5.7704%" y="597" width="0.0441%" height="15" fill="rgb(218,1,36)" fg:x="134006" fg:w="1024"/><text x="6.0204%" y="607.50"></text></g><g><title>main (865 samples, 0.04%)</title><rect x="5.7772%" y="581" width="0.0372%" height="15" fill="rgb(246,84,54)" fg:x="134165" fg:w="865"/><text x="6.0272%" y="591.50"></text></g><g><title>__libc_start_main_impl (2,317 samples, 0.10%)</title><rect x="5.7147%" y="613" width="0.0998%" height="15" fill="rgb(242,110,6)" fg:x="132714" fg:w="2317"/><text x="5.9647%" y="623.50"></text></g><g><title>_dl_map_object_deps (290 samples, 0.01%)</title><rect x="5.8161%" y="549" width="0.0125%" height="15" fill="rgb(214,47,5)" fg:x="135069" fg:w="290"/><text x="6.0661%" y="559.50"></text></g><g><title>_dl_catch_exception (288 samples, 0.01%)</title><rect x="5.8162%" y="533" width="0.0124%" height="15" fill="rgb(218,159,25)" fg:x="135071" fg:w="288"/><text x="6.0662%" y="543.50"></text></g><g><title>openaux (287 samples, 0.01%)</title><rect x="5.8163%" y="517" width="0.0124%" height="15" fill="rgb(215,211,28)" fg:x="135072" fg:w="287"/><text x="6.0663%" y="527.50"></text></g><g><title>_dl_map_object (287 samples, 0.01%)</title><rect x="5.8163%" y="501" width="0.0124%" height="15" fill="rgb(238,59,32)" fg:x="135072" fg:w="287"/><text x="6.0663%" y="511.50"></text></g><g><title>_dl_lookup_symbol_x (300 samples, 0.01%)</title><rect x="5.8363%" y="501" width="0.0129%" height="15" fill="rgb(226,82,3)" fg:x="135538" fg:w="300"/><text x="6.0863%" y="511.50"></text></g><g><title>__handle_mm_fault (252 samples, 0.01%)</title><rect x="5.8502%" y="437" width="0.0109%" height="15" fill="rgb(240,164,32)" fg:x="135861" fg:w="252"/><text x="6.1002%" y="447.50"></text></g><g><title>handle_pte_fault (239 samples, 0.01%)</title><rect x="5.8508%" y="421" width="0.0103%" height="15" fill="rgb(232,46,7)" fg:x="135874" fg:w="239"/><text x="6.1008%" y="431.50"></text></g><g><title>do_user_addr_fault (273 samples, 0.01%)</title><rect x="5.8494%" y="469" width="0.0118%" height="15" fill="rgb(229,129,53)" fg:x="135842" fg:w="273"/><text x="6.0994%" y="479.50"></text></g><g><title>handle_mm_fault (262 samples, 0.01%)</title><rect x="5.8499%" y="453" width="0.0113%" height="15" fill="rgb(234,188,29)" fg:x="135853" fg:w="262"/><text x="6.0999%" y="463.50"></text></g><g><title>asm_exc_page_fault (284 samples, 0.01%)</title><rect x="5.8492%" y="501" width="0.0122%" height="15" fill="rgb(246,141,4)" fg:x="135838" fg:w="284"/><text x="6.0992%" y="511.50"></text></g><g><title>exc_page_fault (282 samples, 0.01%)</title><rect x="5.8493%" y="485" width="0.0121%" height="15" fill="rgb(229,23,39)" fg:x="135840" fg:w="282"/><text x="6.0993%" y="495.50"></text></g><g><title>elf_machine_rela (691 samples, 0.03%)</title><rect x="5.8326%" y="517" width="0.0298%" height="15" fill="rgb(206,12,3)" fg:x="135451" fg:w="691"/><text x="6.0826%" y="527.50"></text></g><g><title>elf_dynamic_do_Rela (773 samples, 0.03%)</title><rect x="5.8303%" y="533" width="0.0333%" height="15" fill="rgb(252,226,20)" fg:x="135399" fg:w="773"/><text x="6.0803%" y="543.50"></text></g><g><title>_dl_relocate_object (806 samples, 0.03%)</title><rect x="5.8291%" y="549" width="0.0347%" height="15" fill="rgb(216,123,35)" fg:x="135370" fg:w="806"/><text x="6.0791%" y="559.50"></text></g><g><title>dl_main (1,180 samples, 0.05%)</title><rect x="5.8147%" y="565" width="0.0508%" height="15" fill="rgb(212,68,40)" fg:x="135035" fg:w="1180"/><text x="6.0647%" y="575.50"></text></g><g><title>_dl_start_final (1,192 samples, 0.05%)</title><rect x="5.8145%" y="597" width="0.0513%" height="15" fill="rgb(254,125,32)" fg:x="135032" fg:w="1192"/><text x="6.0645%" y="607.50"></text></g><g><title>_dl_sysdep_start (1,192 samples, 0.05%)</title><rect x="5.8145%" y="581" width="0.0513%" height="15" fill="rgb(253,97,22)" fg:x="135032" fg:w="1192"/><text x="6.0645%" y="591.50"></text></g><g><title>_dl_start (1,197 samples, 0.05%)</title><rect x="5.8145%" y="613" width="0.0515%" height="15" fill="rgb(241,101,14)" fg:x="135031" fg:w="1197"/><text x="6.0645%" y="623.50"></text></g><g><title>_start (3,526 samples, 0.15%)</title><rect x="5.7147%" y="629" width="0.1518%" height="15" fill="rgb(238,103,29)" fg:x="132714" fg:w="3526"/><text x="5.9647%" y="639.50"></text></g><g><title>asm_exc_page_fault (361 samples, 0.02%)</title><rect x="5.8666%" y="629" width="0.0155%" height="15" fill="rgb(233,195,47)" fg:x="136240" fg:w="361"/><text x="6.1166%" y="639.50"></text></g><g><title>page_remove_rmap (322 samples, 0.01%)</title><rect x="5.9040%" y="421" width="0.0139%" height="15" fill="rgb(246,218,30)" fg:x="137110" fg:w="322"/><text x="6.1540%" y="431.50"></text></g><g><title>exit_mm (911 samples, 0.04%)</title><rect x="5.8852%" y="549" width="0.0392%" height="15" fill="rgb(219,145,47)" fg:x="136672" fg:w="911"/><text x="6.1352%" y="559.50"></text></g><g><title>mmput (911 samples, 0.04%)</title><rect x="5.8852%" y="533" width="0.0392%" height="15" fill="rgb(243,12,26)" fg:x="136672" fg:w="911"/><text x="6.1352%" y="543.50"></text></g><g><title>exit_mmap (911 samples, 0.04%)</title><rect x="5.8852%" y="517" width="0.0392%" height="15" fill="rgb(214,87,16)" fg:x="136672" fg:w="911"/><text x="6.1352%" y="527.50"></text></g><g><title>unmap_vmas (811 samples, 0.03%)</title><rect x="5.8895%" y="501" width="0.0349%" height="15" fill="rgb(208,99,42)" fg:x="136772" fg:w="811"/><text x="6.1395%" y="511.50"></text></g><g><title>unmap_single_vma (810 samples, 0.03%)</title><rect x="5.8895%" y="485" width="0.0349%" height="15" fill="rgb(253,99,2)" fg:x="136773" fg:w="810"/><text x="6.1395%" y="495.50"></text></g><g><title>unmap_page_range (810 samples, 0.03%)</title><rect x="5.8895%" y="469" width="0.0349%" height="15" fill="rgb(220,168,23)" fg:x="136773" fg:w="810"/><text x="6.1395%" y="479.50"></text></g><g><title>zap_pmd_range.isra.0 (808 samples, 0.03%)</title><rect x="5.8896%" y="453" width="0.0348%" height="15" fill="rgb(242,38,24)" fg:x="136775" fg:w="808"/><text x="6.1396%" y="463.50"></text></g><g><title>zap_pte_range (783 samples, 0.03%)</title><rect x="5.8907%" y="437" width="0.0337%" height="15" fill="rgb(225,182,9)" fg:x="136800" fg:w="783"/><text x="6.1407%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (969 samples, 0.04%)</title><rect x="5.8830%" y="629" width="0.0417%" height="15" fill="rgb(243,178,37)" fg:x="136623" fg:w="969"/><text x="6.1330%" y="639.50"></text></g><g><title>do_syscall_64 (966 samples, 0.04%)</title><rect x="5.8832%" y="613" width="0.0416%" height="15" fill="rgb(232,139,19)" fg:x="136626" fg:w="966"/><text x="6.1332%" y="623.50"></text></g><g><title>__x64_sys_exit_group (928 samples, 0.04%)</title><rect x="5.8848%" y="597" width="0.0400%" height="15" fill="rgb(225,201,24)" fg:x="136664" fg:w="928"/><text x="6.1348%" y="607.50"></text></g><g><title>do_group_exit (928 samples, 0.04%)</title><rect x="5.8848%" y="581" width="0.0400%" height="15" fill="rgb(221,47,46)" fg:x="136664" fg:w="928"/><text x="6.1348%" y="591.50"></text></g><g><title>do_exit (928 samples, 0.04%)</title><rect x="5.8848%" y="565" width="0.0400%" height="15" fill="rgb(249,23,13)" fg:x="136664" fg:w="928"/><text x="6.1348%" y="575.50"></text></g><g><title>clang (13,598 samples, 0.59%)</title><rect x="5.3403%" y="645" width="0.5855%" height="15" fill="rgb(219,9,5)" fg:x="124018" fg:w="13598"/><text x="5.5903%" y="655.50"></text></g><g><title>[perf-731527.map] (490 samples, 0.02%)</title><rect x="5.9275%" y="629" width="0.0211%" height="15" fill="rgb(254,171,16)" fg:x="137656" fg:w="490"/><text x="6.1775%" y="639.50"></text></g><g><title>find-action-loo (511 samples, 0.02%)</title><rect x="5.9273%" y="645" width="0.0220%" height="15" fill="rgb(230,171,20)" fg:x="137651" fg:w="511"/><text x="6.1773%" y="655.50"></text></g><g><title>[perf-731527.map] (267 samples, 0.01%)</title><rect x="5.9582%" y="629" width="0.0115%" height="15" fill="rgb(210,71,41)" fg:x="138368" fg:w="267"/><text x="6.2082%" y="639.50"></text></g><g><title>globbing_pool-1 (436 samples, 0.02%)</title><rect x="5.9556%" y="645" width="0.0188%" height="15" fill="rgb(206,173,20)" fg:x="138307" fg:w="436"/><text x="6.2056%" y="655.50"></text></g><g><title>globbing_pool-2 (409 samples, 0.02%)</title><rect x="5.9743%" y="645" width="0.0176%" height="15" fill="rgb(233,88,34)" fg:x="138743" fg:w="409"/><text x="6.2243%" y="655.50"></text></g><g><title>globbing_pool-3 (297 samples, 0.01%)</title><rect x="5.9919%" y="645" width="0.0128%" height="15" fill="rgb(223,209,46)" fg:x="139152" fg:w="297"/><text x="6.2419%" y="655.50"></text></g><g><title>globbing_pool-4 (241 samples, 0.01%)</title><rect x="6.0047%" y="645" width="0.0104%" height="15" fill="rgb(250,43,18)" fg:x="139449" fg:w="241"/><text x="6.2547%" y="655.50"></text></g><g><title>globbing_pool-5 (297 samples, 0.01%)</title><rect x="6.0151%" y="645" width="0.0128%" height="15" fill="rgb(208,13,10)" fg:x="139690" fg:w="297"/><text x="6.2651%" y="655.50"></text></g><g><title>globbing_pool-6 (286 samples, 0.01%)</title><rect x="6.0279%" y="645" width="0.0123%" height="15" fill="rgb(212,200,36)" fg:x="139987" fg:w="286"/><text x="6.2779%" y="655.50"></text></g><g><title>[perf-731527.map] (365 samples, 0.02%)</title><rect x="6.0430%" y="629" width="0.0157%" height="15" fill="rgb(225,90,30)" fg:x="140337" fg:w="365"/><text x="6.2930%" y="639.50"></text></g><g><title>globbing_pool-7 (706 samples, 0.03%)</title><rect x="6.0402%" y="645" width="0.0304%" height="15" fill="rgb(236,182,39)" fg:x="140273" fg:w="706"/><text x="6.2902%" y="655.50"></text></g><g><title>globbing_pool-9 (244 samples, 0.01%)</title><rect x="6.0801%" y="645" width="0.0105%" height="15" fill="rgb(212,144,35)" fg:x="141198" fg:w="244"/><text x="6.3301%" y="655.50"></text></g><g><title>InterpreterRuntime::_new (292 samples, 0.01%)</title><rect x="6.1942%" y="613" width="0.0126%" height="15" fill="rgb(228,63,44)" fg:x="143850" fg:w="292"/><text x="6.4442%" y="623.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (272 samples, 0.01%)</title><rect x="6.2180%" y="597" width="0.0117%" height="15" fill="rgb(228,109,6)" fg:x="144401" fg:w="272"/><text x="6.4680%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (422 samples, 0.02%)</title><rect x="6.2135%" y="613" width="0.0182%" height="15" fill="rgb(238,117,24)" fg:x="144297" fg:w="422"/><text x="6.4635%" y="623.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (545 samples, 0.02%)</title><rect x="6.2487%" y="485" width="0.0235%" height="15" fill="rgb(242,26,26)" fg:x="145115" fg:w="545"/><text x="6.4987%" y="495.50"></text></g><g><title>SymbolTable::lookup_only (459 samples, 0.02%)</title><rect x="6.2524%" y="469" width="0.0198%" height="15" fill="rgb(221,92,48)" fg:x="145201" fg:w="459"/><text x="6.5024%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (565 samples, 0.02%)</title><rect x="6.2481%" y="501" width="0.0243%" height="15" fill="rgb(209,209,32)" fg:x="145101" fg:w="565"/><text x="6.4981%" y="511.50"></text></g><g><title>ClassFileParser::ClassFileParser (764 samples, 0.03%)</title><rect x="6.2474%" y="533" width="0.0329%" height="15" fill="rgb(221,70,22)" fg:x="145085" fg:w="764"/><text x="6.4974%" y="543.50"></text></g><g><title>ClassFileParser::parse_stream (762 samples, 0.03%)</title><rect x="6.2475%" y="517" width="0.0328%" height="15" fill="rgb(248,145,5)" fg:x="145087" fg:w="762"/><text x="6.4975%" y="527.50"></text></g><g><title>KlassFactory::create_from_stream (988 samples, 0.04%)</title><rect x="6.2474%" y="549" width="0.0425%" height="15" fill="rgb(226,116,26)" fg:x="145084" fg:w="988"/><text x="6.4974%" y="559.50"></text></g><g><title>JVM_DefineClassWithSource (1,039 samples, 0.04%)</title><rect x="6.2470%" y="597" width="0.0447%" height="15" fill="rgb(244,5,17)" fg:x="145075" fg:w="1039"/><text x="6.4970%" y="607.50"></text></g><g><title>jvm_define_class_common (1,037 samples, 0.04%)</title><rect x="6.2471%" y="581" width="0.0447%" height="15" fill="rgb(252,159,33)" fg:x="145077" fg:w="1037"/><text x="6.4971%" y="591.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,030 samples, 0.04%)</title><rect x="6.2474%" y="565" width="0.0444%" height="15" fill="rgb(206,71,0)" fg:x="145084" fg:w="1030"/><text x="6.4974%" y="575.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,079 samples, 0.05%)</title><rect x="6.2469%" y="613" width="0.0465%" height="15" fill="rgb(233,118,54)" fg:x="145072" fg:w="1079"/><text x="6.4969%" y="623.50"></text></g><g><title>[perf-731527.map] (4,798 samples, 0.21%)</title><rect x="6.1024%" y="629" width="0.2066%" height="15" fill="rgb(234,83,48)" fg:x="141716" fg:w="4798"/><text x="6.3524%" y="639.50"></text></g><g><title>__clone3 (244 samples, 0.01%)</title><rect x="6.3162%" y="629" width="0.0105%" height="15" fill="rgb(228,3,54)" fg:x="146683" fg:w="244"/><text x="6.5662%" y="639.50"></text></g><g><title>java (5,601 samples, 0.24%)</title><rect x="6.0906%" y="645" width="0.2412%" height="15" fill="rgb(226,155,13)" fg:x="141442" fg:w="5601"/><text x="6.3406%" y="655.50"></text></g><g><title>[unknown] (410 samples, 0.02%)</title><rect x="6.3430%" y="629" width="0.0177%" height="15" fill="rgb(241,28,37)" fg:x="147304" fg:w="410"/><text x="6.5930%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (306 samples, 0.01%)</title><rect x="6.3689%" y="357" width="0.0132%" height="15" fill="rgb(233,93,10)" fg:x="147906" fg:w="306"/><text x="6.6189%" y="367.50"></text></g><g><title>x86_pmu_enable (304 samples, 0.01%)</title><rect x="6.3690%" y="341" width="0.0131%" height="15" fill="rgb(225,113,19)" fg:x="147908" fg:w="304"/><text x="6.6190%" y="351.50"></text></g><g><title>intel_pmu_enable_all (303 samples, 0.01%)</title><rect x="6.3690%" y="325" width="0.0130%" height="15" fill="rgb(241,2,18)" fg:x="147909" fg:w="303"/><text x="6.6190%" y="335.50"></text></g><g><title>native_write_msr (302 samples, 0.01%)</title><rect x="6.3691%" y="309" width="0.0130%" height="15" fill="rgb(228,207,21)" fg:x="147910" fg:w="302"/><text x="6.6191%" y="319.50"></text></g><g><title>finish_task_switch.isra.0 (313 samples, 0.01%)</title><rect x="6.3688%" y="373" width="0.0135%" height="15" fill="rgb(213,211,35)" fg:x="147903" fg:w="313"/><text x="6.6188%" y="383.50"></text></g><g><title>futex_wait_queue_me (390 samples, 0.02%)</title><rect x="6.3671%" y="421" width="0.0168%" height="15" fill="rgb(209,83,10)" fg:x="147865" fg:w="390"/><text x="6.6171%" y="431.50"></text></g><g><title>schedule (389 samples, 0.02%)</title><rect x="6.3672%" y="405" width="0.0168%" height="15" fill="rgb(209,164,1)" fg:x="147866" fg:w="389"/><text x="6.6172%" y="415.50"></text></g><g><title>__schedule (389 samples, 0.02%)</title><rect x="6.3672%" y="389" width="0.0168%" height="15" fill="rgb(213,184,43)" fg:x="147866" fg:w="389"/><text x="6.6172%" y="399.50"></text></g><g><title>__x64_sys_futex (413 samples, 0.02%)</title><rect x="6.3668%" y="469" width="0.0178%" height="15" fill="rgb(231,61,34)" fg:x="147857" fg:w="413"/><text x="6.6168%" y="479.50"></text></g><g><title>do_futex (409 samples, 0.02%)</title><rect x="6.3670%" y="453" width="0.0176%" height="15" fill="rgb(235,75,3)" fg:x="147861" fg:w="409"/><text x="6.6170%" y="463.50"></text></g><g><title>futex_wait (409 samples, 0.02%)</title><rect x="6.3670%" y="437" width="0.0176%" height="15" fill="rgb(220,106,47)" fg:x="147861" fg:w="409"/><text x="6.6170%" y="447.50"></text></g><g><title>do_syscall_64 (441 samples, 0.02%)</title><rect x="6.3667%" y="485" width="0.0190%" height="15" fill="rgb(210,196,33)" fg:x="147855" fg:w="441"/><text x="6.6167%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (443 samples, 0.02%)</title><rect x="6.3667%" y="501" width="0.0191%" height="15" fill="rgb(229,154,42)" fg:x="147854" fg:w="443"/><text x="6.6167%" y="511.50"></text></g><g><title>___pthread_mutex_lock (480 samples, 0.02%)</title><rect x="6.3652%" y="565" width="0.0207%" height="15" fill="rgb(228,114,26)" fg:x="147820" fg:w="480"/><text x="6.6152%" y="575.50"></text></g><g><title>lll_mutex_lock_optimized (468 samples, 0.02%)</title><rect x="6.3657%" y="549" width="0.0202%" height="15" fill="rgb(208,144,1)" fg:x="147832" fg:w="468"/><text x="6.6157%" y="559.50"></text></g><g><title>__GI___lll_lock_wait (457 samples, 0.02%)</title><rect x="6.3662%" y="533" width="0.0197%" height="15" fill="rgb(239,112,37)" fg:x="147843" fg:w="457"/><text x="6.6162%" y="543.50"></text></g><g><title>futex_wait (448 samples, 0.02%)</title><rect x="6.3666%" y="517" width="0.0193%" height="15" fill="rgb(210,96,50)" fg:x="147852" fg:w="448"/><text x="6.6166%" y="527.50"></text></g><g><title>___pthread_mutex_unlock (260 samples, 0.01%)</title><rect x="6.3859%" y="565" width="0.0112%" height="15" fill="rgb(222,178,2)" fg:x="148300" fg:w="260"/><text x="6.6359%" y="575.50"></text></g><g><title>__GI___pthread_mutex_unlock_usercnt (259 samples, 0.01%)</title><rect x="6.3859%" y="549" width="0.0112%" height="15" fill="rgb(226,74,18)" fg:x="148301" fg:w="259"/><text x="6.6359%" y="559.50"></text></g><g><title>lll_mutex_unlock_optimized (252 samples, 0.01%)</title><rect x="6.3862%" y="533" width="0.0109%" height="15" fill="rgb(225,67,54)" fg:x="148308" fg:w="252"/><text x="6.6362%" y="543.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (246 samples, 0.01%)</title><rect x="6.3973%" y="565" width="0.0106%" height="15" fill="rgb(251,92,32)" fg:x="148565" fg:w="246"/><text x="6.6473%" y="575.50"></text></g><g><title>dequeue_task_fair (241 samples, 0.01%)</title><rect x="6.4377%" y="325" width="0.0104%" height="15" fill="rgb(228,149,22)" fg:x="149503" fg:w="241"/><text x="6.6877%" y="335.50"></text></g><g><title>dequeue_task (266 samples, 0.01%)</title><rect x="6.4371%" y="341" width="0.0115%" height="15" fill="rgb(243,54,13)" fg:x="149490" fg:w="266"/><text x="6.6871%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (5,063 samples, 0.22%)</title><rect x="6.4517%" y="325" width="0.2180%" height="15" fill="rgb(243,180,28)" fg:x="149828" fg:w="5063"/><text x="6.7017%" y="335.50"></text></g><g><title>x86_pmu_enable (5,002 samples, 0.22%)</title><rect x="6.4543%" y="309" width="0.2154%" height="15" fill="rgb(208,167,24)" fg:x="149889" fg:w="5002"/><text x="6.7043%" y="319.50"></text></g><g><title>intel_pmu_enable_all (4,989 samples, 0.21%)</title><rect x="6.4548%" y="293" width="0.2148%" height="15" fill="rgb(245,73,45)" fg:x="149902" fg:w="4989"/><text x="6.7048%" y="303.50"></text></g><g><title>native_write_msr (4,967 samples, 0.21%)</title><rect x="6.4558%" y="277" width="0.2139%" height="15" fill="rgb(237,203,48)" fg:x="149924" fg:w="4967"/><text x="6.7058%" y="287.50"></text></g><g><title>finish_task_switch.isra.0 (5,220 samples, 0.22%)</title><rect x="6.4486%" y="341" width="0.2248%" height="15" fill="rgb(211,197,16)" fg:x="149756" fg:w="5220"/><text x="6.6986%" y="351.50"></text></g><g><title>__schedule (5,996 samples, 0.26%)</title><rect x="6.4324%" y="357" width="0.2582%" height="15" fill="rgb(243,99,51)" fg:x="149380" fg:w="5996"/><text x="6.6824%" y="367.50"></text></g><g><title>futex_wait_queue_me (6,080 samples, 0.26%)</title><rect x="6.4291%" y="389" width="0.2618%" height="15" fill="rgb(215,123,29)" fg:x="149303" fg:w="6080"/><text x="6.6791%" y="399.50"></text></g><g><title>schedule (6,017 samples, 0.26%)</title><rect x="6.4318%" y="373" width="0.2591%" height="15" fill="rgb(239,186,37)" fg:x="149366" fg:w="6017"/><text x="6.6818%" y="383.50"></text></g><g><title>futex_wait (6,208 samples, 0.27%)</title><rect x="6.4263%" y="405" width="0.2673%" height="15" fill="rgb(252,136,39)" fg:x="149240" fg:w="6208"/><text x="6.6763%" y="415.50"></text></g><g><title>do_futex (6,230 samples, 0.27%)</title><rect x="6.4254%" y="421" width="0.2683%" height="15" fill="rgb(223,213,32)" fg:x="149219" fg:w="6230"/><text x="6.6754%" y="431.50"></text></g><g><title>__x64_sys_futex (6,260 samples, 0.27%)</title><rect x="6.4242%" y="437" width="0.2696%" height="15" fill="rgb(233,115,5)" fg:x="149191" fg:w="6260"/><text x="6.6742%" y="447.50"></text></g><g><title>exit_to_user_mode_prepare (259 samples, 0.01%)</title><rect x="6.6950%" y="421" width="0.0112%" height="15" fill="rgb(207,226,44)" fg:x="155479" fg:w="259"/><text x="6.9450%" y="431.50"></text></g><g><title>do_syscall_64 (6,572 samples, 0.28%)</title><rect x="6.4234%" y="453" width="0.2830%" height="15" fill="rgb(208,126,0)" fg:x="149172" fg:w="6572"/><text x="6.6734%" y="463.50"></text></g><g><title>syscall_exit_to_user_mode (281 samples, 0.01%)</title><rect x="6.6943%" y="437" width="0.0121%" height="15" fill="rgb(244,66,21)" fg:x="155463" fg:w="281"/><text x="6.9443%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (6,598 samples, 0.28%)</title><rect x="6.4229%" y="469" width="0.2841%" height="15" fill="rgb(222,97,12)" fg:x="149159" fg:w="6598"/><text x="6.6729%" y="479.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (6,709 samples, 0.29%)</title><rect x="6.4192%" y="517" width="0.2889%" height="15" fill="rgb(219,213,19)" fg:x="149075" fg:w="6709"/><text x="6.6692%" y="527.50"></text></g><g><title>__futex_abstimed_wait_common (6,708 samples, 0.29%)</title><rect x="6.4193%" y="501" width="0.2888%" height="15" fill="rgb(252,169,30)" fg:x="149076" fg:w="6708"/><text x="6.6693%" y="511.50"></text></g><g><title>__futex_abstimed_wait_common64 (6,701 samples, 0.29%)</title><rect x="6.4196%" y="485" width="0.2885%" height="15" fill="rgb(206,32,51)" fg:x="149083" fg:w="6701"/><text x="6.6696%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (495 samples, 0.02%)</title><rect x="6.7294%" y="325" width="0.0213%" height="15" fill="rgb(250,172,42)" fg:x="156279" fg:w="495"/><text x="6.9794%" y="335.50"></text></g><g><title>x86_pmu_enable (488 samples, 0.02%)</title><rect x="6.7297%" y="309" width="0.0210%" height="15" fill="rgb(209,34,43)" fg:x="156286" fg:w="488"/><text x="6.9797%" y="319.50"></text></g><g><title>intel_pmu_enable_all (486 samples, 0.02%)</title><rect x="6.7298%" y="293" width="0.0209%" height="15" fill="rgb(223,11,35)" fg:x="156288" fg:w="486"/><text x="6.9798%" y="303.50"></text></g><g><title>native_write_msr (486 samples, 0.02%)</title><rect x="6.7298%" y="277" width="0.0209%" height="15" fill="rgb(251,219,26)" fg:x="156288" fg:w="486"/><text x="6.9798%" y="287.50"></text></g><g><title>finish_task_switch.isra.0 (511 samples, 0.02%)</title><rect x="6.7290%" y="341" width="0.0220%" height="15" fill="rgb(231,119,3)" fg:x="156269" fg:w="511"/><text x="6.9790%" y="351.50"></text></g><g><title>futex_wait_queue_me (593 samples, 0.03%)</title><rect x="6.7269%" y="389" width="0.0255%" height="15" fill="rgb(216,97,11)" fg:x="156221" fg:w="593"/><text x="6.9769%" y="399.50"></text></g><g><title>schedule (584 samples, 0.03%)</title><rect x="6.7273%" y="373" width="0.0251%" height="15" fill="rgb(223,59,9)" fg:x="156230" fg:w="584"/><text x="6.9773%" y="383.50"></text></g><g><title>__schedule (583 samples, 0.03%)</title><rect x="6.7274%" y="357" width="0.0251%" height="15" fill="rgb(233,93,31)" fg:x="156231" fg:w="583"/><text x="6.9774%" y="367.50"></text></g><g><title>__x64_sys_futex (637 samples, 0.03%)</title><rect x="6.7260%" y="437" width="0.0274%" height="15" fill="rgb(239,81,33)" fg:x="156200" fg:w="637"/><text x="6.9760%" y="447.50"></text></g><g><title>do_futex (636 samples, 0.03%)</title><rect x="6.7261%" y="421" width="0.0274%" height="15" fill="rgb(213,120,34)" fg:x="156201" fg:w="636"/><text x="6.9761%" y="431.50"></text></g><g><title>futex_wait (633 samples, 0.03%)</title><rect x="6.7262%" y="405" width="0.0273%" height="15" fill="rgb(243,49,53)" fg:x="156204" fg:w="633"/><text x="6.9762%" y="415.50"></text></g><g><title>do_syscall_64 (664 samples, 0.03%)</title><rect x="6.7260%" y="453" width="0.0286%" height="15" fill="rgb(247,216,33)" fg:x="156198" fg:w="664"/><text x="6.9760%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (670 samples, 0.03%)</title><rect x="6.7258%" y="469" width="0.0289%" height="15" fill="rgb(226,26,14)" fg:x="156195" fg:w="670"/><text x="6.9758%" y="479.50"></text></g><g><title>___pthread_cond_wait (7,840 samples, 0.34%)</title><rect x="6.4171%" y="549" width="0.3376%" height="15" fill="rgb(215,49,53)" fg:x="149026" fg:w="7840"/><text x="6.6671%" y="559.50"></text></g><g><title>__pthread_cond_wait_common (7,840 samples, 0.34%)</title><rect x="6.4171%" y="533" width="0.3376%" height="15" fill="rgb(245,162,40)" fg:x="149026" fg:w="7840"/><text x="6.6671%" y="543.50"></text></g><g><title>__pthread_mutex_cond_lock (703 samples, 0.03%)</title><rect x="6.7245%" y="517" width="0.0303%" height="15" fill="rgb(229,68,17)" fg:x="156163" fg:w="703"/><text x="6.9745%" y="527.50"></text></g><g><title>__GI___lll_lock_wait (684 samples, 0.03%)</title><rect x="6.7253%" y="501" width="0.0295%" height="15" fill="rgb(213,182,10)" fg:x="156182" fg:w="684"/><text x="6.9753%" y="511.50"></text></g><g><title>futex_wait (678 samples, 0.03%)</title><rect x="6.7255%" y="485" width="0.0292%" height="15" fill="rgb(245,125,30)" fg:x="156188" fg:w="678"/><text x="6.9755%" y="495.50"></text></g><g><title>std::condition_variable::wait (7,866 samples, 0.34%)</title><rect x="6.4162%" y="565" width="0.3387%" height="15" fill="rgb(232,202,2)" fg:x="149005" fg:w="7866"/><text x="6.6662%" y="575.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (9,093 samples, 0.39%)</title><rect x="6.3638%" y="581" width="0.3915%" height="15" fill="rgb(237,140,51)" fg:x="147787" fg:w="9093"/><text x="6.6138%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (895 samples, 0.04%)</title><rect x="6.7693%" y="309" width="0.0385%" height="15" fill="rgb(236,157,25)" fg:x="157205" fg:w="895"/><text x="7.0193%" y="319.50"></text></g><g><title>x86_pmu_enable (891 samples, 0.04%)</title><rect x="6.7695%" y="293" width="0.0384%" height="15" fill="rgb(219,209,0)" fg:x="157209" fg:w="891"/><text x="7.0195%" y="303.50"></text></g><g><title>intel_pmu_enable_all (888 samples, 0.04%)</title><rect x="6.7696%" y="277" width="0.0382%" height="15" fill="rgb(240,116,54)" fg:x="157212" fg:w="888"/><text x="7.0196%" y="287.50"></text></g><g><title>native_write_msr (882 samples, 0.04%)</title><rect x="6.7699%" y="261" width="0.0380%" height="15" fill="rgb(216,10,36)" fg:x="157218" fg:w="882"/><text x="7.0199%" y="271.50"></text></g><g><title>finish_task_switch.isra.0 (918 samples, 0.04%)</title><rect x="6.7688%" y="325" width="0.0395%" height="15" fill="rgb(222,72,44)" fg:x="157192" fg:w="918"/><text x="7.0188%" y="335.50"></text></g><g><title>futex_wait_queue_me (1,049 samples, 0.05%)</title><rect x="6.7661%" y="373" width="0.0452%" height="15" fill="rgb(232,159,9)" fg:x="157130" fg:w="1049"/><text x="7.0161%" y="383.50"></text></g><g><title>schedule (1,041 samples, 0.04%)</title><rect x="6.7664%" y="357" width="0.0448%" height="15" fill="rgb(210,39,32)" fg:x="157138" fg:w="1041"/><text x="7.0164%" y="367.50"></text></g><g><title>__schedule (1,040 samples, 0.04%)</title><rect x="6.7665%" y="341" width="0.0448%" height="15" fill="rgb(216,194,45)" fg:x="157139" fg:w="1040"/><text x="7.0165%" y="351.50"></text></g><g><title>futex_wait (1,063 samples, 0.05%)</title><rect x="6.7658%" y="389" width="0.0458%" height="15" fill="rgb(218,18,35)" fg:x="157124" fg:w="1063"/><text x="7.0158%" y="399.50"></text></g><g><title>__x64_sys_futex (1,074 samples, 0.05%)</title><rect x="6.7654%" y="421" width="0.0462%" height="15" fill="rgb(207,83,51)" fg:x="157115" fg:w="1074"/><text x="7.0154%" y="431.50"></text></g><g><title>do_futex (1,070 samples, 0.05%)</title><rect x="6.7656%" y="405" width="0.0461%" height="15" fill="rgb(225,63,43)" fg:x="157119" fg:w="1070"/><text x="7.0156%" y="415.50"></text></g><g><title>do_syscall_64 (1,108 samples, 0.05%)</title><rect x="6.7653%" y="437" width="0.0477%" height="15" fill="rgb(207,57,36)" fg:x="157111" fg:w="1108"/><text x="7.0153%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,111 samples, 0.05%)</title><rect x="6.7652%" y="453" width="0.0478%" height="15" fill="rgb(216,99,33)" fg:x="157109" fg:w="1111"/><text x="7.0152%" y="463.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (1,126 samples, 0.05%)</title><rect x="6.7647%" y="501" width="0.0485%" height="15" fill="rgb(225,42,16)" fg:x="157098" fg:w="1126"/><text x="7.0147%" y="511.50"></text></g><g><title>__futex_abstimed_wait_common (1,126 samples, 0.05%)</title><rect x="6.7647%" y="485" width="0.0485%" height="15" fill="rgb(220,201,45)" fg:x="157098" fg:w="1126"/><text x="7.0147%" y="495.50"></text></g><g><title>__futex_abstimed_wait_common64 (1,126 samples, 0.05%)</title><rect x="6.7647%" y="469" width="0.0485%" height="15" fill="rgb(225,33,4)" fg:x="157098" fg:w="1126"/><text x="7.0147%" y="479.50"></text></g><g><title>std::condition_variable::wait (1,307 samples, 0.06%)</title><rect x="6.7641%" y="549" width="0.0563%" height="15" fill="rgb(224,33,50)" fg:x="157084" fg:w="1307"/><text x="7.0141%" y="559.50"></text></g><g><title>___pthread_cond_wait (1,306 samples, 0.06%)</title><rect x="6.7642%" y="533" width="0.0562%" height="15" fill="rgb(246,198,51)" fg:x="157085" fg:w="1306"/><text x="7.0142%" y="543.50"></text></g><g><title>__pthread_cond_wait_common (1,304 samples, 0.06%)</title><rect x="6.7642%" y="517" width="0.0562%" height="15" fill="rgb(205,22,4)" fg:x="157087" fg:w="1304"/><text x="7.0142%" y="527.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (1,510 samples, 0.07%)</title><rect x="6.7554%" y="565" width="0.0650%" height="15" fill="rgb(206,3,8)" fg:x="156882" fg:w="1510"/><text x="7.0054%" y="575.50"></text></g><g><title>[libstdc++.so.6.0.30] (10,731 samples, 0.46%)</title><rect x="6.3637%" y="597" width="0.4621%" height="15" fill="rgb(251,23,15)" fg:x="147785" fg:w="10731"/><text x="6.6137%" y="607.50"></text></g><g><title>std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}&gt; &gt; &gt;::_M_run (1,634 samples, 0.07%)</title><rect x="6.7554%" y="581" width="0.0704%" height="15" fill="rgb(252,88,28)" fg:x="156882" fg:w="1634"/><text x="7.0054%" y="591.50"></text></g><g><title>start_thread (10,808 samples, 0.47%)</title><rect x="6.3635%" y="613" width="0.4654%" height="15" fill="rgb(212,127,14)" fg:x="147781" fg:w="10808"/><text x="6.6135%" y="623.50"></text></g><g><title>__clone3 (10,874 samples, 0.47%)</title><rect x="6.3607%" y="629" width="0.4682%" height="15" fill="rgb(247,145,37)" fg:x="147716" fg:w="10874"/><text x="6.6107%" y="639.50"></text></g><g><title>__libc_csu_init (626 samples, 0.03%)</title><rect x="6.8302%" y="597" width="0.0270%" height="15" fill="rgb(209,117,53)" fg:x="158619" fg:w="626"/><text x="7.0802%" y="607.50"></text></g><g><title>lld::elf::readLinkerScript (302 samples, 0.01%)</title><rect x="6.8623%" y="469" width="0.0130%" height="15" fill="rgb(212,90,42)" fg:x="159365" fg:w="302"/><text x="7.1123%" y="479.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (371 samples, 0.02%)</title><rect x="6.8600%" y="485" width="0.0160%" height="15" fill="rgb(218,164,37)" fg:x="159310" fg:w="371"/><text x="7.1100%" y="495.50"></text></g><g><title>filename_lookup (288 samples, 0.01%)</title><rect x="6.8792%" y="325" width="0.0124%" height="15" fill="rgb(246,65,34)" fg:x="159756" fg:w="288"/><text x="7.1292%" y="335.50"></text></g><g><title>path_lookupat (288 samples, 0.01%)</title><rect x="6.8792%" y="309" width="0.0124%" height="15" fill="rgb(231,100,33)" fg:x="159756" fg:w="288"/><text x="7.1292%" y="319.50"></text></g><g><title>walk_component (249 samples, 0.01%)</title><rect x="6.8808%" y="293" width="0.0107%" height="15" fill="rgb(228,126,14)" fg:x="159795" fg:w="249"/><text x="7.1308%" y="303.50"></text></g><g><title>__x64_sys_access (327 samples, 0.01%)</title><rect x="6.8779%" y="373" width="0.0141%" height="15" fill="rgb(215,173,21)" fg:x="159726" fg:w="327"/><text x="7.1279%" y="383.50"></text></g><g><title>do_faccessat (327 samples, 0.01%)</title><rect x="6.8779%" y="357" width="0.0141%" height="15" fill="rgb(210,6,40)" fg:x="159726" fg:w="327"/><text x="7.1279%" y="367.50"></text></g><g><title>user_path_at_empty (297 samples, 0.01%)</title><rect x="6.8792%" y="341" width="0.0128%" height="15" fill="rgb(212,48,18)" fg:x="159756" fg:w="297"/><text x="7.1292%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (335 samples, 0.01%)</title><rect x="6.8778%" y="405" width="0.0144%" height="15" fill="rgb(230,214,11)" fg:x="159725" fg:w="335"/><text x="7.1278%" y="415.50"></text></g><g><title>do_syscall_64 (335 samples, 0.01%)</title><rect x="6.8778%" y="389" width="0.0144%" height="15" fill="rgb(254,105,39)" fg:x="159725" fg:w="335"/><text x="7.1278%" y="399.50"></text></g><g><title>__GI___access (337 samples, 0.01%)</title><rect x="6.8778%" y="421" width="0.0145%" height="15" fill="rgb(245,158,5)" fg:x="159724" fg:w="337"/><text x="7.1278%" y="431.50"></text></g><g><title>llvm::sys::fs::access (345 samples, 0.01%)</title><rect x="6.8777%" y="437" width="0.0149%" height="15" fill="rgb(249,208,11)" fg:x="159723" fg:w="345"/><text x="7.1277%" y="447.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (766 samples, 0.03%)</title><rect x="6.8600%" y="501" width="0.0330%" height="15" fill="rgb(210,39,28)" fg:x="159310" fg:w="766"/><text x="7.1100%" y="511.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (395 samples, 0.02%)</title><rect x="6.8759%" y="485" width="0.0170%" height="15" fill="rgb(211,56,53)" fg:x="159681" fg:w="395"/><text x="7.1259%" y="495.50"></text></g><g><title>lld::elf::searchLibraryBaseName[abi:cxx11] (354 samples, 0.02%)</title><rect x="6.8777%" y="469" width="0.0152%" height="15" fill="rgb(226,201,30)" fg:x="159722" fg:w="354"/><text x="7.1277%" y="479.50"></text></g><g><title>findFile[abi:cxx11] (353 samples, 0.02%)</title><rect x="6.8777%" y="453" width="0.0152%" height="15" fill="rgb(239,101,34)" fg:x="159723" fg:w="353"/><text x="7.1277%" y="463.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (817 samples, 0.04%)</title><rect x="6.8578%" y="517" width="0.0352%" height="15" fill="rgb(226,209,5)" fg:x="159260" fg:w="817"/><text x="7.1078%" y="527.50"></text></g><g><title>lld::elf::ArchiveFile::parse (251 samples, 0.01%)</title><rect x="6.8945%" y="501" width="0.0108%" height="15" fill="rgb(250,105,47)" fg:x="160113" fg:w="251"/><text x="7.1445%" y="511.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (268 samples, 0.01%)</title><rect x="6.9065%" y="485" width="0.0115%" height="15" fill="rgb(230,72,3)" fg:x="160390" fg:w="268"/><text x="7.1565%" y="495.50"></text></g><g><title>llvm::parallelForEachN (253 samples, 0.01%)</title><rect x="6.9071%" y="469" width="0.0109%" height="15" fill="rgb(232,218,39)" fg:x="160405" fg:w="253"/><text x="7.1571%" y="479.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (277 samples, 0.01%)</title><rect x="6.9063%" y="501" width="0.0119%" height="15" fill="rgb(248,166,6)" fg:x="160387" fg:w="277"/><text x="7.1563%" y="511.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (374 samples, 0.02%)</title><rect x="6.9263%" y="469" width="0.0161%" height="15" fill="rgb(247,89,20)" fg:x="160850" fg:w="374"/><text x="7.1763%" y="479.50"></text></g><g><title>lld::elf::SymbolTable::insert (340 samples, 0.01%)</title><rect x="6.9277%" y="453" width="0.0146%" height="15" fill="rgb(248,130,54)" fg:x="160884" fg:w="340"/><text x="7.1777%" y="463.50"></text></g><g><title>lld::elf::parseFile (538 samples, 0.02%)</title><rect x="6.9233%" y="501" width="0.0232%" height="15" fill="rgb(234,196,4)" fg:x="160781" fg:w="538"/><text x="7.1733%" y="511.50"></text></g><g><title>lld::elf::SharedFile::parse&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (520 samples, 0.02%)</title><rect x="6.9241%" y="485" width="0.0224%" height="15" fill="rgb(250,143,31)" fg:x="160799" fg:w="520"/><text x="7.1741%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (645 samples, 0.03%)</title><rect x="6.9642%" y="245" width="0.0278%" height="15" fill="rgb(211,110,34)" fg:x="161730" fg:w="645"/><text x="7.2142%" y="255.50"></text></g><g><title>x86_pmu_enable (635 samples, 0.03%)</title><rect x="6.9646%" y="229" width="0.0273%" height="15" fill="rgb(215,124,48)" fg:x="161740" fg:w="635"/><text x="7.2146%" y="239.50"></text></g><g><title>intel_pmu_enable_all (629 samples, 0.03%)</title><rect x="6.9649%" y="213" width="0.0271%" height="15" fill="rgb(216,46,13)" fg:x="161746" fg:w="629"/><text x="7.2149%" y="223.50"></text></g><g><title>native_write_msr (627 samples, 0.03%)</title><rect x="6.9649%" y="197" width="0.0270%" height="15" fill="rgb(205,184,25)" fg:x="161748" fg:w="627"/><text x="7.2149%" y="207.50"></text></g><g><title>finish_task_switch.isra.0 (657 samples, 0.03%)</title><rect x="6.9639%" y="261" width="0.0283%" height="15" fill="rgb(228,1,10)" fg:x="161723" fg:w="657"/><text x="7.2139%" y="271.50"></text></g><g><title>__schedule (735 samples, 0.03%)</title><rect x="6.9624%" y="277" width="0.0316%" height="15" fill="rgb(213,116,27)" fg:x="161690" fg:w="735"/><text x="7.2124%" y="287.50"></text></g><g><title>futex_wait_queue_me (746 samples, 0.03%)</title><rect x="6.9620%" y="309" width="0.0321%" height="15" fill="rgb(241,95,50)" fg:x="161680" fg:w="746"/><text x="7.2120%" y="319.50"></text></g><g><title>schedule (737 samples, 0.03%)</title><rect x="6.9624%" y="293" width="0.0317%" height="15" fill="rgb(238,48,32)" fg:x="161689" fg:w="737"/><text x="7.2124%" y="303.50"></text></g><g><title>__x64_sys_futex (760 samples, 0.03%)</title><rect x="6.9617%" y="357" width="0.0327%" height="15" fill="rgb(235,113,49)" fg:x="161672" fg:w="760"/><text x="7.2117%" y="367.50"></text></g><g><title>do_futex (754 samples, 0.03%)</title><rect x="6.9619%" y="341" width="0.0325%" height="15" fill="rgb(205,127,43)" fg:x="161678" fg:w="754"/><text x="7.2119%" y="351.50"></text></g><g><title>futex_wait (754 samples, 0.03%)</title><rect x="6.9619%" y="325" width="0.0325%" height="15" fill="rgb(250,162,2)" fg:x="161678" fg:w="754"/><text x="7.2119%" y="335.50"></text></g><g><title>do_syscall_64 (782 samples, 0.03%)</title><rect x="6.9616%" y="373" width="0.0337%" height="15" fill="rgb(220,13,41)" fg:x="161671" fg:w="782"/><text x="7.2116%" y="383.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (786 samples, 0.03%)</title><rect x="6.9616%" y="389" width="0.0338%" height="15" fill="rgb(249,221,25)" fg:x="161670" fg:w="786"/><text x="7.2116%" y="399.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (807 samples, 0.03%)</title><rect x="6.9610%" y="437" width="0.0347%" height="15" fill="rgb(215,208,19)" fg:x="161656" fg:w="807"/><text x="7.2110%" y="447.50"></text></g><g><title>futex_wait_simple (798 samples, 0.03%)</title><rect x="6.9614%" y="421" width="0.0344%" height="15" fill="rgb(236,175,2)" fg:x="161665" fg:w="798"/><text x="7.2114%" y="431.50"></text></g><g><title>futex_wait (798 samples, 0.03%)</title><rect x="6.9614%" y="405" width="0.0344%" height="15" fill="rgb(241,52,2)" fg:x="161665" fg:w="798"/><text x="7.2114%" y="415.50"></text></g><g><title>futex_wake (588 samples, 0.03%)</title><rect x="6.9979%" y="357" width="0.0253%" height="15" fill="rgb(248,140,14)" fg:x="162513" fg:w="588"/><text x="7.2479%" y="367.50"></text></g><g><title>wake_up_q (515 samples, 0.02%)</title><rect x="7.0010%" y="341" width="0.0222%" height="15" fill="rgb(253,22,42)" fg:x="162586" fg:w="515"/><text x="7.2510%" y="351.50"></text></g><g><title>try_to_wake_up (499 samples, 0.02%)</title><rect x="7.0017%" y="325" width="0.0215%" height="15" fill="rgb(234,61,47)" fg:x="162602" fg:w="499"/><text x="7.2517%" y="335.50"></text></g><g><title>do_futex (605 samples, 0.03%)</title><rect x="6.9974%" y="373" width="0.0261%" height="15" fill="rgb(208,226,15)" fg:x="162502" fg:w="605"/><text x="7.2474%" y="383.50"></text></g><g><title>__x64_sys_futex (610 samples, 0.03%)</title><rect x="6.9973%" y="389" width="0.0263%" height="15" fill="rgb(217,221,4)" fg:x="162500" fg:w="610"/><text x="7.2473%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (648 samples, 0.03%)</title><rect x="6.9969%" y="421" width="0.0279%" height="15" fill="rgb(212,174,34)" fg:x="162491" fg:w="648"/><text x="7.2469%" y="431.50"></text></g><g><title>do_syscall_64 (641 samples, 0.03%)</title><rect x="6.9972%" y="405" width="0.0276%" height="15" fill="rgb(253,83,4)" fg:x="162498" fg:w="641"/><text x="7.2472%" y="415.50"></text></g><g><title>___pthread_cond_signal (1,503 samples, 0.06%)</title><rect x="6.9602%" y="453" width="0.0647%" height="15" fill="rgb(250,195,49)" fg:x="161638" fg:w="1503"/><text x="7.2102%" y="463.50"></text></g><g><title>futex_wake (672 samples, 0.03%)</title><rect x="6.9960%" y="437" width="0.0289%" height="15" fill="rgb(241,192,25)" fg:x="162469" fg:w="672"/><text x="7.2460%" y="447.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (370 samples, 0.02%)</title><rect x="7.0269%" y="453" width="0.0159%" height="15" fill="rgb(208,124,10)" fg:x="163187" fg:w="370"/><text x="7.2769%" y="463.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (1,988 samples, 0.09%)</title><rect x="6.9595%" y="469" width="0.0856%" height="15" fill="rgb(222,33,0)" fg:x="161622" fg:w="1988"/><text x="7.2095%" y="479.50"></text></g><g><title>llvm::parallelForEachN (2,019 samples, 0.09%)</title><rect x="6.9592%" y="485" width="0.0869%" height="15" fill="rgb(234,209,28)" fg:x="161615" fg:w="2019"/><text x="7.2092%" y="495.50"></text></g><g><title>lld::elf::writeResult&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (2,466 samples, 0.11%)</title><rect x="6.9493%" y="501" width="0.1062%" height="15" fill="rgb(224,11,23)" fg:x="161385" fg:w="2466"/><text x="7.1993%" y="511.50"></text></g><g><title>lld::elf::LinkerDriver::link (3,979 samples, 0.17%)</title><rect x="6.8930%" y="517" width="0.1713%" height="15" fill="rgb(232,99,1)" fg:x="160077" fg:w="3979"/><text x="7.1430%" y="527.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (4,970 samples, 0.21%)</title><rect x="6.8577%" y="533" width="0.2140%" height="15" fill="rgb(237,95,45)" fg:x="159258" fg:w="4970"/><text x="7.1077%" y="543.50"></text></g><g><title>lld::elf::link (4,986 samples, 0.21%)</title><rect x="6.8572%" y="549" width="0.2147%" height="15" fill="rgb(208,109,11)" fg:x="159245" fg:w="4986"/><text x="7.1072%" y="559.50"></text></g><g><title>lldMain (5,066 samples, 0.22%)</title><rect x="6.8572%" y="565" width="0.2181%" height="15" fill="rgb(216,190,48)" fg:x="159245" fg:w="5066"/><text x="7.1072%" y="575.50"></text></g><g><title>__libc_start_main_impl (5,697 samples, 0.25%)</title><rect x="6.8302%" y="613" width="0.2453%" height="15" fill="rgb(251,171,36)" fg:x="158619" fg:w="5697"/><text x="7.0802%" y="623.50"></text></g><g><title>__libc_start_call_main (5,071 samples, 0.22%)</title><rect x="6.8572%" y="597" width="0.2184%" height="15" fill="rgb(230,62,22)" fg:x="159245" fg:w="5071"/><text x="7.1072%" y="607.50"></text></g><g><title>main (5,071 samples, 0.22%)</title><rect x="6.8572%" y="581" width="0.2184%" height="15" fill="rgb(225,114,35)" fg:x="159245" fg:w="5071"/><text x="7.1072%" y="591.50"></text></g><g><title>elf_machine_rela (248 samples, 0.01%)</title><rect x="7.0841%" y="517" width="0.0107%" height="15" fill="rgb(215,118,42)" fg:x="164515" fg:w="248"/><text x="7.3341%" y="527.50"></text></g><g><title>elf_dynamic_do_Rela (270 samples, 0.01%)</title><rect x="7.0834%" y="533" width="0.0116%" height="15" fill="rgb(243,119,21)" fg:x="164499" fg:w="270"/><text x="7.3334%" y="543.50"></text></g><g><title>_dl_relocate_object (287 samples, 0.01%)</title><rect x="7.0827%" y="549" width="0.0124%" height="15" fill="rgb(252,177,53)" fg:x="164483" fg:w="287"/><text x="7.3327%" y="559.50"></text></g><g><title>dl_main (467 samples, 0.02%)</title><rect x="7.0757%" y="565" width="0.0201%" height="15" fill="rgb(237,209,29)" fg:x="164321" fg:w="467"/><text x="7.3257%" y="575.50"></text></g><g><title>_dl_start_final (476 samples, 0.02%)</title><rect x="7.0756%" y="597" width="0.0205%" height="15" fill="rgb(212,65,23)" fg:x="164317" fg:w="476"/><text x="7.3256%" y="607.50"></text></g><g><title>_dl_sysdep_start (476 samples, 0.02%)</title><rect x="7.0756%" y="581" width="0.0205%" height="15" fill="rgb(230,222,46)" fg:x="164317" fg:w="476"/><text x="7.3256%" y="591.50"></text></g><g><title>_dl_start (479 samples, 0.02%)</title><rect x="7.0755%" y="613" width="0.0206%" height="15" fill="rgb(215,135,32)" fg:x="164316" fg:w="479"/><text x="7.3255%" y="623.50"></text></g><g><title>_start (6,182 samples, 0.27%)</title><rect x="6.8302%" y="629" width="0.2662%" height="15" fill="rgb(246,101,22)" fg:x="158618" fg:w="6182"/><text x="7.0802%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (486 samples, 0.02%)</title><rect x="7.1064%" y="629" width="0.0209%" height="15" fill="rgb(206,107,13)" fg:x="165033" fg:w="486"/><text x="7.3564%" y="639.50"></text></g><g><title>do_syscall_64 (481 samples, 0.02%)</title><rect x="7.1066%" y="613" width="0.0207%" height="15" fill="rgb(250,100,44)" fg:x="165038" fg:w="481"/><text x="7.3566%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (1,126 samples, 0.05%)</title><rect x="7.1306%" y="581" width="0.0485%" height="15" fill="rgb(231,147,38)" fg:x="165594" fg:w="1126"/><text x="7.3806%" y="591.50"></text></g><g><title>x86_pmu_enable (1,095 samples, 0.05%)</title><rect x="7.1319%" y="565" width="0.0472%" height="15" fill="rgb(229,8,40)" fg:x="165625" fg:w="1095"/><text x="7.3819%" y="575.50"></text></g><g><title>intel_pmu_enable_all (1,087 samples, 0.05%)</title><rect x="7.1322%" y="549" width="0.0468%" height="15" fill="rgb(221,135,30)" fg:x="165633" fg:w="1087"/><text x="7.3822%" y="559.50"></text></g><g><title>native_write_msr (1,076 samples, 0.05%)</title><rect x="7.1327%" y="533" width="0.0463%" height="15" fill="rgb(249,193,18)" fg:x="165644" fg:w="1076"/><text x="7.3827%" y="543.50"></text></g><g><title>schedule_tail (1,182 samples, 0.05%)</title><rect x="7.1284%" y="613" width="0.0509%" height="15" fill="rgb(209,133,39)" fg:x="165544" fg:w="1182"/><text x="7.3784%" y="623.50"></text></g><g><title>finish_task_switch.isra.0 (1,146 samples, 0.05%)</title><rect x="7.1300%" y="597" width="0.0493%" height="15" fill="rgb(232,100,14)" fg:x="165580" fg:w="1146"/><text x="7.3800%" y="607.50"></text></g><g><title>ret_from_fork (1,222 samples, 0.05%)</title><rect x="7.1283%" y="629" width="0.0526%" height="15" fill="rgb(224,185,1)" fg:x="165542" fg:w="1222"/><text x="7.3783%" y="639.50"></text></g><g><title>ld.lld (19,731 samples, 0.85%)</title><rect x="6.3317%" y="645" width="0.8496%" height="15" fill="rgb(223,139,8)" fg:x="147043" fg:w="19731"/><text x="6.5817%" y="655.50"></text></g><g><title>[unknown] (331 samples, 0.01%)</title><rect x="7.1836%" y="629" width="0.0143%" height="15" fill="rgb(232,213,38)" fg:x="166826" fg:w="331"/><text x="7.4336%" y="639.50"></text></g><g><title>parse_and_execute (234 samples, 0.01%)</title><rect x="7.2032%" y="405" width="0.0101%" height="15" fill="rgb(207,94,22)" fg:x="167282" fg:w="234"/><text x="7.4532%" y="415.50"></text></g><g><title>command_substitute (359 samples, 0.02%)</title><rect x="7.1993%" y="421" width="0.0155%" height="15" fill="rgb(219,183,54)" fg:x="167191" fg:w="359"/><text x="7.4493%" y="431.50"></text></g><g><title>[bash] (361 samples, 0.02%)</title><rect x="7.1993%" y="437" width="0.0155%" height="15" fill="rgb(216,185,54)" fg:x="167190" fg:w="361"/><text x="7.4493%" y="447.50"></text></g><g><title>expand_string_assignment (362 samples, 0.02%)</title><rect x="7.1993%" y="453" width="0.0156%" height="15" fill="rgb(254,217,39)" fg:x="167190" fg:w="362"/><text x="7.4493%" y="463.50"></text></g><g><title>[bash] (368 samples, 0.02%)</title><rect x="7.1991%" y="469" width="0.0158%" height="15" fill="rgb(240,178,23)" fg:x="167185" fg:w="368"/><text x="7.4491%" y="479.50"></text></g><g><title>[bash] (375 samples, 0.02%)</title><rect x="7.1991%" y="485" width="0.0161%" height="15" fill="rgb(218,11,47)" fg:x="167185" fg:w="375"/><text x="7.4491%" y="495.50"></text></g><g><title>[bash] (393 samples, 0.02%)</title><rect x="7.1990%" y="501" width="0.0169%" height="15" fill="rgb(218,51,51)" fg:x="167184" fg:w="393"/><text x="7.4490%" y="511.50"></text></g><g><title>[bash] (394 samples, 0.02%)</title><rect x="7.1990%" y="517" width="0.0170%" height="15" fill="rgb(238,126,27)" fg:x="167184" fg:w="394"/><text x="7.4490%" y="527.50"></text></g><g><title>execute_command (281 samples, 0.01%)</title><rect x="7.2218%" y="517" width="0.0121%" height="15" fill="rgb(249,202,22)" fg:x="167714" fg:w="281"/><text x="7.4718%" y="527.50"></text></g><g><title>execute_command_internal (280 samples, 0.01%)</title><rect x="7.2219%" y="501" width="0.0121%" height="15" fill="rgb(254,195,49)" fg:x="167715" fg:w="280"/><text x="7.4719%" y="511.50"></text></g><g><title>execute_command (813 samples, 0.04%)</title><rect x="7.1990%" y="549" width="0.0350%" height="15" fill="rgb(208,123,14)" fg:x="167183" fg:w="813"/><text x="7.4490%" y="559.50"></text></g><g><title>execute_command_internal (812 samples, 0.03%)</title><rect x="7.1990%" y="533" width="0.0350%" height="15" fill="rgb(224,200,8)" fg:x="167184" fg:w="812"/><text x="7.4490%" y="543.50"></text></g><g><title>[bash] (349 samples, 0.02%)</title><rect x="7.2367%" y="501" width="0.0150%" height="15" fill="rgb(217,61,36)" fg:x="168060" fg:w="349"/><text x="7.4867%" y="511.50"></text></g><g><title>reader_loop (1,272 samples, 0.05%)</title><rect x="7.1982%" y="565" width="0.0548%" height="15" fill="rgb(206,35,45)" fg:x="167164" fg:w="1272"/><text x="7.4482%" y="575.50"></text></g><g><title>read_command (440 samples, 0.02%)</title><rect x="7.2340%" y="549" width="0.0189%" height="15" fill="rgb(217,65,33)" fg:x="167996" fg:w="440"/><text x="7.4840%" y="559.50"></text></g><g><title>parse_command (439 samples, 0.02%)</title><rect x="7.2340%" y="533" width="0.0189%" height="15" fill="rgb(222,158,48)" fg:x="167997" fg:w="439"/><text x="7.4840%" y="543.50"></text></g><g><title>yyparse (439 samples, 0.02%)</title><rect x="7.2340%" y="517" width="0.0189%" height="15" fill="rgb(254,2,54)" fg:x="167997" fg:w="439"/><text x="7.4840%" y="527.50"></text></g><g><title>__libc_start_main_impl (1,283 samples, 0.06%)</title><rect x="7.1979%" y="613" width="0.0552%" height="15" fill="rgb(250,143,38)" fg:x="167157" fg:w="1283"/><text x="7.4479%" y="623.50"></text></g><g><title>__libc_start_call_main (1,283 samples, 0.06%)</title><rect x="7.1979%" y="597" width="0.0552%" height="15" fill="rgb(248,25,0)" fg:x="167157" fg:w="1283"/><text x="7.4479%" y="607.50"></text></g><g><title>main (1,283 samples, 0.06%)</title><rect x="7.1979%" y="581" width="0.0552%" height="15" fill="rgb(206,152,27)" fg:x="167157" fg:w="1283"/><text x="7.4479%" y="591.50"></text></g><g><title>_start (1,304 samples, 0.06%)</title><rect x="7.1979%" y="629" width="0.0562%" height="15" fill="rgb(240,77,30)" fg:x="167157" fg:w="1304"/><text x="7.4479%" y="639.50"></text></g><g><title>libtool (1,745 samples, 0.08%)</title><rect x="7.1814%" y="645" width="0.0751%" height="15" fill="rgb(231,5,3)" fg:x="166774" fg:w="1745"/><text x="7.4314%" y="655.50"></text></g><g><title>_ZdlPv (439 samples, 0.02%)</title><rect x="7.2719%" y="293" width="0.0189%" height="15" fill="rgb(207,226,32)" fg:x="168876" fg:w="439"/><text x="7.5219%" y="303.50"></text></g><g><title>_ZdlPv (446 samples, 0.02%)</title><rect x="7.2717%" y="325" width="0.0192%" height="15" fill="rgb(222,207,47)" fg:x="168871" fg:w="446"/><text x="7.5217%" y="335.50"></text></g><g><title>_ZdlPv (446 samples, 0.02%)</title><rect x="7.2717%" y="309" width="0.0192%" height="15" fill="rgb(229,115,45)" fg:x="168871" fg:w="446"/><text x="7.5217%" y="319.50"></text></g><g><title>_ZdlPv (247 samples, 0.01%)</title><rect x="7.2916%" y="261" width="0.0106%" height="15" fill="rgb(224,191,6)" fg:x="169334" fg:w="247"/><text x="7.5416%" y="271.50"></text></g><g><title>_ZdlPv (271 samples, 0.01%)</title><rect x="7.2912%" y="309" width="0.0117%" height="15" fill="rgb(230,227,24)" fg:x="169324" fg:w="271"/><text x="7.5412%" y="319.50"></text></g><g><title>_ZdlPv (270 samples, 0.01%)</title><rect x="7.2912%" y="293" width="0.0116%" height="15" fill="rgb(228,80,19)" fg:x="169325" fg:w="270"/><text x="7.5412%" y="303.50"></text></g><g><title>_ZdlPv (270 samples, 0.01%)</title><rect x="7.2912%" y="277" width="0.0116%" height="15" fill="rgb(247,229,0)" fg:x="169325" fg:w="270"/><text x="7.5412%" y="287.50"></text></g><g><title>cshook_security_sb_free_security (288 samples, 0.01%)</title><rect x="7.2911%" y="325" width="0.0124%" height="15" fill="rgb(237,194,15)" fg:x="169323" fg:w="288"/><text x="7.5411%" y="335.50"></text></g><g><title>cshook_security_file_permission (743 samples, 0.03%)</title><rect x="7.2716%" y="373" width="0.0320%" height="15" fill="rgb(219,203,20)" fg:x="168870" fg:w="743"/><text x="7.5216%" y="383.50"></text></g><g><title>cshook_security_sb_free_security (742 samples, 0.03%)</title><rect x="7.2717%" y="357" width="0.0320%" height="15" fill="rgb(234,128,8)" fg:x="168871" fg:w="742"/><text x="7.5217%" y="367.50"></text></g><g><title>cshook_security_sb_free_security (742 samples, 0.03%)</title><rect x="7.2717%" y="341" width="0.0320%" height="15" fill="rgb(248,202,8)" fg:x="168871" fg:w="742"/><text x="7.5217%" y="351.50"></text></g><g><title>exec_binprm (773 samples, 0.03%)</title><rect x="7.2705%" y="469" width="0.0333%" height="15" fill="rgb(206,104,37)" fg:x="168844" fg:w="773"/><text x="7.5205%" y="479.50"></text></g><g><title>search_binary_handler (773 samples, 0.03%)</title><rect x="7.2705%" y="453" width="0.0333%" height="15" fill="rgb(223,8,27)" fg:x="168844" fg:w="773"/><text x="7.5205%" y="463.50"></text></g><g><title>security_bprm_check (759 samples, 0.03%)</title><rect x="7.2711%" y="437" width="0.0327%" height="15" fill="rgb(216,217,28)" fg:x="168858" fg:w="759"/><text x="7.5211%" y="447.50"></text></g><g><title>pinnedhook_security_bprm_check_security (756 samples, 0.03%)</title><rect x="7.2712%" y="421" width="0.0326%" height="15" fill="rgb(249,199,1)" fg:x="168861" fg:w="756"/><text x="7.5212%" y="431.50"></text></g><g><title>cshook_security_bprm_check_security (755 samples, 0.03%)</title><rect x="7.2713%" y="405" width="0.0325%" height="15" fill="rgb(240,85,17)" fg:x="168862" fg:w="755"/><text x="7.5213%" y="415.50"></text></g><g><title>cshook_security_file_permission (755 samples, 0.03%)</title><rect x="7.2713%" y="389" width="0.0325%" height="15" fill="rgb(206,108,45)" fg:x="168862" fg:w="755"/><text x="7.5213%" y="399.50"></text></g><g><title>bprm_execve.part.0 (884 samples, 0.04%)</title><rect x="7.2682%" y="485" width="0.0381%" height="15" fill="rgb(245,210,41)" fg:x="168791" fg:w="884"/><text x="7.5182%" y="495.50"></text></g><g><title>bprm_execve (886 samples, 0.04%)</title><rect x="7.2682%" y="501" width="0.0382%" height="15" fill="rgb(206,13,37)" fg:x="168791" fg:w="886"/><text x="7.5182%" y="511.50"></text></g><g><title>[libc.so.6] (894 samples, 0.04%)</title><rect x="7.2680%" y="597" width="0.0385%" height="15" fill="rgb(250,61,18)" fg:x="168786" fg:w="894"/><text x="7.5180%" y="607.50"></text></g><g><title>__GI_execve (893 samples, 0.04%)</title><rect x="7.2680%" y="581" width="0.0385%" height="15" fill="rgb(235,172,48)" fg:x="168787" fg:w="893"/><text x="7.5180%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (893 samples, 0.04%)</title><rect x="7.2680%" y="565" width="0.0385%" height="15" fill="rgb(249,201,17)" fg:x="168787" fg:w="893"/><text x="7.5180%" y="575.50"></text></g><g><title>do_syscall_64 (893 samples, 0.04%)</title><rect x="7.2680%" y="549" width="0.0385%" height="15" fill="rgb(219,208,6)" fg:x="168787" fg:w="893"/><text x="7.5180%" y="559.50"></text></g><g><title>__x64_sys_execve (893 samples, 0.04%)</title><rect x="7.2680%" y="533" width="0.0385%" height="15" fill="rgb(248,31,23)" fg:x="168787" fg:w="893"/><text x="7.5180%" y="543.50"></text></g><g><title>do_execveat_common.isra.0 (892 samples, 0.04%)</title><rect x="7.2681%" y="517" width="0.0384%" height="15" fill="rgb(245,15,42)" fg:x="168788" fg:w="892"/><text x="7.5181%" y="527.50"></text></g><g><title>schedule (235 samples, 0.01%)</title><rect x="7.3156%" y="485" width="0.0101%" height="15" fill="rgb(222,217,39)" fg:x="169891" fg:w="235"/><text x="7.5656%" y="495.50"></text></g><g><title>__schedule (235 samples, 0.01%)</title><rect x="7.3156%" y="469" width="0.0101%" height="15" fill="rgb(210,219,27)" fg:x="169891" fg:w="235"/><text x="7.5656%" y="479.50"></text></g><g><title>__x64_sys_wait4 (287 samples, 0.01%)</title><rect x="7.3152%" y="549" width="0.0124%" height="15" fill="rgb(252,166,36)" fg:x="169882" fg:w="287"/><text x="7.5652%" y="559.50"></text></g><g><title>__do_sys_wait4 (287 samples, 0.01%)</title><rect x="7.3152%" y="533" width="0.0124%" height="15" fill="rgb(245,132,34)" fg:x="169882" fg:w="287"/><text x="7.5652%" y="543.50"></text></g><g><title>kernel_wait4 (287 samples, 0.01%)</title><rect x="7.3152%" y="517" width="0.0124%" height="15" fill="rgb(236,54,3)" fg:x="169882" fg:w="287"/><text x="7.5652%" y="527.50"></text></g><g><title>do_wait (285 samples, 0.01%)</title><rect x="7.3153%" y="501" width="0.0123%" height="15" fill="rgb(241,173,43)" fg:x="169884" fg:w="285"/><text x="7.5653%" y="511.50"></text></g><g><title>__GI___wait4 (291 samples, 0.01%)</title><rect x="7.3152%" y="597" width="0.0125%" height="15" fill="rgb(215,190,9)" fg:x="169882" fg:w="291"/><text x="7.5652%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (291 samples, 0.01%)</title><rect x="7.3152%" y="581" width="0.0125%" height="15" fill="rgb(242,101,16)" fg:x="169882" fg:w="291"/><text x="7.5652%" y="591.50"></text></g><g><title>do_syscall_64 (291 samples, 0.01%)</title><rect x="7.3152%" y="565" width="0.0125%" height="15" fill="rgb(223,190,21)" fg:x="169882" fg:w="291"/><text x="7.5652%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (318 samples, 0.01%)</title><rect x="7.3337%" y="501" width="0.0137%" height="15" fill="rgb(215,228,25)" fg:x="170312" fg:w="318"/><text x="7.5837%" y="511.50"></text></g><g><title>x86_pmu_enable (316 samples, 0.01%)</title><rect x="7.3338%" y="485" width="0.0136%" height="15" fill="rgb(225,36,22)" fg:x="170314" fg:w="316"/><text x="7.5838%" y="495.50"></text></g><g><title>intel_pmu_enable_all (316 samples, 0.01%)</title><rect x="7.3338%" y="469" width="0.0136%" height="15" fill="rgb(251,106,46)" fg:x="170314" fg:w="316"/><text x="7.5838%" y="479.50"></text></g><g><title>native_write_msr (315 samples, 0.01%)</title><rect x="7.3338%" y="453" width="0.0136%" height="15" fill="rgb(208,90,1)" fg:x="170315" fg:w="315"/><text x="7.5838%" y="463.50"></text></g><g><title>schedule_tail (328 samples, 0.01%)</title><rect x="7.3334%" y="533" width="0.0141%" height="15" fill="rgb(243,10,4)" fg:x="170304" fg:w="328"/><text x="7.5834%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (324 samples, 0.01%)</title><rect x="7.3335%" y="517" width="0.0140%" height="15" fill="rgb(212,137,27)" fg:x="170308" fg:w="324"/><text x="7.5835%" y="527.50"></text></g><g><title>ret_from_fork (379 samples, 0.02%)</title><rect x="7.3316%" y="549" width="0.0163%" height="15" fill="rgb(231,220,49)" fg:x="170263" fg:w="379"/><text x="7.5816%" y="559.50"></text></g><g><title>arch_fork (458 samples, 0.02%)</title><rect x="7.3282%" y="565" width="0.0197%" height="15" fill="rgb(237,96,20)" fg:x="170185" fg:w="458"/><text x="7.5782%" y="575.50"></text></g><g><title>__GI__Fork (459 samples, 0.02%)</title><rect x="7.3282%" y="581" width="0.0198%" height="15" fill="rgb(239,229,30)" fg:x="170185" fg:w="459"/><text x="7.5782%" y="591.50"></text></g><g><title>__libc_fork (488 samples, 0.02%)</title><rect x="7.3282%" y="597" width="0.0210%" height="15" fill="rgb(219,65,33)" fg:x="170183" fg:w="488"/><text x="7.5782%" y="607.50"></text></g><g><title>Pid1Main (2,028 samples, 0.09%)</title><rect x="7.2646%" y="613" width="0.0873%" height="15" fill="rgb(243,134,7)" fg:x="168706" fg:w="2028"/><text x="7.5146%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (263 samples, 0.01%)</title><rect x="7.3526%" y="565" width="0.0113%" height="15" fill="rgb(216,177,54)" fg:x="170751" fg:w="263"/><text x="7.6026%" y="575.50"></text></g><g><title>x86_pmu_enable (262 samples, 0.01%)</title><rect x="7.3527%" y="549" width="0.0113%" height="15" fill="rgb(211,160,20)" fg:x="170752" fg:w="262"/><text x="7.6027%" y="559.50"></text></g><g><title>intel_pmu_enable_all (261 samples, 0.01%)</title><rect x="7.3527%" y="533" width="0.0112%" height="15" fill="rgb(239,85,39)" fg:x="170753" fg:w="261"/><text x="7.6027%" y="543.50"></text></g><g><title>native_write_msr (261 samples, 0.01%)</title><rect x="7.3527%" y="517" width="0.0112%" height="15" fill="rgb(232,125,22)" fg:x="170753" fg:w="261"/><text x="7.6027%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (273 samples, 0.01%)</title><rect x="7.3525%" y="581" width="0.0118%" height="15" fill="rgb(244,57,34)" fg:x="170748" fg:w="273"/><text x="7.6025%" y="591.50"></text></g><g><title>schedule_tail (276 samples, 0.01%)</title><rect x="7.3524%" y="597" width="0.0119%" height="15" fill="rgb(214,203,32)" fg:x="170746" fg:w="276"/><text x="7.6024%" y="607.50"></text></g><g><title>__GI___clone (2,349 samples, 0.10%)</title><rect x="7.2645%" y="629" width="0.1011%" height="15" fill="rgb(207,58,43)" fg:x="168704" fg:w="2349"/><text x="7.5145%" y="639.50"></text></g><g><title>ret_from_fork (308 samples, 0.01%)</title><rect x="7.3524%" y="613" width="0.0133%" height="15" fill="rgb(215,193,15)" fg:x="170745" fg:w="308"/><text x="7.6024%" y="623.50"></text></g><g><title>__x64_sys_wait4 (235 samples, 0.01%)</title><rect x="7.3894%" y="517" width="0.0101%" height="15" fill="rgb(232,15,44)" fg:x="171605" fg:w="235"/><text x="7.6394%" y="527.50"></text></g><g><title>__do_sys_wait4 (235 samples, 0.01%)</title><rect x="7.3894%" y="501" width="0.0101%" height="15" fill="rgb(212,3,48)" fg:x="171605" fg:w="235"/><text x="7.6394%" y="511.50"></text></g><g><title>kernel_wait4 (235 samples, 0.01%)</title><rect x="7.3894%" y="485" width="0.0101%" height="15" fill="rgb(218,128,7)" fg:x="171605" fg:w="235"/><text x="7.6394%" y="495.50"></text></g><g><title>do_wait (233 samples, 0.01%)</title><rect x="7.3895%" y="469" width="0.0100%" height="15" fill="rgb(226,216,39)" fg:x="171607" fg:w="233"/><text x="7.6395%" y="479.50"></text></g><g><title>__GI___wait4 (237 samples, 0.01%)</title><rect x="7.3893%" y="565" width="0.0102%" height="15" fill="rgb(243,47,51)" fg:x="171604" fg:w="237"/><text x="7.6393%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (236 samples, 0.01%)</title><rect x="7.3894%" y="549" width="0.0102%" height="15" fill="rgb(241,183,40)" fg:x="171605" fg:w="236"/><text x="7.6394%" y="559.50"></text></g><g><title>do_syscall_64 (236 samples, 0.01%)</title><rect x="7.3894%" y="533" width="0.0102%" height="15" fill="rgb(231,217,32)" fg:x="171605" fg:w="236"/><text x="7.6394%" y="543.50"></text></g><g><title>__libc_start_call_main (725 samples, 0.03%)</title><rect x="7.3690%" y="597" width="0.0312%" height="15" fill="rgb(229,61,38)" fg:x="171132" fg:w="725"/><text x="7.6190%" y="607.50"></text></g><g><title>main (659 samples, 0.03%)</title><rect x="7.3719%" y="581" width="0.0284%" height="15" fill="rgb(225,210,5)" fg:x="171198" fg:w="659"/><text x="7.6219%" y="591.50"></text></g><g><title>__libc_start_main_impl (781 samples, 0.03%)</title><rect x="7.3667%" y="613" width="0.0336%" height="15" fill="rgb(231,79,45)" fg:x="171078" fg:w="781"/><text x="7.6167%" y="623.50"></text></g><g><title>_dl_lookup_symbol_x (282 samples, 0.01%)</title><rect x="7.4171%" y="501" width="0.0121%" height="15" fill="rgb(224,100,7)" fg:x="172248" fg:w="282"/><text x="7.6671%" y="511.50"></text></g><g><title>elf_machine_rela (329 samples, 0.01%)</title><rect x="7.4152%" y="517" width="0.0142%" height="15" fill="rgb(241,198,18)" fg:x="172204" fg:w="329"/><text x="7.6652%" y="527.50"></text></g><g><title>elf_dynamic_do_Rela (383 samples, 0.02%)</title><rect x="7.4136%" y="533" width="0.0165%" height="15" fill="rgb(252,97,53)" fg:x="172168" fg:w="383"/><text x="7.6636%" y="543.50"></text></g><g><title>_dl_relocate_object (411 samples, 0.02%)</title><rect x="7.4126%" y="549" width="0.0177%" height="15" fill="rgb(220,88,7)" fg:x="172143" fg:w="411"/><text x="7.6626%" y="559.50"></text></g><g><title>dl_main (715 samples, 0.03%)</title><rect x="7.4008%" y="565" width="0.0308%" height="15" fill="rgb(213,176,14)" fg:x="171870" fg:w="715"/><text x="7.6508%" y="575.50"></text></g><g><title>_dl_start_final (734 samples, 0.03%)</title><rect x="7.4004%" y="597" width="0.0316%" height="15" fill="rgb(246,73,7)" fg:x="171861" fg:w="734"/><text x="7.6504%" y="607.50"></text></g><g><title>_dl_sysdep_start (732 samples, 0.03%)</title><rect x="7.4005%" y="581" width="0.0315%" height="15" fill="rgb(245,64,36)" fg:x="171863" fg:w="732"/><text x="7.6505%" y="591.50"></text></g><g><title>_dl_start (739 samples, 0.03%)</title><rect x="7.4003%" y="613" width="0.0318%" height="15" fill="rgb(245,80,10)" fg:x="171859" fg:w="739"/><text x="7.6503%" y="623.50"></text></g><g><title>_start (1,524 samples, 0.07%)</title><rect x="7.3667%" y="629" width="0.0656%" height="15" fill="rgb(232,107,50)" fg:x="171078" fg:w="1524"/><text x="7.6167%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (432 samples, 0.02%)</title><rect x="7.4383%" y="629" width="0.0186%" height="15" fill="rgb(253,3,0)" fg:x="172741" fg:w="432"/><text x="7.6883%" y="639.50"></text></g><g><title>do_syscall_64 (430 samples, 0.02%)</title><rect x="7.4384%" y="613" width="0.0185%" height="15" fill="rgb(212,99,53)" fg:x="172743" fg:w="430"/><text x="7.6884%" y="623.50"></text></g><g><title>linux-sandbox (4,656 samples, 0.20%)</title><rect x="7.2565%" y="645" width="0.2005%" height="15" fill="rgb(249,111,54)" fg:x="168519" fg:w="4656"/><text x="7.5065%" y="655.50"></text></g><g><title>[perf-731527.map] (362 samples, 0.02%)</title><rect x="7.4673%" y="629" width="0.0156%" height="15" fill="rgb(249,55,30)" fg:x="173414" fg:w="362"/><text x="7.7173%" y="639.50"></text></g><g><title>process_reaper (372 samples, 0.02%)</title><rect x="7.4670%" y="645" width="0.0160%" height="15" fill="rgb(237,47,42)" fg:x="173407" fg:w="372"/><text x="7.7170%" y="655.50"></text></g><g><title>Parker::park (249 samples, 0.01%)</title><rect x="7.5098%" y="597" width="0.0107%" height="15" fill="rgb(211,20,18)" fg:x="174401" fg:w="249"/><text x="7.7598%" y="607.50"></text></g><g><title>Unsafe_Park (263 samples, 0.01%)</title><rect x="7.5094%" y="613" width="0.0113%" height="15" fill="rgb(231,203,46)" fg:x="174393" fg:w="263"/><text x="7.7594%" y="623.50"></text></g><g><title>[perf-731527.map] (885 samples, 0.04%)</title><rect x="7.4838%" y="629" width="0.0381%" height="15" fill="rgb(237,142,3)" fg:x="173798" fg:w="885"/><text x="7.7338%" y="639.50"></text></g><g><title>profile-writer- (928 samples, 0.04%)</title><rect x="7.4830%" y="645" width="0.0400%" height="15" fill="rgb(241,107,1)" fg:x="173779" fg:w="928"/><text x="7.7330%" y="655.50"></text></g><g><title>[unknown] (350 samples, 0.02%)</title><rect x="7.5245%" y="629" width="0.0151%" height="15" fill="rgb(229,83,13)" fg:x="174742" fg:w="350"/><text x="7.7745%" y="639.50"></text></g><g><title>python3 (563 samples, 0.02%)</title><rect x="7.5231%" y="645" width="0.0242%" height="15" fill="rgb(241,91,40)" fg:x="174710" fg:w="563"/><text x="7.7731%" y="655.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (321 samples, 0.01%)</title><rect x="7.5526%" y="613" width="0.0138%" height="15" fill="rgb(225,3,45)" fg:x="175395" fg:w="321"/><text x="7.8026%" y="623.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (401 samples, 0.02%)</title><rect x="7.5664%" y="613" width="0.0173%" height="15" fill="rgb(244,223,14)" fg:x="175716" fg:w="401"/><text x="7.8164%" y="623.50"></text></g><g><title>HandleMark::pop_and_restore (314 samples, 0.01%)</title><rect x="7.6099%" y="613" width="0.0135%" height="15" fill="rgb(224,124,37)" fg:x="176727" fg:w="314"/><text x="7.8599%" y="623.50"></text></g><g><title>JNIHandles::make_local (290 samples, 0.01%)</title><rect x="7.6258%" y="613" width="0.0125%" height="15" fill="rgb(251,171,30)" fg:x="177096" fg:w="290"/><text x="7.8758%" y="623.50"></text></g><g><title>JavaThread::is_Java_thread (325 samples, 0.01%)</title><rect x="7.6430%" y="613" width="0.0140%" height="15" fill="rgb(236,46,54)" fg:x="177495" fg:w="325"/><text x="7.8930%" y="623.50"></text></g><g><title>ThreadStateTransition::transition_from_native (319 samples, 0.01%)</title><rect x="7.6689%" y="613" width="0.0137%" height="15" fill="rgb(245,213,5)" fg:x="178096" fg:w="319"/><text x="7.9189%" y="623.50"></text></g><g><title>__GI_symlink (262 samples, 0.01%)</title><rect x="7.6967%" y="613" width="0.0113%" height="15" fill="rgb(230,144,27)" fg:x="178741" fg:w="262"/><text x="7.9467%" y="623.50"></text></g><g><title>__GI_unlinkat (398 samples, 0.02%)</title><rect x="7.7080%" y="613" width="0.0171%" height="15" fill="rgb(220,86,6)" fg:x="179003" fg:w="398"/><text x="7.9580%" y="623.50"></text></g><g><title>check_bounds (303 samples, 0.01%)</title><rect x="7.7307%" y="613" width="0.0130%" height="15" fill="rgb(240,20,13)" fg:x="179531" fg:w="303"/><text x="7.9807%" y="623.50"></text></g><g><title>jni_GetObjectField (242 samples, 0.01%)</title><rect x="7.7543%" y="613" width="0.0104%" height="15" fill="rgb(217,89,34)" fg:x="180080" fg:w="242"/><text x="8.0043%" y="623.50"></text></g><g><title>[anon] (5,228 samples, 0.23%)</title><rect x="7.5525%" y="629" width="0.2251%" height="15" fill="rgb(229,13,5)" fg:x="175394" fg:w="5228"/><text x="7.8025%" y="639.50"></text></g><g><title>[libc.so.6] (285 samples, 0.01%)</title><rect x="8.1329%" y="613" width="0.0123%" height="15" fill="rgb(244,67,35)" fg:x="188871" fg:w="285"/><text x="8.3829%" y="623.50"></text></g><g><title>[libstdc++.so.6.0.30] (1,555 samples, 0.07%)</title><rect x="8.1451%" y="613" width="0.0670%" height="15" fill="rgb(221,40,2)" fg:x="189156" fg:w="1555"/><text x="8.3951%" y="623.50"></text></g><g><title>kfree (607 samples, 0.03%)</title><rect x="8.2618%" y="453" width="0.0261%" height="15" fill="rgb(237,157,21)" fg:x="191866" fg:w="607"/><text x="8.5118%" y="463.50"></text></g><g><title>btrfs_release_file (750 samples, 0.03%)</title><rect x="8.2558%" y="469" width="0.0323%" height="15" fill="rgb(222,94,11)" fg:x="191725" fg:w="750"/><text x="8.5058%" y="479.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (284 samples, 0.01%)</title><rect x="8.3265%" y="389" width="0.0122%" height="15" fill="rgb(249,113,6)" fg:x="193367" fg:w="284"/><text x="8.5765%" y="399.50"></text></g><g><title>pinnedhook_security_file_free_security (605 samples, 0.03%)</title><rect x="8.3149%" y="453" width="0.0261%" height="15" fill="rgb(238,137,36)" fg:x="193099" fg:w="605"/><text x="8.5649%" y="463.50"></text></g><g><title>cshook_security_file_free_security (529 samples, 0.02%)</title><rect x="8.3182%" y="437" width="0.0228%" height="15" fill="rgb(210,102,26)" fg:x="193175" fg:w="529"/><text x="8.5682%" y="447.50"></text></g><g><title>cshook_security_file_free_security (393 samples, 0.02%)</title><rect x="8.3241%" y="421" width="0.0169%" height="15" fill="rgb(218,30,30)" fg:x="193311" fg:w="393"/><text x="8.5741%" y="431.50"></text></g><g><title>cshook_security_file_free_security (337 samples, 0.01%)</title><rect x="8.3265%" y="405" width="0.0145%" height="15" fill="rgb(214,67,26)" fg:x="193367" fg:w="337"/><text x="8.5765%" y="415.50"></text></g><g><title>__fput (2,297 samples, 0.10%)</title><rect x="8.2427%" y="485" width="0.0989%" height="15" fill="rgb(251,9,53)" fg:x="191421" fg:w="2297"/><text x="8.4927%" y="495.50"></text></g><g><title>security_file_free (968 samples, 0.04%)</title><rect x="8.2999%" y="469" width="0.0417%" height="15" fill="rgb(228,204,25)" fg:x="192750" fg:w="968"/><text x="8.5499%" y="479.50"></text></g><g><title>____fput (2,470 samples, 0.11%)</title><rect x="8.2424%" y="501" width="0.1064%" height="15" fill="rgb(207,153,8)" fg:x="191414" fg:w="2470"/><text x="8.4924%" y="511.50"></text></g><g><title>exit_to_user_mode_loop (2,758 samples, 0.12%)</title><rect x="8.2325%" y="533" width="0.1188%" height="15" fill="rgb(242,9,16)" fg:x="191185" fg:w="2758"/><text x="8.4825%" y="543.50"></text></g><g><title>task_work_run (2,552 samples, 0.11%)</title><rect x="8.2414%" y="517" width="0.1099%" height="15" fill="rgb(217,211,10)" fg:x="191391" fg:w="2552"/><text x="8.4914%" y="527.50"></text></g><g><title>exit_to_user_mode_prepare (2,861 samples, 0.12%)</title><rect x="8.2309%" y="549" width="0.1232%" height="15" fill="rgb(219,228,52)" fg:x="191147" fg:w="2861"/><text x="8.4809%" y="559.50"></text></g><g><title>syscall_exit_to_user_mode (2,880 samples, 0.12%)</title><rect x="8.2302%" y="565" width="0.1240%" height="15" fill="rgb(231,92,29)" fg:x="191132" fg:w="2880"/><text x="8.4802%" y="575.50"></text></g><g><title>filp_close (333 samples, 0.01%)</title><rect x="8.3613%" y="517" width="0.0143%" height="15" fill="rgb(232,8,23)" fg:x="194175" fg:w="333"/><text x="8.6113%" y="527.50"></text></g><g><title>close_fd (449 samples, 0.02%)</title><rect x="8.3576%" y="533" width="0.0193%" height="15" fill="rgb(216,211,34)" fg:x="194090" fg:w="449"/><text x="8.6076%" y="543.50"></text></g><g><title>__x64_sys_close (474 samples, 0.02%)</title><rect x="8.3574%" y="549" width="0.0204%" height="15" fill="rgb(236,151,0)" fg:x="194085" fg:w="474"/><text x="8.6074%" y="559.50"></text></g><g><title>[[falcon_kal]] (330 samples, 0.01%)</title><rect x="8.4323%" y="437" width="0.0142%" height="15" fill="rgb(209,168,3)" fg:x="195825" fg:w="330"/><text x="8.6823%" y="447.50"></text></g><g><title>down_read (323 samples, 0.01%)</title><rect x="8.4326%" y="421" width="0.0139%" height="15" fill="rgb(208,129,28)" fg:x="195832" fg:w="323"/><text x="8.6826%" y="431.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (598 samples, 0.03%)</title><rect x="8.4226%" y="469" width="0.0258%" height="15" fill="rgb(229,78,22)" fg:x="195600" fg:w="598"/><text x="8.6726%" y="479.50"></text></g><g><title>cshook_security_inode_free_security (473 samples, 0.02%)</title><rect x="8.4280%" y="453" width="0.0204%" height="15" fill="rgb(228,187,13)" fg:x="195725" fg:w="473"/><text x="8.6780%" y="463.50"></text></g><g><title>cshook_security_file_free_security (644 samples, 0.03%)</title><rect x="8.4225%" y="485" width="0.0277%" height="15" fill="rgb(240,119,24)" fg:x="195598" fg:w="644"/><text x="8.6725%" y="495.50"></text></g><g><title>cshook_security_file_free_security (1,017 samples, 0.04%)</title><rect x="8.4083%" y="501" width="0.0438%" height="15" fill="rgb(209,194,42)" fg:x="195268" fg:w="1017"/><text x="8.6583%" y="511.50"></text></g><g><title>cshook_security_file_free_security (1,257 samples, 0.05%)</title><rect x="8.3985%" y="517" width="0.0541%" height="15" fill="rgb(247,200,46)" fg:x="195039" fg:w="1257"/><text x="8.6485%" y="527.50"></text></g><g><title>[[falcon_kal]] (466 samples, 0.02%)</title><rect x="8.4555%" y="501" width="0.0201%" height="15" fill="rgb(218,76,16)" fg:x="196363" fg:w="466"/><text x="8.7055%" y="511.50"></text></g><g><title>_ZdlPv (354 samples, 0.02%)</title><rect x="8.4755%" y="501" width="0.0152%" height="15" fill="rgb(225,21,48)" fg:x="196829" fg:w="354"/><text x="8.7255%" y="511.50"></text></g><g><title>[[falcon_kal]] (252 samples, 0.01%)</title><rect x="8.4967%" y="485" width="0.0109%" height="15" fill="rgb(239,223,50)" fg:x="197321" fg:w="252"/><text x="8.7467%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (403 samples, 0.02%)</title><rect x="8.4914%" y="501" width="0.0174%" height="15" fill="rgb(244,45,21)" fg:x="197197" fg:w="403"/><text x="8.7414%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (2,838 samples, 0.12%)</title><rect x="8.3889%" y="533" width="0.1222%" height="15" fill="rgb(232,33,43)" fg:x="194817" fg:w="2838"/><text x="8.6389%" y="543.50"></text></g><g><title>fshook_syscalltable_pre_lchown (1,344 samples, 0.06%)</title><rect x="8.4532%" y="517" width="0.0579%" height="15" fill="rgb(209,8,3)" fg:x="196311" fg:w="1344"/><text x="8.7032%" y="527.50"></text></g><g><title>do_syscall_64 (6,820 samples, 0.29%)</title><rect x="8.2205%" y="581" width="0.2937%" height="15" fill="rgb(214,25,53)" fg:x="190905" fg:w="6820"/><text x="8.4705%" y="591.50"></text></g><g><title>unload_network_ops_symbols (3,713 samples, 0.16%)</title><rect x="8.3542%" y="565" width="0.1599%" height="15" fill="rgb(254,186,54)" fg:x="194012" fg:w="3713"/><text x="8.6042%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_close (2,914 samples, 0.13%)</title><rect x="8.3887%" y="549" width="0.1255%" height="15" fill="rgb(208,174,49)" fg:x="194811" fg:w="2914"/><text x="8.6387%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (6,930 samples, 0.30%)</title><rect x="8.2186%" y="597" width="0.2984%" height="15" fill="rgb(233,191,51)" fg:x="190862" fg:w="6930"/><text x="8.4686%" y="607.50"></text></g><g><title>__GI___close_nocancel (7,053 samples, 0.30%)</title><rect x="8.2146%" y="613" width="0.3037%" height="15" fill="rgb(222,134,10)" fg:x="190770" fg:w="7053"/><text x="8.4646%" y="623.50"></text></g><g><title>_int_free (738 samples, 0.03%)</title><rect x="8.5680%" y="597" width="0.0318%" height="15" fill="rgb(230,226,20)" fg:x="198975" fg:w="738"/><text x="8.8180%" y="607.50"></text></g><g><title>arena_for_chunk (260 samples, 0.01%)</title><rect x="8.5997%" y="597" width="0.0112%" height="15" fill="rgb(251,111,25)" fg:x="199713" fg:w="260"/><text x="8.8497%" y="607.50"></text></g><g><title>arena_for_chunk (251 samples, 0.01%)</title><rect x="8.6001%" y="581" width="0.0108%" height="15" fill="rgb(224,40,46)" fg:x="199722" fg:w="251"/><text x="8.8501%" y="591.50"></text></g><g><title>__GI___libc_free (2,150 samples, 0.09%)</title><rect x="8.5199%" y="613" width="0.0926%" height="15" fill="rgb(236,108,47)" fg:x="197858" fg:w="2150"/><text x="8.7699%" y="623.50"></text></g><g><title>filldir64 (1,006 samples, 0.04%)</title><rect x="8.7588%" y="485" width="0.0433%" height="15" fill="rgb(234,93,0)" fg:x="203408" fg:w="1006"/><text x="9.0088%" y="495.50"></text></g><g><title>btrfs_filldir (1,102 samples, 0.05%)</title><rect x="8.7557%" y="501" width="0.0475%" height="15" fill="rgb(224,213,32)" fg:x="203336" fg:w="1102"/><text x="9.0057%" y="511.50"></text></g><g><title>kmem_cache_free (242 samples, 0.01%)</title><rect x="8.8063%" y="485" width="0.0104%" height="15" fill="rgb(251,11,48)" fg:x="204510" fg:w="242"/><text x="9.0563%" y="495.50"></text></g><g><title>btrfs_free_path (319 samples, 0.01%)</title><rect x="8.8032%" y="501" width="0.0137%" height="15" fill="rgb(236,173,5)" fg:x="204438" fg:w="319"/><text x="9.0532%" y="511.50"></text></g><g><title>btrfs_search_slot (480 samples, 0.02%)</title><rect x="8.8413%" y="485" width="0.0207%" height="15" fill="rgb(230,95,12)" fg:x="205322" fg:w="480"/><text x="9.0913%" y="495.50"></text></g><g><title>btrfs_next_old_leaf (669 samples, 0.03%)</title><rect x="8.8384%" y="501" width="0.0288%" height="15" fill="rgb(232,209,1)" fg:x="205256" fg:w="669"/><text x="9.0884%" y="511.50"></text></g><g><title>btrfs_readdir_get_delayed_items (536 samples, 0.02%)</title><rect x="8.8677%" y="501" width="0.0231%" height="15" fill="rgb(232,6,1)" fg:x="205937" fg:w="536"/><text x="9.1177%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (298 samples, 0.01%)</title><rect x="8.9092%" y="469" width="0.0128%" height="15" fill="rgb(210,224,50)" fg:x="206899" fg:w="298"/><text x="9.1592%" y="479.50"></text></g><g><title>free_extent_buffer (443 samples, 0.02%)</title><rect x="8.9038%" y="485" width="0.0191%" height="15" fill="rgb(228,127,35)" fg:x="206774" fg:w="443"/><text x="9.1538%" y="495.50"></text></g><g><title>btrfs_release_path (623 samples, 0.03%)</title><rect x="8.8972%" y="501" width="0.0268%" height="15" fill="rgb(245,102,45)" fg:x="206622" fg:w="623"/><text x="9.1472%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (1,310 samples, 0.06%)</title><rect x="8.9559%" y="469" width="0.0564%" height="15" fill="rgb(214,1,49)" fg:x="207984" fg:w="1310"/><text x="9.2059%" y="479.50"></text></g><g><title>btrfs_bin_search (1,366 samples, 0.06%)</title><rect x="8.9536%" y="485" width="0.0588%" height="15" fill="rgb(226,163,40)" fg:x="207930" fg:w="1366"/><text x="9.2036%" y="495.50"></text></g><g><title>update_curr (255 samples, 0.01%)</title><rect x="9.0514%" y="341" width="0.0110%" height="15" fill="rgb(239,212,28)" fg:x="210201" fg:w="255"/><text x="9.3014%" y="351.50"></text></g><g><title>dequeue_entity (596 samples, 0.03%)</title><rect x="9.0445%" y="357" width="0.0257%" height="15" fill="rgb(220,20,13)" fg:x="210041" fg:w="596"/><text x="9.2945%" y="367.50"></text></g><g><title>dequeue_task_fair (747 samples, 0.03%)</title><rect x="9.0411%" y="373" width="0.0322%" height="15" fill="rgb(210,164,35)" fg:x="209964" fg:w="747"/><text x="9.2911%" y="383.50"></text></g><g><title>dequeue_task (787 samples, 0.03%)</title><rect x="9.0401%" y="389" width="0.0339%" height="15" fill="rgb(248,109,41)" fg:x="209940" fg:w="787"/><text x="9.2901%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (236 samples, 0.01%)</title><rect x="9.0780%" y="373" width="0.0102%" height="15" fill="rgb(238,23,50)" fg:x="210821" fg:w="236"/><text x="9.3280%" y="383.50"></text></g><g><title>finish_task_switch.isra.0 (387 samples, 0.02%)</title><rect x="9.0742%" y="389" width="0.0167%" height="15" fill="rgb(211,48,49)" fg:x="210731" fg:w="387"/><text x="9.3242%" y="399.50"></text></g><g><title>pick_next_task (361 samples, 0.02%)</title><rect x="9.0916%" y="389" width="0.0155%" height="15" fill="rgb(223,36,21)" fg:x="211136" fg:w="361"/><text x="9.3416%" y="399.50"></text></g><g><title>psi_group_change (334 samples, 0.01%)</title><rect x="9.1199%" y="373" width="0.0144%" height="15" fill="rgb(207,123,46)" fg:x="211794" fg:w="334"/><text x="9.3699%" y="383.50"></text></g><g><title>psi_task_switch (444 samples, 0.02%)</title><rect x="9.1161%" y="389" width="0.0191%" height="15" fill="rgb(240,218,32)" fg:x="211704" fg:w="444"/><text x="9.3661%" y="399.50"></text></g><g><title>__schedule (2,421 samples, 0.10%)</title><rect x="9.0343%" y="405" width="0.1042%" height="15" fill="rgb(252,5,43)" fg:x="209805" fg:w="2421"/><text x="9.2843%" y="415.50"></text></g><g><title>schedule (2,465 samples, 0.11%)</title><rect x="9.0337%" y="421" width="0.1061%" height="15" fill="rgb(252,84,19)" fg:x="209790" fg:w="2465"/><text x="9.2837%" y="431.50"></text></g><g><title>rwsem_down_read_slowpath (2,763 samples, 0.12%)</title><rect x="9.0224%" y="437" width="0.1190%" height="15" fill="rgb(243,152,39)" fg:x="209528" fg:w="2763"/><text x="9.2724%" y="447.50"></text></g><g><title>down_read (2,858 samples, 0.12%)</title><rect x="9.0188%" y="453" width="0.1231%" height="15" fill="rgb(234,160,15)" fg:x="209445" fg:w="2858"/><text x="9.2688%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (2,889 samples, 0.12%)</title><rect x="9.0179%" y="469" width="0.1244%" height="15" fill="rgb(237,34,20)" fg:x="209424" fg:w="2889"/><text x="9.2679%" y="479.50"></text></g><g><title>btrfs_read_lock_root_node (3,101 samples, 0.13%)</title><rect x="9.0166%" y="485" width="0.1335%" height="15" fill="rgb(229,97,13)" fg:x="209394" fg:w="3101"/><text x="9.2666%" y="495.50"></text></g><g><title>dequeue_entity (317 samples, 0.01%)</title><rect x="9.1741%" y="357" width="0.0137%" height="15" fill="rgb(234,71,50)" fg:x="213052" fg:w="317"/><text x="9.4241%" y="367.50"></text></g><g><title>dequeue_task_fair (407 samples, 0.02%)</title><rect x="9.1720%" y="373" width="0.0175%" height="15" fill="rgb(253,155,4)" fg:x="213003" fg:w="407"/><text x="9.4220%" y="383.50"></text></g><g><title>dequeue_task (430 samples, 0.02%)</title><rect x="9.1713%" y="389" width="0.0185%" height="15" fill="rgb(222,185,37)" fg:x="212987" fg:w="430"/><text x="9.4213%" y="399.50"></text></g><g><title>psi_task_switch (279 samples, 0.01%)</title><rect x="9.2092%" y="389" width="0.0120%" height="15" fill="rgb(251,177,13)" fg:x="213867" fg:w="279"/><text x="9.4592%" y="399.50"></text></g><g><title>__schedule (1,335 samples, 0.06%)</title><rect x="9.1681%" y="405" width="0.0575%" height="15" fill="rgb(250,179,40)" fg:x="212912" fg:w="1335"/><text x="9.4181%" y="415.50"></text></g><g><title>schedule (1,365 samples, 0.06%)</title><rect x="9.1674%" y="421" width="0.0588%" height="15" fill="rgb(242,44,2)" fg:x="212895" fg:w="1365"/><text x="9.4174%" y="431.50"></text></g><g><title>rwsem_down_read_slowpath (1,484 samples, 0.06%)</title><rect x="9.1628%" y="437" width="0.0639%" height="15" fill="rgb(216,177,13)" fg:x="212790" fg:w="1484"/><text x="9.4128%" y="447.50"></text></g><g><title>down_read (1,712 samples, 0.07%)</title><rect x="9.1532%" y="453" width="0.0737%" height="15" fill="rgb(216,106,43)" fg:x="212567" fg:w="1712"/><text x="9.4032%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (1,766 samples, 0.08%)</title><rect x="9.1513%" y="469" width="0.0760%" height="15" fill="rgb(216,183,2)" fg:x="212521" fg:w="1766"/><text x="9.4013%" y="479.50"></text></g><g><title>btrfs_tree_read_lock (1,783 samples, 0.08%)</title><rect x="9.1511%" y="485" width="0.0768%" height="15" fill="rgb(249,75,3)" fg:x="212517" fg:w="1783"/><text x="9.4011%" y="495.50"></text></g><g><title>try_to_wake_up (385 samples, 0.02%)</title><rect x="9.2363%" y="421" width="0.0166%" height="15" fill="rgb(219,67,39)" fg:x="214497" fg:w="385"/><text x="9.4863%" y="431.50"></text></g><g><title>rwsem_wake.isra.0 (552 samples, 0.02%)</title><rect x="9.2293%" y="453" width="0.0238%" height="15" fill="rgb(253,228,2)" fg:x="214334" fg:w="552"/><text x="9.4793%" y="463.50"></text></g><g><title>wake_up_q (413 samples, 0.02%)</title><rect x="9.2353%" y="437" width="0.0178%" height="15" fill="rgb(235,138,27)" fg:x="214473" fg:w="413"/><text x="9.4853%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (587 samples, 0.03%)</title><rect x="9.2279%" y="485" width="0.0253%" height="15" fill="rgb(236,97,51)" fg:x="214300" fg:w="587"/><text x="9.4779%" y="495.50"></text></g><g><title>up_read (567 samples, 0.02%)</title><rect x="9.2287%" y="469" width="0.0244%" height="15" fill="rgb(240,80,30)" fg:x="214320" fg:w="567"/><text x="9.4787%" y="479.50"></text></g><g><title>btrfs_node_key (272 samples, 0.01%)</title><rect x="9.2805%" y="469" width="0.0117%" height="15" fill="rgb(230,178,19)" fg:x="215522" fg:w="272"/><text x="9.5305%" y="479.50"></text></g><g><title>read_extent_buffer (265 samples, 0.01%)</title><rect x="9.2808%" y="453" width="0.0114%" height="15" fill="rgb(210,190,27)" fg:x="215529" fg:w="265"/><text x="9.5308%" y="463.50"></text></g><g><title>__radix_tree_lookup (779 samples, 0.03%)</title><rect x="9.3270%" y="421" width="0.0335%" height="15" fill="rgb(222,107,31)" fg:x="216603" fg:w="779"/><text x="9.5770%" y="431.50"></text></g><g><title>radix_tree_lookup (783 samples, 0.03%)</title><rect x="9.3269%" y="437" width="0.0337%" height="15" fill="rgb(216,127,34)" fg:x="216600" fg:w="783"/><text x="9.5769%" y="447.50"></text></g><g><title>find_extent_buffer_nolock (1,341 samples, 0.06%)</title><rect x="9.3030%" y="453" width="0.0577%" height="15" fill="rgb(234,116,52)" fg:x="216046" fg:w="1341"/><text x="9.5530%" y="463.50"></text></g><g><title>mark_page_accessed (380 samples, 0.02%)</title><rect x="9.3608%" y="453" width="0.0164%" height="15" fill="rgb(222,124,15)" fg:x="217387" fg:w="380"/><text x="9.6108%" y="463.50"></text></g><g><title>find_extent_buffer (1,863 samples, 0.08%)</title><rect x="9.2978%" y="469" width="0.0802%" height="15" fill="rgb(231,179,28)" fg:x="215925" fg:w="1863"/><text x="9.5478%" y="479.50"></text></g><g><title>read_block_for_search (2,939 samples, 0.13%)</title><rect x="9.2562%" y="485" width="0.1266%" height="15" fill="rgb(226,93,45)" fg:x="214958" fg:w="2939"/><text x="9.5062%" y="495.50"></text></g><g><title>unlock_up (246 samples, 0.01%)</title><rect x="9.3827%" y="485" width="0.0106%" height="15" fill="rgb(215,8,51)" fg:x="217897" fg:w="246"/><text x="9.6327%" y="495.50"></text></g><g><title>btrfs_search_slot (11,104 samples, 0.48%)</title><rect x="8.9241%" y="501" width="0.4781%" height="15" fill="rgb(223,106,5)" fg:x="207245" fg:w="11104"/><text x="9.1741%" y="511.50"></text></g><g><title>filldir64 (235 samples, 0.01%)</title><rect x="9.4096%" y="501" width="0.0101%" height="15" fill="rgb(250,191,5)" fg:x="218520" fg:w="235"/><text x="9.6596%" y="511.50"></text></g><g><title>read_extent_buffer (1,042 samples, 0.04%)</title><rect x="9.4271%" y="501" width="0.0449%" height="15" fill="rgb(242,132,44)" fg:x="218926" fg:w="1042"/><text x="9.6771%" y="511.50"></text></g><g><title>btrfs_real_readdir (17,688 samples, 0.76%)</title><rect x="8.7133%" y="517" width="0.7617%" height="15" fill="rgb(251,152,29)" fg:x="202351" fg:w="17688"/><text x="8.9633%" y="527.50"></text></g><g><title>pinnedhook_security_file_permission (243 samples, 0.01%)</title><rect x="9.5160%" y="501" width="0.0105%" height="15" fill="rgb(218,179,5)" fg:x="220992" fg:w="243"/><text x="9.7660%" y="511.50"></text></g><g><title>security_file_permission (725 samples, 0.03%)</title><rect x="9.4960%" y="517" width="0.0312%" height="15" fill="rgb(227,67,19)" fg:x="220527" fg:w="725"/><text x="9.7460%" y="527.50"></text></g><g><title>btrfs_end_transaction (249 samples, 0.01%)</title><rect x="9.5520%" y="469" width="0.0107%" height="15" fill="rgb(233,119,31)" fg:x="221828" fg:w="249"/><text x="9.8020%" y="479.50"></text></g><g><title>btrfs_join_transaction (387 samples, 0.02%)</title><rect x="9.5627%" y="469" width="0.0167%" height="15" fill="rgb(241,120,22)" fg:x="222077" fg:w="387"/><text x="9.8127%" y="479.50"></text></g><g><title>start_transaction (379 samples, 0.02%)</title><rect x="9.5631%" y="453" width="0.0163%" height="15" fill="rgb(224,102,30)" fg:x="222085" fg:w="379"/><text x="9.8131%" y="463.50"></text></g><g><title>__reserve_bytes (442 samples, 0.02%)</title><rect x="9.5984%" y="405" width="0.0190%" height="15" fill="rgb(210,164,37)" fg:x="222905" fg:w="442"/><text x="9.8484%" y="415.50"></text></g><g><title>btrfs_block_rsv_add (595 samples, 0.03%)</title><rect x="9.5952%" y="437" width="0.0256%" height="15" fill="rgb(226,191,16)" fg:x="222832" fg:w="595"/><text x="9.8452%" y="447.50"></text></g><g><title>btrfs_reserve_metadata_bytes (570 samples, 0.02%)</title><rect x="9.5963%" y="421" width="0.0245%" height="15" fill="rgb(214,40,45)" fg:x="222857" fg:w="570"/><text x="9.8463%" y="431.50"></text></g><g><title>btrfs_delayed_update_inode (1,159 samples, 0.05%)</title><rect x="9.5840%" y="453" width="0.0499%" height="15" fill="rgb(244,29,26)" fg:x="222570" fg:w="1159"/><text x="9.8340%" y="463.50"></text></g><g><title>btrfs_update_inode (1,406 samples, 0.06%)</title><rect x="9.5794%" y="469" width="0.0605%" height="15" fill="rgb(216,16,5)" fg:x="222464" fg:w="1406"/><text x="9.8294%" y="479.50"></text></g><g><title>btrfs_dirty_inode (2,304 samples, 0.10%)</title><rect x="9.5431%" y="485" width="0.0992%" height="15" fill="rgb(249,76,35)" fg:x="221622" fg:w="2304"/><text x="9.7931%" y="495.50"></text></g><g><title>btrfs_update_time (2,354 samples, 0.10%)</title><rect x="9.5421%" y="501" width="0.1014%" height="15" fill="rgb(207,11,44)" fg:x="221598" fg:w="2354"/><text x="9.7921%" y="511.50"></text></g><g><title>iterate_dir (22,300 samples, 0.96%)</title><rect x="8.6850%" y="533" width="0.9602%" height="15" fill="rgb(228,190,49)" fg:x="201693" fg:w="22300"/><text x="8.9350%" y="543.50"></text></g><g><title>touch_atime (2,741 samples, 0.12%)</title><rect x="9.5272%" y="517" width="0.1180%" height="15" fill="rgb(214,173,12)" fg:x="221252" fg:w="2741"/><text x="9.7772%" y="527.50"></text></g><g><title>__x64_sys_getdents64 (22,946 samples, 0.99%)</title><rect x="8.6614%" y="549" width="0.9881%" height="15" fill="rgb(218,26,35)" fg:x="201145" fg:w="22946"/><text x="8.9114%" y="559.50"></text></g><g><title>__rseq_handle_notify_resume (234 samples, 0.01%)</title><rect x="9.6608%" y="501" width="0.0101%" height="15" fill="rgb(220,200,19)" fg:x="224355" fg:w="234"/><text x="9.9108%" y="511.50"></text></g><g><title>exit_to_user_mode_loop (393 samples, 0.02%)</title><rect x="9.6572%" y="517" width="0.0169%" height="15" fill="rgb(239,95,49)" fg:x="224270" fg:w="393"/><text x="9.9072%" y="527.50"></text></g><g><title>exit_to_user_mode_prepare (656 samples, 0.03%)</title><rect x="9.6543%" y="533" width="0.0282%" height="15" fill="rgb(235,85,53)" fg:x="224203" fg:w="656"/><text x="9.9043%" y="543.50"></text></g><g><title>do_syscall_64 (23,900 samples, 1.03%)</title><rect x="8.6541%" y="565" width="1.0291%" height="15" fill="rgb(233,133,31)" fg:x="200976" fg:w="23900"/><text x="8.9041%" y="575.50"></text></g><g><title>syscall_exit_to_user_mode (724 samples, 0.03%)</title><rect x="9.6521%" y="549" width="0.0312%" height="15" fill="rgb(218,25,20)" fg:x="224152" fg:w="724"/><text x="9.9021%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24,045 samples, 1.04%)</title><rect x="8.6493%" y="581" width="1.0354%" height="15" fill="rgb(252,210,38)" fg:x="200863" fg:w="24045"/><text x="8.8993%" y="591.50"></text></g><g><title>__GI___getdents64 (24,342 samples, 1.05%)</title><rect x="8.6397%" y="597" width="1.0482%" height="15" fill="rgb(242,134,21)" fg:x="200642" fg:w="24342"/><text x="8.8897%" y="607.50"></text></g><g><title>__GI___readdir64 (24,941 samples, 1.07%)</title><rect x="8.6142%" y="613" width="1.0740%" height="15" fill="rgb(213,28,48)" fg:x="200049" fg:w="24941"/><text x="8.8642%" y="623.50"></text></g><g><title>exit_to_user_mode_loop (244 samples, 0.01%)</title><rect x="9.7148%" y="533" width="0.0105%" height="15" fill="rgb(250,196,2)" fg:x="225608" fg:w="244"/><text x="9.9648%" y="543.50"></text></g><g><title>exit_to_user_mode_prepare (464 samples, 0.02%)</title><rect x="9.7125%" y="549" width="0.0200%" height="15" fill="rgb(227,5,17)" fg:x="225554" fg:w="464"/><text x="9.9625%" y="559.50"></text></g><g><title>syscall_exit_to_user_mode (516 samples, 0.02%)</title><rect x="9.7114%" y="565" width="0.0222%" height="15" fill="rgb(221,226,24)" fg:x="225529" fg:w="516"/><text x="9.9614%" y="575.50"></text></g><g><title>d_lru_add (289 samples, 0.01%)</title><rect x="9.7593%" y="501" width="0.0124%" height="15" fill="rgb(211,5,48)" fg:x="226641" fg:w="289"/><text x="10.0093%" y="511.50"></text></g><g><title>dput (479 samples, 0.02%)</title><rect x="9.7535%" y="517" width="0.0206%" height="15" fill="rgb(219,150,6)" fg:x="226508" fg:w="479"/><text x="10.0035%" y="527.50"></text></g><g><title>btrfs_release_path (295 samples, 0.01%)</title><rect x="9.7884%" y="437" width="0.0127%" height="15" fill="rgb(251,46,16)" fg:x="227318" fg:w="295"/><text x="10.0384%" y="447.50"></text></g><g><title>btrfs_free_path (440 samples, 0.02%)</title><rect x="9.7878%" y="453" width="0.0189%" height="15" fill="rgb(220,204,40)" fg:x="227303" fg:w="440"/><text x="10.0378%" y="463.50"></text></g><g><title>btrfs_bin_search (628 samples, 0.03%)</title><rect x="9.8277%" y="421" width="0.0270%" height="15" fill="rgb(211,85,2)" fg:x="228231" fg:w="628"/><text x="10.0777%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (605 samples, 0.03%)</title><rect x="9.8287%" y="405" width="0.0261%" height="15" fill="rgb(229,17,7)" fg:x="228254" fg:w="605"/><text x="10.0787%" y="415.50"></text></g><g><title>dequeue_entity (285 samples, 0.01%)</title><rect x="9.8711%" y="293" width="0.0123%" height="15" fill="rgb(239,72,28)" fg:x="229238" fg:w="285"/><text x="10.1211%" y="303.50"></text></g><g><title>dequeue_task_fair (381 samples, 0.02%)</title><rect x="9.8695%" y="309" width="0.0164%" height="15" fill="rgb(230,47,54)" fg:x="229201" fg:w="381"/><text x="10.1195%" y="319.50"></text></g><g><title>dequeue_task (412 samples, 0.02%)</title><rect x="9.8691%" y="325" width="0.0177%" height="15" fill="rgb(214,50,8)" fg:x="229191" fg:w="412"/><text x="10.1191%" y="335.50"></text></g><g><title>psi_task_switch (238 samples, 0.01%)</title><rect x="9.9072%" y="325" width="0.0102%" height="15" fill="rgb(216,198,43)" fg:x="230077" fg:w="238"/><text x="10.1572%" y="335.50"></text></g><g><title>__schedule (1,232 samples, 0.05%)</title><rect x="9.8660%" y="341" width="0.0531%" height="15" fill="rgb(234,20,35)" fg:x="229119" fg:w="1232"/><text x="10.1160%" y="351.50"></text></g><g><title>schedule (1,260 samples, 0.05%)</title><rect x="9.8655%" y="357" width="0.0543%" height="15" fill="rgb(254,45,19)" fg:x="229108" fg:w="1260"/><text x="10.1155%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (1,414 samples, 0.06%)</title><rect x="9.8593%" y="373" width="0.0609%" height="15" fill="rgb(219,14,44)" fg:x="228964" fg:w="1414"/><text x="10.1093%" y="383.50"></text></g><g><title>down_read (1,465 samples, 0.06%)</title><rect x="9.8572%" y="389" width="0.0631%" height="15" fill="rgb(217,220,26)" fg:x="228916" fg:w="1465"/><text x="10.1072%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,482 samples, 0.06%)</title><rect x="9.8568%" y="405" width="0.0638%" height="15" fill="rgb(213,158,28)" fg:x="228907" fg:w="1482"/><text x="10.1068%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (1,613 samples, 0.07%)</title><rect x="9.8564%" y="421" width="0.0695%" height="15" fill="rgb(252,51,52)" fg:x="228896" fg:w="1613"/><text x="10.1064%" y="431.50"></text></g><g><title>dequeue_entity (301 samples, 0.01%)</title><rect x="9.9455%" y="293" width="0.0130%" height="15" fill="rgb(246,89,16)" fg:x="230966" fg:w="301"/><text x="10.1955%" y="303.50"></text></g><g><title>dequeue_task_fair (368 samples, 0.02%)</title><rect x="9.9440%" y="309" width="0.0158%" height="15" fill="rgb(216,158,49)" fg:x="230931" fg:w="368"/><text x="10.1940%" y="319.50"></text></g><g><title>dequeue_task (396 samples, 0.02%)</title><rect x="9.9433%" y="325" width="0.0171%" height="15" fill="rgb(236,107,19)" fg:x="230914" fg:w="396"/><text x="10.1933%" y="335.50"></text></g><g><title>psi_task_switch (275 samples, 0.01%)</title><rect x="9.9822%" y="325" width="0.0118%" height="15" fill="rgb(228,185,30)" fg:x="231819" fg:w="275"/><text x="10.2322%" y="335.50"></text></g><g><title>__schedule (1,340 samples, 0.06%)</title><rect x="9.9396%" y="341" width="0.0577%" height="15" fill="rgb(246,134,8)" fg:x="230829" fg:w="1340"/><text x="10.1896%" y="351.50"></text></g><g><title>schedule (1,366 samples, 0.06%)</title><rect x="9.9391%" y="357" width="0.0588%" height="15" fill="rgb(214,143,50)" fg:x="230817" fg:w="1366"/><text x="10.1891%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (1,501 samples, 0.06%)</title><rect x="9.9339%" y="373" width="0.0646%" height="15" fill="rgb(228,75,8)" fg:x="230696" fg:w="1501"/><text x="10.1839%" y="383.50"></text></g><g><title>down_read (1,649 samples, 0.07%)</title><rect x="9.9276%" y="389" width="0.0710%" height="15" fill="rgb(207,175,4)" fg:x="230550" fg:w="1649"/><text x="10.1776%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,678 samples, 0.07%)</title><rect x="9.9267%" y="405" width="0.0723%" height="15" fill="rgb(205,108,24)" fg:x="230530" fg:w="1678"/><text x="10.1767%" y="415.50"></text></g><g><title>btrfs_tree_read_lock (1,691 samples, 0.07%)</title><rect x="9.9266%" y="421" width="0.0728%" height="15" fill="rgb(244,120,49)" fg:x="230528" fg:w="1691"/><text x="10.1766%" y="431.50"></text></g><g><title>try_to_wake_up (266 samples, 0.01%)</title><rect x="10.0044%" y="357" width="0.0115%" height="15" fill="rgb(223,47,38)" fg:x="232334" fg:w="266"/><text x="10.2544%" y="367.50"></text></g><g><title>btrfs_tree_read_unlock (383 samples, 0.02%)</title><rect x="9.9995%" y="421" width="0.0165%" height="15" fill="rgb(229,179,11)" fg:x="232219" fg:w="383"/><text x="10.2495%" y="431.50"></text></g><g><title>up_read (365 samples, 0.02%)</title><rect x="10.0002%" y="405" width="0.0157%" height="15" fill="rgb(231,122,1)" fg:x="232237" fg:w="365"/><text x="10.2502%" y="415.50"></text></g><g><title>rwsem_wake.isra.0 (349 samples, 0.02%)</title><rect x="10.0009%" y="389" width="0.0150%" height="15" fill="rgb(245,119,9)" fg:x="232253" fg:w="349"/><text x="10.2509%" y="399.50"></text></g><g><title>wake_up_q (281 samples, 0.01%)</title><rect x="10.0038%" y="373" width="0.0121%" height="15" fill="rgb(241,163,25)" fg:x="232321" fg:w="281"/><text x="10.2538%" y="383.50"></text></g><g><title>__radix_tree_lookup (373 samples, 0.02%)</title><rect x="10.0524%" y="357" width="0.0161%" height="15" fill="rgb(217,214,3)" fg:x="233449" fg:w="373"/><text x="10.3024%" y="367.50"></text></g><g><title>radix_tree_lookup (375 samples, 0.02%)</title><rect x="10.0524%" y="373" width="0.0161%" height="15" fill="rgb(240,86,28)" fg:x="233448" fg:w="375"/><text x="10.3024%" y="383.50"></text></g><g><title>find_extent_buffer_nolock (640 samples, 0.03%)</title><rect x="10.0411%" y="389" width="0.0276%" height="15" fill="rgb(215,47,9)" fg:x="233185" fg:w="640"/><text x="10.2911%" y="399.50"></text></g><g><title>find_extent_buffer (889 samples, 0.04%)</title><rect x="10.0382%" y="405" width="0.0383%" height="15" fill="rgb(252,25,45)" fg:x="233118" fg:w="889"/><text x="10.2882%" y="415.50"></text></g><g><title>read_block_for_search (1,407 samples, 0.06%)</title><rect x="10.0178%" y="421" width="0.0606%" height="15" fill="rgb(251,164,9)" fg:x="232645" fg:w="1407"/><text x="10.2678%" y="431.50"></text></g><g><title>btrfs_search_slot (6,406 samples, 0.28%)</title><rect x="9.8121%" y="437" width="0.2758%" height="15" fill="rgb(233,194,0)" fg:x="227869" fg:w="6406"/><text x="10.0621%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (6,746 samples, 0.29%)</title><rect x="9.8067%" y="453" width="0.2905%" height="15" fill="rgb(249,111,24)" fg:x="227743" fg:w="6746"/><text x="10.0567%" y="463.50"></text></g><g><title>btrfs_lookup_dentry (7,423 samples, 0.32%)</title><rect x="9.7806%" y="469" width="0.3196%" height="15" fill="rgb(250,223,3)" fg:x="227136" fg:w="7423"/><text x="10.0306%" y="479.50"></text></g><g><title>btrfs_lookup (7,643 samples, 0.33%)</title><rect x="9.7781%" y="485" width="0.3291%" height="15" fill="rgb(236,178,37)" fg:x="227078" fg:w="7643"/><text x="10.0281%" y="495.50"></text></g><g><title>kmem_cache_alloc (511 samples, 0.02%)</title><rect x="10.1138%" y="453" width="0.0220%" height="15" fill="rgb(241,158,50)" fg:x="234874" fg:w="511"/><text x="10.3638%" y="463.50"></text></g><g><title>__d_alloc (629 samples, 0.03%)</title><rect x="10.1097%" y="469" width="0.0271%" height="15" fill="rgb(213,121,41)" fg:x="234780" fg:w="629"/><text x="10.3597%" y="479.50"></text></g><g><title>d_alloc (667 samples, 0.03%)</title><rect x="10.1092%" y="485" width="0.0287%" height="15" fill="rgb(240,92,3)" fg:x="234767" fg:w="667"/><text x="10.3592%" y="495.50"></text></g><g><title>__lookup_hash (8,602 samples, 0.37%)</title><rect x="9.7763%" y="501" width="0.3704%" height="15" fill="rgb(205,123,3)" fg:x="227036" fg:w="8602"/><text x="10.0263%" y="511.50"></text></g><g><title>inode_permission (543 samples, 0.02%)</title><rect x="10.1802%" y="453" width="0.0234%" height="15" fill="rgb(205,97,47)" fg:x="236417" fg:w="543"/><text x="10.4302%" y="463.50"></text></g><g><title>__d_lookup_rcu (595 samples, 0.03%)</title><rect x="10.2159%" y="421" width="0.0256%" height="15" fill="rgb(247,152,14)" fg:x="237246" fg:w="595"/><text x="10.4659%" y="431.50"></text></g><g><title>lookup_fast (701 samples, 0.03%)</title><rect x="10.2114%" y="437" width="0.0302%" height="15" fill="rgb(248,195,53)" fg:x="237141" fg:w="701"/><text x="10.4614%" y="447.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (2,120 samples, 0.09%)</title><rect x="10.1587%" y="469" width="0.0913%" height="15" fill="rgb(226,201,16)" fg:x="235916" fg:w="2120"/><text x="10.4087%" y="479.50"></text></g><g><title>walk_component (1,028 samples, 0.04%)</title><rect x="10.2057%" y="453" width="0.0443%" height="15" fill="rgb(205,98,0)" fg:x="237008" fg:w="1028"/><text x="10.4557%" y="463.50"></text></g><g><title>path_parentat (2,405 samples, 0.10%)</title><rect x="10.1536%" y="485" width="0.1036%" height="15" fill="rgb(214,191,48)" fg:x="235799" fg:w="2405"/><text x="10.4036%" y="495.50"></text></g><g><title>filename_parentat (2,509 samples, 0.11%)</title><rect x="10.1496%" y="501" width="0.1080%" height="15" fill="rgb(237,112,39)" fg:x="235706" fg:w="2509"/><text x="10.3996%" y="511.50"></text></g><g><title>filename_create (11,314 samples, 0.49%)</title><rect x="9.7742%" y="517" width="0.4872%" height="15" fill="rgb(247,203,27)" fg:x="226987" fg:w="11314"/><text x="10.0242%" y="527.50"></text></g><g><title>btrfs_insert_delayed_dir_index (1,034 samples, 0.04%)</title><rect x="10.3159%" y="453" width="0.0445%" height="15" fill="rgb(235,124,28)" fg:x="239567" fg:w="1034"/><text x="10.5659%" y="463.50"></text></g><g><title>free_extent_buffer (257 samples, 0.01%)</title><rect x="10.3653%" y="437" width="0.0111%" height="15" fill="rgb(208,207,46)" fg:x="240715" fg:w="257"/><text x="10.6153%" y="447.50"></text></g><g><title>btrfs_release_path (325 samples, 0.01%)</title><rect x="10.3630%" y="453" width="0.0140%" height="15" fill="rgb(234,176,4)" fg:x="240661" fg:w="325"/><text x="10.6130%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (499 samples, 0.02%)</title><rect x="10.4119%" y="389" width="0.0215%" height="15" fill="rgb(230,133,28)" fg:x="241797" fg:w="499"/><text x="10.6619%" y="399.50"></text></g><g><title>btrfs_bin_search (509 samples, 0.02%)</title><rect x="10.4115%" y="405" width="0.0219%" height="15" fill="rgb(211,137,40)" fg:x="241788" fg:w="509"/><text x="10.6615%" y="415.50"></text></g><g><title>dequeue_task_fair (297 samples, 0.01%)</title><rect x="10.4499%" y="293" width="0.0128%" height="15" fill="rgb(254,35,13)" fg:x="242680" fg:w="297"/><text x="10.6999%" y="303.50"></text></g><g><title>dequeue_task (311 samples, 0.01%)</title><rect x="10.4496%" y="309" width="0.0134%" height="15" fill="rgb(225,49,51)" fg:x="242673" fg:w="311"/><text x="10.6996%" y="319.50"></text></g><g><title>__schedule (946 samples, 0.04%)</title><rect x="10.4474%" y="325" width="0.0407%" height="15" fill="rgb(251,10,15)" fg:x="242622" fg:w="946"/><text x="10.6974%" y="335.50"></text></g><g><title>schedule (960 samples, 0.04%)</title><rect x="10.4472%" y="341" width="0.0413%" height="15" fill="rgb(228,207,15)" fg:x="242616" fg:w="960"/><text x="10.6972%" y="351.50"></text></g><g><title>rwsem_down_read_slowpath (1,095 samples, 0.05%)</title><rect x="10.4421%" y="357" width="0.0472%" height="15" fill="rgb(241,99,19)" fg:x="242499" fg:w="1095"/><text x="10.6921%" y="367.50"></text></g><g><title>down_read (1,144 samples, 0.05%)</title><rect x="10.4402%" y="373" width="0.0493%" height="15" fill="rgb(207,104,49)" fg:x="242454" fg:w="1144"/><text x="10.6902%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (1,155 samples, 0.05%)</title><rect x="10.4398%" y="389" width="0.0497%" height="15" fill="rgb(234,99,18)" fg:x="242445" fg:w="1155"/><text x="10.6898%" y="399.50"></text></g><g><title>btrfs_read_lock_root_node (1,250 samples, 0.05%)</title><rect x="10.4394%" y="405" width="0.0538%" height="15" fill="rgb(213,191,49)" fg:x="242436" fg:w="1250"/><text x="10.6894%" y="415.50"></text></g><g><title>osq_lock (1,263 samples, 0.05%)</title><rect x="10.5280%" y="325" width="0.0544%" height="15" fill="rgb(210,226,19)" fg:x="244494" fg:w="1263"/><text x="10.7780%" y="335.50"></text></g><g><title>rwsem_spin_on_owner (1,036 samples, 0.04%)</title><rect x="10.5836%" y="325" width="0.0446%" height="15" fill="rgb(229,97,18)" fg:x="245784" fg:w="1036"/><text x="10.8336%" y="335.50"></text></g><g><title>rwsem_optimistic_spin (2,975 samples, 0.13%)</title><rect x="10.5004%" y="341" width="0.1281%" height="15" fill="rgb(211,167,15)" fg:x="243853" fg:w="2975"/><text x="10.7504%" y="351.50"></text></g><g><title>schedule (290 samples, 0.01%)</title><rect x="10.6289%" y="341" width="0.0125%" height="15" fill="rgb(210,169,34)" fg:x="246836" fg:w="290"/><text x="10.8789%" y="351.50"></text></g><g><title>__schedule (287 samples, 0.01%)</title><rect x="10.6290%" y="325" width="0.0124%" height="15" fill="rgb(241,121,31)" fg:x="246839" fg:w="287"/><text x="10.8790%" y="335.50"></text></g><g><title>down_write (3,417 samples, 0.15%)</title><rect x="10.4943%" y="373" width="0.1471%" height="15" fill="rgb(232,40,11)" fg:x="243711" fg:w="3417"/><text x="10.7443%" y="383.50"></text></g><g><title>rwsem_down_write_slowpath (3,325 samples, 0.14%)</title><rect x="10.4983%" y="357" width="0.1432%" height="15" fill="rgb(205,86,26)" fg:x="243803" fg:w="3325"/><text x="10.7483%" y="367.50"></text></g><g><title>__btrfs_tree_lock (3,441 samples, 0.15%)</title><rect x="10.4935%" y="389" width="0.1482%" height="15" fill="rgb(231,126,28)" fg:x="243692" fg:w="3441"/><text x="10.7435%" y="399.50"></text></g><g><title>btrfs_tree_lock (3,448 samples, 0.15%)</title><rect x="10.4935%" y="405" width="0.1485%" height="15" fill="rgb(219,221,18)" fg:x="243692" fg:w="3448"/><text x="10.7435%" y="415.50"></text></g><g><title>__schedule (500 samples, 0.02%)</title><rect x="10.6470%" y="325" width="0.0215%" height="15" fill="rgb(211,40,0)" fg:x="247256" fg:w="500"/><text x="10.8970%" y="335.50"></text></g><g><title>schedule (506 samples, 0.02%)</title><rect x="10.6468%" y="341" width="0.0218%" height="15" fill="rgb(239,85,43)" fg:x="247252" fg:w="506"/><text x="10.8968%" y="351.50"></text></g><g><title>down_read (623 samples, 0.03%)</title><rect x="10.6423%" y="373" width="0.0268%" height="15" fill="rgb(231,55,21)" fg:x="247148" fg:w="623"/><text x="10.8923%" y="383.50"></text></g><g><title>rwsem_down_read_slowpath (560 samples, 0.02%)</title><rect x="10.6450%" y="357" width="0.0241%" height="15" fill="rgb(225,184,43)" fg:x="247211" fg:w="560"/><text x="10.8950%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (635 samples, 0.03%)</title><rect x="10.6420%" y="389" width="0.0273%" height="15" fill="rgb(251,158,41)" fg:x="247140" fg:w="635"/><text x="10.8920%" y="399.50"></text></g><g><title>btrfs_tree_read_lock (636 samples, 0.03%)</title><rect x="10.6420%" y="405" width="0.0274%" height="15" fill="rgb(234,159,37)" fg:x="247140" fg:w="636"/><text x="10.8920%" y="415.50"></text></g><g><title>radix_tree_lookup (317 samples, 0.01%)</title><rect x="10.7026%" y="357" width="0.0137%" height="15" fill="rgb(216,204,22)" fg:x="248549" fg:w="317"/><text x="10.9526%" y="367.50"></text></g><g><title>__radix_tree_lookup (315 samples, 0.01%)</title><rect x="10.7027%" y="341" width="0.0136%" height="15" fill="rgb(214,17,3)" fg:x="248551" fg:w="315"/><text x="10.9527%" y="351.50"></text></g><g><title>find_extent_buffer_nolock (551 samples, 0.02%)</title><rect x="10.6926%" y="373" width="0.0237%" height="15" fill="rgb(212,111,17)" fg:x="248317" fg:w="551"/><text x="10.9426%" y="383.50"></text></g><g><title>find_extent_buffer (757 samples, 0.03%)</title><rect x="10.6903%" y="389" width="0.0326%" height="15" fill="rgb(221,157,24)" fg:x="248263" fg:w="757"/><text x="10.9403%" y="399.50"></text></g><g><title>read_block_for_search (1,236 samples, 0.05%)</title><rect x="10.6713%" y="405" width="0.0532%" height="15" fill="rgb(252,16,13)" fg:x="247821" fg:w="1236"/><text x="10.9213%" y="415.50"></text></g><g><title>split_leaf (428 samples, 0.02%)</title><rect x="10.7246%" y="405" width="0.0184%" height="15" fill="rgb(221,62,2)" fg:x="249058" fg:w="428"/><text x="10.9746%" y="415.50"></text></g><g><title>push_leaf_right (241 samples, 0.01%)</title><rect x="10.7326%" y="389" width="0.0104%" height="15" fill="rgb(247,87,22)" fg:x="249245" fg:w="241"/><text x="10.9826%" y="399.50"></text></g><g><title>try_to_wake_up (330 samples, 0.01%)</title><rect x="10.7622%" y="325" width="0.0142%" height="15" fill="rgb(215,73,9)" fg:x="249932" fg:w="330"/><text x="11.0122%" y="335.50"></text></g><g><title>btrfs_tree_unlock (410 samples, 0.02%)</title><rect x="10.7588%" y="389" width="0.0177%" height="15" fill="rgb(207,175,33)" fg:x="249853" fg:w="410"/><text x="11.0088%" y="399.50"></text></g><g><title>up_write (401 samples, 0.02%)</title><rect x="10.7592%" y="373" width="0.0173%" height="15" fill="rgb(243,129,54)" fg:x="249862" fg:w="401"/><text x="11.0092%" y="383.50"></text></g><g><title>rwsem_wake.isra.0 (399 samples, 0.02%)</title><rect x="10.7593%" y="357" width="0.0172%" height="15" fill="rgb(227,119,45)" fg:x="249864" fg:w="399"/><text x="11.0093%" y="367.50"></text></g><g><title>wake_up_q (342 samples, 0.01%)</title><rect x="10.7617%" y="341" width="0.0147%" height="15" fill="rgb(205,109,36)" fg:x="249921" fg:w="342"/><text x="11.0117%" y="351.50"></text></g><g><title>btrfs_search_slot (8,963 samples, 0.39%)</title><rect x="10.3963%" y="421" width="0.3860%" height="15" fill="rgb(205,6,39)" fg:x="241435" fg:w="8963"/><text x="10.6463%" y="431.50"></text></g><g><title>unlock_up (912 samples, 0.04%)</title><rect x="10.7430%" y="405" width="0.0393%" height="15" fill="rgb(221,32,16)" fg:x="249486" fg:w="912"/><text x="10.9930%" y="415.50"></text></g><g><title>btrfs_get_token_32 (631 samples, 0.03%)</title><rect x="10.7999%" y="405" width="0.0272%" height="15" fill="rgb(228,144,50)" fg:x="250808" fg:w="631"/><text x="11.0499%" y="415.50"></text></g><g><title>btrfs_set_token_32 (578 samples, 0.02%)</title><rect x="10.8340%" y="405" width="0.0249%" height="15" fill="rgb(229,201,53)" fg:x="251599" fg:w="578"/><text x="11.0840%" y="415.50"></text></g><g><title>memcpy_extent_buffer (309 samples, 0.01%)</title><rect x="10.8746%" y="389" width="0.0133%" height="15" fill="rgb(249,153,27)" fg:x="252542" fg:w="309"/><text x="11.1246%" y="399.50"></text></g><g><title>memmove (287 samples, 0.01%)</title><rect x="10.8755%" y="373" width="0.0124%" height="15" fill="rgb(227,106,25)" fg:x="252564" fg:w="287"/><text x="11.1255%" y="383.50"></text></g><g><title>memmove_extent_buffer (572 samples, 0.02%)</title><rect x="10.8710%" y="405" width="0.0246%" height="15" fill="rgb(230,65,29)" fg:x="252458" fg:w="572"/><text x="11.1210%" y="415.50"></text></g><g><title>setup_items_for_insert (2,581 samples, 0.11%)</title><rect x="10.7864%" y="421" width="0.1111%" height="15" fill="rgb(221,57,46)" fg:x="250494" fg:w="2581"/><text x="11.0364%" y="431.50"></text></g><g><title>btrfs_insert_empty_items (11,849 samples, 0.51%)</title><rect x="10.3880%" y="437" width="0.5102%" height="15" fill="rgb(229,161,17)" fg:x="241242" fg:w="11849"/><text x="10.6380%" y="447.50"></text></g><g><title>insert_with_overflow (11,955 samples, 0.51%)</title><rect x="10.3845%" y="453" width="0.5148%" height="15" fill="rgb(222,213,11)" fg:x="241160" fg:w="11955"/><text x="10.6345%" y="463.50"></text></g><g><title>btrfs_insert_dir_item (14,012 samples, 0.60%)</title><rect x="10.3024%" y="469" width="0.6034%" height="15" fill="rgb(235,35,13)" fg:x="239254" fg:w="14012"/><text x="10.5524%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (261 samples, 0.01%)</title><rect x="10.9100%" y="453" width="0.0112%" height="15" fill="rgb(233,158,34)" fg:x="253365" fg:w="261"/><text x="11.1600%" y="463.50"></text></g><g><title>btrfs_update_inode (403 samples, 0.02%)</title><rect x="10.9069%" y="469" width="0.0174%" height="15" fill="rgb(215,151,48)" fg:x="253292" fg:w="403"/><text x="11.1569%" y="479.50"></text></g><g><title>btrfs_add_link (14,707 samples, 0.63%)</title><rect x="10.2947%" y="485" width="0.6333%" height="15" fill="rgb(229,84,14)" fg:x="239076" fg:w="14707"/><text x="10.5447%" y="495.50"></text></g><g><title>insert_work (300 samples, 0.01%)</title><rect x="10.9367%" y="389" width="0.0129%" height="15" fill="rgb(229,68,14)" fg:x="253984" fg:w="300"/><text x="11.1867%" y="399.50"></text></g><g><title>wake_up_process (298 samples, 0.01%)</title><rect x="10.9368%" y="373" width="0.0128%" height="15" fill="rgb(243,106,26)" fg:x="253986" fg:w="298"/><text x="11.1868%" y="383.50"></text></g><g><title>try_to_wake_up (295 samples, 0.01%)</title><rect x="10.9369%" y="357" width="0.0127%" height="15" fill="rgb(206,45,38)" fg:x="253989" fg:w="295"/><text x="11.1869%" y="367.50"></text></g><g><title>__queue_work (383 samples, 0.02%)</title><rect x="10.9331%" y="405" width="0.0165%" height="15" fill="rgb(226,6,15)" fg:x="253902" fg:w="383"/><text x="11.1831%" y="415.50"></text></g><g><title>btrfs_queue_work (463 samples, 0.02%)</title><rect x="10.9318%" y="437" width="0.0199%" height="15" fill="rgb(232,22,54)" fg:x="253872" fg:w="463"/><text x="11.1818%" y="447.50"></text></g><g><title>queue_work_on (437 samples, 0.02%)</title><rect x="10.9330%" y="421" width="0.0188%" height="15" fill="rgb(229,222,32)" fg:x="253898" fg:w="437"/><text x="11.1830%" y="431.50"></text></g><g><title>btrfs_wq_run_delayed_node (509 samples, 0.02%)</title><rect x="10.9316%" y="453" width="0.0219%" height="15" fill="rgb(228,62,29)" fg:x="253867" fg:w="509"/><text x="11.1816%" y="463.50"></text></g><g><title>btrfs_balance_delayed_items (549 samples, 0.02%)</title><rect x="10.9303%" y="469" width="0.0236%" height="15" fill="rgb(251,103,34)" fg:x="253836" fg:w="549"/><text x="11.1803%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (633 samples, 0.03%)</title><rect x="10.9286%" y="485" width="0.0273%" height="15" fill="rgb(233,12,30)" fg:x="253797" fg:w="633"/><text x="11.1786%" y="495.50"></text></g><g><title>__btrfs_end_transaction (468 samples, 0.02%)</title><rect x="10.9564%" y="469" width="0.0202%" height="15" fill="rgb(238,52,0)" fg:x="254442" fg:w="468"/><text x="11.2064%" y="479.50"></text></g><g><title>btrfs_end_transaction (510 samples, 0.02%)</title><rect x="10.9564%" y="485" width="0.0220%" height="15" fill="rgb(223,98,5)" fg:x="254442" fg:w="510"/><text x="11.2064%" y="495.50"></text></g><g><title>free_extent_buffer (247 samples, 0.01%)</title><rect x="11.0106%" y="437" width="0.0106%" height="15" fill="rgb(228,75,37)" fg:x="255701" fg:w="247"/><text x="11.2606%" y="447.50"></text></g><g><title>btrfs_release_path (320 samples, 0.01%)</title><rect x="11.0084%" y="453" width="0.0138%" height="15" fill="rgb(205,115,49)" fg:x="255650" fg:w="320"/><text x="11.2584%" y="463.50"></text></g><g><title>btrfs_free_path (445 samples, 0.02%)</title><rect x="11.0078%" y="469" width="0.0192%" height="15" fill="rgb(250,154,43)" fg:x="255637" fg:w="445"/><text x="11.2578%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (411 samples, 0.02%)</title><rect x="11.0495%" y="421" width="0.0177%" height="15" fill="rgb(226,43,29)" fg:x="256605" fg:w="411"/><text x="11.2995%" y="431.50"></text></g><g><title>btrfs_bin_search (433 samples, 0.02%)</title><rect x="11.0486%" y="437" width="0.0186%" height="15" fill="rgb(249,228,39)" fg:x="256584" fg:w="433"/><text x="11.2986%" y="447.50"></text></g><g><title>dequeue_task_fair (276 samples, 0.01%)</title><rect x="11.0830%" y="325" width="0.0119%" height="15" fill="rgb(216,79,43)" fg:x="257382" fg:w="276"/><text x="11.3330%" y="335.50"></text></g><g><title>dequeue_task (287 samples, 0.01%)</title><rect x="11.0827%" y="341" width="0.0124%" height="15" fill="rgb(228,95,12)" fg:x="257375" fg:w="287"/><text x="11.3327%" y="351.50"></text></g><g><title>__schedule (947 samples, 0.04%)</title><rect x="11.0801%" y="357" width="0.0408%" height="15" fill="rgb(249,221,15)" fg:x="257315" fg:w="947"/><text x="11.3301%" y="367.50"></text></g><g><title>schedule (954 samples, 0.04%)</title><rect x="11.0799%" y="373" width="0.0411%" height="15" fill="rgb(233,34,13)" fg:x="257310" fg:w="954"/><text x="11.3299%" y="383.50"></text></g><g><title>down_read (1,100 samples, 0.05%)</title><rect x="11.0745%" y="405" width="0.0474%" height="15" fill="rgb(214,103,39)" fg:x="257186" fg:w="1100"/><text x="11.3245%" y="415.50"></text></g><g><title>rwsem_down_read_slowpath (1,068 samples, 0.05%)</title><rect x="11.0759%" y="389" width="0.0460%" height="15" fill="rgb(251,126,39)" fg:x="257218" fg:w="1068"/><text x="11.3259%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,110 samples, 0.05%)</title><rect x="11.0742%" y="421" width="0.0478%" height="15" fill="rgb(214,216,36)" fg:x="257177" fg:w="1110"/><text x="11.3242%" y="431.50"></text></g><g><title>btrfs_read_lock_root_node (1,200 samples, 0.05%)</title><rect x="11.0737%" y="437" width="0.0517%" height="15" fill="rgb(220,221,8)" fg:x="257166" fg:w="1200"/><text x="11.3237%" y="447.50"></text></g><g><title>osq_lock (1,148 samples, 0.05%)</title><rect x="11.1590%" y="357" width="0.0494%" height="15" fill="rgb(240,216,3)" fg:x="259148" fg:w="1148"/><text x="11.4090%" y="367.50"></text></g><g><title>rwsem_spin_on_owner (1,136 samples, 0.05%)</title><rect x="11.2092%" y="357" width="0.0489%" height="15" fill="rgb(232,218,17)" fg:x="260314" fg:w="1136"/><text x="11.4592%" y="367.50"></text></g><g><title>rwsem_optimistic_spin (2,910 samples, 0.13%)</title><rect x="11.1332%" y="373" width="0.1253%" height="15" fill="rgb(229,163,45)" fg:x="258549" fg:w="2910"/><text x="11.3832%" y="383.50"></text></g><g><title>schedule (318 samples, 0.01%)</title><rect x="11.2589%" y="373" width="0.0137%" height="15" fill="rgb(231,110,42)" fg:x="261468" fg:w="318"/><text x="11.5089%" y="383.50"></text></g><g><title>__schedule (316 samples, 0.01%)</title><rect x="11.2590%" y="357" width="0.0136%" height="15" fill="rgb(208,170,48)" fg:x="261470" fg:w="316"/><text x="11.5090%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (3,302 samples, 0.14%)</title><rect x="11.1305%" y="389" width="0.1422%" height="15" fill="rgb(239,116,25)" fg:x="258485" fg:w="3302"/><text x="11.3805%" y="399.50"></text></g><g><title>down_write (3,388 samples, 0.15%)</title><rect x="11.1269%" y="405" width="0.1459%" height="15" fill="rgb(219,200,50)" fg:x="258401" fg:w="3388"/><text x="11.3769%" y="415.50"></text></g><g><title>__btrfs_tree_lock (3,423 samples, 0.15%)</title><rect x="11.1256%" y="421" width="0.1474%" height="15" fill="rgb(245,200,0)" fg:x="258372" fg:w="3423"/><text x="11.3756%" y="431.50"></text></g><g><title>btrfs_tree_lock (3,426 samples, 0.15%)</title><rect x="11.1256%" y="437" width="0.1475%" height="15" fill="rgb(245,119,33)" fg:x="258372" fg:w="3426"/><text x="11.3756%" y="447.50"></text></g><g><title>__schedule (396 samples, 0.02%)</title><rect x="11.2767%" y="357" width="0.0171%" height="15" fill="rgb(231,125,12)" fg:x="261881" fg:w="396"/><text x="11.5267%" y="367.50"></text></g><g><title>schedule (404 samples, 0.02%)</title><rect x="11.2766%" y="373" width="0.0174%" height="15" fill="rgb(216,96,41)" fg:x="261878" fg:w="404"/><text x="11.5266%" y="383.50"></text></g><g><title>down_read (482 samples, 0.02%)</title><rect x="11.2736%" y="405" width="0.0208%" height="15" fill="rgb(248,43,45)" fg:x="261808" fg:w="482"/><text x="11.5236%" y="415.50"></text></g><g><title>rwsem_down_read_slowpath (441 samples, 0.02%)</title><rect x="11.2753%" y="389" width="0.0190%" height="15" fill="rgb(217,222,7)" fg:x="261849" fg:w="441"/><text x="11.5253%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (493 samples, 0.02%)</title><rect x="11.2731%" y="421" width="0.0212%" height="15" fill="rgb(233,28,6)" fg:x="261798" fg:w="493"/><text x="11.5231%" y="431.50"></text></g><g><title>btrfs_tree_read_lock (496 samples, 0.02%)</title><rect x="11.2731%" y="437" width="0.0214%" height="15" fill="rgb(231,218,15)" fg:x="261798" fg:w="496"/><text x="11.5231%" y="447.50"></text></g><g><title>find_extent_buffer_nolock (539 samples, 0.02%)</title><rect x="11.3188%" y="405" width="0.0232%" height="15" fill="rgb(226,171,48)" fg:x="262859" fg:w="539"/><text x="11.5688%" y="415.50"></text></g><g><title>radix_tree_lookup (278 samples, 0.01%)</title><rect x="11.3301%" y="389" width="0.0120%" height="15" fill="rgb(235,201,9)" fg:x="263120" fg:w="278"/><text x="11.5801%" y="399.50"></text></g><g><title>__radix_tree_lookup (278 samples, 0.01%)</title><rect x="11.3301%" y="373" width="0.0120%" height="15" fill="rgb(217,80,15)" fg:x="263120" fg:w="278"/><text x="11.5801%" y="383.50"></text></g><g><title>find_extent_buffer (770 samples, 0.03%)</title><rect x="11.3163%" y="421" width="0.0332%" height="15" fill="rgb(219,152,8)" fg:x="262801" fg:w="770"/><text x="11.5663%" y="431.50"></text></g><g><title>read_block_for_search (1,273 samples, 0.05%)</title><rect x="11.2961%" y="437" width="0.0548%" height="15" fill="rgb(243,107,38)" fg:x="262331" fg:w="1273"/><text x="11.5461%" y="447.50"></text></g><g><title>push_leaf_left (256 samples, 0.01%)</title><rect x="11.3657%" y="421" width="0.0110%" height="15" fill="rgb(231,17,5)" fg:x="263948" fg:w="256"/><text x="11.6157%" y="431.50"></text></g><g><title>split_leaf (603 samples, 0.03%)</title><rect x="11.3510%" y="437" width="0.0260%" height="15" fill="rgb(209,25,54)" fg:x="263605" fg:w="603"/><text x="11.6010%" y="447.50"></text></g><g><title>try_to_wake_up (361 samples, 0.02%)</title><rect x="11.3969%" y="357" width="0.0155%" height="15" fill="rgb(219,0,2)" fg:x="264671" fg:w="361"/><text x="11.6469%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (448 samples, 0.02%)</title><rect x="11.3932%" y="389" width="0.0193%" height="15" fill="rgb(246,9,5)" fg:x="264585" fg:w="448"/><text x="11.6432%" y="399.50"></text></g><g><title>wake_up_q (374 samples, 0.02%)</title><rect x="11.3963%" y="373" width="0.0161%" height="15" fill="rgb(226,159,4)" fg:x="264659" fg:w="374"/><text x="11.6463%" y="383.50"></text></g><g><title>btrfs_tree_unlock (458 samples, 0.02%)</title><rect x="11.3928%" y="421" width="0.0197%" height="15" fill="rgb(219,175,34)" fg:x="264576" fg:w="458"/><text x="11.6428%" y="431.50"></text></g><g><title>up_write (449 samples, 0.02%)</title><rect x="11.3932%" y="405" width="0.0193%" height="15" fill="rgb(236,10,46)" fg:x="264585" fg:w="449"/><text x="11.6432%" y="415.50"></text></g><g><title>btrfs_search_slot (8,929 samples, 0.38%)</title><rect x="11.0339%" y="453" width="0.3845%" height="15" fill="rgb(240,211,16)" fg:x="256241" fg:w="8929"/><text x="11.2839%" y="463.50"></text></g><g><title>unlock_up (961 samples, 0.04%)</title><rect x="11.3770%" y="437" width="0.0414%" height="15" fill="rgb(205,3,43)" fg:x="264209" fg:w="961"/><text x="11.6270%" y="447.50"></text></g><g><title>setup_items_for_insert (1,048 samples, 0.05%)</title><rect x="11.4213%" y="453" width="0.0451%" height="15" fill="rgb(245,7,22)" fg:x="265238" fg:w="1048"/><text x="11.6713%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (10,207 samples, 0.44%)</title><rect x="11.0280%" y="469" width="0.4395%" height="15" fill="rgb(239,132,32)" fg:x="256105" fg:w="10207"/><text x="11.2780%" y="479.50"></text></g><g><title>fill_inode_item (454 samples, 0.02%)</title><rect x="11.4796%" y="469" width="0.0195%" height="15" fill="rgb(228,202,34)" fg:x="266593" fg:w="454"/><text x="11.7296%" y="479.50"></text></g><g><title>inode_tree_add (1,110 samples, 0.05%)</title><rect x="11.5049%" y="469" width="0.0478%" height="15" fill="rgb(254,200,22)" fg:x="267180" fg:w="1110"/><text x="11.7549%" y="479.50"></text></g><g><title>insert_inode_locked4 (265 samples, 0.01%)</title><rect x="11.5527%" y="469" width="0.0114%" height="15" fill="rgb(219,10,39)" fg:x="268290" fg:w="265"/><text x="11.8027%" y="479.50"></text></g><g><title>kmem_cache_alloc (535 samples, 0.02%)</title><rect x="11.5788%" y="421" width="0.0230%" height="15" fill="rgb(226,210,39)" fg:x="268897" fg:w="535"/><text x="11.8288%" y="431.50"></text></g><g><title>btrfs_alloc_inode (675 samples, 0.03%)</title><rect x="11.5728%" y="437" width="0.0291%" height="15" fill="rgb(208,219,16)" fg:x="268758" fg:w="675"/><text x="11.8228%" y="447.50"></text></g><g><title>inode_init_always (299 samples, 0.01%)</title><rect x="11.6042%" y="437" width="0.0129%" height="15" fill="rgb(216,158,51)" fg:x="269486" fg:w="299"/><text x="11.8542%" y="447.50"></text></g><g><title>alloc_inode (1,147 samples, 0.05%)</title><rect x="11.5684%" y="453" width="0.0494%" height="15" fill="rgb(233,14,44)" fg:x="268654" fg:w="1147"/><text x="11.8184%" y="463.50"></text></g><g><title>new_inode (1,192 samples, 0.05%)</title><rect x="11.5680%" y="469" width="0.0513%" height="15" fill="rgb(237,97,39)" fg:x="268645" fg:w="1192"/><text x="11.8180%" y="479.50"></text></g><g><title>btrfs_new_inode (14,814 samples, 0.64%)</title><rect x="10.9901%" y="485" width="0.6379%" height="15" fill="rgb(218,198,43)" fg:x="255225" fg:w="14814"/><text x="11.2401%" y="495.50"></text></g><g><title>__reserve_bytes (503 samples, 0.02%)</title><rect x="11.6493%" y="421" width="0.0217%" height="15" fill="rgb(231,104,20)" fg:x="270533" fg:w="503"/><text x="11.8993%" y="431.50"></text></g><g><title>btrfs_block_rsv_add (654 samples, 0.03%)</title><rect x="11.6463%" y="453" width="0.0282%" height="15" fill="rgb(254,36,13)" fg:x="270463" fg:w="654"/><text x="11.8963%" y="463.50"></text></g><g><title>btrfs_reserve_metadata_bytes (633 samples, 0.03%)</title><rect x="11.6472%" y="437" width="0.0273%" height="15" fill="rgb(248,14,50)" fg:x="270484" fg:w="633"/><text x="11.8972%" y="447.50"></text></g><g><title>start_transaction (1,228 samples, 0.05%)</title><rect x="11.6311%" y="469" width="0.0529%" height="15" fill="rgb(217,107,29)" fg:x="270111" fg:w="1228"/><text x="11.8811%" y="479.50"></text></g><g><title>btrfs_start_transaction (1,276 samples, 0.05%)</title><rect x="11.6295%" y="485" width="0.0549%" height="15" fill="rgb(251,169,33)" fg:x="270074" fg:w="1276"/><text x="11.8795%" y="495.50"></text></g><g><title>btrfs_get_delayed_node (310 samples, 0.01%)</title><rect x="11.7106%" y="437" width="0.0133%" height="15" fill="rgb(217,108,32)" fg:x="271956" fg:w="310"/><text x="11.9606%" y="447.50"></text></g><g><title>radix_tree_lookup (273 samples, 0.01%)</title><rect x="11.7121%" y="421" width="0.0118%" height="15" fill="rgb(219,66,42)" fg:x="271993" fg:w="273"/><text x="11.9621%" y="431.50"></text></g><g><title>__radix_tree_lookup (272 samples, 0.01%)</title><rect x="11.7122%" y="405" width="0.0117%" height="15" fill="rgb(206,180,7)" fg:x="271994" fg:w="272"/><text x="11.9622%" y="415.50"></text></g><g><title>btrfs_get_or_create_delayed_node (840 samples, 0.04%)</title><rect x="11.7059%" y="453" width="0.0362%" height="15" fill="rgb(208,226,31)" fg:x="271847" fg:w="840"/><text x="11.9559%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (1,350 samples, 0.06%)</title><rect x="11.6888%" y="469" width="0.0581%" height="15" fill="rgb(218,26,49)" fg:x="271451" fg:w="1350"/><text x="11.9388%" y="479.50"></text></g><g><title>btrfs_update_inode (1,500 samples, 0.06%)</title><rect x="11.6857%" y="485" width="0.0646%" height="15" fill="rgb(233,197,48)" fg:x="271379" fg:w="1500"/><text x="11.9357%" y="495.50"></text></g><g><title>btrfs_mkdir (34,538 samples, 1.49%)</title><rect x="10.2867%" y="501" width="1.4872%" height="15" fill="rgb(252,181,51)" fg:x="238889" fg:w="34538"/><text x="10.5367%" y="511.50"></text></g><g><title>do_mkdirat (47,608 samples, 2.05%)</title><rect x="9.7417%" y="533" width="2.0500%" height="15" fill="rgb(253,90,19)" fg:x="226233" fg:w="47608"/><text x="9.9917%" y="543.50">d..</text></g><g><title>vfs_mkdir (35,096 samples, 1.51%)</title><rect x="10.2805%" y="517" width="1.5112%" height="15" fill="rgb(215,171,30)" fg:x="238745" fg:w="35096"/><text x="10.5305%" y="527.50"></text></g><g><title>getname_flags.part.0 (513 samples, 0.02%)</title><rect x="11.7932%" y="533" width="0.0221%" height="15" fill="rgb(214,222,9)" fg:x="273876" fg:w="513"/><text x="12.0432%" y="543.50"></text></g><g><title>strncpy_from_user (266 samples, 0.01%)</title><rect x="11.8039%" y="517" width="0.0115%" height="15" fill="rgb(223,3,22)" fg:x="274123" fg:w="266"/><text x="12.0539%" y="527.50"></text></g><g><title>__x64_sys_mkdir (48,276 samples, 2.08%)</title><rect x="9.7402%" y="549" width="2.0788%" height="15" fill="rgb(225,196,46)" fg:x="226198" fg:w="48276"/><text x="9.9902%" y="559.50">_..</text></g><g><title>cshook_security_file_free_security (442 samples, 0.02%)</title><rect x="11.8309%" y="533" width="0.0190%" height="15" fill="rgb(209,110,37)" fg:x="274752" fg:w="442"/><text x="12.0809%" y="543.50"></text></g><g><title>cshook_security_file_free_security (375 samples, 0.02%)</title><rect x="11.8338%" y="517" width="0.0161%" height="15" fill="rgb(249,89,12)" fg:x="274819" fg:w="375"/><text x="12.0838%" y="527.50"></text></g><g><title>cshook_security_file_free_security (260 samples, 0.01%)</title><rect x="11.8388%" y="501" width="0.0112%" height="15" fill="rgb(226,27,33)" fg:x="274934" fg:w="260"/><text x="12.0888%" y="511.50"></text></g><g><title>inode_permission (703 samples, 0.03%)</title><rect x="11.9231%" y="421" width="0.0303%" height="15" fill="rgb(213,82,22)" fg:x="276891" fg:w="703"/><text x="12.1731%" y="431.50"></text></g><g><title>__d_lookup_rcu (999 samples, 0.04%)</title><rect x="11.9662%" y="389" width="0.0430%" height="15" fill="rgb(248,140,0)" fg:x="277894" fg:w="999"/><text x="12.2162%" y="399.50"></text></g><g><title>lookup_fast (1,102 samples, 0.05%)</title><rect x="11.9620%" y="405" width="0.0475%" height="15" fill="rgb(228,106,3)" fg:x="277796" fg:w="1102"/><text x="12.2120%" y="415.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (2,809 samples, 0.12%)</title><rect x="11.8976%" y="437" width="0.1210%" height="15" fill="rgb(209,23,37)" fg:x="276299" fg:w="2809"/><text x="12.1476%" y="447.50"></text></g><g><title>walk_component (1,452 samples, 0.06%)</title><rect x="11.9560%" y="421" width="0.0625%" height="15" fill="rgb(241,93,50)" fg:x="277656" fg:w="1452"/><text x="12.2060%" y="431.50"></text></g><g><title>path_lookupat (3,401 samples, 0.15%)</title><rect x="11.8865%" y="453" width="0.1464%" height="15" fill="rgb(253,46,43)" fg:x="276042" fg:w="3401"/><text x="12.1365%" y="463.50"></text></g><g><title>filename_lookup (3,493 samples, 0.15%)</title><rect x="11.8836%" y="469" width="0.1504%" height="15" fill="rgb(226,206,43)" fg:x="275974" fg:w="3493"/><text x="12.1336%" y="479.50"></text></g><g><title>getname_flags.part.0 (751 samples, 0.03%)</title><rect x="12.0347%" y="453" width="0.0323%" height="15" fill="rgb(217,54,7)" fg:x="279484" fg:w="751"/><text x="12.2847%" y="463.50"></text></g><g><title>strncpy_from_user (417 samples, 0.02%)</title><rect x="12.0491%" y="437" width="0.0180%" height="15" fill="rgb(223,5,52)" fg:x="279818" fg:w="417"/><text x="12.2991%" y="447.50"></text></g><g><title>getname_flags (775 samples, 0.03%)</title><rect x="12.0347%" y="469" width="0.0334%" height="15" fill="rgb(206,52,46)" fg:x="279484" fg:w="775"/><text x="12.2847%" y="479.50"></text></g><g><title>[[falcon_kal]] (4,907 samples, 0.21%)</title><rect x="11.8604%" y="501" width="0.2113%" height="15" fill="rgb(253,136,11)" fg:x="275437" fg:w="4907"/><text x="12.1104%" y="511.50"></text></g><g><title>user_path_at_empty (4,383 samples, 0.19%)</title><rect x="11.8830%" y="485" width="0.1887%" height="15" fill="rgb(208,106,33)" fg:x="275961" fg:w="4383"/><text x="12.1330%" y="495.50"></text></g><g><title>select_idle_sibling (342 samples, 0.01%)</title><rect x="12.1141%" y="357" width="0.0147%" height="15" fill="rgb(206,54,4)" fg:x="281327" fg:w="342"/><text x="12.3641%" y="367.50"></text></g><g><title>select_task_rq_fair (516 samples, 0.02%)</title><rect x="12.1113%" y="373" width="0.0222%" height="15" fill="rgb(213,3,15)" fg:x="281262" fg:w="516"/><text x="12.3613%" y="383.50"></text></g><g><title>try_to_wake_up (1,279 samples, 0.06%)</title><rect x="12.0988%" y="389" width="0.0551%" height="15" fill="rgb(252,211,39)" fg:x="280973" fg:w="1279"/><text x="12.3488%" y="399.50"></text></g><g><title>swake_up_locked (1,348 samples, 0.06%)</title><rect x="12.0960%" y="421" width="0.0580%" height="15" fill="rgb(223,6,36)" fg:x="280907" fg:w="1348"/><text x="12.3460%" y="431.50"></text></g><g><title>wake_up_process (1,310 samples, 0.06%)</title><rect x="12.0976%" y="405" width="0.0564%" height="15" fill="rgb(252,169,45)" fg:x="280945" fg:w="1310"/><text x="12.3476%" y="415.50"></text></g><g><title>complete (1,460 samples, 0.06%)</title><rect x="12.0912%" y="437" width="0.0629%" height="15" fill="rgb(212,48,26)" fg:x="280797" fg:w="1460"/><text x="12.3412%" y="447.50"></text></g><g><title>[[falcon_kal]] (1,471 samples, 0.06%)</title><rect x="12.0909%" y="453" width="0.0633%" height="15" fill="rgb(251,102,48)" fg:x="280789" fg:w="1471"/><text x="12.3409%" y="463.50"></text></g><g><title>_ZdlPv (1,751 samples, 0.08%)</title><rect x="12.0825%" y="485" width="0.0754%" height="15" fill="rgb(243,208,16)" fg:x="280593" fg:w="1751"/><text x="12.3325%" y="495.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (1,627 samples, 0.07%)</title><rect x="12.0878%" y="469" width="0.0701%" height="15" fill="rgb(219,96,24)" fg:x="280717" fg:w="1627"/><text x="12.3378%" y="479.50"></text></g><g><title>_ZdlPv (2,220 samples, 0.10%)</title><rect x="12.0717%" y="501" width="0.0956%" height="15" fill="rgb(219,33,29)" fg:x="280344" fg:w="2220"/><text x="12.3217%" y="511.50"></text></g><g><title>copy_from_kernel_nofault (457 samples, 0.02%)</title><rect x="12.2000%" y="405" width="0.0197%" height="15" fill="rgb(223,176,5)" fg:x="283323" fg:w="457"/><text x="12.4500%" y="415.50"></text></g><g><title>prepend (652 samples, 0.03%)</title><rect x="12.1940%" y="437" width="0.0281%" height="15" fill="rgb(228,140,14)" fg:x="283183" fg:w="652"/><text x="12.4440%" y="447.50"></text></g><g><title>prepend_copy (546 samples, 0.02%)</title><rect x="12.1986%" y="421" width="0.0235%" height="15" fill="rgb(217,179,31)" fg:x="283289" fg:w="546"/><text x="12.4486%" y="431.50"></text></g><g><title>prepend_path (872 samples, 0.04%)</title><rect x="12.1854%" y="453" width="0.0375%" height="15" fill="rgb(230,9,30)" fg:x="282984" fg:w="872"/><text x="12.4354%" y="463.50"></text></g><g><title>d_path (917 samples, 0.04%)</title><rect x="12.1839%" y="469" width="0.0395%" height="15" fill="rgb(230,136,20)" fg:x="282948" fg:w="917"/><text x="12.4339%" y="479.50"></text></g><g><title>[[falcon_kal]] (1,127 samples, 0.05%)</title><rect x="12.1769%" y="485" width="0.0485%" height="15" fill="rgb(215,210,22)" fg:x="282786" fg:w="1127"/><text x="12.4269%" y="495.50"></text></g><g><title>memset_erms (352 samples, 0.02%)</title><rect x="12.2395%" y="453" width="0.0152%" height="15" fill="rgb(218,43,5)" fg:x="284241" fg:w="352"/><text x="12.4895%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (660 samples, 0.03%)</title><rect x="12.2263%" y="485" width="0.0284%" height="15" fill="rgb(216,11,5)" fg:x="283934" fg:w="660"/><text x="12.4763%" y="495.50"></text></g><g><title>[[falcon_kal]] (576 samples, 0.02%)</title><rect x="12.2299%" y="469" width="0.0248%" height="15" fill="rgb(209,82,29)" fg:x="284018" fg:w="576"/><text x="12.4799%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,987 samples, 0.09%)</title><rect x="12.1693%" y="501" width="0.0856%" height="15" fill="rgb(244,115,12)" fg:x="282609" fg:w="1987"/><text x="12.4193%" y="511.50"></text></g><g><title>strlen (407 samples, 0.02%)</title><rect x="12.2578%" y="501" width="0.0175%" height="15" fill="rgb(222,82,18)" fg:x="284665" fg:w="407"/><text x="12.5078%" y="511.50"></text></g><g><title>cshook_systemcalltable_post_mkdir (10,526 samples, 0.45%)</title><rect x="11.8228%" y="549" width="0.4533%" height="15" fill="rgb(249,227,8)" fg:x="274562" fg:w="10526"/><text x="12.0728%" y="559.50"></text></g><g><title>fshook_syscalltable_pre_lchown (9,894 samples, 0.43%)</title><rect x="11.8500%" y="533" width="0.4260%" height="15" fill="rgb(253,141,45)" fg:x="275194" fg:w="9894"/><text x="12.1000%" y="543.50"></text></g><g><title>fshook_syscalltable_pre_lchown (9,724 samples, 0.42%)</title><rect x="11.8573%" y="517" width="0.4187%" height="15" fill="rgb(234,184,4)" fg:x="275364" fg:w="9724"/><text x="12.1073%" y="527.50"></text></g><g><title>do_syscall_64 (60,061 samples, 2.59%)</title><rect x="9.6982%" y="581" width="2.5863%" height="15" fill="rgb(218,194,23)" fg:x="225222" fg:w="60061"/><text x="9.9482%" y="591.50">do..</text></g><g><title>unload_network_ops_symbols (59,238 samples, 2.55%)</title><rect x="9.7336%" y="565" width="2.5508%" height="15" fill="rgb(235,66,41)" fg:x="226045" fg:w="59238"/><text x="9.9836%" y="575.50">un..</text></g><g><title>entry_SYSCALL_64_after_hwframe (60,201 samples, 2.59%)</title><rect x="9.6961%" y="597" width="2.5923%" height="15" fill="rgb(245,217,1)" fg:x="225173" fg:w="60201"/><text x="9.9461%" y="607.50">en..</text></g><g><title>__GI_mkdir (60,450 samples, 2.60%)</title><rect x="9.6882%" y="613" width="2.6030%" height="15" fill="rgb(229,91,1)" fg:x="224990" fg:w="60450"/><text x="9.9382%" y="623.50">__..</text></g><g><title>__GI_remove (314 samples, 0.01%)</title><rect x="12.2917%" y="613" width="0.0135%" height="15" fill="rgb(207,101,30)" fg:x="285451" fg:w="314"/><text x="12.5417%" y="623.50"></text></g><g><title>__entry_text_start (374 samples, 0.02%)</title><rect x="12.3241%" y="597" width="0.0161%" height="15" fill="rgb(223,82,49)" fg:x="286204" fg:w="374"/><text x="12.5741%" y="607.50"></text></g><g><title>acquire_rundown (449 samples, 0.02%)</title><rect x="12.3978%" y="565" width="0.0193%" height="15" fill="rgb(218,167,17)" fg:x="287915" fg:w="449"/><text x="12.6478%" y="575.50"></text></g><g><title>cshook_systemcalltable_post_symlink (306 samples, 0.01%)</title><rect x="12.4172%" y="565" width="0.0132%" height="15" fill="rgb(208,103,14)" fg:x="288367" fg:w="306"/><text x="12.6672%" y="575.50"></text></g><g><title>__get_user_8 (659 samples, 0.03%)</title><rect x="12.5165%" y="485" width="0.0284%" height="15" fill="rgb(238,20,8)" fg:x="290673" fg:w="659"/><text x="12.7665%" y="495.50"></text></g><g><title>__rseq_handle_notify_resume (1,223 samples, 0.05%)</title><rect x="12.4955%" y="517" width="0.0527%" height="15" fill="rgb(218,80,54)" fg:x="290186" fg:w="1223"/><text x="12.7455%" y="527.50"></text></g><g><title>rseq_ip_fixup (855 samples, 0.04%)</title><rect x="12.5114%" y="501" width="0.0368%" height="15" fill="rgb(240,144,17)" fg:x="290554" fg:w="855"/><text x="12.7614%" y="511.50"></text></g><g><title>exit_to_user_mode_loop (1,992 samples, 0.09%)</title><rect x="12.4760%" y="533" width="0.0858%" height="15" fill="rgb(245,27,50)" fg:x="289732" fg:w="1992"/><text x="12.7260%" y="543.50"></text></g><g><title>restore_fpregs_from_fpstate (603 samples, 0.03%)</title><rect x="12.5791%" y="517" width="0.0260%" height="15" fill="rgb(251,51,7)" fg:x="292126" fg:w="603"/><text x="12.8291%" y="527.50"></text></g><g><title>exit_to_user_mode_prepare (3,373 samples, 0.15%)</title><rect x="12.4641%" y="549" width="0.1452%" height="15" fill="rgb(245,217,29)" fg:x="289455" fg:w="3373"/><text x="12.7141%" y="559.50"></text></g><g><title>switch_fpu_return (1,008 samples, 0.04%)</title><rect x="12.5659%" y="533" width="0.0434%" height="15" fill="rgb(221,176,29)" fg:x="291820" fg:w="1008"/><text x="12.8159%" y="543.50"></text></g><g><title>syscall_exit_to_user_mode (3,740 samples, 0.16%)</title><rect x="12.4538%" y="565" width="0.1610%" height="15" fill="rgb(212,180,24)" fg:x="289217" fg:w="3740"/><text x="12.7038%" y="575.50"></text></g><g><title>btrfs_symlink (235 samples, 0.01%)</title><rect x="12.7191%" y="517" width="0.0101%" height="15" fill="rgb(254,24,2)" fg:x="295377" fg:w="235"/><text x="12.9691%" y="527.50"></text></g><g><title>__cond_resched (269 samples, 0.01%)</title><rect x="12.7431%" y="501" width="0.0116%" height="15" fill="rgb(230,100,2)" fg:x="295934" fg:w="269"/><text x="12.9931%" y="511.50"></text></g><g><title>btrfs_dentry_delete (244 samples, 0.01%)</title><rect x="12.7606%" y="501" width="0.0105%" height="15" fill="rgb(219,142,25)" fg:x="296341" fg:w="244"/><text x="13.0106%" y="511.50"></text></g><g><title>_raw_spin_lock (533 samples, 0.02%)</title><rect x="12.7746%" y="485" width="0.0230%" height="15" fill="rgb(240,73,43)" fg:x="296666" fg:w="533"/><text x="13.0246%" y="495.50"></text></g><g><title>mem_cgroup_from_obj (476 samples, 0.02%)</title><rect x="12.8534%" y="469" width="0.0205%" height="15" fill="rgb(214,114,15)" fg:x="298496" fg:w="476"/><text x="13.1034%" y="479.50"></text></g><g><title>list_lru_add (1,777 samples, 0.08%)</title><rect x="12.7975%" y="485" width="0.0765%" height="15" fill="rgb(207,130,4)" fg:x="297199" fg:w="1777"/><text x="13.0475%" y="495.50"></text></g><g><title>d_lru_add (2,397 samples, 0.10%)</title><rect x="12.7711%" y="501" width="0.1032%" height="15" fill="rgb(221,25,40)" fg:x="296585" fg:w="2397"/><text x="13.0211%" y="511.50"></text></g><g><title>dput (3,615 samples, 0.16%)</title><rect x="12.7322%" y="517" width="0.1557%" height="15" fill="rgb(241,184,7)" fg:x="295682" fg:w="3615"/><text x="12.9822%" y="527.50"></text></g><g><title>kmem_cache_alloc (532 samples, 0.02%)</title><rect x="12.9609%" y="437" width="0.0229%" height="15" fill="rgb(235,159,4)" fg:x="300993" fg:w="532"/><text x="13.2109%" y="447.50"></text></g><g><title>btrfs_alloc_path (666 samples, 0.03%)</title><rect x="12.9602%" y="453" width="0.0287%" height="15" fill="rgb(214,87,48)" fg:x="300976" fg:w="666"/><text x="13.2102%" y="463.50"></text></g><g><title>_raw_spin_lock (387 samples, 0.02%)</title><rect x="13.0118%" y="405" width="0.0167%" height="15" fill="rgb(246,198,24)" fg:x="302175" fg:w="387"/><text x="13.2618%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,299 samples, 0.06%)</title><rect x="13.0285%" y="405" width="0.0559%" height="15" fill="rgb(209,66,40)" fg:x="302564" fg:w="1299"/><text x="13.2785%" y="415.50"></text></g><g><title>release_extent_buffer (370 samples, 0.02%)</title><rect x="13.0685%" y="389" width="0.0159%" height="15" fill="rgb(233,147,39)" fg:x="303493" fg:w="370"/><text x="13.3185%" y="399.50"></text></g><g><title>free_extent_buffer (1,738 samples, 0.07%)</title><rect x="13.0118%" y="421" width="0.0748%" height="15" fill="rgb(231,145,52)" fg:x="302175" fg:w="1738"/><text x="13.2618%" y="431.50"></text></g><g><title>btrfs_release_path (2,328 samples, 0.10%)</title><rect x="12.9915%" y="437" width="0.1002%" height="15" fill="rgb(206,20,26)" fg:x="301704" fg:w="2328"/><text x="13.2415%" y="447.50"></text></g><g><title>kmem_cache_free (743 samples, 0.03%)</title><rect x="13.0968%" y="437" width="0.0320%" height="15" fill="rgb(238,220,4)" fg:x="304150" fg:w="743"/><text x="13.3468%" y="447.50"></text></g><g><title>btrfs_free_path (3,268 samples, 0.14%)</title><rect x="12.9888%" y="453" width="0.1407%" height="15" fill="rgb(252,195,42)" fg:x="301642" fg:w="3268"/><text x="13.2388%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (4,862 samples, 0.21%)</title><rect x="13.2739%" y="405" width="0.2094%" height="15" fill="rgb(209,10,6)" fg:x="308263" fg:w="4862"/><text x="13.5239%" y="415.50"></text></g><g><title>btrfs_bin_search (5,022 samples, 0.22%)</title><rect x="13.2672%" y="421" width="0.2162%" height="15" fill="rgb(229,3,52)" fg:x="308107" fg:w="5022"/><text x="13.5172%" y="431.50"></text></g><g><title>update_curr (697 samples, 0.03%)</title><rect x="13.6159%" y="277" width="0.0300%" height="15" fill="rgb(253,49,37)" fg:x="316204" fg:w="697"/><text x="13.8659%" y="287.50"></text></g><g><title>update_load_avg (556 samples, 0.02%)</title><rect x="13.6459%" y="277" width="0.0239%" height="15" fill="rgb(240,103,49)" fg:x="316901" fg:w="556"/><text x="13.8959%" y="287.50"></text></g><g><title>dequeue_entity (1,870 samples, 0.08%)</title><rect x="13.5918%" y="293" width="0.0805%" height="15" fill="rgb(250,182,30)" fg:x="315645" fg:w="1870"/><text x="13.8418%" y="303.50"></text></g><g><title>dequeue_task_fair (2,518 samples, 0.11%)</title><rect x="13.5794%" y="309" width="0.1084%" height="15" fill="rgb(248,8,30)" fg:x="315357" fg:w="2518"/><text x="13.8294%" y="319.50"></text></g><g><title>dequeue_task (2,711 samples, 0.12%)</title><rect x="13.5751%" y="325" width="0.1167%" height="15" fill="rgb(237,120,30)" fg:x="315257" fg:w="2711"/><text x="13.8251%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (1,094 samples, 0.05%)</title><rect x="13.7046%" y="309" width="0.0471%" height="15" fill="rgb(221,146,34)" fg:x="318264" fg:w="1094"/><text x="13.9546%" y="319.50"></text></g><g><title>x86_pmu_enable (994 samples, 0.04%)</title><rect x="13.7089%" y="293" width="0.0428%" height="15" fill="rgb(242,55,13)" fg:x="318364" fg:w="994"/><text x="13.9589%" y="303.50"></text></g><g><title>intel_pmu_enable_all (980 samples, 0.04%)</title><rect x="13.7095%" y="277" width="0.0422%" height="15" fill="rgb(242,112,31)" fg:x="318378" fg:w="980"/><text x="13.9595%" y="287.50"></text></g><g><title>native_write_msr (956 samples, 0.04%)</title><rect x="13.7105%" y="261" width="0.0412%" height="15" fill="rgb(249,192,27)" fg:x="318402" fg:w="956"/><text x="13.9605%" y="271.50"></text></g><g><title>finish_task_switch.isra.0 (1,566 samples, 0.07%)</title><rect x="13.6922%" y="325" width="0.0674%" height="15" fill="rgb(208,204,44)" fg:x="317977" fg:w="1566"/><text x="13.9422%" y="335.50"></text></g><g><title>pick_next_task_fair (606 samples, 0.03%)</title><rect x="13.7680%" y="309" width="0.0261%" height="15" fill="rgb(208,93,54)" fg:x="319737" fg:w="606"/><text x="14.0180%" y="319.50"></text></g><g><title>__update_idle_core (240 samples, 0.01%)</title><rect x="13.7976%" y="277" width="0.0103%" height="15" fill="rgb(242,1,31)" fg:x="320425" fg:w="240"/><text x="14.0476%" y="287.50"></text></g><g><title>pick_next_task_idle (352 samples, 0.02%)</title><rect x="13.7941%" y="309" width="0.0152%" height="15" fill="rgb(241,83,25)" fg:x="320343" fg:w="352"/><text x="14.0441%" y="319.50"></text></g><g><title>set_next_task_idle (286 samples, 0.01%)</title><rect x="13.7970%" y="293" width="0.0123%" height="15" fill="rgb(205,169,50)" fg:x="320409" fg:w="286"/><text x="14.0470%" y="303.50"></text></g><g><title>pick_next_task (1,251 samples, 0.05%)</title><rect x="13.7620%" y="325" width="0.0539%" height="15" fill="rgb(239,186,37)" fg:x="319596" fg:w="1251"/><text x="14.0120%" y="335.50"></text></g><g><title>perf_event_context_sched_out (377 samples, 0.02%)</title><rect x="13.8271%" y="293" width="0.0162%" height="15" fill="rgb(205,221,10)" fg:x="321110" fg:w="377"/><text x="14.0771%" y="303.50"></text></g><g><title>__perf_event_task_sched_out (563 samples, 0.02%)</title><rect x="13.8221%" y="309" width="0.0242%" height="15" fill="rgb(218,196,15)" fg:x="320993" fg:w="563"/><text x="14.0721%" y="319.50"></text></g><g><title>prepare_task_switch (677 samples, 0.03%)</title><rect x="13.8178%" y="325" width="0.0292%" height="15" fill="rgb(218,196,35)" fg:x="320892" fg:w="677"/><text x="14.0678%" y="335.50"></text></g><g><title>psi_group_change (1,183 samples, 0.05%)</title><rect x="13.8658%" y="309" width="0.0509%" height="15" fill="rgb(233,63,24)" fg:x="322008" fg:w="1183"/><text x="14.1158%" y="319.50"></text></g><g><title>psi_task_switch (1,632 samples, 0.07%)</title><rect x="13.8487%" y="325" width="0.0703%" height="15" fill="rgb(225,8,4)" fg:x="321610" fg:w="1632"/><text x="14.0987%" y="335.50"></text></g><g><title>__schedule (8,758 samples, 0.38%)</title><rect x="13.5532%" y="341" width="0.3771%" height="15" fill="rgb(234,105,35)" fg:x="314749" fg:w="8758"/><text x="13.8032%" y="351.50"></text></g><g><title>schedule (8,908 samples, 0.38%)</title><rect x="13.5511%" y="357" width="0.3836%" height="15" fill="rgb(236,21,32)" fg:x="314700" fg:w="8908"/><text x="13.8011%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (9,822 samples, 0.42%)</title><rect x="13.5162%" y="373" width="0.4229%" height="15" fill="rgb(228,109,6)" fg:x="313888" fg:w="9822"/><text x="13.7662%" y="383.50"></text></g><g><title>down_read (10,139 samples, 0.44%)</title><rect x="13.5034%" y="389" width="0.4366%" height="15" fill="rgb(229,215,31)" fg:x="313592" fg:w="10139"/><text x="13.7534%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (10,258 samples, 0.44%)</title><rect x="13.4997%" y="405" width="0.4417%" height="15" fill="rgb(221,52,54)" fg:x="313505" fg:w="10258"/><text x="13.7497%" y="415.50"></text></g><g><title>btrfs_root_node (824 samples, 0.04%)</title><rect x="13.9414%" y="405" width="0.0355%" height="15" fill="rgb(252,129,43)" fg:x="323764" fg:w="824"/><text x="14.1914%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (11,179 samples, 0.48%)</title><rect x="13.4961%" y="421" width="0.4814%" height="15" fill="rgb(248,183,27)" fg:x="313423" fg:w="11179"/><text x="13.7461%" y="431.50"></text></g><g><title>update_curr (407 samples, 0.02%)</title><rect x="14.0896%" y="277" width="0.0175%" height="15" fill="rgb(250,0,22)" fg:x="327204" fg:w="407"/><text x="14.3396%" y="287.50"></text></g><g><title>update_load_avg (359 samples, 0.02%)</title><rect x="14.1071%" y="277" width="0.0155%" height="15" fill="rgb(213,166,10)" fg:x="327611" fg:w="359"/><text x="14.3571%" y="287.50"></text></g><g><title>dequeue_entity (1,172 samples, 0.05%)</title><rect x="14.0735%" y="293" width="0.0505%" height="15" fill="rgb(207,163,36)" fg:x="326831" fg:w="1172"/><text x="14.3235%" y="303.50"></text></g><g><title>dequeue_task_fair (1,494 samples, 0.06%)</title><rect x="14.0663%" y="309" width="0.0643%" height="15" fill="rgb(208,122,22)" fg:x="326663" fg:w="1494"/><text x="14.3163%" y="319.50"></text></g><g><title>dequeue_task (1,579 samples, 0.07%)</title><rect x="14.0642%" y="325" width="0.0680%" height="15" fill="rgb(207,104,49)" fg:x="326615" fg:w="1579"/><text x="14.3142%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (473 samples, 0.02%)</title><rect x="14.1404%" y="309" width="0.0204%" height="15" fill="rgb(248,211,50)" fg:x="328385" fg:w="473"/><text x="14.3904%" y="319.50"></text></g><g><title>x86_pmu_enable (417 samples, 0.02%)</title><rect x="14.1428%" y="293" width="0.0180%" height="15" fill="rgb(217,13,45)" fg:x="328441" fg:w="417"/><text x="14.3928%" y="303.50"></text></g><g><title>intel_pmu_enable_all (405 samples, 0.02%)</title><rect x="14.1433%" y="277" width="0.0174%" height="15" fill="rgb(211,216,49)" fg:x="328453" fg:w="405"/><text x="14.3933%" y="287.50"></text></g><g><title>native_write_msr (383 samples, 0.02%)</title><rect x="14.1443%" y="261" width="0.0165%" height="15" fill="rgb(221,58,53)" fg:x="328475" fg:w="383"/><text x="14.3943%" y="271.50"></text></g><g><title>finish_task_switch.isra.0 (736 samples, 0.03%)</title><rect x="14.1324%" y="325" width="0.0317%" height="15" fill="rgb(220,112,41)" fg:x="328198" fg:w="736"/><text x="14.3824%" y="335.50"></text></g><g><title>pick_next_task_fair (319 samples, 0.01%)</title><rect x="14.1683%" y="309" width="0.0137%" height="15" fill="rgb(236,38,28)" fg:x="329032" fg:w="319"/><text x="14.4183%" y="319.50"></text></g><g><title>pick_next_task_idle (270 samples, 0.01%)</title><rect x="14.1820%" y="309" width="0.0116%" height="15" fill="rgb(227,195,22)" fg:x="329351" fg:w="270"/><text x="14.4320%" y="319.50"></text></g><g><title>pick_next_task (753 samples, 0.03%)</title><rect x="14.1653%" y="325" width="0.0324%" height="15" fill="rgb(214,55,33)" fg:x="328964" fg:w="753"/><text x="14.4153%" y="335.50"></text></g><g><title>__perf_event_task_sched_out (263 samples, 0.01%)</title><rect x="14.2013%" y="309" width="0.0113%" height="15" fill="rgb(248,80,13)" fg:x="329799" fg:w="263"/><text x="14.4513%" y="319.50"></text></g><g><title>prepare_task_switch (324 samples, 0.01%)</title><rect x="14.1988%" y="325" width="0.0140%" height="15" fill="rgb(238,52,6)" fg:x="329740" fg:w="324"/><text x="14.4488%" y="335.50"></text></g><g><title>psi_group_change (836 samples, 0.04%)</title><rect x="14.2233%" y="309" width="0.0360%" height="15" fill="rgb(224,198,47)" fg:x="330311" fg:w="836"/><text x="14.4733%" y="319.50"></text></g><g><title>psi_task_switch (1,104 samples, 0.05%)</title><rect x="14.2138%" y="325" width="0.0475%" height="15" fill="rgb(233,171,20)" fg:x="330090" fg:w="1104"/><text x="14.4638%" y="335.50"></text></g><g><title>__schedule (5,218 samples, 0.22%)</title><rect x="14.0514%" y="341" width="0.2247%" height="15" fill="rgb(241,30,25)" fg:x="326318" fg:w="5218"/><text x="14.3014%" y="351.50"></text></g><g><title>schedule (5,316 samples, 0.23%)</title><rect x="14.0490%" y="357" width="0.2289%" height="15" fill="rgb(207,171,38)" fg:x="326263" fg:w="5316"/><text x="14.2990%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (5,902 samples, 0.25%)</title><rect x="14.0280%" y="373" width="0.2541%" height="15" fill="rgb(234,70,1)" fg:x="325774" fg:w="5902"/><text x="14.2780%" y="383.50"></text></g><g><title>down_read (6,838 samples, 0.29%)</title><rect x="13.9880%" y="389" width="0.2944%" height="15" fill="rgb(232,178,18)" fg:x="324845" fg:w="6838"/><text x="14.2380%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (7,042 samples, 0.30%)</title><rect x="13.9812%" y="405" width="0.3032%" height="15" fill="rgb(241,78,40)" fg:x="324688" fg:w="7042"/><text x="14.2312%" y="415.50"></text></g><g><title>btrfs_tree_read_lock (7,093 samples, 0.31%)</title><rect x="13.9809%" y="421" width="0.3054%" height="15" fill="rgb(222,35,25)" fg:x="324681" fg:w="7093"/><text x="14.2309%" y="431.50"></text></g><g><title>select_task_rq_fair (393 samples, 0.02%)</title><rect x="14.3294%" y="341" width="0.0169%" height="15" fill="rgb(207,92,16)" fg:x="332773" fg:w="393"/><text x="14.5794%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (288 samples, 0.01%)</title><rect x="14.3514%" y="341" width="0.0124%" height="15" fill="rgb(216,59,51)" fg:x="333286" fg:w="288"/><text x="14.6014%" y="351.50"></text></g><g><title>try_to_wake_up (1,238 samples, 0.05%)</title><rect x="14.3113%" y="357" width="0.0533%" height="15" fill="rgb(213,80,28)" fg:x="332353" fg:w="1238"/><text x="14.5613%" y="367.50"></text></g><g><title>btrfs_tree_read_unlock (1,828 samples, 0.08%)</title><rect x="14.2863%" y="421" width="0.0787%" height="15" fill="rgb(220,93,7)" fg:x="331774" fg:w="1828"/><text x="14.5363%" y="431.50"></text></g><g><title>up_read (1,766 samples, 0.08%)</title><rect x="14.2890%" y="405" width="0.0760%" height="15" fill="rgb(225,24,44)" fg:x="331836" fg:w="1766"/><text x="14.5390%" y="415.50"></text></g><g><title>rwsem_wake.isra.0 (1,729 samples, 0.07%)</title><rect x="14.2906%" y="389" width="0.0745%" height="15" fill="rgb(243,74,40)" fg:x="331873" fg:w="1729"/><text x="14.5406%" y="399.50"></text></g><g><title>wake_up_q (1,324 samples, 0.06%)</title><rect x="14.3080%" y="373" width="0.0570%" height="15" fill="rgb(228,39,7)" fg:x="332278" fg:w="1324"/><text x="14.5580%" y="383.50"></text></g><g><title>btrfs_buffer_uptodate (759 samples, 0.03%)</title><rect x="14.4042%" y="405" width="0.0327%" height="15" fill="rgb(227,79,8)" fg:x="334512" fg:w="759"/><text x="14.6542%" y="415.50"></text></g><g><title>verify_parent_transid (614 samples, 0.03%)</title><rect x="14.4105%" y="389" width="0.0264%" height="15" fill="rgb(236,58,11)" fg:x="334657" fg:w="614"/><text x="14.6605%" y="399.50"></text></g><g><title>btrfs_get_64 (660 samples, 0.03%)</title><rect x="14.4369%" y="405" width="0.0284%" height="15" fill="rgb(249,63,35)" fg:x="335271" fg:w="660"/><text x="14.6869%" y="415.50"></text></g><g><title>btrfs_node_key (959 samples, 0.04%)</title><rect x="14.4653%" y="405" width="0.0413%" height="15" fill="rgb(252,114,16)" fg:x="335931" fg:w="959"/><text x="14.7153%" y="415.50"></text></g><g><title>read_extent_buffer (926 samples, 0.04%)</title><rect x="14.4668%" y="389" width="0.0399%" height="15" fill="rgb(254,151,24)" fg:x="335964" fg:w="926"/><text x="14.7168%" y="399.50"></text></g><g><title>btrfs_verify_level_key (275 samples, 0.01%)</title><rect x="14.5066%" y="405" width="0.0118%" height="15" fill="rgb(253,54,39)" fg:x="336890" fg:w="275"/><text x="14.7566%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,910 samples, 0.13%)</title><rect x="14.6321%" y="357" width="0.1253%" height="15" fill="rgb(243,25,45)" fg:x="339804" fg:w="2910"/><text x="14.8821%" y="367.50"></text></g><g><title>radix_tree_lookup (2,930 samples, 0.13%)</title><rect x="14.6316%" y="373" width="0.1262%" height="15" fill="rgb(234,134,9)" fg:x="339792" fg:w="2930"/><text x="14.8816%" y="383.50"></text></g><g><title>find_extent_buffer_nolock (4,893 samples, 0.21%)</title><rect x="14.5477%" y="389" width="0.2107%" height="15" fill="rgb(227,166,31)" fg:x="337843" fg:w="4893"/><text x="14.7977%" y="399.50"></text></g><g><title>mark_page_accessed (1,356 samples, 0.06%)</title><rect x="14.7584%" y="389" width="0.0584%" height="15" fill="rgb(245,143,41)" fg:x="342736" fg:w="1356"/><text x="15.0084%" y="399.50"></text></g><g><title>find_extent_buffer (6,812 samples, 0.29%)</title><rect x="14.5265%" y="405" width="0.2933%" height="15" fill="rgb(238,181,32)" fg:x="337352" fg:w="6812"/><text x="14.7765%" y="415.50"></text></g><g><title>read_block_for_search (10,620 samples, 0.46%)</title><rect x="14.3753%" y="421" width="0.4573%" height="15" fill="rgb(224,113,18)" fg:x="333839" fg:w="10620"/><text x="14.6253%" y="431.50"></text></g><g><title>unlock_up (787 samples, 0.03%)</title><rect x="14.8326%" y="421" width="0.0339%" height="15" fill="rgb(240,229,28)" fg:x="344459" fg:w="787"/><text x="15.0826%" y="431.50"></text></g><g><title>btrfs_search_slot (40,539 samples, 1.75%)</title><rect x="13.1576%" y="437" width="1.7456%" height="15" fill="rgb(250,185,3)" fg:x="305562" fg:w="40539"/><text x="13.4076%" y="447.50"></text></g><g><title>up_read (855 samples, 0.04%)</title><rect x="14.8665%" y="421" width="0.0368%" height="15" fill="rgb(212,59,25)" fg:x="345246" fg:w="855"/><text x="15.1165%" y="431.50"></text></g><g><title>btrfs_tree_read_lock (240 samples, 0.01%)</title><rect x="14.9033%" y="437" width="0.0103%" height="15" fill="rgb(221,87,20)" fg:x="346101" fg:w="240"/><text x="15.1533%" y="447.50"></text></g><g><title>crypto_shash_update (297 samples, 0.01%)</title><rect x="14.9303%" y="421" width="0.0128%" height="15" fill="rgb(213,74,28)" fg:x="346728" fg:w="297"/><text x="15.1803%" y="431.50"></text></g><g><title>crc32c (599 samples, 0.03%)</title><rect x="14.9173%" y="437" width="0.0258%" height="15" fill="rgb(224,132,34)" fg:x="346427" fg:w="599"/><text x="15.1673%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (42,600 samples, 1.83%)</title><rect x="13.1296%" y="453" width="1.8344%" height="15" fill="rgb(222,101,24)" fg:x="304910" fg:w="42600"/><text x="13.3796%" y="463.50">b..</text></g><g><title>btrfs_lookup_dentry (47,639 samples, 2.05%)</title><rect x="12.9335%" y="469" width="2.0514%" height="15" fill="rgb(254,142,4)" fg:x="300357" fg:w="47639"/><text x="13.1835%" y="479.50">b..</text></g><g><title>__d_rehash (428 samples, 0.02%)</title><rect x="15.0049%" y="437" width="0.0184%" height="15" fill="rgb(230,229,49)" fg:x="348462" fg:w="428"/><text x="15.2549%" y="447.50"></text></g><g><title>__d_add (494 samples, 0.02%)</title><rect x="15.0022%" y="453" width="0.0213%" height="15" fill="rgb(238,70,47)" fg:x="348398" fg:w="494"/><text x="15.2522%" y="463.50"></text></g><g><title>btrfs_lookup (49,160 samples, 2.12%)</title><rect x="12.9179%" y="485" width="2.1169%" height="15" fill="rgb(231,160,17)" fg:x="299994" fg:w="49160"/><text x="13.1679%" y="495.50">b..</text></g><g><title>d_splice_alias (955 samples, 0.04%)</title><rect x="14.9936%" y="469" width="0.0411%" height="15" fill="rgb(218,68,53)" fg:x="348199" fg:w="955"/><text x="15.2436%" y="479.50"></text></g><g><title>btrfs_lookup_dentry (243 samples, 0.01%)</title><rect x="15.0347%" y="485" width="0.0105%" height="15" fill="rgb(236,111,10)" fg:x="349154" fg:w="243"/><text x="15.2847%" y="495.50"></text></g><g><title>d_set_d_op (276 samples, 0.01%)</title><rect x="15.0653%" y="453" width="0.0119%" height="15" fill="rgb(224,34,41)" fg:x="349864" fg:w="276"/><text x="15.3153%" y="463.50"></text></g><g><title>___slab_alloc (496 samples, 0.02%)</title><rect x="15.0992%" y="437" width="0.0214%" height="15" fill="rgb(241,118,19)" fg:x="350651" fg:w="496"/><text x="15.3492%" y="447.50"></text></g><g><title>get_obj_cgroup_from_current (996 samples, 0.04%)</title><rect x="15.1213%" y="437" width="0.0429%" height="15" fill="rgb(238,129,25)" fg:x="351165" fg:w="996"/><text x="15.3713%" y="447.50"></text></g><g><title>mod_objcg_state (236 samples, 0.01%)</title><rect x="15.1930%" y="421" width="0.0102%" height="15" fill="rgb(238,22,31)" fg:x="352830" fg:w="236"/><text x="15.4430%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (908 samples, 0.04%)</title><rect x="15.1642%" y="437" width="0.0391%" height="15" fill="rgb(222,174,48)" fg:x="352161" fg:w="908"/><text x="15.4142%" y="447.50"></text></g><g><title>refill_obj_stock (323 samples, 0.01%)</title><rect x="15.2134%" y="421" width="0.0139%" height="15" fill="rgb(206,152,40)" fg:x="353304" fg:w="323"/><text x="15.4634%" y="431.50"></text></g><g><title>obj_cgroup_charge (563 samples, 0.02%)</title><rect x="15.2037%" y="437" width="0.0242%" height="15" fill="rgb(218,99,54)" fg:x="353077" fg:w="563"/><text x="15.4537%" y="447.50"></text></g><g><title>kmem_cache_alloc (3,463 samples, 0.15%)</title><rect x="15.0814%" y="453" width="0.1491%" height="15" fill="rgb(220,174,26)" fg:x="350238" fg:w="3463"/><text x="15.3314%" y="463.50"></text></g><g><title>__d_alloc (4,368 samples, 0.19%)</title><rect x="15.0491%" y="469" width="0.1881%" height="15" fill="rgb(245,116,9)" fg:x="349487" fg:w="4368"/><text x="15.2991%" y="479.50"></text></g><g><title>d_alloc (4,732 samples, 0.20%)</title><rect x="15.0452%" y="485" width="0.2038%" height="15" fill="rgb(209,72,35)" fg:x="349397" fg:w="4732"/><text x="15.2952%" y="495.50"></text></g><g><title>__d_lookup (1,046 samples, 0.05%)</title><rect x="15.2657%" y="453" width="0.0450%" height="15" fill="rgb(226,126,21)" fg:x="354518" fg:w="1046"/><text x="15.5157%" y="463.50"></text></g><g><title>__lookup_hash (55,895 samples, 2.41%)</title><rect x="12.9044%" y="501" width="2.4069%" height="15" fill="rgb(227,192,1)" fg:x="299680" fg:w="55895"/><text x="13.1544%" y="511.50">__..</text></g><g><title>lookup_dcache (1,253 samples, 0.05%)</title><rect x="15.2573%" y="485" width="0.0540%" height="15" fill="rgb(237,180,29)" fg:x="354322" fg:w="1253"/><text x="15.5073%" y="495.50"></text></g><g><title>d_lookup (1,111 samples, 0.05%)</title><rect x="15.2634%" y="469" width="0.0478%" height="15" fill="rgb(230,197,35)" fg:x="354464" fg:w="1111"/><text x="15.5134%" y="479.50"></text></g><g><title>__legitimize_mnt (237 samples, 0.01%)</title><rect x="15.3946%" y="421" width="0.0102%" height="15" fill="rgb(246,193,31)" fg:x="357512" fg:w="237"/><text x="15.6446%" y="431.50"></text></g><g><title>__legitimize_path (404 samples, 0.02%)</title><rect x="15.3931%" y="437" width="0.0174%" height="15" fill="rgb(241,36,4)" fg:x="357477" fg:w="404"/><text x="15.6431%" y="447.50"></text></g><g><title>complete_walk (1,291 samples, 0.06%)</title><rect x="15.3588%" y="469" width="0.0556%" height="15" fill="rgb(241,130,17)" fg:x="356679" fg:w="1291"/><text x="15.6088%" y="479.50"></text></g><g><title>try_to_unlazy (760 samples, 0.03%)</title><rect x="15.3816%" y="453" width="0.0327%" height="15" fill="rgb(206,137,32)" fg:x="357210" fg:w="760"/><text x="15.6316%" y="463.50"></text></g><g><title>btrfs_permission (545 samples, 0.02%)</title><rect x="15.5879%" y="453" width="0.0235%" height="15" fill="rgb(237,228,51)" fg:x="362001" fg:w="545"/><text x="15.8379%" y="463.50"></text></g><g><title>generic_permission (817 samples, 0.04%)</title><rect x="15.8109%" y="421" width="0.0352%" height="15" fill="rgb(243,6,42)" fg:x="367180" fg:w="817"/><text x="16.0609%" y="431.50"></text></g><g><title>btrfs_permission (899 samples, 0.04%)</title><rect x="15.8079%" y="437" width="0.0387%" height="15" fill="rgb(251,74,28)" fg:x="367110" fg:w="899"/><text x="16.0579%" y="447.50"></text></g><g><title>generic_permission (575 samples, 0.02%)</title><rect x="15.8466%" y="437" width="0.0248%" height="15" fill="rgb(218,20,49)" fg:x="368009" fg:w="575"/><text x="16.0966%" y="447.50"></text></g><g><title>inode_permission (6,487 samples, 0.28%)</title><rect x="15.6138%" y="453" width="0.2793%" height="15" fill="rgb(238,28,14)" fg:x="362601" fg:w="6487"/><text x="15.8638%" y="463.50"></text></g><g><title>security_inode_permission (465 samples, 0.02%)</title><rect x="15.8731%" y="437" width="0.0200%" height="15" fill="rgb(229,40,46)" fg:x="368623" fg:w="465"/><text x="16.1231%" y="447.50"></text></g><g><title>lookup_fast (263 samples, 0.01%)</title><rect x="15.8931%" y="453" width="0.0113%" height="15" fill="rgb(244,195,20)" fg:x="369088" fg:w="263"/><text x="16.1431%" y="463.50"></text></g><g><title>__d_lookup_rcu (286 samples, 0.01%)</title><rect x="15.9502%" y="437" width="0.0123%" height="15" fill="rgb(253,56,35)" fg:x="370415" fg:w="286"/><text x="16.2002%" y="447.50"></text></g><g><title>__d_lookup_rcu (8,674 samples, 0.37%)</title><rect x="16.0052%" y="421" width="0.3735%" height="15" fill="rgb(210,149,44)" fg:x="371691" fg:w="8674"/><text x="16.2552%" y="431.50"></text></g><g><title>lookup_fast (9,586 samples, 0.41%)</title><rect x="15.9663%" y="437" width="0.4128%" height="15" fill="rgb(240,135,12)" fg:x="370789" fg:w="9586"/><text x="16.2163%" y="447.50"></text></g><g><title>__lookup_mnt (500 samples, 0.02%)</title><rect x="16.4331%" y="421" width="0.0215%" height="15" fill="rgb(251,24,50)" fg:x="381629" fg:w="500"/><text x="16.6831%" y="431.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (23,951 samples, 1.03%)</title><rect x="15.4235%" y="469" width="1.0313%" height="15" fill="rgb(243,200,47)" fg:x="358183" fg:w="23951"/><text x="15.6735%" y="479.50"></text></g><g><title>walk_component (12,565 samples, 0.54%)</title><rect x="15.9138%" y="453" width="0.5411%" height="15" fill="rgb(224,166,26)" fg:x="369569" fg:w="12565"/><text x="16.1638%" y="463.50"></text></g><g><title>step_into (1,759 samples, 0.08%)</title><rect x="16.3791%" y="437" width="0.0757%" height="15" fill="rgb(233,0,47)" fg:x="380375" fg:w="1759"/><text x="16.6291%" y="447.50"></text></g><g><title>nd_jump_root (571 samples, 0.02%)</title><rect x="16.4794%" y="453" width="0.0246%" height="15" fill="rgb(253,80,5)" fg:x="382704" fg:w="571"/><text x="16.7294%" y="463.50"></text></g><g><title>set_root (493 samples, 0.02%)</title><rect x="16.4828%" y="437" width="0.0212%" height="15" fill="rgb(214,133,25)" fg:x="382782" fg:w="493"/><text x="16.7328%" y="447.50"></text></g><g><title>path_init (1,099 samples, 0.05%)</title><rect x="16.4654%" y="469" width="0.0473%" height="15" fill="rgb(209,27,14)" fg:x="382378" fg:w="1099"/><text x="16.7154%" y="479.50"></text></g><g><title>terminate_walk (409 samples, 0.02%)</title><rect x="16.5127%" y="469" width="0.0176%" height="15" fill="rgb(219,102,51)" fg:x="383478" fg:w="409"/><text x="16.7627%" y="479.50"></text></g><g><title>path_parentat (27,687 samples, 1.19%)</title><rect x="15.3540%" y="485" width="1.1922%" height="15" fill="rgb(237,18,16)" fg:x="356569" fg:w="27687"/><text x="15.6040%" y="495.50"></text></g><g><title>filename_parentat (28,512 samples, 1.23%)</title><rect x="15.3247%" y="501" width="1.2277%" height="15" fill="rgb(241,85,17)" fg:x="355889" fg:w="28512"/><text x="15.5747%" y="511.50"></text></g><g><title>mnt_want_write (440 samples, 0.02%)</title><rect x="16.5567%" y="501" width="0.0189%" height="15" fill="rgb(236,90,42)" fg:x="384498" fg:w="440"/><text x="16.8067%" y="511.50"></text></g><g><title>filename_create (85,679 samples, 3.69%)</title><rect x="12.8879%" y="517" width="3.6894%" height="15" fill="rgb(249,57,21)" fg:x="299297" fg:w="85679"/><text x="13.1379%" y="527.50">file..</text></g><g><title>hook_path_symlink (555 samples, 0.02%)</title><rect x="16.5849%" y="517" width="0.0239%" height="15" fill="rgb(243,12,36)" fg:x="385153" fg:w="555"/><text x="16.8349%" y="527.50"></text></g><g><title>__slab_free (315 samples, 0.01%)</title><rect x="16.6753%" y="485" width="0.0136%" height="15" fill="rgb(253,128,47)" fg:x="387254" fg:w="315"/><text x="16.9253%" y="495.50"></text></g><g><title>kmem_cache_free (1,618 samples, 0.07%)</title><rect x="16.6434%" y="501" width="0.0697%" height="15" fill="rgb(207,33,20)" fg:x="386512" fg:w="1618"/><text x="16.8934%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (451 samples, 0.02%)</title><rect x="16.6936%" y="485" width="0.0194%" height="15" fill="rgb(233,215,35)" fg:x="387679" fg:w="451"/><text x="16.9436%" y="495.50"></text></g><g><title>putname (1,992 samples, 0.09%)</title><rect x="16.6286%" y="517" width="0.0858%" height="15" fill="rgb(249,188,52)" fg:x="386168" fg:w="1992"/><text x="16.8786%" y="527.50"></text></g><g><title>apparmor_path_symlink (324 samples, 0.01%)</title><rect x="16.7255%" y="501" width="0.0140%" height="15" fill="rgb(225,12,32)" fg:x="388418" fg:w="324"/><text x="16.9755%" y="511.50"></text></g><g><title>security_path_symlink (426 samples, 0.02%)</title><rect x="16.7212%" y="517" width="0.0183%" height="15" fill="rgb(247,98,14)" fg:x="388319" fg:w="426"/><text x="16.9712%" y="527.50"></text></g><g><title>_raw_spin_lock (663 samples, 0.03%)</title><rect x="16.8858%" y="485" width="0.0285%" height="15" fill="rgb(247,219,48)" fg:x="392141" fg:w="663"/><text x="17.1358%" y="495.50"></text></g><g><title>kmem_cache_alloc (382 samples, 0.02%)</title><rect x="16.9902%" y="437" width="0.0164%" height="15" fill="rgb(253,60,48)" fg:x="394566" fg:w="382"/><text x="17.2402%" y="447.50"></text></g><g><title>btrfs_alloc_path (584 samples, 0.03%)</title><rect x="16.9888%" y="453" width="0.0251%" height="15" fill="rgb(245,15,52)" fg:x="394533" fg:w="584"/><text x="17.2388%" y="463.50"></text></g><g><title>kmem_cache_free (740 samples, 0.03%)</title><rect x="17.0240%" y="437" width="0.0319%" height="15" fill="rgb(220,133,28)" fg:x="395351" fg:w="740"/><text x="17.2740%" y="447.50"></text></g><g><title>btrfs_free_path (947 samples, 0.04%)</title><rect x="17.0155%" y="453" width="0.0408%" height="15" fill="rgb(217,180,4)" fg:x="395154" fg:w="947"/><text x="17.2655%" y="463.50"></text></g><g><title>__btrfs_add_delayed_item (1,627 samples, 0.07%)</title><rect x="17.0734%" y="437" width="0.0701%" height="15" fill="rgb(251,24,1)" fg:x="396499" fg:w="1627"/><text x="17.3234%" y="447.50"></text></g><g><title>btrfs_comp_cpu_keys (946 samples, 0.04%)</title><rect x="17.1028%" y="421" width="0.0407%" height="15" fill="rgb(212,185,49)" fg:x="397180" fg:w="946"/><text x="17.3528%" y="431.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (575 samples, 0.02%)</title><rect x="17.1435%" y="437" width="0.0248%" height="15" fill="rgb(215,175,22)" fg:x="398126" fg:w="575"/><text x="17.3935%" y="447.50"></text></g><g><title>__schedule (272 samples, 0.01%)</title><rect x="17.2204%" y="389" width="0.0117%" height="15" fill="rgb(250,205,14)" fg:x="399912" fg:w="272"/><text x="17.4704%" y="399.50"></text></g><g><title>__cond_resched (295 samples, 0.01%)</title><rect x="17.2195%" y="405" width="0.0127%" height="15" fill="rgb(225,211,22)" fg:x="399892" fg:w="295"/><text x="17.4695%" y="415.50"></text></g><g><title>__kmalloc (1,458 samples, 0.06%)</title><rect x="17.1810%" y="421" width="0.0628%" height="15" fill="rgb(251,179,42)" fg:x="398996" fg:w="1458"/><text x="17.4310%" y="431.50"></text></g><g><title>btrfs_alloc_delayed_item (1,800 samples, 0.08%)</title><rect x="17.1762%" y="437" width="0.0775%" height="15" fill="rgb(208,216,51)" fg:x="398886" fg:w="1800"/><text x="17.4262%" y="447.50"></text></g><g><title>_raw_spin_lock (822 samples, 0.04%)</title><rect x="17.2619%" y="421" width="0.0354%" height="15" fill="rgb(235,36,11)" fg:x="400876" fg:w="822"/><text x="17.5119%" y="431.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,078 samples, 0.05%)</title><rect x="17.2579%" y="437" width="0.0464%" height="15" fill="rgb(213,189,28)" fg:x="400783" fg:w="1078"/><text x="17.5079%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (746 samples, 0.03%)</title><rect x="17.3049%" y="437" width="0.0321%" height="15" fill="rgb(227,203,42)" fg:x="401874" fg:w="746"/><text x="17.5549%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (595 samples, 0.03%)</title><rect x="17.3114%" y="421" width="0.0256%" height="15" fill="rgb(244,72,36)" fg:x="402025" fg:w="595"/><text x="17.5614%" y="431.50"></text></g><g><title>mutex_spin_on_owner (477 samples, 0.02%)</title><rect x="17.3480%" y="389" width="0.0205%" height="15" fill="rgb(213,53,17)" fg:x="402876" fg:w="477"/><text x="17.5980%" y="399.50"></text></g><g><title>__schedule (312 samples, 0.01%)</title><rect x="17.3689%" y="357" width="0.0134%" height="15" fill="rgb(207,167,3)" fg:x="403360" fg:w="312"/><text x="17.6189%" y="367.50"></text></g><g><title>__mutex_lock.constprop.0 (834 samples, 0.04%)</title><rect x="17.3465%" y="405" width="0.0359%" height="15" fill="rgb(216,98,30)" fg:x="402840" fg:w="834"/><text x="17.5965%" y="415.50"></text></g><g><title>schedule_preempt_disabled (317 samples, 0.01%)</title><rect x="17.3687%" y="389" width="0.0137%" height="15" fill="rgb(236,123,15)" fg:x="403357" fg:w="317"/><text x="17.6187%" y="399.50"></text></g><g><title>schedule (317 samples, 0.01%)</title><rect x="17.3687%" y="373" width="0.0137%" height="15" fill="rgb(248,81,50)" fg:x="403357" fg:w="317"/><text x="17.6187%" y="383.50"></text></g><g><title>__mutex_lock_slowpath (841 samples, 0.04%)</title><rect x="17.3464%" y="421" width="0.0362%" height="15" fill="rgb(214,120,4)" fg:x="402839" fg:w="841"/><text x="17.5964%" y="431.50"></text></g><g><title>mutex_lock (1,069 samples, 0.05%)</title><rect x="17.3370%" y="437" width="0.0460%" height="15" fill="rgb(208,179,34)" fg:x="402621" fg:w="1069"/><text x="17.5870%" y="447.50"></text></g><g><title>mutex_unlock (390 samples, 0.02%)</title><rect x="17.3831%" y="437" width="0.0168%" height="15" fill="rgb(227,140,7)" fg:x="403690" fg:w="390"/><text x="17.6331%" y="447.50"></text></g><g><title>rb_insert_color (396 samples, 0.02%)</title><rect x="17.3999%" y="437" width="0.0171%" height="15" fill="rgb(214,22,6)" fg:x="404080" fg:w="396"/><text x="17.6499%" y="447.50"></text></g><g><title>btrfs_insert_delayed_dir_index (8,278 samples, 0.36%)</title><rect x="17.0605%" y="453" width="0.3565%" height="15" fill="rgb(207,137,27)" fg:x="396199" fg:w="8278"/><text x="17.3105%" y="463.50"></text></g><g><title>btrfs_mark_buffer_dirty (253 samples, 0.01%)</title><rect x="17.4203%" y="453" width="0.0109%" height="15" fill="rgb(210,8,46)" fg:x="404554" fg:w="253"/><text x="17.6703%" y="463.50"></text></g><g><title>_raw_spin_lock (423 samples, 0.02%)</title><rect x="17.4445%" y="421" width="0.0182%" height="15" fill="rgb(240,16,54)" fg:x="405116" fg:w="423"/><text x="17.6945%" y="431.50"></text></g><g><title>release_extent_buffer (322 samples, 0.01%)</title><rect x="17.5064%" y="405" width="0.0139%" height="15" fill="rgb(211,209,29)" fg:x="406553" fg:w="322"/><text x="17.7564%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,335 samples, 0.06%)</title><rect x="17.4628%" y="421" width="0.0575%" height="15" fill="rgb(226,228,24)" fg:x="405541" fg:w="1335"/><text x="17.7128%" y="431.50"></text></g><g><title>free_extent_buffer (1,792 samples, 0.08%)</title><rect x="17.4445%" y="437" width="0.0772%" height="15" fill="rgb(222,84,9)" fg:x="405116" fg:w="1792"/><text x="17.6945%" y="447.50"></text></g><g><title>btrfs_release_path (2,223 samples, 0.10%)</title><rect x="17.4312%" y="453" width="0.0957%" height="15" fill="rgb(234,203,30)" fg:x="404807" fg:w="2223"/><text x="17.6812%" y="463.50"></text></g><g><title>crc32c (564 samples, 0.02%)</title><rect x="17.5478%" y="453" width="0.0243%" height="15" fill="rgb(238,109,14)" fg:x="407515" fg:w="564"/><text x="17.7978%" y="463.50"></text></g><g><title>crypto_shash_update (322 samples, 0.01%)</title><rect x="17.5582%" y="437" width="0.0139%" height="15" fill="rgb(233,206,34)" fg:x="407757" fg:w="322"/><text x="17.8082%" y="447.50"></text></g><g><title>btrfs_get_32 (300 samples, 0.01%)</title><rect x="17.5950%" y="437" width="0.0129%" height="15" fill="rgb(220,167,47)" fg:x="408612" fg:w="300"/><text x="17.8450%" y="447.50"></text></g><g><title>btrfs_get_token_32 (1,240 samples, 0.05%)</title><rect x="17.6234%" y="421" width="0.0534%" height="15" fill="rgb(238,105,10)" fg:x="409272" fg:w="1240"/><text x="17.8734%" y="431.50"></text></g><g><title>btrfs_bin_search (4,774 samples, 0.21%)</title><rect x="17.7829%" y="405" width="0.2056%" height="15" fill="rgb(213,227,17)" fg:x="412976" fg:w="4774"/><text x="18.0329%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (4,660 samples, 0.20%)</title><rect x="17.7878%" y="389" width="0.2007%" height="15" fill="rgb(217,132,38)" fg:x="413090" fg:w="4660"/><text x="18.0378%" y="399.50"></text></g><g><title>btrfs_get_32 (422 samples, 0.02%)</title><rect x="18.0087%" y="373" width="0.0182%" height="15" fill="rgb(242,146,4)" fg:x="418220" fg:w="422"/><text x="18.2587%" y="383.50"></text></g><g><title>btrfs_leaf_free_space (765 samples, 0.03%)</title><rect x="17.9962%" y="405" width="0.0329%" height="15" fill="rgb(212,61,9)" fg:x="417928" fg:w="765"/><text x="18.2462%" y="415.50"></text></g><g><title>leaf_space_used (606 samples, 0.03%)</title><rect x="18.0030%" y="389" width="0.0261%" height="15" fill="rgb(247,126,22)" fg:x="418087" fg:w="606"/><text x="18.2530%" y="399.50"></text></g><g><title>_raw_spin_lock_irq (234 samples, 0.01%)</title><rect x="18.0706%" y="341" width="0.0101%" height="15" fill="rgb(220,196,2)" fg:x="419657" fg:w="234"/><text x="18.3206%" y="351.50"></text></g><g><title>update_curr (517 samples, 0.02%)</title><rect x="18.1266%" y="261" width="0.0223%" height="15" fill="rgb(208,46,4)" fg:x="420956" fg:w="517"/><text x="18.3766%" y="271.50"></text></g><g><title>update_load_avg (363 samples, 0.02%)</title><rect x="18.1488%" y="261" width="0.0156%" height="15" fill="rgb(252,104,46)" fg:x="421473" fg:w="363"/><text x="18.3988%" y="271.50"></text></g><g><title>dequeue_entity (1,345 samples, 0.06%)</title><rect x="18.1081%" y="277" width="0.0579%" height="15" fill="rgb(237,152,48)" fg:x="420528" fg:w="1345"/><text x="18.3581%" y="287.50"></text></g><g><title>dequeue_task_fair (1,729 samples, 0.07%)</title><rect x="18.1004%" y="293" width="0.0745%" height="15" fill="rgb(221,59,37)" fg:x="420349" fg:w="1729"/><text x="18.3504%" y="303.50"></text></g><g><title>dequeue_task (1,844 samples, 0.08%)</title><rect x="18.0982%" y="309" width="0.0794%" height="15" fill="rgb(209,202,51)" fg:x="420297" fg:w="1844"/><text x="18.3482%" y="319.50"></text></g><g><title>__perf_event_task_sched_in (871 samples, 0.04%)</title><rect x="18.1892%" y="293" width="0.0375%" height="15" fill="rgb(228,81,30)" fg:x="422410" fg:w="871"/><text x="18.4392%" y="303.50"></text></g><g><title>x86_pmu_enable (793 samples, 0.03%)</title><rect x="18.1925%" y="277" width="0.0341%" height="15" fill="rgb(227,42,39)" fg:x="422488" fg:w="793"/><text x="18.4425%" y="287.50"></text></g><g><title>intel_pmu_enable_all (771 samples, 0.03%)</title><rect x="18.1935%" y="261" width="0.0332%" height="15" fill="rgb(221,26,2)" fg:x="422510" fg:w="771"/><text x="18.4435%" y="271.50"></text></g><g><title>native_write_msr (746 samples, 0.03%)</title><rect x="18.1946%" y="245" width="0.0321%" height="15" fill="rgb(254,61,31)" fg:x="422535" fg:w="746"/><text x="18.4446%" y="255.50"></text></g><g><title>finish_task_switch.isra.0 (1,330 samples, 0.06%)</title><rect x="18.1778%" y="309" width="0.0573%" height="15" fill="rgb(222,173,38)" fg:x="422146" fg:w="1330"/><text x="18.4278%" y="319.50"></text></g><g><title>pick_next_task_fair (403 samples, 0.02%)</title><rect x="18.2397%" y="293" width="0.0174%" height="15" fill="rgb(218,50,12)" fg:x="423583" fg:w="403"/><text x="18.4897%" y="303.50"></text></g><g><title>pick_next_task_idle (281 samples, 0.01%)</title><rect x="18.2570%" y="293" width="0.0121%" height="15" fill="rgb(223,88,40)" fg:x="423986" fg:w="281"/><text x="18.5070%" y="303.50"></text></g><g><title>set_next_task_idle (247 samples, 0.01%)</title><rect x="18.2585%" y="277" width="0.0106%" height="15" fill="rgb(237,54,19)" fg:x="424020" fg:w="247"/><text x="18.5085%" y="287.50"></text></g><g><title>pick_next_task (886 samples, 0.04%)</title><rect x="18.2361%" y="309" width="0.0382%" height="15" fill="rgb(251,129,25)" fg:x="423500" fg:w="886"/><text x="18.4861%" y="319.50"></text></g><g><title>__perf_event_task_sched_out (344 samples, 0.01%)</title><rect x="18.2784%" y="293" width="0.0148%" height="15" fill="rgb(238,97,19)" fg:x="424482" fg:w="344"/><text x="18.5284%" y="303.50"></text></g><g><title>prepare_task_switch (417 samples, 0.02%)</title><rect x="18.2754%" y="309" width="0.0180%" height="15" fill="rgb(240,169,18)" fg:x="424413" fg:w="417"/><text x="18.5254%" y="319.50"></text></g><g><title>psi_group_change (930 samples, 0.04%)</title><rect x="18.3069%" y="293" width="0.0400%" height="15" fill="rgb(230,187,49)" fg:x="425145" fg:w="930"/><text x="18.5569%" y="303.50"></text></g><g><title>psi_task_switch (1,279 samples, 0.06%)</title><rect x="18.2945%" y="309" width="0.0551%" height="15" fill="rgb(209,44,26)" fg:x="424857" fg:w="1279"/><text x="18.5445%" y="319.50"></text></g><g><title>__schedule (6,379 samples, 0.27%)</title><rect x="18.0842%" y="325" width="0.2747%" height="15" fill="rgb(244,0,6)" fg:x="419972" fg:w="6379"/><text x="18.3342%" y="335.50"></text></g><g><title>schedule (6,465 samples, 0.28%)</title><rect x="18.0827%" y="341" width="0.2784%" height="15" fill="rgb(248,18,21)" fg:x="419938" fg:w="6465"/><text x="18.3327%" y="351.50"></text></g><g><title>rwsem_down_read_slowpath (7,324 samples, 0.32%)</title><rect x="18.0502%" y="357" width="0.3154%" height="15" fill="rgb(245,180,19)" fg:x="419183" fg:w="7324"/><text x="18.3002%" y="367.50"></text></g><g><title>down_read (7,636 samples, 0.33%)</title><rect x="18.0371%" y="373" width="0.3288%" height="15" fill="rgb(252,118,36)" fg:x="418879" fg:w="7636"/><text x="18.2871%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (7,726 samples, 0.33%)</title><rect x="18.0343%" y="389" width="0.3327%" height="15" fill="rgb(210,224,19)" fg:x="418813" fg:w="7726"/><text x="18.2843%" y="399.50"></text></g><g><title>btrfs_root_node (585 samples, 0.03%)</title><rect x="18.3670%" y="389" width="0.0252%" height="15" fill="rgb(218,30,24)" fg:x="426540" fg:w="585"/><text x="18.6170%" y="399.50"></text></g><g><title>btrfs_read_lock_root_node (8,420 samples, 0.36%)</title><rect x="18.0305%" y="405" width="0.3626%" height="15" fill="rgb(219,75,50)" fg:x="418725" fg:w="8420"/><text x="18.2805%" y="415.50"></text></g><g><title>osq_lock (2,640 samples, 0.11%)</title><rect x="18.5174%" y="325" width="0.1137%" height="15" fill="rgb(234,72,50)" fg:x="430032" fg:w="2640"/><text x="18.7674%" y="335.50"></text></g><g><title>rwsem_spin_on_owner (3,193 samples, 0.14%)</title><rect x="18.6333%" y="325" width="0.1375%" height="15" fill="rgb(219,100,48)" fg:x="432724" fg:w="3193"/><text x="18.8833%" y="335.50"></text></g><g><title>rwsem_optimistic_spin (7,872 samples, 0.34%)</title><rect x="18.4336%" y="341" width="0.3390%" height="15" fill="rgb(253,5,41)" fg:x="428087" fg:w="7872"/><text x="18.6836%" y="351.50"></text></g><g><title>__schedule (547 samples, 0.02%)</title><rect x="18.7743%" y="325" width="0.0236%" height="15" fill="rgb(247,181,11)" fg:x="435999" fg:w="547"/><text x="19.0243%" y="335.50"></text></g><g><title>rwsem_down_write_slowpath (8,645 samples, 0.37%)</title><rect x="18.4258%" y="357" width="0.3723%" height="15" fill="rgb(222,223,25)" fg:x="427905" fg:w="8645"/><text x="18.6758%" y="367.50"></text></g><g><title>schedule (554 samples, 0.02%)</title><rect x="18.7742%" y="341" width="0.0239%" height="15" fill="rgb(214,198,28)" fg:x="435996" fg:w="554"/><text x="19.0242%" y="351.50"></text></g><g><title>down_write (9,240 samples, 0.40%)</title><rect x="18.4005%" y="373" width="0.3979%" height="15" fill="rgb(230,46,43)" fg:x="427318" fg:w="9240"/><text x="18.6505%" y="383.50"></text></g><g><title>__btrfs_tree_lock (9,373 samples, 0.40%)</title><rect x="18.3951%" y="389" width="0.4036%" height="15" fill="rgb(233,65,53)" fg:x="427192" fg:w="9373"/><text x="18.6451%" y="399.50"></text></g><g><title>btrfs_tree_lock (9,408 samples, 0.41%)</title><rect x="18.3950%" y="405" width="0.4051%" height="15" fill="rgb(221,121,27)" fg:x="427189" fg:w="9408"/><text x="18.6450%" y="415.50"></text></g><g><title>dequeue_entity (513 samples, 0.02%)</title><rect x="18.8389%" y="277" width="0.0221%" height="15" fill="rgb(247,70,47)" fg:x="437499" fg:w="513"/><text x="19.0889%" y="287.50"></text></g><g><title>dequeue_task_fair (670 samples, 0.03%)</title><rect x="18.8356%" y="293" width="0.0289%" height="15" fill="rgb(228,85,35)" fg:x="437422" fg:w="670"/><text x="19.0856%" y="303.50"></text></g><g><title>dequeue_task (716 samples, 0.03%)</title><rect x="18.8347%" y="309" width="0.0308%" height="15" fill="rgb(209,50,18)" fg:x="437401" fg:w="716"/><text x="19.0847%" y="319.50"></text></g><g><title>__perf_event_task_sched_in (291 samples, 0.01%)</title><rect x="18.8693%" y="293" width="0.0125%" height="15" fill="rgb(250,19,35)" fg:x="438205" fg:w="291"/><text x="19.1193%" y="303.50"></text></g><g><title>x86_pmu_enable (267 samples, 0.01%)</title><rect x="18.8703%" y="277" width="0.0115%" height="15" fill="rgb(253,107,29)" fg:x="438229" fg:w="267"/><text x="19.1203%" y="287.50"></text></g><g><title>intel_pmu_enable_all (262 samples, 0.01%)</title><rect x="18.8706%" y="261" width="0.0113%" height="15" fill="rgb(252,179,29)" fg:x="438234" fg:w="262"/><text x="19.1206%" y="271.50"></text></g><g><title>native_write_msr (252 samples, 0.01%)</title><rect x="18.8710%" y="245" width="0.0109%" height="15" fill="rgb(238,194,6)" fg:x="438244" fg:w="252"/><text x="19.1210%" y="255.50"></text></g><g><title>finish_task_switch.isra.0 (430 samples, 0.02%)</title><rect x="18.8656%" y="309" width="0.0185%" height="15" fill="rgb(238,164,29)" fg:x="438119" fg:w="430"/><text x="19.1156%" y="319.50"></text></g><g><title>pick_next_task (299 samples, 0.01%)</title><rect x="18.8850%" y="309" width="0.0129%" height="15" fill="rgb(224,25,9)" fg:x="438569" fg:w="299"/><text x="19.1350%" y="319.50"></text></g><g><title>psi_group_change (339 samples, 0.01%)</title><rect x="18.9103%" y="293" width="0.0146%" height="15" fill="rgb(244,153,23)" fg:x="439156" fg:w="339"/><text x="19.1603%" y="303.50"></text></g><g><title>psi_task_switch (483 samples, 0.02%)</title><rect x="18.9051%" y="309" width="0.0208%" height="15" fill="rgb(212,203,14)" fg:x="439037" fg:w="483"/><text x="19.1551%" y="319.50"></text></g><g><title>__schedule (2,487 samples, 0.11%)</title><rect x="18.8295%" y="325" width="0.1071%" height="15" fill="rgb(220,164,20)" fg:x="437280" fg:w="2487"/><text x="19.0795%" y="335.50"></text></g><g><title>schedule (2,518 samples, 0.11%)</title><rect x="18.8288%" y="341" width="0.1084%" height="15" fill="rgb(222,203,48)" fg:x="437265" fg:w="2518"/><text x="19.0788%" y="351.50"></text></g><g><title>rwsem_down_read_slowpath (2,790 samples, 0.12%)</title><rect x="18.8199%" y="357" width="0.1201%" height="15" fill="rgb(215,159,22)" fg:x="437057" fg:w="2790"/><text x="19.0699%" y="367.50"></text></g><g><title>down_read (3,188 samples, 0.14%)</title><rect x="18.8029%" y="373" width="0.1373%" height="15" fill="rgb(216,183,47)" fg:x="436663" fg:w="3188"/><text x="19.0529%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (3,264 samples, 0.14%)</title><rect x="18.8003%" y="389" width="0.1405%" height="15" fill="rgb(229,195,25)" fg:x="436602" fg:w="3264"/><text x="19.0503%" y="399.50"></text></g><g><title>btrfs_tree_read_lock (3,287 samples, 0.14%)</title><rect x="18.8001%" y="405" width="0.1415%" height="15" fill="rgb(224,132,51)" fg:x="436597" fg:w="3287"/><text x="19.0501%" y="415.50"></text></g><g><title>btrfs_buffer_uptodate (727 samples, 0.03%)</title><rect x="18.9782%" y="389" width="0.0313%" height="15" fill="rgb(240,63,7)" fg:x="440734" fg:w="727"/><text x="19.2282%" y="399.50"></text></g><g><title>verify_parent_transid (641 samples, 0.03%)</title><rect x="18.9819%" y="373" width="0.0276%" height="15" fill="rgb(249,182,41)" fg:x="440820" fg:w="641"/><text x="19.2319%" y="383.50"></text></g><g><title>btrfs_get_64 (659 samples, 0.03%)</title><rect x="19.0095%" y="389" width="0.0284%" height="15" fill="rgb(243,47,26)" fg:x="441461" fg:w="659"/><text x="19.2595%" y="399.50"></text></g><g><title>btrfs_node_key (882 samples, 0.04%)</title><rect x="19.0379%" y="389" width="0.0380%" height="15" fill="rgb(233,48,2)" fg:x="442120" fg:w="882"/><text x="19.2879%" y="399.50"></text></g><g><title>read_extent_buffer (848 samples, 0.04%)</title><rect x="19.0394%" y="373" width="0.0365%" height="15" fill="rgb(244,165,34)" fg:x="442154" fg:w="848"/><text x="19.2894%" y="383.50"></text></g><g><title>btrfs_verify_level_key (243 samples, 0.01%)</title><rect x="19.0759%" y="389" width="0.0105%" height="15" fill="rgb(207,89,7)" fg:x="443002" fg:w="243"/><text x="19.3259%" y="399.50"></text></g><g><title>__radix_tree_lookup (2,365 samples, 0.10%)</title><rect x="19.1855%" y="341" width="0.1018%" height="15" fill="rgb(244,117,36)" fg:x="445548" fg:w="2365"/><text x="19.4355%" y="351.50"></text></g><g><title>radix_tree_lookup (2,374 samples, 0.10%)</title><rect x="19.1853%" y="357" width="0.1022%" height="15" fill="rgb(226,144,34)" fg:x="445543" fg:w="2374"/><text x="19.4353%" y="367.50"></text></g><g><title>find_extent_buffer_nolock (4,079 samples, 0.18%)</title><rect x="19.1121%" y="373" width="0.1756%" height="15" fill="rgb(213,23,19)" fg:x="443844" fg:w="4079"/><text x="19.3621%" y="383.50"></text></g><g><title>mark_page_accessed (1,244 samples, 0.05%)</title><rect x="19.2878%" y="373" width="0.0536%" height="15" fill="rgb(217,75,12)" fg:x="447923" fg:w="1244"/><text x="19.5378%" y="383.50"></text></g><g><title>find_extent_buffer (5,844 samples, 0.25%)</title><rect x="19.0921%" y="389" width="0.2516%" height="15" fill="rgb(224,159,17)" fg:x="443379" fg:w="5844"/><text x="19.3421%" y="399.50"></text></g><g><title>read_block_for_search (9,248 samples, 0.40%)</title><rect x="18.9534%" y="405" width="0.3982%" height="15" fill="rgb(217,118,1)" fg:x="440158" fg:w="9248"/><text x="19.2034%" y="415.50"></text></g><g><title>btrfs_find_create_tree_block (247 samples, 0.01%)</title><rect x="19.3583%" y="357" width="0.0106%" height="15" fill="rgb(232,180,48)" fg:x="449562" fg:w="247"/><text x="19.6083%" y="367.50"></text></g><g><title>btrfs_init_new_buffer (351 samples, 0.02%)</title><rect x="19.3577%" y="373" width="0.0151%" height="15" fill="rgb(230,27,33)" fg:x="449548" fg:w="351"/><text x="19.6077%" y="383.50"></text></g><g><title>btrfs_alloc_tree_block (560 samples, 0.02%)</title><rect x="19.3540%" y="389" width="0.0241%" height="15" fill="rgb(205,31,21)" fg:x="449462" fg:w="560"/><text x="19.6040%" y="399.50"></text></g><g><title>copy_for_split (301 samples, 0.01%)</title><rect x="19.3824%" y="389" width="0.0130%" height="15" fill="rgb(253,59,4)" fg:x="450120" fg:w="301"/><text x="19.6324%" y="399.50"></text></g><g><title>btrfs_get_token_32 (279 samples, 0.01%)</title><rect x="19.4030%" y="357" width="0.0120%" height="15" fill="rgb(224,201,9)" fg:x="450598" fg:w="279"/><text x="19.6530%" y="367.50"></text></g><g><title>btrfs_set_token_32 (281 samples, 0.01%)</title><rect x="19.4161%" y="357" width="0.0121%" height="15" fill="rgb(229,206,30)" fg:x="450903" fg:w="281"/><text x="19.6661%" y="367.50"></text></g><g><title>__push_leaf_left (1,198 samples, 0.05%)</title><rect x="19.3962%" y="373" width="0.0516%" height="15" fill="rgb(212,67,47)" fg:x="450440" fg:w="1198"/><text x="19.6462%" y="383.50"></text></g><g><title>push_leaf_left (1,472 samples, 0.06%)</title><rect x="19.3954%" y="389" width="0.0634%" height="15" fill="rgb(211,96,50)" fg:x="450422" fg:w="1472"/><text x="19.6454%" y="399.50"></text></g><g><title>btrfs_get_token_32 (367 samples, 0.02%)</title><rect x="19.4695%" y="357" width="0.0158%" height="15" fill="rgb(252,114,18)" fg:x="452144" fg:w="367"/><text x="19.7195%" y="367.50"></text></g><g><title>btrfs_set_token_32 (374 samples, 0.02%)</title><rect x="19.4865%" y="357" width="0.0161%" height="15" fill="rgb(223,58,37)" fg:x="452537" fg:w="374"/><text x="19.7365%" y="367.50"></text></g><g><title>memmove_extent_buffer (305 samples, 0.01%)</title><rect x="19.5134%" y="357" width="0.0131%" height="15" fill="rgb(237,70,4)" fg:x="453162" fg:w="305"/><text x="19.7634%" y="367.50"></text></g><g><title>__push_leaf_right (1,554 samples, 0.07%)</title><rect x="19.4604%" y="373" width="0.0669%" height="15" fill="rgb(244,85,46)" fg:x="451931" fg:w="1554"/><text x="19.7104%" y="383.50"></text></g><g><title>btrfs_read_node_slot (270 samples, 0.01%)</title><rect x="19.5336%" y="373" width="0.0116%" height="15" fill="rgb(223,39,52)" fg:x="453632" fg:w="270"/><text x="19.7836%" y="383.50"></text></g><g><title>read_tree_block (233 samples, 0.01%)</title><rect x="19.5352%" y="357" width="0.0100%" height="15" fill="rgb(218,200,14)" fg:x="453669" fg:w="233"/><text x="19.7852%" y="367.50"></text></g><g><title>push_leaf_right (2,135 samples, 0.09%)</title><rect x="19.4588%" y="389" width="0.0919%" height="15" fill="rgb(208,171,16)" fg:x="451894" fg:w="2135"/><text x="19.7088%" y="399.50"></text></g><g><title>split_leaf (4,625 samples, 0.20%)</title><rect x="19.3516%" y="405" width="0.1992%" height="15" fill="rgb(234,200,18)" fg:x="449406" fg:w="4625"/><text x="19.6016%" y="415.50"></text></g><g><title>select_task_rq_fair (277 samples, 0.01%)</title><rect x="19.6262%" y="309" width="0.0119%" height="15" fill="rgb(228,45,11)" fg:x="455783" fg:w="277"/><text x="19.8762%" y="319.50"></text></g><g><title>ttwu_queue_wakelist (246 samples, 0.01%)</title><rect x="19.6416%" y="309" width="0.0106%" height="15" fill="rgb(237,182,11)" fg:x="456141" fg:w="246"/><text x="19.8916%" y="319.50"></text></g><g><title>try_to_wake_up (983 samples, 0.04%)</title><rect x="19.6102%" y="325" width="0.0423%" height="15" fill="rgb(241,175,49)" fg:x="455410" fg:w="983"/><text x="19.8602%" y="335.50"></text></g><g><title>rwsem_wake.isra.0 (1,307 samples, 0.06%)</title><rect x="19.5965%" y="357" width="0.0563%" height="15" fill="rgb(247,38,35)" fg:x="455092" fg:w="1307"/><text x="19.8465%" y="367.50"></text></g><g><title>wake_up_q (1,033 samples, 0.04%)</title><rect x="19.6083%" y="341" width="0.0445%" height="15" fill="rgb(228,39,49)" fg:x="455366" fg:w="1033"/><text x="19.8583%" y="351.50"></text></g><g><title>btrfs_tree_read_unlock (1,383 samples, 0.06%)</title><rect x="19.5933%" y="389" width="0.0596%" height="15" fill="rgb(226,101,26)" fg:x="455018" fg:w="1383"/><text x="19.8433%" y="399.50"></text></g><g><title>up_read (1,333 samples, 0.06%)</title><rect x="19.5954%" y="373" width="0.0574%" height="15" fill="rgb(206,141,19)" fg:x="455068" fg:w="1333"/><text x="19.8454%" y="383.50"></text></g><g><title>select_task_rq_fair (267 samples, 0.01%)</title><rect x="19.6845%" y="309" width="0.0115%" height="15" fill="rgb(211,200,13)" fg:x="457137" fg:w="267"/><text x="19.9345%" y="319.50"></text></g><g><title>try_to_wake_up (1,116 samples, 0.05%)</title><rect x="19.6645%" y="325" width="0.0481%" height="15" fill="rgb(241,121,6)" fg:x="456672" fg:w="1116"/><text x="19.9145%" y="335.50"></text></g><g><title>btrfs_tree_unlock (1,396 samples, 0.06%)</title><rect x="19.6528%" y="389" width="0.0601%" height="15" fill="rgb(234,221,29)" fg:x="456401" fg:w="1396"/><text x="19.9028%" y="399.50"></text></g><g><title>up_write (1,355 samples, 0.06%)</title><rect x="19.6546%" y="373" width="0.0583%" height="15" fill="rgb(229,136,5)" fg:x="456442" fg:w="1355"/><text x="19.9046%" y="383.50"></text></g><g><title>rwsem_wake.isra.0 (1,351 samples, 0.06%)</title><rect x="19.6548%" y="357" width="0.0582%" height="15" fill="rgb(238,36,11)" fg:x="456446" fg:w="1351"/><text x="19.9048%" y="367.50"></text></g><g><title>wake_up_q (1,155 samples, 0.05%)</title><rect x="19.6632%" y="341" width="0.0497%" height="15" fill="rgb(251,55,41)" fg:x="456642" fg:w="1155"/><text x="19.9132%" y="351.50"></text></g><g><title>up_read (705 samples, 0.03%)</title><rect x="19.7130%" y="389" width="0.0304%" height="15" fill="rgb(242,34,40)" fg:x="457797" fg:w="705"/><text x="19.9630%" y="399.50"></text></g><g><title>btrfs_search_slot (48,012 samples, 2.07%)</title><rect x="17.6842%" y="421" width="2.0674%" height="15" fill="rgb(215,42,17)" fg:x="410682" fg:w="48012"/><text x="17.9342%" y="431.50">b..</text></g><g><title>unlock_up (4,652 samples, 0.20%)</title><rect x="19.5513%" y="405" width="0.2003%" height="15" fill="rgb(207,44,46)" fg:x="454042" fg:w="4652"/><text x="19.8013%" y="415.50"></text></g><g><title>btrfs_set_token_32 (675 samples, 0.03%)</title><rect x="19.7516%" y="421" width="0.0291%" height="15" fill="rgb(211,206,28)" fg:x="458694" fg:w="675"/><text x="20.0016%" y="431.50"></text></g><g><title>btrfs_get_32 (279 samples, 0.01%)</title><rect x="19.9020%" y="405" width="0.0120%" height="15" fill="rgb(237,167,16)" fg:x="462188" fg:w="279"/><text x="20.1520%" y="415.50"></text></g><g><title>btrfs_get_token_32 (7,403 samples, 0.32%)</title><rect x="19.9140%" y="405" width="0.3188%" height="15" fill="rgb(233,66,6)" fg:x="462467" fg:w="7403"/><text x="20.1640%" y="415.50"></text></g><g><title>check_setget_bounds.isra.0 (504 samples, 0.02%)</title><rect x="20.2111%" y="389" width="0.0217%" height="15" fill="rgb(246,123,29)" fg:x="469366" fg:w="504"/><text x="20.4611%" y="399.50"></text></g><g><title>btrfs_get_32 (545 samples, 0.02%)</title><rect x="20.2479%" y="373" width="0.0235%" height="15" fill="rgb(209,62,40)" fg:x="470221" fg:w="545"/><text x="20.4979%" y="383.50"></text></g><g><title>btrfs_leaf_free_space (979 samples, 0.04%)</title><rect x="20.2328%" y="405" width="0.0422%" height="15" fill="rgb(218,4,25)" fg:x="469870" fg:w="979"/><text x="20.4828%" y="415.50"></text></g><g><title>leaf_space_used (810 samples, 0.03%)</title><rect x="20.2401%" y="389" width="0.0349%" height="15" fill="rgb(253,91,49)" fg:x="470039" fg:w="810"/><text x="20.4901%" y="399.50"></text></g><g><title>btrfs_mark_buffer_dirty (372 samples, 0.02%)</title><rect x="20.2750%" y="405" width="0.0160%" height="15" fill="rgb(228,155,29)" fg:x="470849" fg:w="372"/><text x="20.5250%" y="415.50"></text></g><g><title>btrfs_set_token_32 (6,874 samples, 0.30%)</title><rect x="20.2910%" y="405" width="0.2960%" height="15" fill="rgb(243,57,37)" fg:x="471221" fg:w="6874"/><text x="20.5410%" y="415.50"></text></g><g><title>check_setget_bounds.isra.0 (538 samples, 0.02%)</title><rect x="20.5638%" y="389" width="0.0232%" height="15" fill="rgb(244,167,17)" fg:x="477557" fg:w="538"/><text x="20.8138%" y="399.50"></text></g><g><title>btrfs_unlock_up_safe (327 samples, 0.01%)</title><rect x="20.5870%" y="405" width="0.0141%" height="15" fill="rgb(207,181,38)" fg:x="478095" fg:w="327"/><text x="20.8370%" y="415.50"></text></g><g><title>check_setget_bounds.isra.0 (2,179 samples, 0.09%)</title><rect x="20.6011%" y="405" width="0.0938%" height="15" fill="rgb(211,8,23)" fg:x="478422" fg:w="2179"/><text x="20.8511%" y="415.50"></text></g><g><title>copy_pages (340 samples, 0.01%)</title><rect x="20.6949%" y="405" width="0.0146%" height="15" fill="rgb(235,11,44)" fg:x="480601" fg:w="340"/><text x="20.9449%" y="415.50"></text></g><g><title>copy_pages (459 samples, 0.02%)</title><rect x="20.7250%" y="389" width="0.0198%" height="15" fill="rgb(248,18,52)" fg:x="481301" fg:w="459"/><text x="20.9750%" y="399.50"></text></g><g><title>memcpy_extent_buffer (2,957 samples, 0.13%)</title><rect x="20.7448%" y="389" width="0.1273%" height="15" fill="rgb(208,4,7)" fg:x="481760" fg:w="2957"/><text x="20.9948%" y="399.50"></text></g><g><title>memmove (2,750 samples, 0.12%)</title><rect x="20.7537%" y="373" width="0.1184%" height="15" fill="rgb(240,17,39)" fg:x="481967" fg:w="2750"/><text x="21.0037%" y="383.50"></text></g><g><title>memmove_extent_buffer (5,522 samples, 0.24%)</title><rect x="20.7122%" y="405" width="0.2378%" height="15" fill="rgb(207,170,3)" fg:x="481003" fg:w="5522"/><text x="20.9622%" y="415.50"></text></g><g><title>memmove (1,808 samples, 0.08%)</title><rect x="20.8721%" y="389" width="0.0779%" height="15" fill="rgb(236,100,52)" fg:x="484717" fg:w="1808"/><text x="21.1221%" y="399.50"></text></g><g><title>setup_items_for_insert (27,226 samples, 1.17%)</title><rect x="19.7938%" y="421" width="1.1724%" height="15" fill="rgb(246,78,51)" fg:x="459675" fg:w="27226"/><text x="20.0438%" y="431.50"></text></g><g><title>write_extent_buffer (357 samples, 0.02%)</title><rect x="20.9508%" y="405" width="0.0154%" height="15" fill="rgb(211,17,15)" fg:x="486544" fg:w="357"/><text x="21.2008%" y="415.50"></text></g><g><title>btrfs_insert_empty_items (78,106 samples, 3.36%)</title><rect x="17.6079%" y="437" width="3.3633%" height="15" fill="rgb(209,59,46)" fg:x="408912" fg:w="78106"/><text x="17.8579%" y="447.50">btr..</text></g><g><title>insert_with_overflow (78,864 samples, 3.40%)</title><rect x="17.5811%" y="453" width="3.3959%" height="15" fill="rgb(210,92,25)" fg:x="408288" fg:w="78864"/><text x="17.8311%" y="463.50">ins..</text></g><g><title>memcpy_erms (258 samples, 0.01%)</title><rect x="20.9787%" y="453" width="0.0111%" height="15" fill="rgb(238,174,52)" fg:x="487191" fg:w="258"/><text x="21.2287%" y="463.50"></text></g><g><title>btrfs_insert_dir_item (94,325 samples, 4.06%)</title><rect x="16.9640%" y="469" width="4.0617%" height="15" fill="rgb(230,73,7)" fg:x="393957" fg:w="94325"/><text x="17.2140%" y="479.50">btrf..</text></g><g><title>write_extent_buffer (711 samples, 0.03%)</title><rect x="20.9950%" y="453" width="0.0306%" height="15" fill="rgb(243,124,40)" fg:x="487571" fg:w="711"/><text x="21.2450%" y="463.50"></text></g><g><title>_raw_spin_lock (385 samples, 0.02%)</title><rect x="21.0415%" y="453" width="0.0166%" height="15" fill="rgb(244,170,11)" fg:x="488649" fg:w="385"/><text x="21.2915%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (476 samples, 0.02%)</title><rect x="21.0622%" y="437" width="0.0205%" height="15" fill="rgb(207,114,54)" fg:x="489132" fg:w="476"/><text x="21.3122%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (235 samples, 0.01%)</title><rect x="21.0916%" y="437" width="0.0101%" height="15" fill="rgb(205,42,20)" fg:x="489814" fg:w="235"/><text x="21.3416%" y="447.50"></text></g><g><title>fill_stack_inode_item (485 samples, 0.02%)</title><rect x="21.1017%" y="437" width="0.0209%" height="15" fill="rgb(230,30,28)" fg:x="490049" fg:w="485"/><text x="21.3517%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (1,918 samples, 0.08%)</title><rect x="21.0582%" y="453" width="0.0826%" height="15" fill="rgb(205,73,54)" fg:x="489037" fg:w="1918"/><text x="21.3082%" y="463.50"></text></g><g><title>btrfs_update_root_times (372 samples, 0.02%)</title><rect x="21.1411%" y="453" width="0.0160%" height="15" fill="rgb(254,227,23)" fg:x="490963" fg:w="372"/><text x="21.3911%" y="463.50"></text></g><g><title>btrfs_update_inode (3,101 samples, 0.13%)</title><rect x="21.0326%" y="469" width="0.1335%" height="15" fill="rgb(228,202,34)" fg:x="488444" fg:w="3101"/><text x="21.2826%" y="479.50"></text></g><g><title>btrfs_add_link (99,348 samples, 4.28%)</title><rect x="16.9153%" y="485" width="4.2780%" height="15" fill="rgb(222,225,37)" fg:x="392826" fg:w="99348"/><text x="17.1653%" y="495.50">btrfs..</text></g><g><title>__schedule (243 samples, 0.01%)</title><rect x="21.2159%" y="437" width="0.0105%" height="15" fill="rgb(221,14,54)" fg:x="492701" fg:w="243"/><text x="21.4659%" y="447.50"></text></g><g><title>__cond_resched (260 samples, 0.01%)</title><rect x="21.2152%" y="453" width="0.0112%" height="15" fill="rgb(254,102,2)" fg:x="492685" fg:w="260"/><text x="21.4652%" y="463.50"></text></g><g><title>kmem_cache_alloc (740 samples, 0.03%)</title><rect x="21.1984%" y="469" width="0.0319%" height="15" fill="rgb(232,104,17)" fg:x="492294" fg:w="740"/><text x="21.4484%" y="479.50"></text></g><g><title>btrfs_alloc_path (1,045 samples, 0.04%)</title><rect x="21.1932%" y="485" width="0.0450%" height="15" fill="rgb(250,220,14)" fg:x="492174" fg:w="1045"/><text x="21.4432%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (335 samples, 0.01%)</title><rect x="21.2524%" y="469" width="0.0144%" height="15" fill="rgb(241,158,9)" fg:x="493547" fg:w="335"/><text x="21.5024%" y="479.50"></text></g><g><title>_raw_spin_lock (414 samples, 0.02%)</title><rect x="21.3025%" y="389" width="0.0178%" height="15" fill="rgb(246,9,43)" fg:x="494711" fg:w="414"/><text x="21.5525%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (408 samples, 0.02%)</title><rect x="21.3027%" y="373" width="0.0176%" height="15" fill="rgb(206,73,33)" fg:x="494717" fg:w="408"/><text x="21.5527%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (408 samples, 0.02%)</title><rect x="21.3027%" y="357" width="0.0176%" height="15" fill="rgb(222,79,8)" fg:x="494717" fg:w="408"/><text x="21.5527%" y="367.50"></text></g><g><title>select_idle_sibling (649 samples, 0.03%)</title><rect x="21.3558%" y="325" width="0.0279%" height="15" fill="rgb(234,8,54)" fg:x="495950" fg:w="649"/><text x="21.6058%" y="335.50"></text></g><g><title>select_idle_cpu (309 samples, 0.01%)</title><rect x="21.3705%" y="309" width="0.0133%" height="15" fill="rgb(209,134,38)" fg:x="496290" fg:w="309"/><text x="21.6205%" y="319.50"></text></g><g><title>select_task_rq_fair (748 samples, 0.03%)</title><rect x="21.3529%" y="341" width="0.0322%" height="15" fill="rgb(230,127,29)" fg:x="495881" fg:w="748"/><text x="21.6029%" y="351.50"></text></g><g><title>enqueue_task_fair (262 samples, 0.01%)</title><rect x="21.3908%" y="309" width="0.0113%" height="15" fill="rgb(242,44,41)" fg:x="496761" fg:w="262"/><text x="21.6408%" y="319.50"></text></g><g><title>enqueue_task (401 samples, 0.02%)</title><rect x="21.3903%" y="325" width="0.0173%" height="15" fill="rgb(222,56,43)" fg:x="496750" fg:w="401"/><text x="21.6403%" y="335.50"></text></g><g><title>ttwu_do_activate (591 samples, 0.03%)</title><rect x="21.3898%" y="341" width="0.0254%" height="15" fill="rgb(238,39,47)" fg:x="496738" fg:w="591"/><text x="21.6398%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (299 samples, 0.01%)</title><rect x="21.4153%" y="341" width="0.0129%" height="15" fill="rgb(226,79,43)" fg:x="497331" fg:w="299"/><text x="21.6653%" y="351.50"></text></g><g><title>try_to_wake_up (2,490 samples, 0.11%)</title><rect x="21.3226%" y="357" width="0.1072%" height="15" fill="rgb(242,105,53)" fg:x="495177" fg:w="2490"/><text x="21.5726%" y="367.50"></text></g><g><title>insert_work (2,552 samples, 0.11%)</title><rect x="21.3203%" y="389" width="0.1099%" height="15" fill="rgb(251,132,46)" fg:x="495125" fg:w="2552"/><text x="21.5703%" y="399.50"></text></g><g><title>wake_up_process (2,545 samples, 0.11%)</title><rect x="21.3206%" y="373" width="0.1096%" height="15" fill="rgb(231,77,14)" fg:x="495132" fg:w="2545"/><text x="21.5706%" y="383.50"></text></g><g><title>__queue_work (3,235 samples, 0.14%)</title><rect x="21.2911%" y="405" width="0.1393%" height="15" fill="rgb(240,135,9)" fg:x="494446" fg:w="3235"/><text x="21.5411%" y="415.50"></text></g><g><title>btrfs_queue_work (3,766 samples, 0.16%)</title><rect x="21.2815%" y="437" width="0.1622%" height="15" fill="rgb(248,109,14)" fg:x="494224" fg:w="3766"/><text x="21.5315%" y="447.50"></text></g><g><title>queue_work_on (3,609 samples, 0.16%)</title><rect x="21.2883%" y="421" width="0.1554%" height="15" fill="rgb(227,146,52)" fg:x="494381" fg:w="3609"/><text x="21.5383%" y="431.50"></text></g><g><title>kmem_cache_alloc_trace (233 samples, 0.01%)</title><rect x="21.4437%" y="437" width="0.0100%" height="15" fill="rgb(232,54,3)" fg:x="497990" fg:w="233"/><text x="21.6937%" y="447.50"></text></g><g><title>btrfs_wq_run_delayed_node (4,074 samples, 0.18%)</title><rect x="21.2801%" y="453" width="0.1754%" height="15" fill="rgb(229,201,43)" fg:x="494191" fg:w="4074"/><text x="21.5301%" y="463.50"></text></g><g><title>btrfs_balance_delayed_items (4,492 samples, 0.19%)</title><rect x="21.2668%" y="469" width="0.1934%" height="15" fill="rgb(252,161,33)" fg:x="493882" fg:w="4492"/><text x="21.5168%" y="479.50"></text></g><g><title>btrfs_workqueue_normal_congested (295 samples, 0.01%)</title><rect x="21.4602%" y="469" width="0.0127%" height="15" fill="rgb(226,146,40)" fg:x="498374" fg:w="295"/><text x="21.7102%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (5,370 samples, 0.23%)</title><rect x="21.2420%" y="485" width="0.2312%" height="15" fill="rgb(219,47,25)" fg:x="493306" fg:w="5370"/><text x="21.4920%" y="495.50"></text></g><g><title>_raw_spin_lock (670 samples, 0.03%)</title><rect x="21.5416%" y="437" width="0.0289%" height="15" fill="rgb(250,135,13)" fg:x="500263" fg:w="670"/><text x="21.7916%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (344 samples, 0.01%)</title><rect x="21.5850%" y="389" width="0.0148%" height="15" fill="rgb(219,229,18)" fg:x="501271" fg:w="344"/><text x="21.8350%" y="399.50"></text></g><g><title>_raw_spin_lock (353 samples, 0.02%)</title><rect x="21.5846%" y="421" width="0.0152%" height="15" fill="rgb(217,152,27)" fg:x="501263" fg:w="353"/><text x="21.8346%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (345 samples, 0.01%)</title><rect x="21.5850%" y="405" width="0.0149%" height="15" fill="rgb(225,71,47)" fg:x="501271" fg:w="345"/><text x="21.8350%" y="415.50"></text></g><g><title>btrfs_block_rsv_release (858 samples, 0.04%)</title><rect x="21.5705%" y="437" width="0.0369%" height="15" fill="rgb(220,139,14)" fg:x="500935" fg:w="858"/><text x="21.8205%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (1,624 samples, 0.07%)</title><rect x="21.5399%" y="453" width="0.0699%" height="15" fill="rgb(247,54,32)" fg:x="500225" fg:w="1624"/><text x="21.7899%" y="463.50"></text></g><g><title>kmem_cache_free (788 samples, 0.03%)</title><rect x="21.6098%" y="453" width="0.0339%" height="15" fill="rgb(252,131,39)" fg:x="501849" fg:w="788"/><text x="21.8598%" y="463.50"></text></g><g><title>__btrfs_end_transaction (3,922 samples, 0.17%)</title><rect x="21.4756%" y="469" width="0.1689%" height="15" fill="rgb(210,108,39)" fg:x="498731" fg:w="3922"/><text x="21.7256%" y="479.50"></text></g><g><title>btrfs_end_transaction (4,199 samples, 0.18%)</title><rect x="21.4754%" y="485" width="0.1808%" height="15" fill="rgb(205,23,29)" fg:x="498726" fg:w="4199"/><text x="21.7254%" y="495.50"></text></g><g><title>_raw_spin_lock (361 samples, 0.02%)</title><rect x="21.6758%" y="437" width="0.0155%" height="15" fill="rgb(246,139,46)" fg:x="503381" fg:w="361"/><text x="21.9258%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,455 samples, 0.06%)</title><rect x="21.6915%" y="437" width="0.0627%" height="15" fill="rgb(250,81,26)" fg:x="503745" fg:w="1455"/><text x="21.9415%" y="447.50"></text></g><g><title>release_extent_buffer (323 samples, 0.01%)</title><rect x="21.7402%" y="421" width="0.0139%" height="15" fill="rgb(214,104,7)" fg:x="504877" fg:w="323"/><text x="21.9902%" y="431.50"></text></g><g><title>free_extent_buffer (1,865 samples, 0.08%)</title><rect x="21.6758%" y="453" width="0.0803%" height="15" fill="rgb(233,189,8)" fg:x="503381" fg:w="1865"/><text x="21.9258%" y="463.50"></text></g><g><title>btrfs_release_path (2,428 samples, 0.10%)</title><rect x="21.6595%" y="469" width="0.1046%" height="15" fill="rgb(228,141,17)" fg:x="503001" fg:w="2428"/><text x="21.9095%" y="479.50"></text></g><g><title>kmem_cache_free (709 samples, 0.03%)</title><rect x="21.7671%" y="469" width="0.0305%" height="15" fill="rgb(247,157,1)" fg:x="505500" fg:w="709"/><text x="22.0171%" y="479.50"></text></g><g><title>btrfs_free_path (3,300 samples, 0.14%)</title><rect x="21.6562%" y="485" width="0.1421%" height="15" fill="rgb(249,225,5)" fg:x="502925" fg:w="3300"/><text x="21.9062%" y="495.50"></text></g><g><title>btrfs_get_free_objectid (475 samples, 0.02%)</title><rect x="21.8041%" y="485" width="0.0205%" height="15" fill="rgb(242,55,13)" fg:x="506361" fg:w="475"/><text x="22.0541%" y="495.50"></text></g><g><title>mutex_lock (416 samples, 0.02%)</title><rect x="21.8067%" y="469" width="0.0179%" height="15" fill="rgb(230,49,50)" fg:x="506420" fg:w="416"/><text x="22.0567%" y="479.50"></text></g><g><title>btrfs_init_acl (260 samples, 0.01%)</title><rect x="21.8246%" y="485" width="0.0112%" height="15" fill="rgb(241,111,38)" fg:x="506836" fg:w="260"/><text x="22.0746%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (3,195 samples, 0.14%)</title><rect x="21.9831%" y="437" width="0.1376%" height="15" fill="rgb(252,155,4)" fg:x="510518" fg:w="3195"/><text x="22.2331%" y="447.50"></text></g><g><title>btrfs_bin_search (3,320 samples, 0.14%)</title><rect x="21.9779%" y="453" width="0.1430%" height="15" fill="rgb(212,69,32)" fg:x="510396" fg:w="3320"/><text x="22.2279%" y="463.50"></text></g><g><title>btrfs_get_32 (337 samples, 0.01%)</title><rect x="22.1422%" y="421" width="0.0145%" height="15" fill="rgb(243,107,47)" fg:x="514212" fg:w="337"/><text x="22.3922%" y="431.50"></text></g><g><title>btrfs_leaf_free_space (691 samples, 0.03%)</title><rect x="22.1295%" y="453" width="0.0298%" height="15" fill="rgb(247,130,12)" fg:x="513918" fg:w="691"/><text x="22.3795%" y="463.50"></text></g><g><title>leaf_space_used (522 samples, 0.02%)</title><rect x="22.1368%" y="437" width="0.0225%" height="15" fill="rgb(233,74,16)" fg:x="514087" fg:w="522"/><text x="22.3868%" y="447.50"></text></g><g><title>update_curr (545 samples, 0.02%)</title><rect x="22.2558%" y="309" width="0.0235%" height="15" fill="rgb(208,58,18)" fg:x="516849" fg:w="545"/><text x="22.5058%" y="319.50"></text></g><g><title>update_load_avg (402 samples, 0.02%)</title><rect x="22.2792%" y="309" width="0.0173%" height="15" fill="rgb(242,225,1)" fg:x="517394" fg:w="402"/><text x="22.5292%" y="319.50"></text></g><g><title>dequeue_entity (1,440 samples, 0.06%)</title><rect x="22.2368%" y="325" width="0.0620%" height="15" fill="rgb(249,39,40)" fg:x="516409" fg:w="1440"/><text x="22.4868%" y="335.50"></text></g><g><title>dequeue_task_fair (1,834 samples, 0.08%)</title><rect x="22.2291%" y="341" width="0.0790%" height="15" fill="rgb(207,72,44)" fg:x="516231" fg:w="1834"/><text x="22.4791%" y="351.50"></text></g><g><title>dequeue_task (1,924 samples, 0.08%)</title><rect x="22.2274%" y="357" width="0.0828%" height="15" fill="rgb(215,193,12)" fg:x="516191" fg:w="1924"/><text x="22.4774%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (893 samples, 0.04%)</title><rect x="22.3215%" y="341" width="0.0385%" height="15" fill="rgb(248,41,39)" fg:x="518375" fg:w="893"/><text x="22.5715%" y="351.50"></text></g><g><title>x86_pmu_enable (806 samples, 0.03%)</title><rect x="22.3252%" y="325" width="0.0347%" height="15" fill="rgb(253,85,4)" fg:x="518462" fg:w="806"/><text x="22.5752%" y="335.50"></text></g><g><title>intel_pmu_enable_all (791 samples, 0.03%)</title><rect x="22.3259%" y="309" width="0.0341%" height="15" fill="rgb(243,70,31)" fg:x="518477" fg:w="791"/><text x="22.5759%" y="319.50"></text></g><g><title>native_write_msr (772 samples, 0.03%)</title><rect x="22.3267%" y="293" width="0.0332%" height="15" fill="rgb(253,195,26)" fg:x="518496" fg:w="772"/><text x="22.5767%" y="303.50"></text></g><g><title>finish_task_switch.isra.0 (1,341 samples, 0.06%)</title><rect x="22.3105%" y="357" width="0.0577%" height="15" fill="rgb(243,42,11)" fg:x="518120" fg:w="1341"/><text x="22.5605%" y="367.50"></text></g><g><title>pick_next_task_fair (391 samples, 0.02%)</title><rect x="22.3731%" y="341" width="0.0168%" height="15" fill="rgb(239,66,17)" fg:x="519574" fg:w="391"/><text x="22.6231%" y="351.50"></text></g><g><title>pick_next_task_idle (290 samples, 0.01%)</title><rect x="22.3899%" y="341" width="0.0125%" height="15" fill="rgb(217,132,21)" fg:x="519965" fg:w="290"/><text x="22.6399%" y="351.50"></text></g><g><title>set_next_task_idle (236 samples, 0.01%)</title><rect x="22.3923%" y="325" width="0.0102%" height="15" fill="rgb(252,202,21)" fg:x="520019" fg:w="236"/><text x="22.6423%" y="335.50"></text></g><g><title>pick_next_task (922 samples, 0.04%)</title><rect x="22.3694%" y="357" width="0.0397%" height="15" fill="rgb(233,98,36)" fg:x="519489" fg:w="922"/><text x="22.6194%" y="367.50"></text></g><g><title>__perf_event_task_sched_out (358 samples, 0.02%)</title><rect x="22.4132%" y="341" width="0.0154%" height="15" fill="rgb(216,153,54)" fg:x="520505" fg:w="358"/><text x="22.6632%" y="351.50"></text></g><g><title>prepare_task_switch (421 samples, 0.02%)</title><rect x="22.4108%" y="357" width="0.0181%" height="15" fill="rgb(250,99,7)" fg:x="520449" fg:w="421"/><text x="22.6608%" y="367.50"></text></g><g><title>psi_group_change (987 samples, 0.04%)</title><rect x="22.4415%" y="341" width="0.0425%" height="15" fill="rgb(207,56,50)" fg:x="521162" fg:w="987"/><text x="22.6915%" y="351.50"></text></g><g><title>psi_task_switch (1,300 samples, 0.06%)</title><rect x="22.4308%" y="357" width="0.0560%" height="15" fill="rgb(244,61,34)" fg:x="520913" fg:w="1300"/><text x="22.6808%" y="367.50"></text></g><g><title>__schedule (6,571 samples, 0.28%)</title><rect x="22.2120%" y="373" width="0.2830%" height="15" fill="rgb(241,50,38)" fg:x="515832" fg:w="6571"/><text x="22.4620%" y="383.50"></text></g><g><title>schedule (6,667 samples, 0.29%)</title><rect x="22.2106%" y="389" width="0.2871%" height="15" fill="rgb(212,166,30)" fg:x="515801" fg:w="6667"/><text x="22.4606%" y="399.50"></text></g><g><title>rwsem_down_read_slowpath (7,512 samples, 0.32%)</title><rect x="22.1798%" y="405" width="0.3235%" height="15" fill="rgb(249,127,32)" fg:x="515084" fg:w="7512"/><text x="22.4298%" y="415.50"></text></g><g><title>down_read (7,844 samples, 0.34%)</title><rect x="22.1661%" y="421" width="0.3378%" height="15" fill="rgb(209,103,0)" fg:x="514766" fg:w="7844"/><text x="22.4161%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (7,919 samples, 0.34%)</title><rect x="22.1637%" y="437" width="0.3410%" height="15" fill="rgb(238,209,51)" fg:x="514711" fg:w="7919"/><text x="22.4137%" y="447.50"></text></g><g><title>btrfs_root_node (560 samples, 0.02%)</title><rect x="22.5047%" y="437" width="0.0241%" height="15" fill="rgb(237,56,23)" fg:x="522630" fg:w="560"/><text x="22.7547%" y="447.50"></text></g><g><title>btrfs_read_lock_root_node (8,570 samples, 0.37%)</title><rect x="22.1604%" y="453" width="0.3690%" height="15" fill="rgb(215,153,46)" fg:x="514635" fg:w="8570"/><text x="22.4104%" y="463.50"></text></g><g><title>osq_lock (7,505 samples, 0.32%)</title><rect x="22.7408%" y="373" width="0.3232%" height="15" fill="rgb(224,49,31)" fg:x="528113" fg:w="7505"/><text x="22.9908%" y="383.50"></text></g><g><title>rwsem_spin_on_owner (9,136 samples, 0.39%)</title><rect x="23.0747%" y="373" width="0.3934%" height="15" fill="rgb(250,18,42)" fg:x="535867" fg:w="9136"/><text x="23.3247%" y="383.50"></text></g><g><title>rwsem_optimistic_spin (20,565 samples, 0.89%)</title><rect x="22.5858%" y="389" width="0.8855%" height="15" fill="rgb(215,176,39)" fg:x="524514" fg:w="20565"/><text x="22.8358%" y="399.50"></text></g><g><title>dequeue_entity (260 samples, 0.01%)</title><rect x="23.4790%" y="325" width="0.0112%" height="15" fill="rgb(223,77,29)" fg:x="545257" fg:w="260"/><text x="23.7290%" y="335.50"></text></g><g><title>dequeue_task_fair (326 samples, 0.01%)</title><rect x="23.4776%" y="341" width="0.0140%" height="15" fill="rgb(234,94,52)" fg:x="545224" fg:w="326"/><text x="23.7276%" y="351.50"></text></g><g><title>dequeue_task (346 samples, 0.01%)</title><rect x="23.4772%" y="357" width="0.0149%" height="15" fill="rgb(220,154,50)" fg:x="545214" fg:w="346"/><text x="23.7272%" y="367.50"></text></g><g><title>finish_task_switch.isra.0 (239 samples, 0.01%)</title><rect x="23.4922%" y="357" width="0.0103%" height="15" fill="rgb(212,11,10)" fg:x="545562" fg:w="239"/><text x="23.7422%" y="367.50"></text></g><g><title>psi_task_switch (256 samples, 0.01%)</title><rect x="23.5129%" y="357" width="0.0110%" height="15" fill="rgb(205,166,19)" fg:x="546044" fg:w="256"/><text x="23.7629%" y="367.50"></text></g><g><title>__schedule (1,207 samples, 0.05%)</title><rect x="23.4736%" y="373" width="0.0520%" height="15" fill="rgb(244,198,16)" fg:x="545131" fg:w="1207"/><text x="23.7236%" y="383.50"></text></g><g><title>schedule (1,230 samples, 0.05%)</title><rect x="23.4732%" y="389" width="0.0530%" height="15" fill="rgb(219,69,12)" fg:x="545122" fg:w="1230"/><text x="23.7232%" y="399.50"></text></g><g><title>rwsem_down_write_slowpath (22,276 samples, 0.96%)</title><rect x="22.5672%" y="405" width="0.9592%" height="15" fill="rgb(245,30,7)" fg:x="524081" fg:w="22276"/><text x="22.8172%" y="415.50"></text></g><g><title>down_write (23,018 samples, 0.99%)</title><rect x="22.5363%" y="421" width="0.9912%" height="15" fill="rgb(218,221,48)" fg:x="523363" fg:w="23018"/><text x="22.7863%" y="431.50"></text></g><g><title>__btrfs_tree_lock (23,154 samples, 1.00%)</title><rect x="22.5314%" y="437" width="0.9970%" height="15" fill="rgb(216,66,15)" fg:x="523251" fg:w="23154"/><text x="22.7814%" y="447.50"></text></g><g><title>btrfs_tree_lock (23,191 samples, 1.00%)</title><rect x="22.5313%" y="453" width="0.9986%" height="15" fill="rgb(226,122,50)" fg:x="523249" fg:w="23191"/><text x="22.7813%" y="463.50"></text></g><g><title>update_curr (242 samples, 0.01%)</title><rect x="23.5818%" y="309" width="0.0104%" height="15" fill="rgb(239,156,16)" fg:x="547643" fg:w="242"/><text x="23.8318%" y="319.50"></text></g><g><title>dequeue_entity (683 samples, 0.03%)</title><rect x="23.5728%" y="325" width="0.0294%" height="15" fill="rgb(224,27,38)" fg:x="547436" fg:w="683"/><text x="23.8228%" y="335.50"></text></g><g><title>dequeue_task_fair (844 samples, 0.04%)</title><rect x="23.5691%" y="341" width="0.0363%" height="15" fill="rgb(224,39,27)" fg:x="547349" fg:w="844"/><text x="23.8191%" y="351.50"></text></g><g><title>dequeue_task (889 samples, 0.04%)</title><rect x="23.5679%" y="357" width="0.0383%" height="15" fill="rgb(215,92,29)" fg:x="547320" fg:w="889"/><text x="23.8179%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (370 samples, 0.02%)</title><rect x="23.6107%" y="341" width="0.0159%" height="15" fill="rgb(207,159,16)" fg:x="548315" fg:w="370"/><text x="23.8607%" y="351.50"></text></g><g><title>x86_pmu_enable (342 samples, 0.01%)</title><rect x="23.6119%" y="325" width="0.0147%" height="15" fill="rgb(238,163,47)" fg:x="548343" fg:w="342"/><text x="23.8619%" y="335.50"></text></g><g><title>intel_pmu_enable_all (336 samples, 0.01%)</title><rect x="23.6122%" y="309" width="0.0145%" height="15" fill="rgb(219,91,49)" fg:x="548349" fg:w="336"/><text x="23.8622%" y="319.50"></text></g><g><title>native_write_msr (323 samples, 0.01%)</title><rect x="23.6127%" y="293" width="0.0139%" height="15" fill="rgb(227,167,31)" fg:x="548362" fg:w="323"/><text x="23.8627%" y="303.50"></text></g><g><title>finish_task_switch.isra.0 (523 samples, 0.02%)</title><rect x="23.6062%" y="357" width="0.0225%" height="15" fill="rgb(234,80,54)" fg:x="548211" fg:w="523"/><text x="23.8562%" y="367.50"></text></g><g><title>pick_next_task (366 samples, 0.02%)</title><rect x="23.6294%" y="357" width="0.0158%" height="15" fill="rgb(212,114,2)" fg:x="548750" fg:w="366"/><text x="23.8794%" y="367.50"></text></g><g><title>psi_group_change (394 samples, 0.02%)</title><rect x="23.6589%" y="341" width="0.0170%" height="15" fill="rgb(234,50,24)" fg:x="549435" fg:w="394"/><text x="23.9089%" y="351.50"></text></g><g><title>psi_task_switch (535 samples, 0.02%)</title><rect x="23.6538%" y="357" width="0.0230%" height="15" fill="rgb(221,68,8)" fg:x="549317" fg:w="535"/><text x="23.9038%" y="367.50"></text></g><g><title>__schedule (2,938 samples, 0.13%)</title><rect x="23.5608%" y="373" width="0.1265%" height="15" fill="rgb(254,180,31)" fg:x="547157" fg:w="2938"/><text x="23.8108%" y="383.50"></text></g><g><title>schedule (2,969 samples, 0.13%)</title><rect x="23.5601%" y="389" width="0.1278%" height="15" fill="rgb(247,130,50)" fg:x="547139" fg:w="2969"/><text x="23.8101%" y="399.50"></text></g><g><title>rwsem_down_read_slowpath (3,310 samples, 0.14%)</title><rect x="23.5482%" y="405" width="0.1425%" height="15" fill="rgb(211,109,4)" fg:x="546864" fg:w="3310"/><text x="23.7982%" y="415.50"></text></g><g><title>down_read (3,668 samples, 0.16%)</title><rect x="23.5331%" y="421" width="0.1579%" height="15" fill="rgb(238,50,21)" fg:x="546512" fg:w="3668"/><text x="23.7831%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (3,763 samples, 0.16%)</title><rect x="23.5301%" y="437" width="0.1620%" height="15" fill="rgb(225,57,45)" fg:x="546443" fg:w="3763"/><text x="23.7801%" y="447.50"></text></g><g><title>btrfs_tree_read_lock (3,782 samples, 0.16%)</title><rect x="23.5300%" y="453" width="0.1629%" height="15" fill="rgb(209,196,50)" fg:x="546440" fg:w="3782"/><text x="23.7800%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (623 samples, 0.03%)</title><rect x="23.7291%" y="437" width="0.0268%" height="15" fill="rgb(242,140,13)" fg:x="551065" fg:w="623"/><text x="23.9791%" y="447.50"></text></g><g><title>verify_parent_transid (528 samples, 0.02%)</title><rect x="23.7332%" y="421" width="0.0227%" height="15" fill="rgb(217,111,7)" fg:x="551160" fg:w="528"/><text x="23.9832%" y="431.50"></text></g><g><title>btrfs_get_64 (651 samples, 0.03%)</title><rect x="23.7559%" y="437" width="0.0280%" height="15" fill="rgb(253,193,51)" fg:x="551688" fg:w="651"/><text x="24.0059%" y="447.50"></text></g><g><title>btrfs_node_key (875 samples, 0.04%)</title><rect x="23.7840%" y="437" width="0.0377%" height="15" fill="rgb(252,70,29)" fg:x="552339" fg:w="875"/><text x="24.0340%" y="447.50"></text></g><g><title>read_extent_buffer (845 samples, 0.04%)</title><rect x="23.7853%" y="421" width="0.0364%" height="15" fill="rgb(232,127,12)" fg:x="552369" fg:w="845"/><text x="24.0353%" y="431.50"></text></g><g><title>btrfs_verify_level_key (289 samples, 0.01%)</title><rect x="23.8217%" y="437" width="0.0124%" height="15" fill="rgb(211,180,21)" fg:x="553214" fg:w="289"/><text x="24.0717%" y="447.50"></text></g><g><title>__radix_tree_lookup (2,135 samples, 0.09%)</title><rect x="23.9442%" y="389" width="0.0919%" height="15" fill="rgb(229,72,13)" fg:x="556060" fg:w="2135"/><text x="24.1942%" y="399.50"></text></g><g><title>radix_tree_lookup (2,146 samples, 0.09%)</title><rect x="23.9439%" y="405" width="0.0924%" height="15" fill="rgb(240,211,49)" fg:x="556052" fg:w="2146"/><text x="24.1939%" y="415.50"></text></g><g><title>find_extent_buffer_nolock (4,027 samples, 0.17%)</title><rect x="23.8630%" y="421" width="0.1734%" height="15" fill="rgb(219,149,40)" fg:x="554175" fg:w="4027"/><text x="24.1130%" y="431.50"></text></g><g><title>mark_page_accessed (1,315 samples, 0.06%)</title><rect x="24.0364%" y="421" width="0.0566%" height="15" fill="rgb(210,127,46)" fg:x="558202" fg:w="1315"/><text x="24.2864%" y="431.50"></text></g><g><title>find_extent_buffer (5,994 samples, 0.26%)</title><rect x="23.8392%" y="437" width="0.2581%" height="15" fill="rgb(220,106,7)" fg:x="553622" fg:w="5994"/><text x="24.0892%" y="447.50"></text></g><g><title>read_block_for_search (9,300 samples, 0.40%)</title><rect x="23.7061%" y="453" width="0.4005%" height="15" fill="rgb(249,31,22)" fg:x="550530" fg:w="9300"/><text x="23.9561%" y="463.50"></text></g><g><title>btrfs_add_delayed_tree_ref (235 samples, 0.01%)</title><rect x="24.1099%" y="421" width="0.0101%" height="15" fill="rgb(253,1,49)" fg:x="559907" fg:w="235"/><text x="24.3599%" y="431.50"></text></g><g><title>add_to_page_cache_lru (304 samples, 0.01%)</title><rect x="24.1353%" y="357" width="0.0131%" height="15" fill="rgb(227,144,33)" fg:x="560497" fg:w="304"/><text x="24.3853%" y="367.50"></text></g><g><title>pagecache_get_page (571 samples, 0.02%)</title><rect x="24.1267%" y="373" width="0.0246%" height="15" fill="rgb(249,163,44)" fg:x="560299" fg:w="571"/><text x="24.3767%" y="383.50"></text></g><g><title>alloc_extent_buffer (675 samples, 0.03%)</title><rect x="24.1231%" y="389" width="0.0291%" height="15" fill="rgb(234,15,39)" fg:x="560215" fg:w="675"/><text x="24.3731%" y="399.50"></text></g><g><title>btrfs_find_create_tree_block (720 samples, 0.03%)</title><rect x="24.1224%" y="405" width="0.0310%" height="15" fill="rgb(207,66,16)" fg:x="560198" fg:w="720"/><text x="24.3724%" y="415.50"></text></g><g><title>btrfs_init_new_buffer (987 samples, 0.04%)</title><rect x="24.1204%" y="421" width="0.0425%" height="15" fill="rgb(233,112,24)" fg:x="560153" fg:w="987"/><text x="24.3704%" y="431.50"></text></g><g><title>find_free_extent (256 samples, 0.01%)</title><rect x="24.1657%" y="405" width="0.0110%" height="15" fill="rgb(230,90,22)" fg:x="561205" fg:w="256"/><text x="24.4157%" y="415.50"></text></g><g><title>btrfs_reserve_extent (328 samples, 0.01%)</title><rect x="24.1629%" y="421" width="0.0141%" height="15" fill="rgb(229,61,13)" fg:x="561140" fg:w="328"/><text x="24.4129%" y="431.50"></text></g><g><title>btrfs_alloc_tree_block (1,637 samples, 0.07%)</title><rect x="24.1084%" y="437" width="0.0705%" height="15" fill="rgb(225,57,24)" fg:x="559873" fg:w="1637"/><text x="24.3584%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (241 samples, 0.01%)</title><rect x="24.1875%" y="421" width="0.0104%" height="15" fill="rgb(208,169,48)" fg:x="561710" fg:w="241"/><text x="24.4375%" y="431.50"></text></g><g><title>copy_for_split (615 samples, 0.03%)</title><rect x="24.1827%" y="437" width="0.0265%" height="15" fill="rgb(244,218,51)" fg:x="561599" fg:w="615"/><text x="24.4327%" y="447.50"></text></g><g><title>__push_leaf_left (878 samples, 0.04%)</title><rect x="24.2105%" y="421" width="0.0378%" height="15" fill="rgb(214,148,10)" fg:x="562245" fg:w="878"/><text x="24.4605%" y="431.50"></text></g><g><title>push_leaf_left (1,151 samples, 0.05%)</title><rect x="24.2093%" y="437" width="0.0496%" height="15" fill="rgb(225,174,27)" fg:x="562217" fg:w="1151"/><text x="24.4593%" y="447.50"></text></g><g><title>split_leaf (3,570 samples, 0.15%)</title><rect x="24.1065%" y="453" width="0.1537%" height="15" fill="rgb(230,96,26)" fg:x="559830" fg:w="3570"/><text x="24.3565%" y="463.50"></text></g><g><title>select_task_rq_fair (247 samples, 0.01%)</title><rect x="24.3301%" y="357" width="0.0106%" height="15" fill="rgb(232,10,30)" fg:x="565022" fg:w="247"/><text x="24.5801%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (242 samples, 0.01%)</title><rect x="24.3448%" y="357" width="0.0104%" height="15" fill="rgb(222,8,50)" fg:x="565363" fg:w="242"/><text x="24.5948%" y="367.50"></text></g><g><title>try_to_wake_up (915 samples, 0.04%)</title><rect x="24.3163%" y="373" width="0.0394%" height="15" fill="rgb(213,81,27)" fg:x="564701" fg:w="915"/><text x="24.5663%" y="383.50"></text></g><g><title>rwsem_wake.isra.0 (1,264 samples, 0.05%)</title><rect x="24.3016%" y="405" width="0.0544%" height="15" fill="rgb(245,50,10)" fg:x="564361" fg:w="1264"/><text x="24.5516%" y="415.50"></text></g><g><title>wake_up_q (988 samples, 0.04%)</title><rect x="24.3135%" y="389" width="0.0425%" height="15" fill="rgb(216,100,18)" fg:x="564637" fg:w="988"/><text x="24.5635%" y="399.50"></text></g><g><title>btrfs_tree_read_unlock (1,333 samples, 0.06%)</title><rect x="24.2988%" y="437" width="0.0574%" height="15" fill="rgb(236,147,54)" fg:x="564294" fg:w="1333"/><text x="24.5488%" y="447.50"></text></g><g><title>up_read (1,299 samples, 0.06%)</title><rect x="24.3002%" y="421" width="0.0559%" height="15" fill="rgb(205,143,26)" fg:x="564328" fg:w="1299"/><text x="24.5502%" y="431.50"></text></g><g><title>rwsem_mark_wake (261 samples, 0.01%)</title><rect x="24.3637%" y="389" width="0.0112%" height="15" fill="rgb(236,26,9)" fg:x="565803" fg:w="261"/><text x="24.6137%" y="399.50"></text></g><g><title>select_idle_sibling (405 samples, 0.02%)</title><rect x="24.4201%" y="341" width="0.0174%" height="15" fill="rgb(221,165,53)" fg:x="567111" fg:w="405"/><text x="24.6701%" y="351.50"></text></g><g><title>select_task_rq_fair (562 samples, 0.02%)</title><rect x="24.4161%" y="357" width="0.0242%" height="15" fill="rgb(214,110,17)" fg:x="567020" fg:w="562"/><text x="24.6661%" y="367.50"></text></g><g><title>enqueue_task (268 samples, 0.01%)</title><rect x="24.4432%" y="341" width="0.0115%" height="15" fill="rgb(237,197,12)" fg:x="567648" fg:w="268"/><text x="24.6932%" y="351.50"></text></g><g><title>ttwu_do_activate (373 samples, 0.02%)</title><rect x="24.4428%" y="357" width="0.0161%" height="15" fill="rgb(205,84,17)" fg:x="567638" fg:w="373"/><text x="24.6928%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (296 samples, 0.01%)</title><rect x="24.4589%" y="357" width="0.0127%" height="15" fill="rgb(237,18,45)" fg:x="568013" fg:w="296"/><text x="24.7089%" y="367.50"></text></g><g><title>try_to_wake_up (2,094 samples, 0.09%)</title><rect x="24.3831%" y="373" width="0.0902%" height="15" fill="rgb(221,87,14)" fg:x="566253" fg:w="2094"/><text x="24.6331%" y="383.50"></text></g><g><title>rwsem_wake.isra.0 (2,673 samples, 0.12%)</title><rect x="24.3586%" y="405" width="0.1151%" height="15" fill="rgb(238,186,15)" fg:x="565684" fg:w="2673"/><text x="24.6086%" y="415.50"></text></g><g><title>wake_up_q (2,178 samples, 0.09%)</title><rect x="24.3799%" y="389" width="0.0938%" height="15" fill="rgb(208,115,11)" fg:x="566179" fg:w="2178"/><text x="24.6299%" y="399.50"></text></g><g><title>btrfs_tree_unlock (2,733 samples, 0.12%)</title><rect x="24.3562%" y="437" width="0.1177%" height="15" fill="rgb(254,175,0)" fg:x="565627" fg:w="2733"/><text x="24.6062%" y="447.50"></text></g><g><title>up_write (2,687 samples, 0.12%)</title><rect x="24.3581%" y="421" width="0.1157%" height="15" fill="rgb(227,24,42)" fg:x="565673" fg:w="2687"/><text x="24.6081%" y="431.50"></text></g><g><title>up_read (722 samples, 0.03%)</title><rect x="24.4738%" y="437" width="0.0311%" height="15" fill="rgb(223,211,37)" fg:x="568360" fg:w="722"/><text x="24.7238%" y="447.50"></text></g><g><title>btrfs_search_slot (61,275 samples, 2.64%)</title><rect x="21.8785%" y="469" width="2.6385%" height="15" fill="rgb(235,49,27)" fg:x="508089" fg:w="61275"/><text x="22.1285%" y="479.50">bt..</text></g><g><title>unlock_up (5,964 samples, 0.26%)</title><rect x="24.2603%" y="453" width="0.2568%" height="15" fill="rgb(254,97,51)" fg:x="563400" fg:w="5964"/><text x="24.5103%" y="463.50"></text></g><g><title>up_write (282 samples, 0.01%)</title><rect x="24.5049%" y="437" width="0.0121%" height="15" fill="rgb(249,51,40)" fg:x="569082" fg:w="282"/><text x="24.7549%" y="447.50"></text></g><g><title>btrfs_get_32 (264 samples, 0.01%)</title><rect x="24.5792%" y="453" width="0.0114%" height="15" fill="rgb(210,128,45)" fg:x="570807" fg:w="264"/><text x="24.8292%" y="463.50"></text></g><g><title>btrfs_get_token_32 (1,145 samples, 0.05%)</title><rect x="24.5906%" y="453" width="0.0493%" height="15" fill="rgb(224,137,50)" fg:x="571071" fg:w="1145"/><text x="24.8406%" y="463.50"></text></g><g><title>btrfs_get_32 (493 samples, 0.02%)</title><rect x="24.6535%" y="421" width="0.0212%" height="15" fill="rgb(242,15,9)" fg:x="572532" fg:w="493"/><text x="24.9035%" y="431.50"></text></g><g><title>btrfs_leaf_free_space (883 samples, 0.04%)</title><rect x="24.6399%" y="453" width="0.0380%" height="15" fill="rgb(233,187,41)" fg:x="572216" fg:w="883"/><text x="24.8899%" y="463.50"></text></g><g><title>leaf_space_used (720 samples, 0.03%)</title><rect x="24.6469%" y="437" width="0.0310%" height="15" fill="rgb(227,2,29)" fg:x="572379" fg:w="720"/><text x="24.8969%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (465 samples, 0.02%)</title><rect x="24.6779%" y="453" width="0.0200%" height="15" fill="rgb(222,70,3)" fg:x="573099" fg:w="465"/><text x="24.9279%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (261 samples, 0.01%)</title><rect x="24.6867%" y="437" width="0.0112%" height="15" fill="rgb(213,11,42)" fg:x="573303" fg:w="261"/><text x="24.9367%" y="447.50"></text></g><g><title>btrfs_set_token_32 (1,062 samples, 0.05%)</title><rect x="24.6979%" y="453" width="0.0457%" height="15" fill="rgb(225,150,9)" fg:x="573564" fg:w="1062"/><text x="24.9479%" y="463.50"></text></g><g><title>btrfs_unlock_up_safe (334 samples, 0.01%)</title><rect x="24.7437%" y="453" width="0.0144%" height="15" fill="rgb(230,162,45)" fg:x="574626" fg:w="334"/><text x="24.9937%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (332 samples, 0.01%)</title><rect x="24.7580%" y="453" width="0.0143%" height="15" fill="rgb(222,14,52)" fg:x="574960" fg:w="332"/><text x="25.0080%" y="463.50"></text></g><g><title>memcpy_extent_buffer (427 samples, 0.02%)</title><rect x="24.8043%" y="437" width="0.0184%" height="15" fill="rgb(254,198,14)" fg:x="576035" fg:w="427"/><text x="25.0543%" y="447.50"></text></g><g><title>memmove (312 samples, 0.01%)</title><rect x="24.8093%" y="421" width="0.0134%" height="15" fill="rgb(220,217,30)" fg:x="576150" fg:w="312"/><text x="25.0593%" y="431.50"></text></g><g><title>memmove_extent_buffer (1,347 samples, 0.06%)</title><rect x="24.7834%" y="453" width="0.0580%" height="15" fill="rgb(215,146,41)" fg:x="575550" fg:w="1347"/><text x="25.0334%" y="463.50"></text></g><g><title>memmove (435 samples, 0.02%)</title><rect x="24.8227%" y="437" width="0.0187%" height="15" fill="rgb(217,27,36)" fg:x="576462" fg:w="435"/><text x="25.0727%" y="447.50"></text></g><g><title>setup_items_for_insert (7,554 samples, 0.33%)</title><rect x="24.5333%" y="469" width="0.3253%" height="15" fill="rgb(219,218,39)" fg:x="569741" fg:w="7554"/><text x="24.7833%" y="479.50"></text></g><g><title>write_extent_buffer (379 samples, 0.02%)</title><rect x="24.8423%" y="453" width="0.0163%" height="15" fill="rgb(219,4,42)" fg:x="576916" fg:w="379"/><text x="25.0923%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (70,111 samples, 3.02%)</title><rect x="21.8453%" y="485" width="3.0190%" height="15" fill="rgb(249,119,36)" fg:x="507316" fg:w="70111"/><text x="22.0953%" y="495.50">btr..</text></g><g><title>btrfs_mark_buffer_dirty (470 samples, 0.02%)</title><rect x="24.8643%" y="485" width="0.0202%" height="15" fill="rgb(209,23,33)" fg:x="577427" fg:w="470"/><text x="25.1143%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (359 samples, 0.02%)</title><rect x="24.8691%" y="469" width="0.0155%" height="15" fill="rgb(211,10,0)" fg:x="577538" fg:w="359"/><text x="25.1191%" y="479.50"></text></g><g><title>_raw_spin_lock (830 samples, 0.04%)</title><rect x="24.9506%" y="469" width="0.0357%" height="15" fill="rgb(208,99,37)" fg:x="579432" fg:w="830"/><text x="25.2006%" y="479.50"></text></g><g><title>kmem_cache_alloc (355 samples, 0.02%)</title><rect x="24.9947%" y="453" width="0.0153%" height="15" fill="rgb(213,132,31)" fg:x="580455" fg:w="355"/><text x="25.2447%" y="463.50"></text></g><g><title>btrfs_alloc_path (523 samples, 0.02%)</title><rect x="24.9935%" y="469" width="0.0225%" height="15" fill="rgb(243,129,40)" fg:x="580428" fg:w="523"/><text x="25.2435%" y="479.50"></text></g><g><title>_raw_spin_lock (377 samples, 0.02%)</title><rect x="25.0367%" y="421" width="0.0162%" height="15" fill="rgb(210,66,33)" fg:x="581432" fg:w="377"/><text x="25.2867%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,440 samples, 0.06%)</title><rect x="25.0530%" y="421" width="0.0620%" height="15" fill="rgb(209,189,4)" fg:x="581810" fg:w="1440"/><text x="25.3030%" y="431.50"></text></g><g><title>release_extent_buffer (352 samples, 0.02%)</title><rect x="25.0999%" y="405" width="0.0152%" height="15" fill="rgb(214,107,37)" fg:x="582898" fg:w="352"/><text x="25.3499%" y="415.50"></text></g><g><title>free_extent_buffer (1,857 samples, 0.08%)</title><rect x="25.0367%" y="437" width="0.0800%" height="15" fill="rgb(245,88,54)" fg:x="581432" fg:w="1857"/><text x="25.2867%" y="447.50"></text></g><g><title>btrfs_release_path (2,468 samples, 0.11%)</title><rect x="25.0186%" y="453" width="0.1063%" height="15" fill="rgb(205,146,20)" fg:x="581012" fg:w="2468"/><text x="25.2686%" y="463.50"></text></g><g><title>kmem_cache_free (707 samples, 0.03%)</title><rect x="25.1300%" y="453" width="0.0304%" height="15" fill="rgb(220,161,25)" fg:x="583597" fg:w="707"/><text x="25.3800%" y="463.50"></text></g><g><title>btrfs_free_path (3,364 samples, 0.14%)</title><rect x="25.0160%" y="469" width="0.1449%" height="15" fill="rgb(215,152,15)" fg:x="580951" fg:w="3364"/><text x="25.2660%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (3,254 samples, 0.14%)</title><rect x="25.3126%" y="421" width="0.1401%" height="15" fill="rgb(233,192,44)" fg:x="587838" fg:w="3254"/><text x="25.5626%" y="431.50"></text></g><g><title>btrfs_bin_search (3,357 samples, 0.14%)</title><rect x="25.3082%" y="437" width="0.1446%" height="15" fill="rgb(240,170,46)" fg:x="587736" fg:w="3357"/><text x="25.5582%" y="447.50"></text></g><g><title>btrfs_get_32 (342 samples, 0.01%)</title><rect x="25.4778%" y="405" width="0.0147%" height="15" fill="rgb(207,104,33)" fg:x="591675" fg:w="342"/><text x="25.7278%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (743 samples, 0.03%)</title><rect x="25.4625%" y="437" width="0.0320%" height="15" fill="rgb(219,21,39)" fg:x="591320" fg:w="743"/><text x="25.7125%" y="447.50"></text></g><g><title>leaf_space_used (538 samples, 0.02%)</title><rect x="25.4713%" y="421" width="0.0232%" height="15" fill="rgb(214,133,29)" fg:x="591525" fg:w="538"/><text x="25.7213%" y="431.50"></text></g><g><title>update_curr (486 samples, 0.02%)</title><rect x="25.5904%" y="293" width="0.0209%" height="15" fill="rgb(226,93,6)" fg:x="594291" fg:w="486"/><text x="25.8404%" y="303.50"></text></g><g><title>update_load_avg (366 samples, 0.02%)</title><rect x="25.6114%" y="293" width="0.0158%" height="15" fill="rgb(252,222,34)" fg:x="594777" fg:w="366"/><text x="25.8614%" y="303.50"></text></g><g><title>dequeue_entity (1,326 samples, 0.06%)</title><rect x="25.5716%" y="309" width="0.0571%" height="15" fill="rgb(252,92,48)" fg:x="593853" fg:w="1326"/><text x="25.8216%" y="319.50"></text></g><g><title>dequeue_task_fair (1,663 samples, 0.07%)</title><rect x="25.5639%" y="325" width="0.0716%" height="15" fill="rgb(245,223,24)" fg:x="593674" fg:w="1663"/><text x="25.8139%" y="335.50"></text></g><g><title>dequeue_task (1,734 samples, 0.07%)</title><rect x="25.5619%" y="341" width="0.0747%" height="15" fill="rgb(205,176,3)" fg:x="593629" fg:w="1734"/><text x="25.8119%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (777 samples, 0.03%)</title><rect x="25.6469%" y="325" width="0.0335%" height="15" fill="rgb(235,151,15)" fg:x="595602" fg:w="777"/><text x="25.8969%" y="335.50"></text></g><g><title>x86_pmu_enable (710 samples, 0.03%)</title><rect x="25.6498%" y="309" width="0.0306%" height="15" fill="rgb(237,209,11)" fg:x="595669" fg:w="710"/><text x="25.8998%" y="319.50"></text></g><g><title>intel_pmu_enable_all (696 samples, 0.03%)</title><rect x="25.6504%" y="293" width="0.0300%" height="15" fill="rgb(243,227,24)" fg:x="595683" fg:w="696"/><text x="25.9004%" y="303.50"></text></g><g><title>native_write_msr (674 samples, 0.03%)</title><rect x="25.6513%" y="277" width="0.0290%" height="15" fill="rgb(239,193,16)" fg:x="595705" fg:w="674"/><text x="25.9013%" y="287.50"></text></g><g><title>finish_task_switch.isra.0 (1,189 samples, 0.05%)</title><rect x="25.6367%" y="341" width="0.0512%" height="15" fill="rgb(231,27,9)" fg:x="595365" fg:w="1189"/><text x="25.8867%" y="351.50"></text></g><g><title>pick_next_task_fair (337 samples, 0.01%)</title><rect x="25.6931%" y="325" width="0.0145%" height="15" fill="rgb(219,169,10)" fg:x="596674" fg:w="337"/><text x="25.9431%" y="335.50"></text></g><g><title>pick_next_task_idle (276 samples, 0.01%)</title><rect x="25.7076%" y="325" width="0.0119%" height="15" fill="rgb(244,229,43)" fg:x="597011" fg:w="276"/><text x="25.9576%" y="335.50"></text></g><g><title>pick_next_task (831 samples, 0.04%)</title><rect x="25.6892%" y="341" width="0.0358%" height="15" fill="rgb(254,38,20)" fg:x="596585" fg:w="831"/><text x="25.9392%" y="351.50"></text></g><g><title>__perf_event_task_sched_out (312 samples, 0.01%)</title><rect x="25.7288%" y="325" width="0.0134%" height="15" fill="rgb(250,47,30)" fg:x="597504" fg:w="312"/><text x="25.9788%" y="335.50"></text></g><g><title>prepare_task_switch (368 samples, 0.02%)</title><rect x="25.7267%" y="341" width="0.0158%" height="15" fill="rgb(224,124,36)" fg:x="597455" fg:w="368"/><text x="25.9767%" y="351.50"></text></g><g><title>psi_group_change (803 samples, 0.03%)</title><rect x="25.7554%" y="325" width="0.0346%" height="15" fill="rgb(246,68,51)" fg:x="598122" fg:w="803"/><text x="26.0054%" y="335.50"></text></g><g><title>psi_task_switch (1,122 samples, 0.05%)</title><rect x="25.7441%" y="341" width="0.0483%" height="15" fill="rgb(253,43,49)" fg:x="597859" fg:w="1122"/><text x="25.9941%" y="351.50"></text></g><g><title>__schedule (5,884 samples, 0.25%)</title><rect x="25.5484%" y="357" width="0.2534%" height="15" fill="rgb(219,54,36)" fg:x="593314" fg:w="5884"/><text x="25.7984%" y="367.50"></text></g><g><title>schedule (5,971 samples, 0.26%)</title><rect x="25.5459%" y="373" width="0.2571%" height="15" fill="rgb(227,133,34)" fg:x="593257" fg:w="5971"/><text x="25.7959%" y="383.50"></text></g><g><title>rwsem_down_read_slowpath (6,789 samples, 0.29%)</title><rect x="25.5163%" y="389" width="0.2923%" height="15" fill="rgb(247,227,15)" fg:x="592569" fg:w="6789"/><text x="25.7663%" y="399.50"></text></g><g><title>down_read (7,133 samples, 0.31%)</title><rect x="25.5019%" y="405" width="0.3072%" height="15" fill="rgb(229,96,14)" fg:x="592235" fg:w="7133"/><text x="25.7519%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (7,221 samples, 0.31%)</title><rect x="25.4990%" y="421" width="0.3109%" height="15" fill="rgb(220,79,17)" fg:x="592168" fg:w="7221"/><text x="25.7490%" y="431.50"></text></g><g><title>btrfs_root_node (653 samples, 0.03%)</title><rect x="25.8100%" y="421" width="0.0281%" height="15" fill="rgb(205,131,53)" fg:x="599389" fg:w="653"/><text x="26.0600%" y="431.50"></text></g><g><title>btrfs_read_lock_root_node (7,958 samples, 0.34%)</title><rect x="25.4961%" y="437" width="0.3427%" height="15" fill="rgb(209,50,29)" fg:x="592101" fg:w="7958"/><text x="25.7461%" y="447.50"></text></g><g><title>osq_lock (8,035 samples, 0.35%)</title><rect x="26.0437%" y="357" width="0.3460%" height="15" fill="rgb(245,86,46)" fg:x="604818" fg:w="8035"/><text x="26.2937%" y="367.50"></text></g><g><title>osq_unlock (241 samples, 0.01%)</title><rect x="26.3897%" y="357" width="0.0104%" height="15" fill="rgb(235,66,46)" fg:x="612853" fg:w="241"/><text x="26.6397%" y="367.50"></text></g><g><title>rwsem_spin_on_owner (8,766 samples, 0.38%)</title><rect x="26.4012%" y="357" width="0.3775%" height="15" fill="rgb(232,148,31)" fg:x="613119" fg:w="8766"/><text x="26.6512%" y="367.50"></text></g><g><title>rwsem_optimistic_spin (20,503 samples, 0.88%)</title><rect x="25.8987%" y="373" width="0.8829%" height="15" fill="rgb(217,149,8)" fg:x="601450" fg:w="20503"/><text x="26.1487%" y="383.50"></text></g><g><title>dequeue_entity (347 samples, 0.01%)</title><rect x="26.7918%" y="309" width="0.0149%" height="15" fill="rgb(209,183,11)" fg:x="622191" fg:w="347"/><text x="27.0418%" y="319.50"></text></g><g><title>dequeue_task_fair (457 samples, 0.02%)</title><rect x="26.7893%" y="325" width="0.0197%" height="15" fill="rgb(208,55,20)" fg:x="622132" fg:w="457"/><text x="27.0393%" y="335.50"></text></g><g><title>dequeue_task (476 samples, 0.02%)</title><rect x="26.7889%" y="341" width="0.0205%" height="15" fill="rgb(218,39,14)" fg:x="622123" fg:w="476"/><text x="27.0389%" y="351.50"></text></g><g><title>finish_task_switch.isra.0 (313 samples, 0.01%)</title><rect x="26.8094%" y="341" width="0.0135%" height="15" fill="rgb(216,169,33)" fg:x="622599" fg:w="313"/><text x="27.0594%" y="351.50"></text></g><g><title>psi_group_change (258 samples, 0.01%)</title><rect x="26.8427%" y="325" width="0.0111%" height="15" fill="rgb(233,80,24)" fg:x="623373" fg:w="258"/><text x="27.0927%" y="335.50"></text></g><g><title>psi_task_switch (377 samples, 0.02%)</title><rect x="26.8387%" y="341" width="0.0162%" height="15" fill="rgb(213,179,31)" fg:x="623279" fg:w="377"/><text x="27.0887%" y="351.50"></text></g><g><title>__schedule (1,678 samples, 0.07%)</title><rect x="26.7853%" y="357" width="0.0723%" height="15" fill="rgb(209,19,5)" fg:x="622039" fg:w="1678"/><text x="27.0353%" y="367.50"></text></g><g><title>schedule (1,725 samples, 0.07%)</title><rect x="26.7842%" y="373" width="0.0743%" height="15" fill="rgb(219,18,35)" fg:x="622013" fg:w="1725"/><text x="27.0342%" y="383.50"></text></g><g><title>rwsem_down_write_slowpath (22,759 samples, 0.98%)</title><rect x="25.8786%" y="389" width="0.9800%" height="15" fill="rgb(209,169,16)" fg:x="600982" fg:w="22759"/><text x="26.1286%" y="399.50"></text></g><g><title>down_write (23,529 samples, 1.01%)</title><rect x="25.8466%" y="405" width="1.0132%" height="15" fill="rgb(245,90,51)" fg:x="600239" fg:w="23529"/><text x="26.0966%" y="415.50"></text></g><g><title>__btrfs_tree_lock (23,735 samples, 1.02%)</title><rect x="25.8398%" y="421" width="1.0220%" height="15" fill="rgb(220,99,45)" fg:x="600082" fg:w="23735"/><text x="26.0898%" y="431.50"></text></g><g><title>btrfs_tree_lock (23,800 samples, 1.02%)</title><rect x="25.8398%" y="437" width="1.0248%" height="15" fill="rgb(249,89,25)" fg:x="600081" fg:w="23800"/><text x="26.0898%" y="447.50"></text></g><g><title>dequeue_entity (584 samples, 0.03%)</title><rect x="26.9056%" y="309" width="0.0251%" height="15" fill="rgb(239,193,0)" fg:x="624833" fg:w="584"/><text x="27.1556%" y="319.50"></text></g><g><title>dequeue_task_fair (746 samples, 0.03%)</title><rect x="26.9016%" y="325" width="0.0321%" height="15" fill="rgb(231,126,1)" fg:x="624741" fg:w="746"/><text x="27.1516%" y="335.50"></text></g><g><title>dequeue_task (787 samples, 0.03%)</title><rect x="26.9007%" y="341" width="0.0339%" height="15" fill="rgb(243,166,3)" fg:x="624719" fg:w="787"/><text x="27.1507%" y="351.50"></text></g><g><title>finish_task_switch.isra.0 (335 samples, 0.01%)</title><rect x="26.9347%" y="341" width="0.0144%" height="15" fill="rgb(223,22,34)" fg:x="625508" fg:w="335"/><text x="27.1847%" y="351.50"></text></g><g><title>pick_next_task (365 samples, 0.02%)</title><rect x="26.9498%" y="341" width="0.0157%" height="15" fill="rgb(251,52,51)" fg:x="625860" fg:w="365"/><text x="27.1998%" y="351.50"></text></g><g><title>psi_group_change (386 samples, 0.02%)</title><rect x="26.9790%" y="325" width="0.0166%" height="15" fill="rgb(221,165,28)" fg:x="626537" fg:w="386"/><text x="27.2290%" y="335.50"></text></g><g><title>psi_task_switch (518 samples, 0.02%)</title><rect x="26.9743%" y="341" width="0.0223%" height="15" fill="rgb(218,121,47)" fg:x="626428" fg:w="518"/><text x="27.2243%" y="351.50"></text></g><g><title>__schedule (2,600 samples, 0.11%)</title><rect x="26.8942%" y="357" width="0.1120%" height="15" fill="rgb(209,120,9)" fg:x="624569" fg:w="2600"/><text x="27.1442%" y="367.50"></text></g><g><title>schedule (2,637 samples, 0.11%)</title><rect x="26.8933%" y="373" width="0.1136%" height="15" fill="rgb(236,68,12)" fg:x="624547" fg:w="2637"/><text x="27.1433%" y="383.50"></text></g><g><title>rwsem_down_read_slowpath (2,910 samples, 0.13%)</title><rect x="26.8839%" y="389" width="0.1253%" height="15" fill="rgb(225,194,26)" fg:x="624330" fg:w="2910"/><text x="27.1339%" y="399.50"></text></g><g><title>down_read (3,309 samples, 0.14%)</title><rect x="26.8668%" y="405" width="0.1425%" height="15" fill="rgb(231,84,39)" fg:x="623932" fg:w="3309"/><text x="27.1168%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (3,367 samples, 0.14%)</title><rect x="26.8648%" y="421" width="0.1450%" height="15" fill="rgb(210,11,45)" fg:x="623885" fg:w="3367"/><text x="27.1148%" y="431.50"></text></g><g><title>btrfs_tree_read_lock (3,394 samples, 0.15%)</title><rect x="26.8646%" y="437" width="0.1461%" height="15" fill="rgb(224,54,52)" fg:x="623881" fg:w="3394"/><text x="27.1146%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (698 samples, 0.03%)</title><rect x="27.0480%" y="421" width="0.0301%" height="15" fill="rgb(238,102,14)" fg:x="628140" fg:w="698"/><text x="27.2980%" y="431.50"></text></g><g><title>verify_parent_transid (599 samples, 0.03%)</title><rect x="27.0523%" y="405" width="0.0258%" height="15" fill="rgb(243,160,52)" fg:x="628239" fg:w="599"/><text x="27.3023%" y="415.50"></text></g><g><title>btrfs_get_64 (656 samples, 0.03%)</title><rect x="27.0781%" y="421" width="0.0282%" height="15" fill="rgb(216,114,19)" fg:x="628838" fg:w="656"/><text x="27.3281%" y="431.50"></text></g><g><title>btrfs_node_key (891 samples, 0.04%)</title><rect x="27.1063%" y="421" width="0.0384%" height="15" fill="rgb(244,166,37)" fg:x="629494" fg:w="891"/><text x="27.3563%" y="431.50"></text></g><g><title>read_extent_buffer (857 samples, 0.04%)</title><rect x="27.1078%" y="405" width="0.0369%" height="15" fill="rgb(246,29,44)" fg:x="629528" fg:w="857"/><text x="27.3578%" y="415.50"></text></g><g><title>btrfs_verify_level_key (294 samples, 0.01%)</title><rect x="27.1447%" y="421" width="0.0127%" height="15" fill="rgb(215,56,53)" fg:x="630385" fg:w="294"/><text x="27.3947%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,308 samples, 0.10%)</title><rect x="27.2794%" y="373" width="0.0994%" height="15" fill="rgb(217,60,2)" fg:x="633515" fg:w="2308"/><text x="27.5294%" y="383.50"></text></g><g><title>radix_tree_lookup (2,317 samples, 0.10%)</title><rect x="27.2792%" y="389" width="0.0998%" height="15" fill="rgb(207,26,24)" fg:x="633510" fg:w="2317"/><text x="27.5292%" y="399.50"></text></g><g><title>find_extent_buffer_nolock (4,498 samples, 0.19%)</title><rect x="27.1857%" y="405" width="0.1937%" height="15" fill="rgb(252,210,15)" fg:x="631338" fg:w="4498"/><text x="27.4357%" y="415.50"></text></g><g><title>mark_page_accessed (1,405 samples, 0.06%)</title><rect x="27.3794%" y="405" width="0.0605%" height="15" fill="rgb(253,209,26)" fg:x="635836" fg:w="1405"/><text x="27.6294%" y="415.50"></text></g><g><title>find_extent_buffer (6,492 samples, 0.28%)</title><rect x="27.1635%" y="421" width="0.2795%" height="15" fill="rgb(238,170,14)" fg:x="630822" fg:w="6492"/><text x="27.4135%" y="431.50"></text></g><g><title>read_block_for_search (9,928 samples, 0.43%)</title><rect x="27.0244%" y="437" width="0.4275%" height="15" fill="rgb(216,178,15)" fg:x="627591" fg:w="9928"/><text x="27.2744%" y="447.50"></text></g><g><title>btrfs_add_delayed_tree_ref (267 samples, 0.01%)</title><rect x="27.4549%" y="405" width="0.0115%" height="15" fill="rgb(250,197,2)" fg:x="637590" fg:w="267"/><text x="27.7049%" y="415.50"></text></g><g><title>add_to_page_cache_lru (281 samples, 0.01%)</title><rect x="27.4816%" y="341" width="0.0121%" height="15" fill="rgb(212,70,42)" fg:x="638209" fg:w="281"/><text x="27.7316%" y="351.50"></text></g><g><title>pagecache_get_page (558 samples, 0.02%)</title><rect x="27.4728%" y="357" width="0.0240%" height="15" fill="rgb(227,213,9)" fg:x="638005" fg:w="558"/><text x="27.7228%" y="367.50"></text></g><g><title>alloc_extent_buffer (666 samples, 0.03%)</title><rect x="27.4687%" y="373" width="0.0287%" height="15" fill="rgb(245,99,25)" fg:x="637911" fg:w="666"/><text x="27.7187%" y="383.50"></text></g><g><title>btrfs_find_create_tree_block (718 samples, 0.03%)</title><rect x="27.4681%" y="389" width="0.0309%" height="15" fill="rgb(250,82,29)" fg:x="637897" fg:w="718"/><text x="27.7181%" y="399.50"></text></g><g><title>btrfs_init_new_buffer (925 samples, 0.04%)</title><rect x="27.4668%" y="405" width="0.0398%" height="15" fill="rgb(241,226,54)" fg:x="637867" fg:w="925"/><text x="27.7168%" y="415.50"></text></g><g><title>find_free_extent (260 samples, 0.01%)</title><rect x="27.5087%" y="389" width="0.0112%" height="15" fill="rgb(221,99,41)" fg:x="638839" fg:w="260"/><text x="27.7587%" y="399.50"></text></g><g><title>btrfs_reserve_extent (315 samples, 0.01%)</title><rect x="27.5067%" y="405" width="0.0136%" height="15" fill="rgb(213,90,21)" fg:x="638792" fg:w="315"/><text x="27.7567%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (1,599 samples, 0.07%)</title><rect x="27.4537%" y="421" width="0.0689%" height="15" fill="rgb(205,208,24)" fg:x="637561" fg:w="1599"/><text x="27.7037%" y="431.50"></text></g><g><title>copy_for_split (619 samples, 0.03%)</title><rect x="27.5270%" y="421" width="0.0267%" height="15" fill="rgb(246,31,12)" fg:x="639263" fg:w="619"/><text x="27.7770%" y="431.50"></text></g><g><title>__push_leaf_left (907 samples, 0.04%)</title><rect x="27.5554%" y="405" width="0.0391%" height="15" fill="rgb(213,154,6)" fg:x="639924" fg:w="907"/><text x="27.8054%" y="415.50"></text></g><g><title>push_leaf_left (1,188 samples, 0.05%)</title><rect x="27.5541%" y="421" width="0.0512%" height="15" fill="rgb(222,163,29)" fg:x="639894" fg:w="1188"/><text x="27.8041%" y="431.50"></text></g><g><title>split_leaf (3,604 samples, 0.16%)</title><rect x="27.4519%" y="437" width="0.1552%" height="15" fill="rgb(227,201,8)" fg:x="637519" fg:w="3604"/><text x="27.7019%" y="447.50"></text></g><g><title>select_task_rq_fair (281 samples, 0.01%)</title><rect x="27.6852%" y="341" width="0.0121%" height="15" fill="rgb(233,9,32)" fg:x="642938" fg:w="281"/><text x="27.9352%" y="351.50"></text></g><g><title>try_to_wake_up (942 samples, 0.04%)</title><rect x="27.6694%" y="357" width="0.0406%" height="15" fill="rgb(217,54,24)" fg:x="642572" fg:w="942"/><text x="27.9194%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (1,274 samples, 0.05%)</title><rect x="27.6555%" y="389" width="0.0549%" height="15" fill="rgb(235,192,0)" fg:x="642249" fg:w="1274"/><text x="27.9055%" y="399.50"></text></g><g><title>wake_up_q (1,007 samples, 0.04%)</title><rect x="27.6670%" y="373" width="0.0434%" height="15" fill="rgb(235,45,9)" fg:x="642516" fg:w="1007"/><text x="27.9170%" y="383.50"></text></g><g><title>btrfs_tree_read_unlock (1,346 samples, 0.06%)</title><rect x="27.6526%" y="421" width="0.0580%" height="15" fill="rgb(246,42,40)" fg:x="642181" fg:w="1346"/><text x="27.9026%" y="431.50"></text></g><g><title>up_read (1,299 samples, 0.06%)</title><rect x="27.6546%" y="405" width="0.0559%" height="15" fill="rgb(248,111,24)" fg:x="642228" fg:w="1299"/><text x="27.9046%" y="415.50"></text></g><g><title>rwsem_mark_wake (279 samples, 0.01%)</title><rect x="27.7187%" y="373" width="0.0120%" height="15" fill="rgb(249,65,22)" fg:x="643715" fg:w="279"/><text x="27.9687%" y="383.50"></text></g><g><title>select_idle_sibling (474 samples, 0.02%)</title><rect x="27.7796%" y="325" width="0.0204%" height="15" fill="rgb(238,111,51)" fg:x="645131" fg:w="474"/><text x="28.0296%" y="335.50"></text></g><g><title>select_idle_cpu (241 samples, 0.01%)</title><rect x="27.7897%" y="309" width="0.0104%" height="15" fill="rgb(250,118,22)" fg:x="645364" fg:w="241"/><text x="28.0397%" y="319.50"></text></g><g><title>select_task_rq_fair (662 samples, 0.03%)</title><rect x="27.7756%" y="341" width="0.0285%" height="15" fill="rgb(234,84,26)" fg:x="645037" fg:w="662"/><text x="28.0256%" y="351.50"></text></g><g><title>enqueue_task (307 samples, 0.01%)</title><rect x="27.8087%" y="325" width="0.0132%" height="15" fill="rgb(243,172,12)" fg:x="645807" fg:w="307"/><text x="28.0587%" y="335.50"></text></g><g><title>ttwu_do_activate (426 samples, 0.02%)</title><rect x="27.8083%" y="341" width="0.0183%" height="15" fill="rgb(236,150,49)" fg:x="645797" fg:w="426"/><text x="28.0583%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (321 samples, 0.01%)</title><rect x="27.8268%" y="341" width="0.0138%" height="15" fill="rgb(225,197,26)" fg:x="646226" fg:w="321"/><text x="28.0768%" y="351.50"></text></g><g><title>try_to_wake_up (2,379 samples, 0.10%)</title><rect x="27.7399%" y="357" width="0.1024%" height="15" fill="rgb(214,17,42)" fg:x="644208" fg:w="2379"/><text x="27.9899%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (2,998 samples, 0.13%)</title><rect x="27.7134%" y="389" width="0.1291%" height="15" fill="rgb(224,165,40)" fg:x="643593" fg:w="2998"/><text x="27.9634%" y="399.50"></text></g><g><title>wake_up_q (2,463 samples, 0.11%)</title><rect x="27.7364%" y="373" width="0.1061%" height="15" fill="rgb(246,100,4)" fg:x="644128" fg:w="2463"/><text x="27.9864%" y="383.50"></text></g><g><title>btrfs_tree_unlock (3,067 samples, 0.13%)</title><rect x="27.7106%" y="421" width="0.1321%" height="15" fill="rgb(222,103,0)" fg:x="643527" fg:w="3067"/><text x="27.9606%" y="431.50"></text></g><g><title>up_write (3,013 samples, 0.13%)</title><rect x="27.7129%" y="405" width="0.1297%" height="15" fill="rgb(227,189,26)" fg:x="643581" fg:w="3013"/><text x="27.9629%" y="415.50"></text></g><g><title>up_read (775 samples, 0.03%)</title><rect x="27.8428%" y="421" width="0.0334%" height="15" fill="rgb(214,202,17)" fg:x="646597" fg:w="775"/><text x="28.0928%" y="431.50"></text></g><g><title>btrfs_search_slot (62,359 samples, 2.69%)</title><rect x="25.2040%" y="453" width="2.6852%" height="15" fill="rgb(229,111,3)" fg:x="585316" fg:w="62359"/><text x="25.4540%" y="463.50">bt..</text></g><g><title>unlock_up (6,549 samples, 0.28%)</title><rect x="27.6072%" y="437" width="0.2820%" height="15" fill="rgb(229,172,15)" fg:x="641126" fg:w="6549"/><text x="27.8572%" y="447.50"></text></g><g><title>up_write (303 samples, 0.01%)</title><rect x="27.8761%" y="421" width="0.0130%" height="15" fill="rgb(230,224,35)" fg:x="647372" fg:w="303"/><text x="28.1261%" y="431.50"></text></g><g><title>btrfs_get_32 (307 samples, 0.01%)</title><rect x="27.9670%" y="437" width="0.0132%" height="15" fill="rgb(251,141,6)" fg:x="649483" fg:w="307"/><text x="28.2170%" y="447.50"></text></g><g><title>btrfs_get_token_32 (1,005 samples, 0.04%)</title><rect x="27.9803%" y="437" width="0.0433%" height="15" fill="rgb(225,208,6)" fg:x="649790" fg:w="1005"/><text x="28.2303%" y="447.50"></text></g><g><title>btrfs_get_32 (486 samples, 0.02%)</title><rect x="28.0376%" y="405" width="0.0209%" height="15" fill="rgb(246,181,16)" fg:x="651121" fg:w="486"/><text x="28.2876%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (910 samples, 0.04%)</title><rect x="28.0235%" y="437" width="0.0392%" height="15" fill="rgb(227,129,36)" fg:x="650795" fg:w="910"/><text x="28.2735%" y="447.50"></text></g><g><title>leaf_space_used (764 samples, 0.03%)</title><rect x="28.0298%" y="421" width="0.0329%" height="15" fill="rgb(248,117,24)" fg:x="650941" fg:w="764"/><text x="28.2798%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (534 samples, 0.02%)</title><rect x="28.0627%" y="437" width="0.0230%" height="15" fill="rgb(214,185,35)" fg:x="651705" fg:w="534"/><text x="28.3127%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (305 samples, 0.01%)</title><rect x="28.0726%" y="421" width="0.0131%" height="15" fill="rgb(236,150,34)" fg:x="651934" fg:w="305"/><text x="28.3226%" y="431.50"></text></g><g><title>btrfs_set_token_32 (1,089 samples, 0.05%)</title><rect x="28.0857%" y="437" width="0.0469%" height="15" fill="rgb(243,228,27)" fg:x="652239" fg:w="1089"/><text x="28.3357%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (382 samples, 0.02%)</title><rect x="28.1326%" y="437" width="0.0164%" height="15" fill="rgb(245,77,44)" fg:x="653328" fg:w="382"/><text x="28.3826%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (361 samples, 0.02%)</title><rect x="28.1491%" y="437" width="0.0155%" height="15" fill="rgb(235,214,42)" fg:x="653710" fg:w="361"/><text x="28.3991%" y="447.50"></text></g><g><title>copy_pages (277 samples, 0.01%)</title><rect x="28.1646%" y="437" width="0.0119%" height="15" fill="rgb(221,74,3)" fg:x="654071" fg:w="277"/><text x="28.4146%" y="447.50"></text></g><g><title>memcpy_extent_buffer (250 samples, 0.01%)</title><rect x="28.1965%" y="421" width="0.0108%" height="15" fill="rgb(206,121,29)" fg:x="654812" fg:w="250"/><text x="28.4465%" y="431.50"></text></g><g><title>memmove_extent_buffer (1,152 samples, 0.05%)</title><rect x="28.1804%" y="437" width="0.0496%" height="15" fill="rgb(249,131,53)" fg:x="654439" fg:w="1152"/><text x="28.4304%" y="447.50"></text></g><g><title>memmove (529 samples, 0.02%)</title><rect x="28.2073%" y="421" width="0.0228%" height="15" fill="rgb(236,170,29)" fg:x="655062" fg:w="529"/><text x="28.4573%" y="431.50"></text></g><g><title>setup_items_for_insert (8,078 samples, 0.35%)</title><rect x="27.9124%" y="453" width="0.3478%" height="15" fill="rgb(247,96,15)" fg:x="648213" fg:w="8078"/><text x="28.1624%" y="463.50"></text></g><g><title>write_extent_buffer (677 samples, 0.03%)</title><rect x="28.2310%" y="437" width="0.0292%" height="15" fill="rgb(211,210,7)" fg:x="655614" fg:w="677"/><text x="28.4810%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (71,903 samples, 3.10%)</title><rect x="25.1705%" y="469" width="3.0962%" height="15" fill="rgb(240,88,50)" fg:x="584539" fg:w="71903"/><text x="25.4205%" y="479.50">btr..</text></g><g><title>btrfs_mark_buffer_dirty (352 samples, 0.02%)</title><rect x="28.2667%" y="469" width="0.0152%" height="15" fill="rgb(209,229,26)" fg:x="656442" fg:w="352"/><text x="28.5167%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (263 samples, 0.01%)</title><rect x="28.2705%" y="453" width="0.0113%" height="15" fill="rgb(210,68,23)" fg:x="656531" fg:w="263"/><text x="28.5205%" y="463.50"></text></g><g><title>btrfs_update_root_times (319 samples, 0.01%)</title><rect x="28.3244%" y="469" width="0.0137%" height="15" fill="rgb(229,180,13)" fg:x="657781" fg:w="319"/><text x="28.5744%" y="479.50"></text></g><g><title>current_time (247 samples, 0.01%)</title><rect x="28.3430%" y="469" width="0.0106%" height="15" fill="rgb(236,53,44)" fg:x="658215" fg:w="247"/><text x="28.5930%" y="479.50"></text></g><g><title>btrfs_set_token_32 (886 samples, 0.04%)</title><rect x="28.3826%" y="453" width="0.0382%" height="15" fill="rgb(244,214,29)" fg:x="659134" fg:w="886"/><text x="28.6326%" y="463.50"></text></g><g><title>btrfs_set_token_64 (1,267 samples, 0.05%)</title><rect x="28.4208%" y="453" width="0.0546%" height="15" fill="rgb(220,75,29)" fg:x="660020" fg:w="1267"/><text x="28.6708%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (316 samples, 0.01%)</title><rect x="28.4753%" y="453" width="0.0136%" height="15" fill="rgb(214,183,37)" fg:x="661287" fg:w="316"/><text x="28.7253%" y="463.50"></text></g><g><title>fill_inode_item (3,455 samples, 0.15%)</title><rect x="28.3537%" y="469" width="0.1488%" height="15" fill="rgb(239,117,29)" fg:x="658462" fg:w="3455"/><text x="28.6037%" y="479.50"></text></g><g><title>inherit_props (299 samples, 0.01%)</title><rect x="28.5058%" y="469" width="0.0129%" height="15" fill="rgb(237,171,35)" fg:x="661995" fg:w="299"/><text x="28.7558%" y="479.50"></text></g><g><title>inode_init_owner (418 samples, 0.02%)</title><rect x="28.5236%" y="469" width="0.0180%" height="15" fill="rgb(229,178,53)" fg:x="662408" fg:w="418"/><text x="28.7736%" y="479.50"></text></g><g><title>_raw_spin_lock (253 samples, 0.01%)</title><rect x="28.8873%" y="453" width="0.0109%" height="15" fill="rgb(210,102,19)" fg:x="670855" fg:w="253"/><text x="29.1373%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (251 samples, 0.01%)</title><rect x="28.8874%" y="437" width="0.0108%" height="15" fill="rgb(235,127,22)" fg:x="670857" fg:w="251"/><text x="29.1374%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (251 samples, 0.01%)</title><rect x="28.8874%" y="421" width="0.0108%" height="15" fill="rgb(244,31,31)" fg:x="670857" fg:w="251"/><text x="29.1374%" y="431.50"></text></g><g><title>inode_tree_add (8,293 samples, 0.36%)</title><rect x="28.5430%" y="469" width="0.3571%" height="15" fill="rgb(231,43,21)" fg:x="662859" fg:w="8293"/><text x="28.7930%" y="479.50"></text></g><g><title>_raw_spin_lock (408 samples, 0.02%)</title><rect x="28.9009%" y="453" width="0.0176%" height="15" fill="rgb(217,131,35)" fg:x="671170" fg:w="408"/><text x="29.1509%" y="463.50"></text></g><g><title>find_inode (1,084 samples, 0.05%)</title><rect x="28.9297%" y="437" width="0.0467%" height="15" fill="rgb(221,149,4)" fg:x="671838" fg:w="1084"/><text x="29.1797%" y="447.50"></text></g><g><title>insert_inode_locked4 (1,772 samples, 0.08%)</title><rect x="28.9001%" y="469" width="0.0763%" height="15" fill="rgb(232,170,28)" fg:x="671152" fg:w="1772"/><text x="29.1501%" y="479.50"></text></g><g><title>inode_insert5 (1,341 samples, 0.06%)</title><rect x="28.9187%" y="453" width="0.0577%" height="15" fill="rgb(238,56,10)" fg:x="671583" fg:w="1341"/><text x="29.1687%" y="463.50"></text></g><g><title>memzero_extent_buffer (433 samples, 0.02%)</title><rect x="28.9813%" y="469" width="0.0186%" height="15" fill="rgb(235,196,14)" fg:x="673037" fg:w="433"/><text x="29.2313%" y="479.50"></text></g><g><title>__init_rwsem (295 samples, 0.01%)</title><rect x="29.0174%" y="437" width="0.0127%" height="15" fill="rgb(216,45,48)" fg:x="673875" fg:w="295"/><text x="29.2674%" y="447.50"></text></g><g><title>btrfs_init_metadata_block_rsv (528 samples, 0.02%)</title><rect x="29.0588%" y="421" width="0.0227%" height="15" fill="rgb(238,213,17)" fg:x="674837" fg:w="528"/><text x="29.3088%" y="431.50"></text></g><g><title>btrfs_find_space_info (390 samples, 0.02%)</title><rect x="29.0647%" y="405" width="0.0168%" height="15" fill="rgb(212,13,2)" fg:x="674975" fg:w="390"/><text x="29.3147%" y="415.50"></text></g><g><title>___slab_alloc (622 samples, 0.03%)</title><rect x="29.1106%" y="405" width="0.0268%" height="15" fill="rgb(240,114,20)" fg:x="676039" fg:w="622"/><text x="29.3606%" y="415.50"></text></g><g><title>get_obj_cgroup_from_current (770 samples, 0.03%)</title><rect x="29.1381%" y="405" width="0.0332%" height="15" fill="rgb(228,41,40)" fg:x="676679" fg:w="770"/><text x="29.3881%" y="415.50"></text></g><g><title>mod_objcg_state (405 samples, 0.02%)</title><rect x="29.2012%" y="389" width="0.0174%" height="15" fill="rgb(244,132,35)" fg:x="678143" fg:w="405"/><text x="29.4512%" y="399.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,099 samples, 0.05%)</title><rect x="29.1714%" y="405" width="0.0473%" height="15" fill="rgb(253,189,4)" fg:x="677452" fg:w="1099"/><text x="29.4214%" y="415.50"></text></g><g><title>obj_cgroup_charge_pages (348 samples, 0.01%)</title><rect x="29.2224%" y="389" width="0.0150%" height="15" fill="rgb(224,37,19)" fg:x="678637" fg:w="348"/><text x="29.4724%" y="399.50"></text></g><g><title>obj_cgroup_charge (687 samples, 0.03%)</title><rect x="29.2191%" y="405" width="0.0296%" height="15" fill="rgb(235,223,18)" fg:x="678560" fg:w="687"/><text x="29.4691%" y="415.50"></text></g><g><title>kmem_cache_alloc (3,873 samples, 0.17%)</title><rect x="29.0874%" y="421" width="0.1668%" height="15" fill="rgb(235,163,25)" fg:x="675501" fg:w="3873"/><text x="29.3374%" y="431.50"></text></g><g><title>btrfs_alloc_inode (5,029 samples, 0.22%)</title><rect x="29.0384%" y="437" width="0.2166%" height="15" fill="rgb(217,145,28)" fg:x="674364" fg:w="5029"/><text x="29.2884%" y="447.50"></text></g><g><title>kmem_cache_alloc (975 samples, 0.04%)</title><rect x="29.3304%" y="405" width="0.0420%" height="15" fill="rgb(223,223,32)" fg:x="681144" fg:w="975"/><text x="29.5804%" y="415.50"></text></g><g><title>inode_init_always (2,463 samples, 0.11%)</title><rect x="29.2720%" y="437" width="0.1061%" height="15" fill="rgb(227,189,39)" fg:x="679788" fg:w="2463"/><text x="29.5220%" y="447.50"></text></g><g><title>security_inode_alloc (1,315 samples, 0.06%)</title><rect x="29.3214%" y="421" width="0.0566%" height="15" fill="rgb(248,10,22)" fg:x="680936" fg:w="1315"/><text x="29.5714%" y="431.50"></text></g><g><title>alloc_inode (8,836 samples, 0.38%)</title><rect x="29.0044%" y="453" width="0.3805%" height="15" fill="rgb(248,46,39)" fg:x="673574" fg:w="8836"/><text x="29.2544%" y="463.50"></text></g><g><title>new_inode (9,189 samples, 0.40%)</title><rect x="28.9999%" y="469" width="0.3957%" height="15" fill="rgb(248,113,48)" fg:x="673470" fg:w="9189"/><text x="29.2499%" y="479.50"></text></g><g><title>rb_insert_color (757 samples, 0.03%)</title><rect x="29.3956%" y="469" width="0.0326%" height="15" fill="rgb(245,16,25)" fg:x="682659" fg:w="757"/><text x="29.6456%" y="479.50"></text></g><g><title>btrfs_new_inode (106,050 samples, 4.57%)</title><rect x="24.8845%" y="485" width="4.5666%" height="15" fill="rgb(249,152,16)" fg:x="577897" fg:w="106050"/><text x="25.1345%" y="495.50">btrfs..</text></g><g><title>write_extent_buffer (466 samples, 0.02%)</title><rect x="29.4310%" y="469" width="0.0201%" height="15" fill="rgb(250,16,1)" fg:x="683481" fg:w="466"/><text x="29.6810%" y="479.50"></text></g><g><title>btrfs_set_64 (343 samples, 0.01%)</title><rect x="29.4630%" y="485" width="0.0148%" height="15" fill="rgb(249,138,3)" fg:x="684225" fg:w="343"/><text x="29.7130%" y="495.50"></text></g><g><title>_raw_spin_lock (959 samples, 0.04%)</title><rect x="29.5697%" y="453" width="0.0413%" height="15" fill="rgb(227,71,41)" fg:x="686702" fg:w="959"/><text x="29.8197%" y="463.50"></text></g><g><title>_raw_spin_lock (359 samples, 0.02%)</title><rect x="29.6407%" y="405" width="0.0155%" height="15" fill="rgb(209,184,23)" fg:x="688351" fg:w="359"/><text x="29.8907%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (349 samples, 0.02%)</title><rect x="29.6411%" y="389" width="0.0150%" height="15" fill="rgb(223,215,31)" fg:x="688361" fg:w="349"/><text x="29.8911%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (349 samples, 0.02%)</title><rect x="29.6411%" y="373" width="0.0150%" height="15" fill="rgb(210,146,28)" fg:x="688361" fg:w="349"/><text x="29.8911%" y="383.50"></text></g><g><title>_raw_spin_lock (252 samples, 0.01%)</title><rect x="29.7026%" y="389" width="0.0109%" height="15" fill="rgb(209,183,41)" fg:x="689789" fg:w="252"/><text x="29.9526%" y="399.50"></text></g><g><title>need_preemptive_reclaim (1,422 samples, 0.06%)</title><rect x="29.6795%" y="405" width="0.0612%" height="15" fill="rgb(209,224,45)" fg:x="689251" fg:w="1422"/><text x="29.9295%" y="415.50"></text></g><g><title>btrfs_get_alloc_profile (632 samples, 0.03%)</title><rect x="29.7135%" y="389" width="0.0272%" height="15" fill="rgb(224,209,51)" fg:x="690041" fg:w="632"/><text x="29.9635%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (691 samples, 0.03%)</title><rect x="29.7484%" y="389" width="0.0298%" height="15" fill="rgb(223,17,39)" fg:x="690851" fg:w="691"/><text x="29.9984%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (287 samples, 0.01%)</title><rect x="29.7658%" y="373" width="0.0124%" height="15" fill="rgb(234,204,37)" fg:x="691255" fg:w="287"/><text x="30.0158%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (287 samples, 0.01%)</title><rect x="29.7658%" y="357" width="0.0124%" height="15" fill="rgb(236,120,5)" fg:x="691255" fg:w="287"/><text x="30.0158%" y="367.50"></text></g><g><title>idr_find (384 samples, 0.02%)</title><rect x="29.7782%" y="389" width="0.0165%" height="15" fill="rgb(248,97,27)" fg:x="691544" fg:w="384"/><text x="30.0282%" y="399.50"></text></g><g><title>radix_tree_lookup (366 samples, 0.02%)</title><rect x="29.7790%" y="373" width="0.0158%" height="15" fill="rgb(240,66,17)" fg:x="691562" fg:w="366"/><text x="30.0290%" y="383.50"></text></g><g><title>__radix_tree_lookup (360 samples, 0.02%)</title><rect x="29.7792%" y="357" width="0.0155%" height="15" fill="rgb(210,79,3)" fg:x="691568" fg:w="360"/><text x="30.0292%" y="367.50"></text></g><g><title>__reserve_bytes (3,865 samples, 0.17%)</title><rect x="29.6293%" y="421" width="0.1664%" height="15" fill="rgb(214,176,27)" fg:x="688086" fg:w="3865"/><text x="29.8793%" y="431.50"></text></g><g><title>work_busy (1,272 samples, 0.05%)</title><rect x="29.7410%" y="405" width="0.0548%" height="15" fill="rgb(235,185,3)" fg:x="690679" fg:w="1272"/><text x="29.9910%" y="415.50"></text></g><g><title>_raw_spin_lock (492 samples, 0.02%)</title><rect x="29.7957%" y="421" width="0.0212%" height="15" fill="rgb(227,24,12)" fg:x="691951" fg:w="492"/><text x="30.0457%" y="431.50"></text></g><g><title>btrfs_reserve_metadata_bytes (4,801 samples, 0.21%)</title><rect x="29.6174%" y="437" width="0.2067%" height="15" fill="rgb(252,169,48)" fg:x="687809" fg:w="4801"/><text x="29.8674%" y="447.50"></text></g><g><title>btrfs_block_rsv_add (4,936 samples, 0.21%)</title><rect x="29.6116%" y="453" width="0.2125%" height="15" fill="rgb(212,65,1)" fg:x="687675" fg:w="4936"/><text x="29.8616%" y="463.50"></text></g><g><title>join_transaction (405 samples, 0.02%)</title><rect x="29.8303%" y="453" width="0.0174%" height="15" fill="rgb(242,39,24)" fg:x="692753" fg:w="405"/><text x="30.0803%" y="463.50"></text></g><g><title>kmem_cache_alloc (773 samples, 0.03%)</title><rect x="29.8477%" y="453" width="0.0333%" height="15" fill="rgb(249,32,23)" fg:x="693158" fg:w="773"/><text x="30.0977%" y="463.50"></text></g><g><title>start_transaction (9,187 samples, 0.40%)</title><rect x="29.4990%" y="469" width="0.3956%" height="15" fill="rgb(251,195,23)" fg:x="685059" fg:w="9187"/><text x="29.7490%" y="479.50"></text></g><g><title>btrfs_start_transaction (9,473 samples, 0.41%)</title><rect x="29.4895%" y="485" width="0.4079%" height="15" fill="rgb(236,174,8)" fg:x="684839" fg:w="9473"/><text x="29.7395%" y="495.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (244 samples, 0.01%)</title><rect x="29.8974%" y="485" width="0.0105%" height="15" fill="rgb(220,197,8)" fg:x="694312" fg:w="244"/><text x="30.1474%" y="495.50"></text></g><g><title>_raw_spin_lock (356 samples, 0.02%)</title><rect x="29.9244%" y="469" width="0.0153%" height="15" fill="rgb(240,108,37)" fg:x="694940" fg:w="356"/><text x="30.1744%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (937 samples, 0.04%)</title><rect x="29.9726%" y="453" width="0.0403%" height="15" fill="rgb(232,176,24)" fg:x="696059" fg:w="937"/><text x="30.2226%" y="463.50"></text></g><g><title>__mutex_init (289 samples, 0.01%)</title><rect x="30.0142%" y="453" width="0.0124%" height="15" fill="rgb(243,35,29)" fg:x="697024" fg:w="289"/><text x="30.2642%" y="463.50"></text></g><g><title>_raw_spin_lock (1,056 samples, 0.05%)</title><rect x="30.0266%" y="453" width="0.0455%" height="15" fill="rgb(210,37,18)" fg:x="697313" fg:w="1056"/><text x="30.2766%" y="463.50"></text></g><g><title>_raw_spin_lock (326 samples, 0.01%)</title><rect x="30.1224%" y="421" width="0.0140%" height="15" fill="rgb(224,184,40)" fg:x="699538" fg:w="326"/><text x="30.3724%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (326 samples, 0.01%)</title><rect x="30.1224%" y="405" width="0.0140%" height="15" fill="rgb(236,39,29)" fg:x="699538" fg:w="326"/><text x="30.3724%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (326 samples, 0.01%)</title><rect x="30.1224%" y="389" width="0.0140%" height="15" fill="rgb(232,48,39)" fg:x="699538" fg:w="326"/><text x="30.3724%" y="399.50"></text></g><g><title>btrfs_get_delayed_node (2,475 samples, 0.11%)</title><rect x="30.1137%" y="437" width="0.1066%" height="15" fill="rgb(236,34,42)" fg:x="699335" fg:w="2475"/><text x="30.3637%" y="447.50"></text></g><g><title>radix_tree_lookup (1,942 samples, 0.08%)</title><rect x="30.1366%" y="421" width="0.0836%" height="15" fill="rgb(243,106,37)" fg:x="699868" fg:w="1942"/><text x="30.3866%" y="431.50"></text></g><g><title>__radix_tree_lookup (1,933 samples, 0.08%)</title><rect x="30.1370%" y="405" width="0.0832%" height="15" fill="rgb(218,96,6)" fg:x="699877" fg:w="1933"/><text x="30.3870%" y="415.50"></text></g><g><title>allocate_slab (242 samples, 0.01%)</title><rect x="30.2651%" y="389" width="0.0104%" height="15" fill="rgb(235,130,12)" fg:x="702851" fg:w="242"/><text x="30.5151%" y="399.50"></text></g><g><title>___slab_alloc (718 samples, 0.03%)</title><rect x="30.2449%" y="421" width="0.0309%" height="15" fill="rgb(231,95,0)" fg:x="702381" fg:w="718"/><text x="30.4949%" y="431.50"></text></g><g><title>new_slab (257 samples, 0.01%)</title><rect x="30.2647%" y="405" width="0.0111%" height="15" fill="rgb(228,12,23)" fg:x="702842" fg:w="257"/><text x="30.5147%" y="415.50"></text></g><g><title>kmem_cache_alloc (1,493 samples, 0.06%)</title><rect x="30.2203%" y="437" width="0.0643%" height="15" fill="rgb(216,12,1)" fg:x="701810" fg:w="1493"/><text x="30.4703%" y="447.50"></text></g><g><title>radix_tree_insert (927 samples, 0.04%)</title><rect x="30.2923%" y="437" width="0.0399%" height="15" fill="rgb(219,59,3)" fg:x="703483" fg:w="927"/><text x="30.5423%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (5,994 samples, 0.26%)</title><rect x="30.0847%" y="453" width="0.2581%" height="15" fill="rgb(215,208,46)" fg:x="698662" fg:w="5994"/><text x="30.3347%" y="463.50"></text></g><g><title>fill_stack_inode_item (545 samples, 0.02%)</title><rect x="30.3428%" y="453" width="0.0235%" height="15" fill="rgb(254,224,29)" fg:x="704656" fg:w="545"/><text x="30.5928%" y="463.50"></text></g><g><title>mutex_lock (258 samples, 0.01%)</title><rect x="30.3716%" y="453" width="0.0111%" height="15" fill="rgb(232,14,29)" fg:x="705325" fg:w="258"/><text x="30.6216%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (10,417 samples, 0.45%)</title><rect x="29.9427%" y="469" width="0.4486%" height="15" fill="rgb(208,45,52)" fg:x="695365" fg:w="10417"/><text x="30.1927%" y="479.50"></text></g><g><title>btrfs_update_root_times (413 samples, 0.02%)</title><rect x="30.3950%" y="469" width="0.0178%" height="15" fill="rgb(234,191,28)" fg:x="705869" fg:w="413"/><text x="30.6450%" y="479.50"></text></g><g><title>btrfs_update_inode (11,952 samples, 0.51%)</title><rect x="29.9079%" y="485" width="0.5147%" height="15" fill="rgb(244,67,43)" fg:x="694556" fg:w="11952"/><text x="30.1579%" y="495.50"></text></g><g><title>btrfs_xattr_security_init (320 samples, 0.01%)</title><rect x="30.4259%" y="485" width="0.0138%" height="15" fill="rgb(236,189,24)" fg:x="706586" fg:w="320"/><text x="30.6759%" y="495.50"></text></g><g><title>security_inode_init_security (316 samples, 0.01%)</title><rect x="30.4261%" y="469" width="0.0136%" height="15" fill="rgb(239,214,33)" fg:x="706590" fg:w="316"/><text x="30.6761%" y="479.50"></text></g><g><title>__d_instantiate (635 samples, 0.03%)</title><rect x="30.4612%" y="469" width="0.0273%" height="15" fill="rgb(226,176,41)" fg:x="707406" fg:w="635"/><text x="30.7112%" y="479.50"></text></g><g><title>d_flags_for_inode (296 samples, 0.01%)</title><rect x="30.4758%" y="453" width="0.0127%" height="15" fill="rgb(248,47,8)" fg:x="707745" fg:w="296"/><text x="30.7258%" y="463.50"></text></g><g><title>d_instantiate_new (1,524 samples, 0.07%)</title><rect x="30.4529%" y="485" width="0.0656%" height="15" fill="rgb(218,81,44)" fg:x="707213" fg:w="1524"/><text x="30.7029%" y="495.50"></text></g><g><title>mutex_unlock (332 samples, 0.01%)</title><rect x="30.5542%" y="485" width="0.0143%" height="15" fill="rgb(213,98,6)" fg:x="709564" fg:w="332"/><text x="30.8042%" y="495.50"></text></g><g><title>btrfs_symlink (320,925 samples, 13.82%)</title><rect x="16.8150%" y="501" width="13.8192%" height="15" fill="rgb(222,85,22)" fg:x="390497" fg:w="320925"/><text x="17.0650%" y="511.50">btrfs_symlink</text></g><g><title>write_extent_buffer (709 samples, 0.03%)</title><rect x="30.6036%" y="485" width="0.0305%" height="15" fill="rgb(239,46,39)" fg:x="710713" fg:w="709"/><text x="30.8536%" y="495.50"></text></g><g><title>btrfs_xattr_security_init (256 samples, 0.01%)</title><rect x="30.6424%" y="501" width="0.0110%" height="15" fill="rgb(237,12,29)" fg:x="711614" fg:w="256"/><text x="30.8924%" y="511.50"></text></g><g><title>fsnotify (302 samples, 0.01%)</title><rect x="30.6615%" y="501" width="0.0130%" height="15" fill="rgb(214,77,8)" fg:x="712056" fg:w="302"/><text x="30.9115%" y="511.50"></text></g><g><title>btrfs_permission (500 samples, 0.02%)</title><rect x="30.6991%" y="485" width="0.0215%" height="15" fill="rgb(217,168,37)" fg:x="712929" fg:w="500"/><text x="30.9491%" y="495.50"></text></g><g><title>inode_permission (569 samples, 0.02%)</title><rect x="30.7295%" y="485" width="0.0245%" height="15" fill="rgb(221,217,23)" fg:x="713635" fg:w="569"/><text x="30.9795%" y="495.50"></text></g><g><title>may_create (1,561 samples, 0.07%)</title><rect x="30.6914%" y="501" width="0.0672%" height="15" fill="rgb(243,229,36)" fg:x="712752" fg:w="1561"/><text x="30.9414%" y="511.50"></text></g><g><title>strlen (1,627 samples, 0.07%)</title><rect x="30.7616%" y="501" width="0.0701%" height="15" fill="rgb(251,163,40)" fg:x="714382" fg:w="1627"/><text x="31.0116%" y="511.50"></text></g><g><title>do_symlinkat (421,884 samples, 18.17%)</title><rect x="12.6660%" y="533" width="18.1665%" height="15" fill="rgb(237,222,12)" fg:x="294145" fg:w="421884"/><text x="12.9160%" y="543.50">do_symlinkat</text></g><g><title>vfs_symlink (327,284 samples, 14.09%)</title><rect x="16.7395%" y="517" width="14.0930%" height="15" fill="rgb(248,132,6)" fg:x="388745" fg:w="327284"/><text x="16.9895%" y="527.50">vfs_symlink</text></g><g><title>kmem_cache_alloc (1,368 samples, 0.06%)</title><rect x="30.8759%" y="501" width="0.0589%" height="15" fill="rgb(227,167,50)" fg:x="717036" fg:w="1368"/><text x="31.1259%" y="511.50"></text></g><g><title>memset_erms (2,439 samples, 0.11%)</title><rect x="30.9354%" y="501" width="0.1050%" height="15" fill="rgb(242,84,37)" fg:x="718417" fg:w="2439"/><text x="31.1854%" y="511.50"></text></g><g><title>__check_heap_object (353 samples, 0.02%)</title><rect x="31.1447%" y="453" width="0.0152%" height="15" fill="rgb(212,4,50)" fg:x="723279" fg:w="353"/><text x="31.3947%" y="463.50"></text></g><g><title>__virt_addr_valid (782 samples, 0.03%)</title><rect x="31.1599%" y="453" width="0.0337%" height="15" fill="rgb(230,228,32)" fg:x="723632" fg:w="782"/><text x="31.4099%" y="463.50"></text></g><g><title>__check_object_size.part.0 (1,565 samples, 0.07%)</title><rect x="31.1263%" y="469" width="0.0674%" height="15" fill="rgb(248,217,23)" fg:x="722852" fg:w="1565"/><text x="31.3763%" y="479.50"></text></g><g><title>__virt_addr_valid (300 samples, 0.01%)</title><rect x="31.1937%" y="469" width="0.0129%" height="15" fill="rgb(238,197,32)" fg:x="724417" fg:w="300"/><text x="31.4437%" y="479.50"></text></g><g><title>__check_object_size (2,039 samples, 0.09%)</title><rect x="31.1254%" y="485" width="0.0878%" height="15" fill="rgb(236,106,1)" fg:x="722829" fg:w="2039"/><text x="31.3754%" y="495.50"></text></g><g><title>getname_flags.part.0 (8,383 samples, 0.36%)</title><rect x="30.8524%" y="517" width="0.3610%" height="15" fill="rgb(219,228,13)" fg:x="716490" fg:w="8383"/><text x="31.1024%" y="527.50"></text></g><g><title>strncpy_from_user (3,991 samples, 0.17%)</title><rect x="31.0415%" y="501" width="0.1719%" height="15" fill="rgb(238,30,35)" fg:x="720882" fg:w="3991"/><text x="31.2915%" y="511.50"></text></g><g><title>getname_flags (8,485 samples, 0.37%)</title><rect x="30.8524%" y="533" width="0.3654%" height="15" fill="rgb(236,70,23)" fg:x="716490" fg:w="8485"/><text x="31.1024%" y="543.50"></text></g><g><title>security_path_symlink (368 samples, 0.02%)</title><rect x="31.2266%" y="533" width="0.0158%" height="15" fill="rgb(249,104,48)" fg:x="725180" fg:w="368"/><text x="31.4766%" y="543.50"></text></g><g><title>up_write (381 samples, 0.02%)</title><rect x="31.2425%" y="533" width="0.0164%" height="15" fill="rgb(254,117,50)" fg:x="725549" fg:w="381"/><text x="31.4925%" y="543.50"></text></g><g><title>__x64_sys_symlink (431,929 samples, 18.60%)</title><rect x="12.6609%" y="549" width="18.5991%" height="15" fill="rgb(223,152,4)" fg:x="294025" fg:w="431929"/><text x="12.9109%" y="559.50">__x64_sys_symlink</text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (252 samples, 0.01%)</title><rect x="31.2638%" y="549" width="0.0109%" height="15" fill="rgb(245,6,2)" fg:x="726045" fg:w="252"/><text x="31.5138%" y="559.50"></text></g><g><title>cshook_systemcalltable_post_symlink (362 samples, 0.02%)</title><rect x="31.2747%" y="549" width="0.0156%" height="15" fill="rgb(249,150,24)" fg:x="726297" fg:w="362"/><text x="31.5247%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_symlink (257 samples, 0.01%)</title><rect x="31.2903%" y="549" width="0.0111%" height="15" fill="rgb(228,185,42)" fg:x="726659" fg:w="257"/><text x="31.5403%" y="559.50"></text></g><g><title>do_syscall_64 (439,734 samples, 18.94%)</title><rect x="12.3748%" y="581" width="18.9351%" height="15" fill="rgb(226,39,33)" fg:x="287383" fg:w="439734"/><text x="12.6248%" y="591.50">do_syscall_64</text></g><g><title>unload_network_ops_symbols (434,160 samples, 18.70%)</title><rect x="12.6149%" y="565" width="18.6951%" height="15" fill="rgb(221,166,19)" fg:x="292957" fg:w="434160"/><text x="12.8649%" y="575.50">unload_network_ops_symbols</text></g><g><title>entry_SYSCALL_64_after_hwframe (440,614 samples, 18.97%)</title><rect x="12.3614%" y="597" width="18.9730%" height="15" fill="rgb(209,109,2)" fg:x="287071" fg:w="440614"/><text x="12.6114%" y="607.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>unload_network_ops_symbols (260 samples, 0.01%)</title><rect x="31.3233%" y="581" width="0.0112%" height="15" fill="rgb(252,216,26)" fg:x="727425" fg:w="260"/><text x="31.5733%" y="591.50"></text></g><g><title>syscall_return_via_sysret (316 samples, 0.01%)</title><rect x="31.3420%" y="597" width="0.0136%" height="15" fill="rgb(227,173,36)" fg:x="727860" fg:w="316"/><text x="31.5920%" y="607.50"></text></g><g><title>__GI_symlink (442,418 samples, 19.05%)</title><rect x="12.3052%" y="613" width="19.0507%" height="15" fill="rgb(209,90,7)" fg:x="285765" fg:w="442418"/><text x="12.5552%" y="623.50">__GI_symlink</text></g><g><title>__entry_text_start (446 samples, 0.02%)</title><rect x="31.3859%" y="597" width="0.0192%" height="15" fill="rgb(250,194,11)" fg:x="728879" fg:w="446"/><text x="31.6359%" y="607.50"></text></g><g><title>__switch_to (236 samples, 0.01%)</title><rect x="31.4101%" y="597" width="0.0102%" height="15" fill="rgb(220,72,50)" fg:x="729442" fg:w="236"/><text x="31.6601%" y="607.50"></text></g><g><title>__switch_to_asm (422 samples, 0.02%)</title><rect x="31.4203%" y="597" width="0.0182%" height="15" fill="rgb(222,106,48)" fg:x="729678" fg:w="422"/><text x="31.6703%" y="607.50"></text></g><g><title>__wrgsbase_inactive (248 samples, 0.01%)</title><rect x="31.4401%" y="597" width="0.0107%" height="15" fill="rgb(216,220,45)" fg:x="730139" fg:w="248"/><text x="31.6901%" y="607.50"></text></g><g><title>cshook_systemcalltable_post_unlinkat (456 samples, 0.02%)</title><rect x="31.5217%" y="565" width="0.0196%" height="15" fill="rgb(234,112,18)" fg:x="732034" fg:w="456"/><text x="31.7717%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_unlinkat (448 samples, 0.02%)</title><rect x="31.5414%" y="565" width="0.0193%" height="15" fill="rgb(206,179,9)" fg:x="732490" fg:w="448"/><text x="31.7914%" y="575.50"></text></g><g><title>release_rundown (628 samples, 0.03%)</title><rect x="31.5688%" y="565" width="0.0270%" height="15" fill="rgb(215,115,40)" fg:x="733128" fg:w="628"/><text x="31.8188%" y="575.50"></text></g><g><title>exit_to_user_mode_loop (294 samples, 0.01%)</title><rect x="31.6031%" y="549" width="0.0127%" height="15" fill="rgb(222,69,34)" fg:x="733923" fg:w="294"/><text x="31.8531%" y="559.50"></text></g><g><title>__get_user_8 (1,144 samples, 0.05%)</title><rect x="31.7025%" y="485" width="0.0493%" height="15" fill="rgb(209,161,10)" fg:x="736232" fg:w="1144"/><text x="31.9525%" y="495.50"></text></g><g><title>__rseq_handle_notify_resume (2,059 samples, 0.09%)</title><rect x="31.6680%" y="517" width="0.0887%" height="15" fill="rgb(217,6,38)" fg:x="735432" fg:w="2059"/><text x="31.9180%" y="527.50"></text></g><g><title>rseq_ip_fixup (1,445 samples, 0.06%)</title><rect x="31.6945%" y="501" width="0.0622%" height="15" fill="rgb(229,229,48)" fg:x="736046" fg:w="1445"/><text x="31.9445%" y="511.50"></text></g><g><title>exit_to_user_mode_loop (3,352 samples, 0.14%)</title><rect x="31.6340%" y="533" width="0.1443%" height="15" fill="rgb(225,21,28)" fg:x="734641" fg:w="3352"/><text x="31.8840%" y="543.50"></text></g><g><title>restore_fpregs_from_fpstate (1,193 samples, 0.05%)</title><rect x="31.8031%" y="517" width="0.0514%" height="15" fill="rgb(206,33,13)" fg:x="738569" fg:w="1193"/><text x="32.0531%" y="527.50"></text></g><g><title>exit_to_user_mode_prepare (5,690 samples, 0.25%)</title><rect x="31.6157%" y="549" width="0.2450%" height="15" fill="rgb(242,178,17)" fg:x="734217" fg:w="5690"/><text x="31.8657%" y="559.50"></text></g><g><title>switch_fpu_return (1,813 samples, 0.08%)</title><rect x="31.7827%" y="533" width="0.0781%" height="15" fill="rgb(220,162,5)" fg:x="738094" fg:w="1813"/><text x="32.0327%" y="543.50"></text></g><g><title>syscall_exit_to_user_mode (6,321 samples, 0.27%)</title><rect x="31.5989%" y="565" width="0.2722%" height="15" fill="rgb(210,33,43)" fg:x="733826" fg:w="6321"/><text x="31.8489%" y="575.50"></text></g><g><title>_ZdlPv (299 samples, 0.01%)</title><rect x="31.9219%" y="549" width="0.0129%" height="15" fill="rgb(216,116,54)" fg:x="741327" fg:w="299"/><text x="32.1719%" y="559.50"></text></g><g><title>d_lru_add (345 samples, 0.01%)</title><rect x="31.9755%" y="501" width="0.0149%" height="15" fill="rgb(249,92,24)" fg:x="742573" fg:w="345"/><text x="32.2255%" y="511.50"></text></g><g><title>list_lru_add (274 samples, 0.01%)</title><rect x="31.9786%" y="485" width="0.0118%" height="15" fill="rgb(231,189,14)" fg:x="742644" fg:w="274"/><text x="32.2286%" y="495.50"></text></g><g><title>dput (609 samples, 0.03%)</title><rect x="31.9658%" y="517" width="0.0262%" height="15" fill="rgb(230,8,41)" fg:x="742346" fg:w="609"/><text x="32.2158%" y="527.50"></text></g><g><title>path_parentat (319 samples, 0.01%)</title><rect x="31.9944%" y="501" width="0.0137%" height="15" fill="rgb(249,7,27)" fg:x="743011" fg:w="319"/><text x="32.2444%" y="511.50"></text></g><g><title>filename_parentat (376 samples, 0.02%)</title><rect x="31.9920%" y="517" width="0.0162%" height="15" fill="rgb(232,86,5)" fg:x="742955" fg:w="376"/><text x="32.2420%" y="527.50"></text></g><g><title>btrfs_free_path (236 samples, 0.01%)</title><rect x="32.0759%" y="453" width="0.0102%" height="15" fill="rgb(224,175,18)" fg:x="744904" fg:w="236"/><text x="32.3259%" y="463.50"></text></g><g><title>btrfs_search_slot (766 samples, 0.03%)</title><rect x="32.0868%" y="437" width="0.0330%" height="15" fill="rgb(220,129,12)" fg:x="745157" fg:w="766"/><text x="32.3368%" y="447.50"></text></g><g><title>btrfs_lookup_dir_index_item (790 samples, 0.03%)</title><rect x="32.0861%" y="453" width="0.0340%" height="15" fill="rgb(210,19,36)" fg:x="745140" fg:w="790"/><text x="32.3361%" y="463.50"></text></g><g><title>read_block_for_search (235 samples, 0.01%)</title><rect x="32.1478%" y="421" width="0.0101%" height="15" fill="rgb(219,96,14)" fg:x="746573" fg:w="235"/><text x="32.3978%" y="431.50"></text></g><g><title>btrfs_search_slot (904 samples, 0.04%)</title><rect x="32.1213%" y="437" width="0.0389%" height="15" fill="rgb(249,106,1)" fg:x="745959" fg:w="904"/><text x="32.3713%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (993 samples, 0.04%)</title><rect x="32.1201%" y="453" width="0.0428%" height="15" fill="rgb(249,155,20)" fg:x="745930" fg:w="993"/><text x="32.3701%" y="463.50"></text></g><g><title>btrfs_del_dir_entries_in_log (2,440 samples, 0.11%)</title><rect x="32.0698%" y="469" width="0.1051%" height="15" fill="rgb(244,168,9)" fg:x="744763" fg:w="2440"/><text x="32.3198%" y="479.50"></text></g><g><title>__btrfs_tree_lock (235 samples, 0.01%)</title><rect x="32.2085%" y="389" width="0.0101%" height="15" fill="rgb(216,23,50)" fg:x="747983" fg:w="235"/><text x="32.4585%" y="399.50"></text></g><g><title>btrfs_lock_root_node (252 samples, 0.01%)</title><rect x="32.2085%" y="405" width="0.0109%" height="15" fill="rgb(224,219,20)" fg:x="747983" fg:w="252"/><text x="32.4585%" y="415.50"></text></g><g><title>btrfs_search_slot (905 samples, 0.04%)</title><rect x="32.1973%" y="421" width="0.0390%" height="15" fill="rgb(222,156,15)" fg:x="747722" fg:w="905"/><text x="32.4473%" y="431.50"></text></g><g><title>btrfs_del_inode_extref (1,363 samples, 0.06%)</title><rect x="32.1835%" y="437" width="0.0587%" height="15" fill="rgb(231,97,17)" fg:x="747402" fg:w="1363"/><text x="32.4335%" y="447.50"></text></g><g><title>btrfs_free_path (330 samples, 0.01%)</title><rect x="32.2432%" y="437" width="0.0142%" height="15" fill="rgb(218,70,48)" fg:x="748789" fg:w="330"/><text x="32.4932%" y="447.50"></text></g><g><title>find_extent_buffer (297 samples, 0.01%)</title><rect x="32.3008%" y="405" width="0.0128%" height="15" fill="rgb(212,196,52)" fg:x="750126" fg:w="297"/><text x="32.5508%" y="415.50"></text></g><g><title>read_block_for_search (423 samples, 0.02%)</title><rect x="32.2957%" y="421" width="0.0182%" height="15" fill="rgb(243,203,18)" fg:x="750009" fg:w="423"/><text x="32.5457%" y="431.50"></text></g><g><title>btrfs_search_slot (1,360 samples, 0.06%)</title><rect x="32.2578%" y="437" width="0.0586%" height="15" fill="rgb(252,125,41)" fg:x="749127" fg:w="1360"/><text x="32.5078%" y="447.50"></text></g><g><title>btrfs_del_inode_ref (3,253 samples, 0.14%)</title><rect x="32.1780%" y="453" width="0.1401%" height="15" fill="rgb(223,180,33)" fg:x="747276" fg:w="3253"/><text x="32.4280%" y="463.50"></text></g><g><title>btrfs_del_inode_ref_in_log (3,480 samples, 0.15%)</title><rect x="32.1750%" y="469" width="0.1499%" height="15" fill="rgb(254,159,46)" fg:x="747206" fg:w="3480"/><text x="32.4250%" y="479.50"></text></g><g><title>mutex_lock (238 samples, 0.01%)</title><rect x="32.3390%" y="453" width="0.0102%" height="15" fill="rgb(254,38,10)" fg:x="751013" fg:w="238"/><text x="32.5890%" y="463.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (622 samples, 0.03%)</title><rect x="32.3257%" y="469" width="0.0268%" height="15" fill="rgb(208,217,32)" fg:x="750706" fg:w="622"/><text x="32.5757%" y="479.50"></text></g><g><title>btrfs_delete_delayed_dir_index (749 samples, 0.03%)</title><rect x="32.3541%" y="469" width="0.0323%" height="15" fill="rgb(221,120,13)" fg:x="751365" fg:w="749"/><text x="32.6041%" y="479.50"></text></g><g><title>btrfs_get_token_32 (788 samples, 0.03%)</title><rect x="32.4066%" y="437" width="0.0339%" height="15" fill="rgb(246,54,52)" fg:x="752584" fg:w="788"/><text x="32.6566%" y="447.50"></text></g><g><title>btrfs_set_token_32 (710 samples, 0.03%)</title><rect x="32.4431%" y="437" width="0.0306%" height="15" fill="rgb(242,34,25)" fg:x="753431" fg:w="710"/><text x="32.6931%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (240 samples, 0.01%)</title><rect x="32.4737%" y="437" width="0.0103%" height="15" fill="rgb(247,209,9)" fg:x="754142" fg:w="240"/><text x="32.7237%" y="447.50"></text></g><g><title>memmove_extent_buffer (860 samples, 0.04%)</title><rect x="32.4931%" y="437" width="0.0370%" height="15" fill="rgb(228,71,26)" fg:x="754593" fg:w="860"/><text x="32.7431%" y="447.50"></text></g><g><title>memmove (661 samples, 0.03%)</title><rect x="32.5017%" y="421" width="0.0285%" height="15" fill="rgb(222,145,49)" fg:x="754792" fg:w="661"/><text x="32.7517%" y="431.50"></text></g><g><title>btrfs_del_items (3,417 samples, 0.15%)</title><rect x="32.3877%" y="453" width="0.1471%" height="15" fill="rgb(218,121,17)" fg:x="752144" fg:w="3417"/><text x="32.6377%" y="463.50"></text></g><g><title>btrfs_delete_one_dir_name (3,725 samples, 0.16%)</title><rect x="32.3864%" y="469" width="0.1604%" height="15" fill="rgb(244,50,7)" fg:x="752114" fg:w="3725"/><text x="32.6364%" y="479.50"></text></g><g><title>btrfs_match_dir_item_name (335 samples, 0.01%)</title><rect x="32.5644%" y="453" width="0.0144%" height="15" fill="rgb(246,229,37)" fg:x="756248" fg:w="335"/><text x="32.8144%" y="463.50"></text></g><g><title>btrfs_bin_search (750 samples, 0.03%)</title><rect x="32.6076%" y="437" width="0.0323%" height="15" fill="rgb(225,18,5)" fg:x="757251" fg:w="750"/><text x="32.8576%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (739 samples, 0.03%)</title><rect x="32.6081%" y="421" width="0.0318%" height="15" fill="rgb(213,204,8)" fg:x="757262" fg:w="739"/><text x="32.8581%" y="431.50"></text></g><g><title>osq_lock (4,201 samples, 0.18%)</title><rect x="32.7421%" y="357" width="0.1809%" height="15" fill="rgb(238,103,6)" fg:x="760374" fg:w="4201"/><text x="32.9921%" y="367.50"></text></g><g><title>rwsem_spin_on_owner (254 samples, 0.01%)</title><rect x="32.9255%" y="357" width="0.0109%" height="15" fill="rgb(222,25,35)" fg:x="764634" fg:w="254"/><text x="33.1755%" y="367.50"></text></g><g><title>rwsem_optimistic_spin (6,574 samples, 0.28%)</title><rect x="32.6553%" y="373" width="0.2831%" height="15" fill="rgb(213,203,35)" fg:x="758359" fg:w="6574"/><text x="32.9053%" y="383.50"></text></g><g><title>dequeue_entity (319 samples, 0.01%)</title><rect x="32.9464%" y="309" width="0.0137%" height="15" fill="rgb(221,79,53)" fg:x="765119" fg:w="319"/><text x="33.1964%" y="319.50"></text></g><g><title>dequeue_task_fair (416 samples, 0.02%)</title><rect x="32.9448%" y="325" width="0.0179%" height="15" fill="rgb(243,200,35)" fg:x="765083" fg:w="416"/><text x="33.1948%" y="335.50"></text></g><g><title>dequeue_task (454 samples, 0.02%)</title><rect x="32.9441%" y="341" width="0.0195%" height="15" fill="rgb(248,60,25)" fg:x="765065" fg:w="454"/><text x="33.1941%" y="351.50"></text></g><g><title>psi_group_change (265 samples, 0.01%)</title><rect x="32.9908%" y="325" width="0.0114%" height="15" fill="rgb(227,53,46)" fg:x="766150" fg:w="265"/><text x="33.2408%" y="335.50"></text></g><g><title>psi_task_switch (368 samples, 0.02%)</title><rect x="32.9874%" y="341" width="0.0158%" height="15" fill="rgb(216,120,32)" fg:x="766071" fg:w="368"/><text x="33.2374%" y="351.50"></text></g><g><title>__schedule (1,521 samples, 0.07%)</title><rect x="32.9403%" y="357" width="0.0655%" height="15" fill="rgb(220,134,1)" fg:x="764979" fg:w="1521"/><text x="33.1903%" y="367.50"></text></g><g><title>schedule (1,545 samples, 0.07%)</title><rect x="32.9397%" y="373" width="0.0665%" height="15" fill="rgb(237,168,5)" fg:x="764964" fg:w="1545"/><text x="33.1897%" y="383.50"></text></g><g><title>rwsem_down_write_slowpath (8,375 samples, 0.36%)</title><rect x="32.6456%" y="389" width="0.3606%" height="15" fill="rgb(231,100,33)" fg:x="758135" fg:w="8375"/><text x="32.8956%" y="399.50"></text></g><g><title>down_write (8,426 samples, 0.36%)</title><rect x="32.6440%" y="405" width="0.3628%" height="15" fill="rgb(236,177,47)" fg:x="758097" fg:w="8426"/><text x="32.8940%" y="415.50"></text></g><g><title>__btrfs_tree_lock (8,447 samples, 0.36%)</title><rect x="32.6433%" y="421" width="0.3637%" height="15" fill="rgb(235,7,49)" fg:x="758080" fg:w="8447"/><text x="32.8933%" y="431.50"></text></g><g><title>btrfs_lock_root_node (8,494 samples, 0.37%)</title><rect x="32.6425%" y="437" width="0.3658%" height="15" fill="rgb(232,119,22)" fg:x="758061" fg:w="8494"/><text x="32.8925%" y="447.50"></text></g><g><title>dequeue_entity (305 samples, 0.01%)</title><rect x="33.0278%" y="309" width="0.0131%" height="15" fill="rgb(254,73,53)" fg:x="767010" fg:w="305"/><text x="33.2778%" y="319.50"></text></g><g><title>dequeue_task_fair (384 samples, 0.02%)</title><rect x="33.0262%" y="325" width="0.0165%" height="15" fill="rgb(251,35,20)" fg:x="766972" fg:w="384"/><text x="33.2762%" y="335.50"></text></g><g><title>dequeue_task (407 samples, 0.02%)</title><rect x="33.0255%" y="341" width="0.0175%" height="15" fill="rgb(241,119,20)" fg:x="766957" fg:w="407"/><text x="33.2755%" y="351.50"></text></g><g><title>psi_task_switch (272 samples, 0.01%)</title><rect x="33.0657%" y="341" width="0.0117%" height="15" fill="rgb(207,102,14)" fg:x="767891" fg:w="272"/><text x="33.3157%" y="351.50"></text></g><g><title>__schedule (1,325 samples, 0.06%)</title><rect x="33.0220%" y="357" width="0.0571%" height="15" fill="rgb(248,201,50)" fg:x="766875" fg:w="1325"/><text x="33.2720%" y="367.50"></text></g><g><title>schedule (1,343 samples, 0.06%)</title><rect x="33.0216%" y="373" width="0.0578%" height="15" fill="rgb(222,185,44)" fg:x="766865" fg:w="1343"/><text x="33.2716%" y="383.50"></text></g><g><title>rwsem_down_read_slowpath (1,542 samples, 0.07%)</title><rect x="33.0137%" y="389" width="0.0664%" height="15" fill="rgb(218,107,18)" fg:x="766682" fg:w="1542"/><text x="33.2637%" y="399.50"></text></g><g><title>down_read (1,631 samples, 0.07%)</title><rect x="33.0101%" y="405" width="0.0702%" height="15" fill="rgb(237,177,39)" fg:x="766598" fg:w="1631"/><text x="33.2601%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,672 samples, 0.07%)</title><rect x="33.0089%" y="421" width="0.0720%" height="15" fill="rgb(246,69,6)" fg:x="766570" fg:w="1672"/><text x="33.2589%" y="431.50"></text></g><g><title>btrfs_read_lock_root_node (1,766 samples, 0.08%)</title><rect x="33.0083%" y="437" width="0.0760%" height="15" fill="rgb(234,208,37)" fg:x="766557" fg:w="1766"/><text x="33.2583%" y="447.50"></text></g><g><title>btrfs_release_path (273 samples, 0.01%)</title><rect x="33.0852%" y="437" width="0.0118%" height="15" fill="rgb(225,4,6)" fg:x="768342" fg:w="273"/><text x="33.3352%" y="447.50"></text></g><g><title>rwsem_spin_on_owner (305 samples, 0.01%)</title><rect x="33.1194%" y="357" width="0.0131%" height="15" fill="rgb(233,45,0)" fg:x="769138" fg:w="305"/><text x="33.3694%" y="367.50"></text></g><g><title>rwsem_optimistic_spin (693 samples, 0.03%)</title><rect x="33.1030%" y="373" width="0.0298%" height="15" fill="rgb(226,136,5)" fg:x="768757" fg:w="693"/><text x="33.3530%" y="383.50"></text></g><g><title>rwsem_down_write_slowpath (761 samples, 0.03%)</title><rect x="33.1023%" y="389" width="0.0328%" height="15" fill="rgb(211,91,47)" fg:x="768741" fg:w="761"/><text x="33.3523%" y="399.50"></text></g><g><title>__btrfs_tree_lock (873 samples, 0.04%)</title><rect x="33.0976%" y="421" width="0.0376%" height="15" fill="rgb(242,88,51)" fg:x="768630" fg:w="873"/><text x="33.3476%" y="431.50"></text></g><g><title>down_write (841 samples, 0.04%)</title><rect x="33.0989%" y="405" width="0.0362%" height="15" fill="rgb(230,91,28)" fg:x="768662" fg:w="841"/><text x="33.3489%" y="415.50"></text></g><g><title>btrfs_tree_lock (879 samples, 0.04%)</title><rect x="33.0976%" y="437" width="0.0379%" height="15" fill="rgb(254,186,29)" fg:x="768630" fg:w="879"/><text x="33.3476%" y="447.50"></text></g><g><title>radix_tree_lookup (379 samples, 0.02%)</title><rect x="33.1751%" y="389" width="0.0163%" height="15" fill="rgb(238,6,4)" fg:x="770430" fg:w="379"/><text x="33.4251%" y="399.50"></text></g><g><title>__radix_tree_lookup (379 samples, 0.02%)</title><rect x="33.1751%" y="373" width="0.0163%" height="15" fill="rgb(221,151,16)" fg:x="770430" fg:w="379"/><text x="33.4251%" y="383.50"></text></g><g><title>find_extent_buffer_nolock (630 samples, 0.03%)</title><rect x="33.1643%" y="405" width="0.0271%" height="15" fill="rgb(251,143,52)" fg:x="770180" fg:w="630"/><text x="33.4143%" y="415.50"></text></g><g><title>find_extent_buffer (902 samples, 0.04%)</title><rect x="33.1622%" y="421" width="0.0388%" height="15" fill="rgb(206,90,15)" fg:x="770130" fg:w="902"/><text x="33.4122%" y="431.50"></text></g><g><title>read_block_for_search (1,395 samples, 0.06%)</title><rect x="33.1429%" y="437" width="0.0601%" height="15" fill="rgb(218,35,8)" fg:x="769683" fg:w="1395"/><text x="33.3929%" y="447.50"></text></g><g><title>find_extent_buffer_nolock (376 samples, 0.02%)</title><rect x="33.2185%" y="341" width="0.0162%" height="15" fill="rgb(239,215,6)" fg:x="771438" fg:w="376"/><text x="33.4685%" y="351.50"></text></g><g><title>find_extent_buffer (518 samples, 0.02%)</title><rect x="33.2172%" y="357" width="0.0223%" height="15" fill="rgb(245,116,39)" fg:x="771408" fg:w="518"/><text x="33.4672%" y="367.50"></text></g><g><title>alloc_extent_buffer (567 samples, 0.02%)</title><rect x="33.2155%" y="373" width="0.0244%" height="15" fill="rgb(242,65,28)" fg:x="771369" fg:w="567"/><text x="33.4655%" y="383.50"></text></g><g><title>btrfs_find_create_tree_block (572 samples, 0.02%)</title><rect x="33.2154%" y="389" width="0.0246%" height="15" fill="rgb(252,132,53)" fg:x="771366" fg:w="572"/><text x="33.4654%" y="399.50"></text></g><g><title>btrfs_readahead_tree_block (723 samples, 0.03%)</title><rect x="33.2108%" y="405" width="0.0311%" height="15" fill="rgb(224,159,50)" fg:x="771259" fg:w="723"/><text x="33.4608%" y="415.50"></text></g><g><title>btrfs_readahead_node_child (860 samples, 0.04%)</title><rect x="33.2053%" y="421" width="0.0370%" height="15" fill="rgb(224,93,4)" fg:x="771131" fg:w="860"/><text x="33.4553%" y="431.50"></text></g><g><title>reada_for_balance (934 samples, 0.04%)</title><rect x="33.2030%" y="437" width="0.0402%" height="15" fill="rgb(208,81,34)" fg:x="771078" fg:w="934"/><text x="33.4530%" y="447.50"></text></g><g><title>select_idle_sibling (708 samples, 0.03%)</title><rect x="33.3071%" y="325" width="0.0305%" height="15" fill="rgb(233,92,54)" fg:x="773496" fg:w="708"/><text x="33.5571%" y="335.50"></text></g><g><title>select_idle_cpu (423 samples, 0.02%)</title><rect x="33.3194%" y="309" width="0.0182%" height="15" fill="rgb(237,21,14)" fg:x="773781" fg:w="423"/><text x="33.5694%" y="319.50"></text></g><g><title>select_task_rq_fair (1,032 samples, 0.04%)</title><rect x="33.3024%" y="341" width="0.0444%" height="15" fill="rgb(249,128,51)" fg:x="773387" fg:w="1032"/><text x="33.5524%" y="351.50"></text></g><g><title>enqueue_task (422 samples, 0.02%)</title><rect x="33.3537%" y="325" width="0.0182%" height="15" fill="rgb(223,129,24)" fg:x="774579" fg:w="422"/><text x="33.6037%" y="335.50"></text></g><g><title>ttwu_do_activate (490 samples, 0.02%)</title><rect x="33.3535%" y="341" width="0.0211%" height="15" fill="rgb(231,168,25)" fg:x="774573" fg:w="490"/><text x="33.6035%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (483 samples, 0.02%)</title><rect x="33.3747%" y="341" width="0.0208%" height="15" fill="rgb(224,39,20)" fg:x="775065" fg:w="483"/><text x="33.6247%" y="351.50"></text></g><g><title>try_to_wake_up (2,947 samples, 0.13%)</title><rect x="33.2699%" y="357" width="0.1269%" height="15" fill="rgb(225,152,53)" fg:x="772633" fg:w="2947"/><text x="33.5199%" y="367.50"></text></g><g><title>btrfs_tree_unlock (3,426 samples, 0.15%)</title><rect x="33.2495%" y="421" width="0.1475%" height="15" fill="rgb(252,17,24)" fg:x="772159" fg:w="3426"/><text x="33.4995%" y="431.50"></text></g><g><title>up_write (3,411 samples, 0.15%)</title><rect x="33.2502%" y="405" width="0.1469%" height="15" fill="rgb(250,114,30)" fg:x="772174" fg:w="3411"/><text x="33.5002%" y="415.50"></text></g><g><title>rwsem_wake.isra.0 (3,403 samples, 0.15%)</title><rect x="33.2505%" y="389" width="0.1465%" height="15" fill="rgb(229,5,4)" fg:x="772182" fg:w="3403"/><text x="33.5005%" y="399.50"></text></g><g><title>wake_up_q (3,026 samples, 0.13%)</title><rect x="33.2667%" y="373" width="0.1303%" height="15" fill="rgb(225,176,49)" fg:x="772559" fg:w="3026"/><text x="33.5167%" y="383.50"></text></g><g><title>unlock_up (3,656 samples, 0.16%)</title><rect x="33.2432%" y="437" width="0.1574%" height="15" fill="rgb(224,221,49)" fg:x="772013" fg:w="3656"/><text x="33.4932%" y="447.50"></text></g><g><title>btrfs_search_slot (19,107 samples, 0.82%)</title><rect x="32.5794%" y="453" width="0.8228%" height="15" fill="rgb(253,169,27)" fg:x="756596" fg:w="19107"/><text x="32.8294%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (19,844 samples, 0.85%)</title><rect x="32.5569%" y="469" width="0.8545%" height="15" fill="rgb(211,206,16)" fg:x="756074" fg:w="19844"/><text x="32.8069%" y="479.50"></text></g><g><title>btrfs_release_path (420 samples, 0.02%)</title><rect x="33.4124%" y="469" width="0.0181%" height="15" fill="rgb(244,87,35)" fg:x="775941" fg:w="420"/><text x="33.6624%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (395 samples, 0.02%)</title><rect x="33.4340%" y="453" width="0.0170%" height="15" fill="rgb(246,28,10)" fg:x="776443" fg:w="395"/><text x="33.6840%" y="463.50"></text></g><g><title>btrfs_update_inode (574 samples, 0.02%)</title><rect x="33.4315%" y="469" width="0.0247%" height="15" fill="rgb(229,12,44)" fg:x="776385" fg:w="574"/><text x="33.6815%" y="479.50"></text></g><g><title>__btrfs_unlink_inode (32,740 samples, 1.41%)</title><rect x="32.0538%" y="485" width="1.4098%" height="15" fill="rgb(210,145,37)" fg:x="744390" fg:w="32740"/><text x="32.3038%" y="495.50"></text></g><g><title>btrfs_btree_balance_dirty (288 samples, 0.01%)</title><rect x="33.4655%" y="485" width="0.0124%" height="15" fill="rgb(227,112,52)" fg:x="777175" fg:w="288"/><text x="33.7155%" y="495.50"></text></g><g><title>__btrfs_end_transaction (533 samples, 0.02%)</title><rect x="33.4809%" y="469" width="0.0230%" height="15" fill="rgb(238,155,34)" fg:x="777533" fg:w="533"/><text x="33.7309%" y="479.50"></text></g><g><title>btrfs_end_transaction (583 samples, 0.03%)</title><rect x="33.4809%" y="485" width="0.0251%" height="15" fill="rgb(239,226,36)" fg:x="777532" fg:w="583"/><text x="33.7309%" y="495.50"></text></g><g><title>free_extent_buffer (247 samples, 0.01%)</title><rect x="33.5199%" y="421" width="0.0106%" height="15" fill="rgb(230,16,23)" fg:x="778439" fg:w="247"/><text x="33.7699%" y="431.50"></text></g><g><title>btrfs_release_path (318 samples, 0.01%)</title><rect x="33.5177%" y="437" width="0.0137%" height="15" fill="rgb(236,171,36)" fg:x="778387" fg:w="318"/><text x="33.7677%" y="447.50"></text></g><g><title>btrfs_free_path (461 samples, 0.02%)</title><rect x="33.5172%" y="453" width="0.0199%" height="15" fill="rgb(221,22,14)" fg:x="778375" fg:w="461"/><text x="33.7672%" y="463.50"></text></g><g><title>btrfs_bin_search (496 samples, 0.02%)</title><rect x="33.5590%" y="421" width="0.0214%" height="15" fill="rgb(242,43,11)" fg:x="779345" fg:w="496"/><text x="33.8090%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (487 samples, 0.02%)</title><rect x="33.5593%" y="405" width="0.0210%" height="15" fill="rgb(232,69,23)" fg:x="779354" fg:w="487"/><text x="33.8093%" y="415.50"></text></g><g><title>dequeue_entity (296 samples, 0.01%)</title><rect x="33.6010%" y="293" width="0.0127%" height="15" fill="rgb(216,180,54)" fg:x="780321" fg:w="296"/><text x="33.8510%" y="303.50"></text></g><g><title>dequeue_task_fair (353 samples, 0.02%)</title><rect x="33.5993%" y="309" width="0.0152%" height="15" fill="rgb(216,5,24)" fg:x="780283" fg:w="353"/><text x="33.8493%" y="319.50"></text></g><g><title>dequeue_task (379 samples, 0.02%)</title><rect x="33.5987%" y="325" width="0.0163%" height="15" fill="rgb(225,89,9)" fg:x="780268" fg:w="379"/><text x="33.8487%" y="335.50"></text></g><g><title>__schedule (1,144 samples, 0.05%)</title><rect x="33.5955%" y="341" width="0.0493%" height="15" fill="rgb(243,75,33)" fg:x="780193" fg:w="1144"/><text x="33.8455%" y="351.50"></text></g><g><title>schedule (1,167 samples, 0.05%)</title><rect x="33.5953%" y="357" width="0.0503%" height="15" fill="rgb(247,141,45)" fg:x="780189" fg:w="1167"/><text x="33.8453%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (1,297 samples, 0.06%)</title><rect x="33.5906%" y="373" width="0.0558%" height="15" fill="rgb(232,177,36)" fg:x="780079" fg:w="1297"/><text x="33.8406%" y="383.50"></text></g><g><title>down_read (1,344 samples, 0.06%)</title><rect x="33.5887%" y="389" width="0.0579%" height="15" fill="rgb(219,125,36)" fg:x="780035" fg:w="1344"/><text x="33.8387%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,360 samples, 0.06%)</title><rect x="33.5882%" y="405" width="0.0586%" height="15" fill="rgb(227,94,9)" fg:x="780024" fg:w="1360"/><text x="33.8382%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (1,479 samples, 0.06%)</title><rect x="33.5879%" y="421" width="0.0637%" height="15" fill="rgb(240,34,52)" fg:x="780018" fg:w="1479"/><text x="33.8379%" y="431.50"></text></g><g><title>rwsem_spin_on_owner (354 samples, 0.02%)</title><rect x="33.6676%" y="341" width="0.0152%" height="15" fill="rgb(216,45,12)" fg:x="781867" fg:w="354"/><text x="33.9176%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (609 samples, 0.03%)</title><rect x="33.6567%" y="357" width="0.0262%" height="15" fill="rgb(246,21,19)" fg:x="781615" fg:w="609"/><text x="33.9067%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (686 samples, 0.03%)</title><rect x="33.6558%" y="373" width="0.0295%" height="15" fill="rgb(213,98,42)" fg:x="781594" fg:w="686"/><text x="33.9058%" y="383.50"></text></g><g><title>down_write (756 samples, 0.03%)</title><rect x="33.6529%" y="389" width="0.0326%" height="15" fill="rgb(250,136,47)" fg:x="781526" fg:w="756"/><text x="33.9029%" y="399.50"></text></g><g><title>__btrfs_tree_lock (771 samples, 0.03%)</title><rect x="33.6524%" y="405" width="0.0332%" height="15" fill="rgb(251,124,27)" fg:x="781514" fg:w="771"/><text x="33.9024%" y="415.50"></text></g><g><title>btrfs_tree_lock (774 samples, 0.03%)</title><rect x="33.6524%" y="421" width="0.0333%" height="15" fill="rgb(229,180,14)" fg:x="781514" fg:w="774"/><text x="33.9024%" y="431.50"></text></g><g><title>__schedule (580 samples, 0.02%)</title><rect x="33.6903%" y="341" width="0.0250%" height="15" fill="rgb(245,216,25)" fg:x="782395" fg:w="580"/><text x="33.9403%" y="351.50"></text></g><g><title>schedule (591 samples, 0.03%)</title><rect x="33.6900%" y="357" width="0.0254%" height="15" fill="rgb(251,43,5)" fg:x="782389" fg:w="591"/><text x="33.9400%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (634 samples, 0.03%)</title><rect x="33.6885%" y="373" width="0.0273%" height="15" fill="rgb(250,128,24)" fg:x="782354" fg:w="634"/><text x="33.9385%" y="383.50"></text></g><g><title>down_read (690 samples, 0.03%)</title><rect x="33.6862%" y="389" width="0.0297%" height="15" fill="rgb(217,117,27)" fg:x="782301" fg:w="690"/><text x="33.9362%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (707 samples, 0.03%)</title><rect x="33.6857%" y="405" width="0.0304%" height="15" fill="rgb(245,147,4)" fg:x="782288" fg:w="707"/><text x="33.9357%" y="415.50"></text></g><g><title>btrfs_tree_read_lock (712 samples, 0.03%)</title><rect x="33.6857%" y="421" width="0.0307%" height="15" fill="rgb(242,201,35)" fg:x="782288" fg:w="712"/><text x="33.9357%" y="431.50"></text></g><g><title>__radix_tree_lookup (427 samples, 0.02%)</title><rect x="33.7546%" y="357" width="0.0184%" height="15" fill="rgb(218,181,1)" fg:x="783889" fg:w="427"/><text x="34.0046%" y="367.50"></text></g><g><title>radix_tree_lookup (429 samples, 0.02%)</title><rect x="33.7546%" y="373" width="0.0185%" height="15" fill="rgb(222,6,29)" fg:x="783889" fg:w="429"/><text x="34.0046%" y="383.50"></text></g><g><title>find_extent_buffer_nolock (695 samples, 0.03%)</title><rect x="33.7432%" y="389" width="0.0299%" height="15" fill="rgb(208,186,3)" fg:x="783624" fg:w="695"/><text x="33.9932%" y="399.50"></text></g><g><title>find_extent_buffer (927 samples, 0.04%)</title><rect x="33.7407%" y="405" width="0.0399%" height="15" fill="rgb(216,36,26)" fg:x="783565" fg:w="927"/><text x="33.9907%" y="415.50"></text></g><g><title>read_block_for_search (1,450 samples, 0.06%)</title><rect x="33.7200%" y="421" width="0.0624%" height="15" fill="rgb(248,201,23)" fg:x="783084" fg:w="1450"/><text x="33.9700%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (266 samples, 0.01%)</title><rect x="33.7896%" y="405" width="0.0115%" height="15" fill="rgb(251,170,31)" fg:x="784701" fg:w="266"/><text x="34.0396%" y="415.50"></text></g><g><title>up_read (259 samples, 0.01%)</title><rect x="33.7899%" y="389" width="0.0112%" height="15" fill="rgb(207,110,25)" fg:x="784708" fg:w="259"/><text x="34.0399%" y="399.50"></text></g><g><title>rwsem_wake.isra.0 (258 samples, 0.01%)</title><rect x="33.7899%" y="373" width="0.0111%" height="15" fill="rgb(250,54,15)" fg:x="784709" fg:w="258"/><text x="34.0399%" y="383.50"></text></g><g><title>btrfs_search_slot (6,202 samples, 0.27%)</title><rect x="33.5428%" y="437" width="0.2671%" height="15" fill="rgb(227,68,33)" fg:x="778970" fg:w="6202"/><text x="33.7928%" y="447.50"></text></g><g><title>unlock_up (625 samples, 0.03%)</title><rect x="33.7830%" y="421" width="0.0269%" height="15" fill="rgb(238,34,41)" fg:x="784547" fg:w="625"/><text x="34.0330%" y="431.50"></text></g><g><title>setup_items_for_insert (797 samples, 0.03%)</title><rect x="33.8137%" y="437" width="0.0343%" height="15" fill="rgb(220,11,15)" fg:x="785262" fg:w="797"/><text x="34.0637%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (7,261 samples, 0.31%)</title><rect x="33.5370%" y="453" width="0.3127%" height="15" fill="rgb(246,111,35)" fg:x="778836" fg:w="7261"/><text x="33.7870%" y="463.50"></text></g><g><title>btrfs_orphan_add (7,988 samples, 0.34%)</title><rect x="33.5081%" y="485" width="0.3440%" height="15" fill="rgb(209,88,53)" fg:x="778165" fg:w="7988"/><text x="33.7581%" y="495.50"></text></g><g><title>btrfs_insert_orphan_item (7,917 samples, 0.34%)</title><rect x="33.5112%" y="469" width="0.3409%" height="15" fill="rgb(231,185,47)" fg:x="778236" fg:w="7917"/><text x="33.7612%" y="479.50"></text></g><g><title>__reserve_bytes (464 samples, 0.02%)</title><rect x="33.8728%" y="421" width="0.0200%" height="15" fill="rgb(233,154,1)" fg:x="786634" fg:w="464"/><text x="34.1228%" y="431.50"></text></g><g><title>btrfs_reserve_metadata_bytes (613 samples, 0.03%)</title><rect x="33.8708%" y="437" width="0.0264%" height="15" fill="rgb(225,15,46)" fg:x="786587" fg:w="613"/><text x="34.1208%" y="447.50"></text></g><g><title>btrfs_block_rsv_add (629 samples, 0.03%)</title><rect x="33.8702%" y="453" width="0.0271%" height="15" fill="rgb(211,135,41)" fg:x="786572" fg:w="629"/><text x="34.1202%" y="463.50"></text></g><g><title>start_transaction (1,172 samples, 0.05%)</title><rect x="33.8548%" y="469" width="0.0505%" height="15" fill="rgb(208,54,0)" fg:x="786215" fg:w="1172"/><text x="34.1048%" y="479.50"></text></g><g><title>btrfs_start_transaction_fallback_global_rsv (1,233 samples, 0.05%)</title><rect x="33.8530%" y="485" width="0.0531%" height="15" fill="rgb(244,136,14)" fg:x="786173" fg:w="1233"/><text x="34.1030%" y="495.50"></text></g><g><title>btrfs_update_inode (284 samples, 0.01%)</title><rect x="33.9061%" y="485" width="0.0122%" height="15" fill="rgb(241,56,14)" fg:x="787406" fg:w="284"/><text x="34.1561%" y="495.50"></text></g><g><title>btrfs_rmdir (43,559 samples, 1.88%)</title><rect x="32.0461%" y="501" width="1.8757%" height="15" fill="rgb(205,80,24)" fg:x="744211" fg:w="43559"/><text x="32.2961%" y="511.50">b..</text></g><g><title>dentry_unlink_inode (303 samples, 0.01%)</title><rect x="33.9238%" y="485" width="0.0130%" height="15" fill="rgb(220,57,4)" fg:x="787817" fg:w="303"/><text x="34.1738%" y="495.50"></text></g><g><title>d_delete (345 samples, 0.01%)</title><rect x="33.9229%" y="501" width="0.0149%" height="15" fill="rgb(226,193,50)" fg:x="787798" fg:w="345"/><text x="34.1729%" y="511.50"></text></g><g><title>btrfs_alloc_block_rsv (264 samples, 0.01%)</title><rect x="33.9834%" y="453" width="0.0114%" height="15" fill="rgb(231,168,22)" fg:x="789201" fg:w="264"/><text x="34.2334%" y="463.50"></text></g><g><title>btrfs_btree_balance_dirty (244 samples, 0.01%)</title><rect x="33.9969%" y="453" width="0.0105%" height="15" fill="rgb(254,215,14)" fg:x="789516" fg:w="244"/><text x="34.2469%" y="463.50"></text></g><g><title>btrfs_get_token_32 (716 samples, 0.03%)</title><rect x="34.0398%" y="405" width="0.0308%" height="15" fill="rgb(211,115,16)" fg:x="790512" fg:w="716"/><text x="34.2898%" y="415.50"></text></g><g><title>btrfs_set_token_32 (740 samples, 0.03%)</title><rect x="34.0720%" y="405" width="0.0319%" height="15" fill="rgb(236,210,16)" fg:x="791260" fg:w="740"/><text x="34.3220%" y="415.50"></text></g><g><title>check_setget_bounds.isra.0 (280 samples, 0.01%)</title><rect x="34.1039%" y="405" width="0.0121%" height="15" fill="rgb(221,94,12)" fg:x="792001" fg:w="280"/><text x="34.3539%" y="415.50"></text></g><g><title>memmove_extent_buffer (798 samples, 0.03%)</title><rect x="34.1233%" y="405" width="0.0344%" height="15" fill="rgb(235,218,49)" fg:x="792451" fg:w="798"/><text x="34.3733%" y="415.50"></text></g><g><title>memmove (598 samples, 0.03%)</title><rect x="34.1319%" y="389" width="0.0258%" height="15" fill="rgb(217,114,14)" fg:x="792651" fg:w="598"/><text x="34.3819%" y="399.50"></text></g><g><title>btrfs_del_items (3,186 samples, 0.14%)</title><rect x="34.0234%" y="421" width="0.1372%" height="15" fill="rgb(216,145,22)" fg:x="790131" fg:w="3186"/><text x="34.2734%" y="431.50"></text></g><g><title>btrfs_bin_search (636 samples, 0.03%)</title><rect x="34.2082%" y="389" width="0.0274%" height="15" fill="rgb(217,112,39)" fg:x="794422" fg:w="636"/><text x="34.4582%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (612 samples, 0.03%)</title><rect x="34.2092%" y="373" width="0.0264%" height="15" fill="rgb(225,85,32)" fg:x="794446" fg:w="612"/><text x="34.4592%" y="383.50"></text></g><g><title>osq_lock (3,906 samples, 0.17%)</title><rect x="34.3749%" y="309" width="0.1682%" height="15" fill="rgb(245,209,47)" fg:x="798293" fg:w="3906"/><text x="34.6249%" y="319.50"></text></g><g><title>rwsem_spin_on_owner (320 samples, 0.01%)</title><rect x="34.5457%" y="309" width="0.0138%" height="15" fill="rgb(218,220,15)" fg:x="802260" fg:w="320"/><text x="34.7957%" y="319.50"></text></g><g><title>rwsem_optimistic_spin (7,226 samples, 0.31%)</title><rect x="34.2506%" y="325" width="0.3112%" height="15" fill="rgb(222,202,31)" fg:x="795408" fg:w="7226"/><text x="34.5006%" y="335.50"></text></g><g><title>dequeue_entity (376 samples, 0.02%)</title><rect x="34.5702%" y="261" width="0.0162%" height="15" fill="rgb(243,203,4)" fg:x="802830" fg:w="376"/><text x="34.8202%" y="271.50"></text></g><g><title>dequeue_task_fair (479 samples, 0.02%)</title><rect x="34.5682%" y="277" width="0.0206%" height="15" fill="rgb(237,92,17)" fg:x="802782" fg:w="479"/><text x="34.8182%" y="287.50"></text></g><g><title>dequeue_task (499 samples, 0.02%)</title><rect x="34.5676%" y="293" width="0.0215%" height="15" fill="rgb(231,119,7)" fg:x="802770" fg:w="499"/><text x="34.8176%" y="303.50"></text></g><g><title>finish_task_switch.isra.0 (239 samples, 0.01%)</title><rect x="34.5893%" y="293" width="0.0103%" height="15" fill="rgb(237,82,41)" fg:x="803272" fg:w="239"/><text x="34.8393%" y="303.50"></text></g><g><title>psi_group_change (247 samples, 0.01%)</title><rect x="34.6187%" y="277" width="0.0106%" height="15" fill="rgb(226,81,48)" fg:x="803956" fg:w="247"/><text x="34.8687%" y="287.50"></text></g><g><title>psi_task_switch (346 samples, 0.01%)</title><rect x="34.6150%" y="293" width="0.0149%" height="15" fill="rgb(234,70,51)" fg:x="803869" fg:w="346"/><text x="34.8650%" y="303.50"></text></g><g><title>__schedule (1,573 samples, 0.07%)</title><rect x="34.5642%" y="309" width="0.0677%" height="15" fill="rgb(251,86,4)" fg:x="802691" fg:w="1573"/><text x="34.8142%" y="319.50"></text></g><g><title>rwsem_down_write_slowpath (9,077 samples, 0.39%)</title><rect x="34.2418%" y="341" width="0.3909%" height="15" fill="rgb(244,144,28)" fg:x="795202" fg:w="9077"/><text x="34.4918%" y="351.50"></text></g><g><title>schedule (1,608 samples, 0.07%)</title><rect x="34.5634%" y="325" width="0.0692%" height="15" fill="rgb(232,161,39)" fg:x="802671" fg:w="1608"/><text x="34.8134%" y="335.50"></text></g><g><title>down_write (9,144 samples, 0.39%)</title><rect x="34.2393%" y="357" width="0.3937%" height="15" fill="rgb(247,34,51)" fg:x="795144" fg:w="9144"/><text x="34.4893%" y="367.50"></text></g><g><title>__btrfs_tree_lock (9,173 samples, 0.39%)</title><rect x="34.2383%" y="373" width="0.3950%" height="15" fill="rgb(225,132,2)" fg:x="795121" fg:w="9173"/><text x="34.4883%" y="383.50"></text></g><g><title>btrfs_lock_root_node (9,236 samples, 0.40%)</title><rect x="34.2375%" y="389" width="0.3977%" height="15" fill="rgb(209,159,44)" fg:x="795103" fg:w="9236"/><text x="34.4875%" y="399.50"></text></g><g><title>dequeue_entity (316 samples, 0.01%)</title><rect x="34.6563%" y="261" width="0.0136%" height="15" fill="rgb(251,214,1)" fg:x="804828" fg:w="316"/><text x="34.9063%" y="271.50"></text></g><g><title>dequeue_task_fair (406 samples, 0.02%)</title><rect x="34.6545%" y="277" width="0.0175%" height="15" fill="rgb(247,84,47)" fg:x="804788" fg:w="406"/><text x="34.9045%" y="287.50"></text></g><g><title>dequeue_task (425 samples, 0.02%)</title><rect x="34.6540%" y="293" width="0.0183%" height="15" fill="rgb(240,111,43)" fg:x="804776" fg:w="425"/><text x="34.9040%" y="303.50"></text></g><g><title>psi_task_switch (268 samples, 0.01%)</title><rect x="34.6970%" y="293" width="0.0115%" height="15" fill="rgb(215,214,35)" fg:x="805774" fg:w="268"/><text x="34.9470%" y="303.50"></text></g><g><title>__schedule (1,399 samples, 0.06%)</title><rect x="34.6506%" y="309" width="0.0602%" height="15" fill="rgb(248,207,23)" fg:x="804697" fg:w="1399"/><text x="34.9006%" y="319.50"></text></g><g><title>schedule (1,416 samples, 0.06%)</title><rect x="34.6502%" y="325" width="0.0610%" height="15" fill="rgb(214,186,4)" fg:x="804688" fg:w="1416"/><text x="34.9002%" y="335.50"></text></g><g><title>rwsem_down_read_slowpath (1,658 samples, 0.07%)</title><rect x="34.6412%" y="341" width="0.0714%" height="15" fill="rgb(220,133,22)" fg:x="804479" fg:w="1658"/><text x="34.8912%" y="351.50"></text></g><g><title>down_read (1,751 samples, 0.08%)</title><rect x="34.6375%" y="357" width="0.0754%" height="15" fill="rgb(239,134,19)" fg:x="804393" fg:w="1751"/><text x="34.8875%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (1,780 samples, 0.08%)</title><rect x="34.6366%" y="373" width="0.0766%" height="15" fill="rgb(250,140,9)" fg:x="804371" fg:w="1780"/><text x="34.8866%" y="383.50"></text></g><g><title>btrfs_read_lock_root_node (1,929 samples, 0.08%)</title><rect x="34.6356%" y="389" width="0.0831%" height="15" fill="rgb(225,59,14)" fg:x="804348" fg:w="1929"/><text x="34.8856%" y="399.50"></text></g><g><title>rwsem_wake.isra.0 (237 samples, 0.01%)</title><rect x="34.7214%" y="341" width="0.0102%" height="15" fill="rgb(214,152,51)" fg:x="806340" fg:w="237"/><text x="34.9714%" y="351.50"></text></g><g><title>btrfs_tree_read_unlock (253 samples, 0.01%)</title><rect x="34.7207%" y="373" width="0.0109%" height="15" fill="rgb(251,227,43)" fg:x="806325" fg:w="253"/><text x="34.9707%" y="383.50"></text></g><g><title>up_read (244 samples, 0.01%)</title><rect x="34.7211%" y="357" width="0.0105%" height="15" fill="rgb(241,96,17)" fg:x="806334" fg:w="244"/><text x="34.9711%" y="367.50"></text></g><g><title>btrfs_release_path (378 samples, 0.02%)</title><rect x="34.7190%" y="389" width="0.0163%" height="15" fill="rgb(234,198,43)" fg:x="806286" fg:w="378"/><text x="34.9690%" y="399.50"></text></g><g><title>rwsem_spin_on_owner (429 samples, 0.02%)</title><rect x="34.7549%" y="309" width="0.0185%" height="15" fill="rgb(220,108,29)" fg:x="807118" fg:w="429"/><text x="35.0049%" y="319.50"></text></g><g><title>rwsem_optimistic_spin (762 samples, 0.03%)</title><rect x="34.7410%" y="325" width="0.0328%" height="15" fill="rgb(226,163,33)" fg:x="806795" fg:w="762"/><text x="34.9910%" y="335.50"></text></g><g><title>rwsem_down_write_slowpath (810 samples, 0.03%)</title><rect x="34.7404%" y="341" width="0.0349%" height="15" fill="rgb(205,194,45)" fg:x="806783" fg:w="810"/><text x="34.9904%" y="351.50"></text></g><g><title>down_write (899 samples, 0.04%)</title><rect x="34.7367%" y="357" width="0.0387%" height="15" fill="rgb(206,143,44)" fg:x="806695" fg:w="899"/><text x="34.9867%" y="367.50"></text></g><g><title>__btrfs_tree_lock (923 samples, 0.04%)</title><rect x="34.7357%" y="373" width="0.0397%" height="15" fill="rgb(236,136,36)" fg:x="806673" fg:w="923"/><text x="34.9857%" y="383.50"></text></g><g><title>btrfs_tree_lock (930 samples, 0.04%)</title><rect x="34.7357%" y="389" width="0.0400%" height="15" fill="rgb(249,172,42)" fg:x="806672" fg:w="930"/><text x="34.9857%" y="399.50"></text></g><g><title>radix_tree_lookup (381 samples, 0.02%)</title><rect x="34.8136%" y="341" width="0.0164%" height="15" fill="rgb(216,139,23)" fg:x="808482" fg:w="381"/><text x="35.0636%" y="351.50"></text></g><g><title>__radix_tree_lookup (380 samples, 0.02%)</title><rect x="34.8137%" y="325" width="0.0164%" height="15" fill="rgb(207,166,20)" fg:x="808483" fg:w="380"/><text x="35.0637%" y="335.50"></text></g><g><title>find_extent_buffer_nolock (629 samples, 0.03%)</title><rect x="34.8030%" y="357" width="0.0271%" height="15" fill="rgb(210,209,22)" fg:x="808236" fg:w="629"/><text x="35.0530%" y="367.50"></text></g><g><title>find_extent_buffer (854 samples, 0.04%)</title><rect x="34.8006%" y="373" width="0.0368%" height="15" fill="rgb(232,118,20)" fg:x="808180" fg:w="854"/><text x="35.0506%" y="383.50"></text></g><g><title>read_block_for_search (1,284 samples, 0.06%)</title><rect x="34.7837%" y="389" width="0.0553%" height="15" fill="rgb(238,113,42)" fg:x="807788" fg:w="1284"/><text x="35.0337%" y="399.50"></text></g><g><title>find_extent_buffer_nolock (355 samples, 0.02%)</title><rect x="34.8543%" y="293" width="0.0153%" height="15" fill="rgb(231,42,5)" fg:x="809428" fg:w="355"/><text x="35.1043%" y="303.50"></text></g><g><title>find_extent_buffer (488 samples, 0.02%)</title><rect x="34.8527%" y="309" width="0.0210%" height="15" fill="rgb(243,166,24)" fg:x="809390" fg:w="488"/><text x="35.1027%" y="319.50"></text></g><g><title>alloc_extent_buffer (534 samples, 0.02%)</title><rect x="34.8510%" y="325" width="0.0230%" height="15" fill="rgb(237,226,12)" fg:x="809350" fg:w="534"/><text x="35.1010%" y="335.50"></text></g><g><title>btrfs_find_create_tree_block (536 samples, 0.02%)</title><rect x="34.8510%" y="341" width="0.0231%" height="15" fill="rgb(229,133,24)" fg:x="809350" fg:w="536"/><text x="35.1010%" y="351.50"></text></g><g><title>btrfs_readahead_tree_block (682 samples, 0.03%)</title><rect x="34.8462%" y="357" width="0.0294%" height="15" fill="rgb(238,33,43)" fg:x="809239" fg:w="682"/><text x="35.0962%" y="367.50"></text></g><g><title>btrfs_readahead_node_child (821 samples, 0.04%)</title><rect x="34.8407%" y="373" width="0.0354%" height="15" fill="rgb(227,59,38)" fg:x="809112" fg:w="821"/><text x="35.0907%" y="383.50"></text></g><g><title>reada_for_balance (875 samples, 0.04%)</title><rect x="34.8390%" y="389" width="0.0377%" height="15" fill="rgb(230,97,0)" fg:x="809072" fg:w="875"/><text x="35.0890%" y="399.50"></text></g><g><title>select_idle_sibling (573 samples, 0.02%)</title><rect x="34.9344%" y="277" width="0.0247%" height="15" fill="rgb(250,173,50)" fg:x="811287" fg:w="573"/><text x="35.1844%" y="287.50"></text></g><g><title>select_idle_cpu (348 samples, 0.01%)</title><rect x="34.9441%" y="261" width="0.0150%" height="15" fill="rgb(240,15,50)" fg:x="811512" fg:w="348"/><text x="35.1941%" y="271.50"></text></g><g><title>select_task_rq_fair (940 samples, 0.04%)</title><rect x="34.9286%" y="293" width="0.0405%" height="15" fill="rgb(221,93,22)" fg:x="811153" fg:w="940"/><text x="35.1786%" y="303.50"></text></g><g><title>enqueue_task (371 samples, 0.02%)</title><rect x="34.9754%" y="277" width="0.0160%" height="15" fill="rgb(245,180,53)" fg:x="812239" fg:w="371"/><text x="35.2254%" y="287.50"></text></g><g><title>ttwu_do_activate (434 samples, 0.02%)</title><rect x="34.9753%" y="293" width="0.0187%" height="15" fill="rgb(231,88,51)" fg:x="812236" fg:w="434"/><text x="35.2253%" y="303.50"></text></g><g><title>ttwu_queue_wakelist (437 samples, 0.02%)</title><rect x="34.9940%" y="293" width="0.0188%" height="15" fill="rgb(240,58,21)" fg:x="812671" fg:w="437"/><text x="35.2440%" y="303.50"></text></g><g><title>try_to_wake_up (2,623 samples, 0.11%)</title><rect x="34.9011%" y="309" width="0.1129%" height="15" fill="rgb(237,21,10)" fg:x="810513" fg:w="2623"/><text x="35.1511%" y="319.50"></text></g><g><title>rwsem_wake.isra.0 (3,017 samples, 0.13%)</title><rect x="34.8843%" y="341" width="0.1299%" height="15" fill="rgb(218,43,11)" fg:x="810123" fg:w="3017"/><text x="35.1343%" y="351.50"></text></g><g><title>wake_up_q (2,702 samples, 0.12%)</title><rect x="34.8978%" y="325" width="0.1163%" height="15" fill="rgb(218,221,29)" fg:x="810438" fg:w="2702"/><text x="35.1478%" y="335.50"></text></g><g><title>btrfs_tree_unlock (3,038 samples, 0.13%)</title><rect x="34.8836%" y="373" width="0.1308%" height="15" fill="rgb(214,118,42)" fg:x="810107" fg:w="3038"/><text x="35.1336%" y="383.50"></text></g><g><title>up_write (3,026 samples, 0.13%)</title><rect x="34.8841%" y="357" width="0.1303%" height="15" fill="rgb(251,200,26)" fg:x="810119" fg:w="3026"/><text x="35.1341%" y="367.50"></text></g><g><title>unlock_up (3,279 samples, 0.14%)</title><rect x="34.8767%" y="389" width="0.1412%" height="15" fill="rgb(237,101,39)" fg:x="809947" fg:w="3279"/><text x="35.1267%" y="399.50"></text></g><g><title>btrfs_search_slot (19,498 samples, 0.84%)</title><rect x="34.1801%" y="405" width="0.8396%" height="15" fill="rgb(251,117,11)" fg:x="793770" fg:w="19498"/><text x="34.4301%" y="415.50"></text></g><g><title>btrfs_lookup_inode (19,665 samples, 0.85%)</title><rect x="34.1750%" y="421" width="0.8468%" height="15" fill="rgb(216,223,23)" fg:x="793651" fg:w="19665"/><text x="34.4250%" y="431.50"></text></g><g><title>btrfs_release_path (434 samples, 0.02%)</title><rect x="35.0262%" y="421" width="0.0187%" height="15" fill="rgb(251,54,12)" fg:x="813418" fg:w="434"/><text x="35.2762%" y="431.50"></text></g><g><title>__btrfs_update_delayed_inode (24,404 samples, 1.05%)</title><rect x="34.0163%" y="437" width="1.0508%" height="15" fill="rgb(254,176,54)" fg:x="789965" fg:w="24404"/><text x="34.2663%" y="447.50"></text></g><g><title>__btrfs_end_transaction (271 samples, 0.01%)</title><rect x="35.0815%" y="421" width="0.0117%" height="15" fill="rgb(210,32,8)" fg:x="814704" fg:w="271"/><text x="35.3315%" y="431.50"></text></g><g><title>btrfs_end_transaction (307 samples, 0.01%)</title><rect x="35.0815%" y="437" width="0.0132%" height="15" fill="rgb(235,52,38)" fg:x="814704" fg:w="307"/><text x="35.3315%" y="447.50"></text></g><g><title>btrfs_join_transaction (288 samples, 0.01%)</title><rect x="35.1043%" y="437" width="0.0124%" height="15" fill="rgb(231,4,44)" fg:x="815233" fg:w="288"/><text x="35.3543%" y="447.50"></text></g><g><title>start_transaction (268 samples, 0.01%)</title><rect x="35.1052%" y="421" width="0.0115%" height="15" fill="rgb(249,2,32)" fg:x="815253" fg:w="268"/><text x="35.3552%" y="431.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (26,000 samples, 1.12%)</title><rect x="34.0074%" y="453" width="1.1196%" height="15" fill="rgb(224,65,26)" fg:x="789760" fg:w="26000"/><text x="34.2574%" y="463.50"></text></g><g><title>btrfs_del_items (467 samples, 0.02%)</title><rect x="35.1366%" y="437" width="0.0201%" height="15" fill="rgb(250,73,40)" fg:x="815984" fg:w="467"/><text x="35.3866%" y="447.50"></text></g><g><title>btrfs_release_path (383 samples, 0.02%)</title><rect x="35.1571%" y="421" width="0.0165%" height="15" fill="rgb(253,177,16)" fg:x="816459" fg:w="383"/><text x="35.4071%" y="431.50"></text></g><g><title>btrfs_free_path (524 samples, 0.02%)</title><rect x="35.1568%" y="437" width="0.0226%" height="15" fill="rgb(217,32,34)" fg:x="816451" fg:w="524"/><text x="35.4068%" y="447.50"></text></g><g><title>btrfs_bin_search (534 samples, 0.02%)</title><rect x="35.2085%" y="421" width="0.0230%" height="15" fill="rgb(212,7,10)" fg:x="817652" fg:w="534"/><text x="35.4585%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (518 samples, 0.02%)</title><rect x="35.2092%" y="405" width="0.0223%" height="15" fill="rgb(245,89,8)" fg:x="817668" fg:w="518"/><text x="35.4592%" y="415.50"></text></g><g><title>osq_lock (3,378 samples, 0.15%)</title><rect x="35.3591%" y="341" width="0.1455%" height="15" fill="rgb(237,16,53)" fg:x="821151" fg:w="3378"/><text x="35.6091%" y="351.50"></text></g><g><title>rwsem_spin_on_owner (280 samples, 0.01%)</title><rect x="35.5064%" y="341" width="0.0121%" height="15" fill="rgb(250,204,30)" fg:x="824570" fg:w="280"/><text x="35.7564%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (6,420 samples, 0.28%)</title><rect x="35.2442%" y="357" width="0.2764%" height="15" fill="rgb(208,77,27)" fg:x="818481" fg:w="6420"/><text x="35.4942%" y="367.50"></text></g><g><title>dequeue_entity (302 samples, 0.01%)</title><rect x="35.5293%" y="293" width="0.0130%" height="15" fill="rgb(250,204,28)" fg:x="825103" fg:w="302"/><text x="35.7793%" y="303.50"></text></g><g><title>dequeue_task_fair (403 samples, 0.02%)</title><rect x="35.5273%" y="309" width="0.0174%" height="15" fill="rgb(244,63,21)" fg:x="825056" fg:w="403"/><text x="35.7773%" y="319.50"></text></g><g><title>dequeue_task (422 samples, 0.02%)</title><rect x="35.5271%" y="325" width="0.0182%" height="15" fill="rgb(236,85,44)" fg:x="825052" fg:w="422"/><text x="35.7771%" y="335.50"></text></g><g><title>psi_task_switch (275 samples, 0.01%)</title><rect x="35.5681%" y="325" width="0.0118%" height="15" fill="rgb(215,98,4)" fg:x="826004" fg:w="275"/><text x="35.8181%" y="335.50"></text></g><g><title>__schedule (1,365 samples, 0.06%)</title><rect x="35.5230%" y="341" width="0.0588%" height="15" fill="rgb(235,38,11)" fg:x="824956" fg:w="1365"/><text x="35.7730%" y="351.50"></text></g><g><title>schedule (1,390 samples, 0.06%)</title><rect x="35.5223%" y="357" width="0.0599%" height="15" fill="rgb(254,186,25)" fg:x="824939" fg:w="1390"/><text x="35.7723%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (8,021 samples, 0.35%)</title><rect x="35.2368%" y="373" width="0.3454%" height="15" fill="rgb(225,55,31)" fg:x="818309" fg:w="8021"/><text x="35.4868%" y="383.50"></text></g><g><title>down_write (8,076 samples, 0.35%)</title><rect x="35.2347%" y="389" width="0.3478%" height="15" fill="rgb(211,15,21)" fg:x="818262" fg:w="8076"/><text x="35.4847%" y="399.50"></text></g><g><title>__btrfs_tree_lock (8,101 samples, 0.35%)</title><rect x="35.2339%" y="405" width="0.3488%" height="15" fill="rgb(215,187,41)" fg:x="818242" fg:w="8101"/><text x="35.4839%" y="415.50"></text></g><g><title>btrfs_lock_root_node (8,144 samples, 0.35%)</title><rect x="35.2333%" y="421" width="0.3507%" height="15" fill="rgb(248,69,32)" fg:x="818228" fg:w="8144"/><text x="35.4833%" y="431.50"></text></g><g><title>dequeue_entity (309 samples, 0.01%)</title><rect x="35.6034%" y="293" width="0.0133%" height="15" fill="rgb(252,102,52)" fg:x="826824" fg:w="309"/><text x="35.8534%" y="303.50"></text></g><g><title>dequeue_task_fair (381 samples, 0.02%)</title><rect x="35.6019%" y="309" width="0.0164%" height="15" fill="rgb(253,140,32)" fg:x="826789" fg:w="381"/><text x="35.8519%" y="319.50"></text></g><g><title>dequeue_task (394 samples, 0.02%)</title><rect x="35.6016%" y="325" width="0.0170%" height="15" fill="rgb(216,56,42)" fg:x="826781" fg:w="394"/><text x="35.8516%" y="335.50"></text></g><g><title>__schedule (1,174 samples, 0.05%)</title><rect x="35.5987%" y="341" width="0.0506%" height="15" fill="rgb(216,184,14)" fg:x="826715" fg:w="1174"/><text x="35.8487%" y="351.50"></text></g><g><title>schedule (1,194 samples, 0.05%)</title><rect x="35.5983%" y="357" width="0.0514%" height="15" fill="rgb(237,187,27)" fg:x="826704" fg:w="1194"/><text x="35.8483%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (1,444 samples, 0.06%)</title><rect x="35.5894%" y="373" width="0.0622%" height="15" fill="rgb(219,65,3)" fg:x="826498" fg:w="1444"/><text x="35.8394%" y="383.50"></text></g><g><title>down_read (1,532 samples, 0.07%)</title><rect x="35.5857%" y="389" width="0.0660%" height="15" fill="rgb(245,83,25)" fg:x="826413" fg:w="1532"/><text x="35.8357%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,559 samples, 0.07%)</title><rect x="35.5851%" y="405" width="0.0671%" height="15" fill="rgb(214,205,45)" fg:x="826398" fg:w="1559"/><text x="35.8351%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (1,684 samples, 0.07%)</title><rect x="35.5841%" y="421" width="0.0725%" height="15" fill="rgb(241,20,18)" fg:x="826375" fg:w="1684"/><text x="35.8341%" y="431.50"></text></g><g><title>rwsem_wake.isra.0 (249 samples, 0.01%)</title><rect x="35.6587%" y="373" width="0.0107%" height="15" fill="rgb(232,163,23)" fg:x="828107" fg:w="249"/><text x="35.9087%" y="383.50"></text></g><g><title>btrfs_tree_read_unlock (259 samples, 0.01%)</title><rect x="35.6584%" y="405" width="0.0112%" height="15" fill="rgb(214,5,46)" fg:x="828100" fg:w="259"/><text x="35.9084%" y="415.50"></text></g><g><title>up_read (252 samples, 0.01%)</title><rect x="35.6587%" y="389" width="0.0109%" height="15" fill="rgb(229,78,17)" fg:x="828107" fg:w="252"/><text x="35.9087%" y="399.50"></text></g><g><title>btrfs_release_path (377 samples, 0.02%)</title><rect x="35.6569%" y="421" width="0.0162%" height="15" fill="rgb(248,89,10)" fg:x="828066" fg:w="377"/><text x="35.9069%" y="431.50"></text></g><g><title>rwsem_spin_on_owner (320 samples, 0.01%)</title><rect x="35.6939%" y="341" width="0.0138%" height="15" fill="rgb(248,54,15)" fg:x="828925" fg:w="320"/><text x="35.9439%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (642 samples, 0.03%)</title><rect x="35.6801%" y="357" width="0.0276%" height="15" fill="rgb(223,116,6)" fg:x="828605" fg:w="642"/><text x="35.9301%" y="367.50"></text></g><g><title>down_write (792 samples, 0.03%)</title><rect x="35.6749%" y="389" width="0.0341%" height="15" fill="rgb(205,125,38)" fg:x="828484" fg:w="792"/><text x="35.9249%" y="399.50"></text></g><g><title>rwsem_down_write_slowpath (683 samples, 0.03%)</title><rect x="35.6796%" y="373" width="0.0294%" height="15" fill="rgb(251,78,38)" fg:x="828593" fg:w="683"/><text x="35.9296%" y="383.50"></text></g><g><title>__btrfs_tree_lock (822 samples, 0.04%)</title><rect x="35.6737%" y="405" width="0.0354%" height="15" fill="rgb(253,78,28)" fg:x="828457" fg:w="822"/><text x="35.9237%" y="415.50"></text></g><g><title>btrfs_tree_lock (830 samples, 0.04%)</title><rect x="35.6737%" y="421" width="0.0357%" height="15" fill="rgb(209,120,3)" fg:x="828457" fg:w="830"/><text x="35.9237%" y="431.50"></text></g><g><title>radix_tree_lookup (352 samples, 0.02%)</title><rect x="35.7487%" y="373" width="0.0152%" height="15" fill="rgb(238,229,9)" fg:x="830198" fg:w="352"/><text x="35.9987%" y="383.50"></text></g><g><title>__radix_tree_lookup (351 samples, 0.02%)</title><rect x="35.7488%" y="357" width="0.0151%" height="15" fill="rgb(253,159,18)" fg:x="830199" fg:w="351"/><text x="35.9988%" y="367.50"></text></g><g><title>find_extent_buffer_nolock (629 samples, 0.03%)</title><rect x="35.7368%" y="389" width="0.0271%" height="15" fill="rgb(244,42,34)" fg:x="829922" fg:w="629"/><text x="35.9868%" y="399.50"></text></g><g><title>find_extent_buffer (841 samples, 0.04%)</title><rect x="35.7344%" y="405" width="0.0362%" height="15" fill="rgb(224,8,7)" fg:x="829865" fg:w="841"/><text x="35.9844%" y="415.50"></text></g><g><title>read_block_for_search (1,290 samples, 0.06%)</title><rect x="35.7166%" y="421" width="0.0555%" height="15" fill="rgb(210,201,45)" fg:x="829453" fg:w="1290"/><text x="35.9666%" y="431.50"></text></g><g><title>alloc_extent_buffer (256 samples, 0.01%)</title><rect x="35.7784%" y="357" width="0.0110%" height="15" fill="rgb(252,185,21)" fg:x="830888" fg:w="256"/><text x="36.0284%" y="367.50"></text></g><g><title>btrfs_find_create_tree_block (257 samples, 0.01%)</title><rect x="35.7784%" y="373" width="0.0111%" height="15" fill="rgb(223,131,1)" fg:x="830888" fg:w="257"/><text x="36.0284%" y="383.50"></text></g><g><title>btrfs_readahead_tree_block (332 samples, 0.01%)</title><rect x="35.7765%" y="389" width="0.0143%" height="15" fill="rgb(245,141,16)" fg:x="830843" fg:w="332"/><text x="36.0265%" y="399.50"></text></g><g><title>btrfs_readahead_node_child (405 samples, 0.02%)</title><rect x="35.7735%" y="405" width="0.0174%" height="15" fill="rgb(229,55,45)" fg:x="830774" fg:w="405"/><text x="36.0235%" y="415.50"></text></g><g><title>reada_for_balance (442 samples, 0.02%)</title><rect x="35.7722%" y="421" width="0.0190%" height="15" fill="rgb(208,92,15)" fg:x="830743" fg:w="442"/><text x="36.0222%" y="431.50"></text></g><g><title>select_idle_sibling (560 samples, 0.02%)</title><rect x="35.8424%" y="309" width="0.0241%" height="15" fill="rgb(234,185,47)" fg:x="832373" fg:w="560"/><text x="36.0924%" y="319.50"></text></g><g><title>select_idle_cpu (326 samples, 0.01%)</title><rect x="35.8524%" y="293" width="0.0140%" height="15" fill="rgb(253,104,50)" fg:x="832607" fg:w="326"/><text x="36.1024%" y="303.50"></text></g><g><title>select_task_rq_fair (851 samples, 0.04%)</title><rect x="35.8383%" y="325" width="0.0366%" height="15" fill="rgb(205,70,7)" fg:x="832279" fg:w="851"/><text x="36.0883%" y="335.50"></text></g><g><title>enqueue_task (349 samples, 0.02%)</title><rect x="35.8807%" y="309" width="0.0150%" height="15" fill="rgb(240,178,43)" fg:x="833263" fg:w="349"/><text x="36.1307%" y="319.50"></text></g><g><title>ttwu_do_activate (393 samples, 0.02%)</title><rect x="35.8805%" y="325" width="0.0169%" height="15" fill="rgb(214,112,2)" fg:x="833258" fg:w="393"/><text x="36.1305%" y="335.50"></text></g><g><title>ttwu_queue_wakelist (363 samples, 0.02%)</title><rect x="35.8975%" y="325" width="0.0156%" height="15" fill="rgb(206,46,17)" fg:x="833654" fg:w="363"/><text x="36.1475%" y="335.50"></text></g><g><title>try_to_wake_up (2,323 samples, 0.10%)</title><rect x="35.8143%" y="341" width="0.1000%" height="15" fill="rgb(225,220,16)" fg:x="831722" fg:w="2323"/><text x="36.0643%" y="351.50"></text></g><g><title>rwsem_wake.isra.0 (2,689 samples, 0.12%)</title><rect x="35.7988%" y="373" width="0.1158%" height="15" fill="rgb(238,65,40)" fg:x="831361" fg:w="2689"/><text x="36.0488%" y="383.50"></text></g><g><title>wake_up_q (2,394 samples, 0.10%)</title><rect x="35.8115%" y="357" width="0.1031%" height="15" fill="rgb(230,151,21)" fg:x="831656" fg:w="2394"/><text x="36.0615%" y="367.50"></text></g><g><title>btrfs_tree_unlock (2,723 samples, 0.12%)</title><rect x="35.7975%" y="405" width="0.1173%" height="15" fill="rgb(218,58,49)" fg:x="831330" fg:w="2723"/><text x="36.0475%" y="415.50"></text></g><g><title>up_write (2,703 samples, 0.12%)</title><rect x="35.7983%" y="389" width="0.1164%" height="15" fill="rgb(219,179,14)" fg:x="831350" fg:w="2703"/><text x="36.0483%" y="399.50"></text></g><g><title>unlock_up (2,932 samples, 0.13%)</title><rect x="35.7912%" y="421" width="0.1263%" height="15" fill="rgb(223,72,1)" fg:x="831185" fg:w="2932"/><text x="36.0412%" y="431.50"></text></g><g><title>btrfs_search_slot (17,109 samples, 0.74%)</title><rect x="35.1823%" y="437" width="0.7367%" height="15" fill="rgb(238,126,10)" fg:x="817045" fg:w="17109"/><text x="35.4323%" y="447.50"></text></g><g><title>btrfs_del_orphan_item (18,433 samples, 0.79%)</title><rect x="35.1289%" y="453" width="0.7937%" height="15" fill="rgb(224,206,38)" fg:x="815804" fg:w="18433"/><text x="35.3789%" y="463.50"></text></g><g><title>btrfs_trans_release_metadata (364 samples, 0.02%)</title><rect x="35.9396%" y="421" width="0.0157%" height="15" fill="rgb(212,201,54)" fg:x="834631" fg:w="364"/><text x="36.1896%" y="431.50"></text></g><g><title>__btrfs_end_transaction (878 samples, 0.04%)</title><rect x="35.9247%" y="437" width="0.0378%" height="15" fill="rgb(218,154,48)" fg:x="834284" fg:w="878"/><text x="36.1747%" y="447.50"></text></g><g><title>btrfs_end_transaction (952 samples, 0.04%)</title><rect x="35.9238%" y="453" width="0.0410%" height="15" fill="rgb(232,93,24)" fg:x="834265" fg:w="952"/><text x="36.1738%" y="463.50"></text></g><g><title>__radix_tree_lookup (434 samples, 0.02%)</title><rect x="35.9995%" y="389" width="0.0187%" height="15" fill="rgb(245,30,21)" fg:x="836023" fg:w="434"/><text x="36.2495%" y="399.50"></text></g><g><title>radix_tree_delete (524 samples, 0.02%)</title><rect x="35.9966%" y="421" width="0.0226%" height="15" fill="rgb(242,148,29)" fg:x="835955" fg:w="524"/><text x="36.2466%" y="431.50"></text></g><g><title>radix_tree_delete_item (520 samples, 0.02%)</title><rect x="35.9968%" y="405" width="0.0224%" height="15" fill="rgb(244,153,54)" fg:x="835959" fg:w="520"/><text x="36.2468%" y="415.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (874 samples, 0.04%)</title><rect x="35.9816%" y="437" width="0.0376%" height="15" fill="rgb(252,87,22)" fg:x="835606" fg:w="874"/><text x="36.2316%" y="447.50"></text></g><g><title>btrfs_remove_delayed_node (953 samples, 0.04%)</title><rect x="35.9815%" y="453" width="0.0410%" height="15" fill="rgb(210,51,29)" fg:x="835605" fg:w="953"/><text x="36.2315%" y="463.50"></text></g><g><title>clear_state_bit (393 samples, 0.02%)</title><rect x="36.0528%" y="421" width="0.0169%" height="15" fill="rgb(242,136,47)" fg:x="837259" fg:w="393"/><text x="36.3028%" y="431.50"></text></g><g><title>__clear_extent_bit (846 samples, 0.04%)</title><rect x="36.0379%" y="437" width="0.0364%" height="15" fill="rgb(238,68,4)" fg:x="836914" fg:w="846"/><text x="36.2879%" y="447.50"></text></g><g><title>__btrfs_add_free_space (292 samples, 0.01%)</title><rect x="36.1047%" y="373" width="0.0126%" height="15" fill="rgb(242,161,30)" fg:x="838465" fg:w="292"/><text x="36.3547%" y="383.50"></text></g><g><title>btrfs_add_free_space (305 samples, 0.01%)</title><rect x="36.1047%" y="389" width="0.0131%" height="15" fill="rgb(218,58,44)" fg:x="838465" fg:w="305"/><text x="36.3547%" y="399.50"></text></g><g><title>btrfs_free_tree_block (470 samples, 0.02%)</title><rect x="36.1014%" y="405" width="0.0202%" height="15" fill="rgb(252,125,32)" fg:x="838389" fg:w="470"/><text x="36.3514%" y="415.50"></text></g><g><title>btrfs_del_leaf (521 samples, 0.02%)</title><rect x="36.1011%" y="421" width="0.0224%" height="15" fill="rgb(219,178,0)" fg:x="838381" fg:w="521"/><text x="36.3511%" y="431.50"></text></g><g><title>btrfs_get_token_32 (836 samples, 0.04%)</title><rect x="36.1276%" y="421" width="0.0360%" height="15" fill="rgb(213,152,7)" fg:x="838997" fg:w="836"/><text x="36.3776%" y="431.50"></text></g><g><title>btrfs_set_token_32 (731 samples, 0.03%)</title><rect x="36.1659%" y="421" width="0.0315%" height="15" fill="rgb(249,109,34)" fg:x="839887" fg:w="731"/><text x="36.4159%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (277 samples, 0.01%)</title><rect x="36.1975%" y="421" width="0.0119%" height="15" fill="rgb(232,96,21)" fg:x="840621" fg:w="277"/><text x="36.4475%" y="431.50"></text></g><g><title>memmove_extent_buffer (693 samples, 0.03%)</title><rect x="36.2183%" y="421" width="0.0298%" height="15" fill="rgb(228,27,39)" fg:x="841103" fg:w="693"/><text x="36.4683%" y="431.50"></text></g><g><title>memmove (493 samples, 0.02%)</title><rect x="36.2269%" y="405" width="0.0212%" height="15" fill="rgb(211,182,52)" fg:x="841303" fg:w="493"/><text x="36.4769%" y="415.50"></text></g><g><title>push_leaf_left (294 samples, 0.01%)</title><rect x="36.2481%" y="421" width="0.0127%" height="15" fill="rgb(234,178,38)" fg:x="841796" fg:w="294"/><text x="36.4981%" y="431.50"></text></g><g><title>btrfs_del_items (4,167 samples, 0.18%)</title><rect x="36.0873%" y="437" width="0.1794%" height="15" fill="rgb(221,111,3)" fg:x="838062" fg:w="4167"/><text x="36.3373%" y="447.50"></text></g><g><title>btrfs_drop_extent_cache (435 samples, 0.02%)</title><rect x="36.2668%" y="437" width="0.0187%" height="15" fill="rgb(228,175,21)" fg:x="842230" fg:w="435"/><text x="36.5168%" y="447.50"></text></g><g><title>free_extent_buffer (239 samples, 0.01%)</title><rect x="36.2936%" y="405" width="0.0103%" height="15" fill="rgb(228,174,43)" fg:x="842853" fg:w="239"/><text x="36.5436%" y="415.50"></text></g><g><title>btrfs_release_path (459 samples, 0.02%)</title><rect x="36.2858%" y="421" width="0.0198%" height="15" fill="rgb(211,191,0)" fg:x="842671" fg:w="459"/><text x="36.5358%" y="431.50"></text></g><g><title>btrfs_free_path (587 samples, 0.03%)</title><rect x="36.2855%" y="437" width="0.0253%" height="15" fill="rgb(253,117,3)" fg:x="842665" fg:w="587"/><text x="36.5355%" y="447.50"></text></g><g><title>kfree (337 samples, 0.01%)</title><rect x="36.3398%" y="389" width="0.0145%" height="15" fill="rgb(241,127,19)" fg:x="843926" fg:w="337"/><text x="36.5898%" y="399.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (438 samples, 0.02%)</title><rect x="36.3358%" y="405" width="0.0189%" height="15" fill="rgb(218,103,12)" fg:x="843831" fg:w="438"/><text x="36.5858%" y="415.50"></text></g><g><title>__btrfs_kill_delayed_node (1,041 samples, 0.04%)</title><rect x="36.3222%" y="421" width="0.0448%" height="15" fill="rgb(236,214,43)" fg:x="843517" fg:w="1041"/><text x="36.5722%" y="431.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,341 samples, 0.06%)</title><rect x="36.3220%" y="437" width="0.0577%" height="15" fill="rgb(244,144,19)" fg:x="843511" fg:w="1341"/><text x="36.5720%" y="447.50"></text></g><g><title>btrfs_bin_search (624 samples, 0.03%)</title><rect x="36.4088%" y="421" width="0.0269%" height="15" fill="rgb(246,188,10)" fg:x="845527" fg:w="624"/><text x="36.6588%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (603 samples, 0.03%)</title><rect x="36.4097%" y="405" width="0.0260%" height="15" fill="rgb(212,193,33)" fg:x="845548" fg:w="603"/><text x="36.6597%" y="415.50"></text></g><g><title>osq_lock (3,558 samples, 0.15%)</title><rect x="36.5787%" y="341" width="0.1532%" height="15" fill="rgb(241,51,29)" fg:x="849472" fg:w="3558"/><text x="36.8287%" y="351.50"></text></g><g><title>rwsem_spin_on_owner (343 samples, 0.01%)</title><rect x="36.7340%" y="341" width="0.0148%" height="15" fill="rgb(211,58,19)" fg:x="853079" fg:w="343"/><text x="36.9840%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (6,961 samples, 0.30%)</title><rect x="36.4510%" y="357" width="0.2997%" height="15" fill="rgb(229,111,26)" fg:x="846508" fg:w="6961"/><text x="36.7010%" y="367.50"></text></g><g><title>dequeue_entity (355 samples, 0.02%)</title><rect x="36.7585%" y="293" width="0.0153%" height="15" fill="rgb(213,115,40)" fg:x="853648" fg:w="355"/><text x="37.0085%" y="303.50"></text></g><g><title>dequeue_task_fair (441 samples, 0.02%)</title><rect x="36.7565%" y="309" width="0.0190%" height="15" fill="rgb(209,56,44)" fg:x="853603" fg:w="441"/><text x="37.0065%" y="319.50"></text></g><g><title>dequeue_task (459 samples, 0.02%)</title><rect x="36.7562%" y="325" width="0.0198%" height="15" fill="rgb(230,108,32)" fg:x="853594" fg:w="459"/><text x="37.0062%" y="335.50"></text></g><g><title>psi_task_switch (290 samples, 0.01%)</title><rect x="36.7999%" y="325" width="0.0125%" height="15" fill="rgb(216,165,31)" fg:x="854609" fg:w="290"/><text x="37.0499%" y="335.50"></text></g><g><title>__schedule (1,427 samples, 0.06%)</title><rect x="36.7531%" y="341" width="0.0614%" height="15" fill="rgb(218,122,21)" fg:x="853523" fg:w="1427"/><text x="37.0031%" y="351.50"></text></g><g><title>schedule (1,454 samples, 0.06%)</title><rect x="36.7525%" y="357" width="0.0626%" height="15" fill="rgb(223,224,47)" fg:x="853510" fg:w="1454"/><text x="37.0025%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (8,670 samples, 0.37%)</title><rect x="36.4419%" y="373" width="0.3733%" height="15" fill="rgb(238,102,44)" fg:x="846296" fg:w="8670"/><text x="36.6919%" y="383.50"></text></g><g><title>down_write (8,733 samples, 0.38%)</title><rect x="36.4397%" y="389" width="0.3760%" height="15" fill="rgb(236,46,40)" fg:x="846246" fg:w="8733"/><text x="36.6897%" y="399.50"></text></g><g><title>__btrfs_tree_lock (8,748 samples, 0.38%)</title><rect x="36.4393%" y="405" width="0.3767%" height="15" fill="rgb(247,202,50)" fg:x="846235" fg:w="8748"/><text x="36.6893%" y="415.50"></text></g><g><title>btrfs_lock_root_node (8,811 samples, 0.38%)</title><rect x="36.4386%" y="421" width="0.3794%" height="15" fill="rgb(209,99,20)" fg:x="846219" fg:w="8811"/><text x="36.6886%" y="431.50"></text></g><g><title>dequeue_entity (331 samples, 0.01%)</title><rect x="36.8379%" y="293" width="0.0143%" height="15" fill="rgb(252,27,34)" fg:x="855493" fg:w="331"/><text x="37.0879%" y="303.50"></text></g><g><title>dequeue_task_fair (416 samples, 0.02%)</title><rect x="36.8360%" y="309" width="0.0179%" height="15" fill="rgb(215,206,23)" fg:x="855448" fg:w="416"/><text x="37.0860%" y="319.50"></text></g><g><title>dequeue_task (433 samples, 0.02%)</title><rect x="36.8357%" y="325" width="0.0186%" height="15" fill="rgb(212,135,36)" fg:x="855441" fg:w="433"/><text x="37.0857%" y="335.50"></text></g><g><title>psi_task_switch (260 samples, 0.01%)</title><rect x="36.8736%" y="325" width="0.0112%" height="15" fill="rgb(240,189,1)" fg:x="856321" fg:w="260"/><text x="37.1236%" y="335.50"></text></g><g><title>__schedule (1,249 samples, 0.05%)</title><rect x="36.8328%" y="341" width="0.0538%" height="15" fill="rgb(242,56,20)" fg:x="855374" fg:w="1249"/><text x="37.0828%" y="351.50"></text></g><g><title>schedule (1,275 samples, 0.05%)</title><rect x="36.8322%" y="357" width="0.0549%" height="15" fill="rgb(247,132,33)" fg:x="855361" fg:w="1275"/><text x="37.0822%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (1,502 samples, 0.06%)</title><rect x="36.8237%" y="373" width="0.0647%" height="15" fill="rgb(208,149,11)" fg:x="855162" fg:w="1502"/><text x="37.0737%" y="383.50"></text></g><g><title>down_read (1,602 samples, 0.07%)</title><rect x="36.8196%" y="389" width="0.0690%" height="15" fill="rgb(211,33,11)" fg:x="855068" fg:w="1602"/><text x="37.0696%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,626 samples, 0.07%)</title><rect x="36.8188%" y="405" width="0.0700%" height="15" fill="rgb(221,29,38)" fg:x="855049" fg:w="1626"/><text x="37.0688%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (1,772 samples, 0.08%)</title><rect x="36.8180%" y="421" width="0.0763%" height="15" fill="rgb(206,182,49)" fg:x="855031" fg:w="1772"/><text x="37.0680%" y="431.50"></text></g><g><title>btrfs_release_path (337 samples, 0.01%)</title><rect x="36.8947%" y="421" width="0.0145%" height="15" fill="rgb(216,140,1)" fg:x="856812" fg:w="337"/><text x="37.1447%" y="431.50"></text></g><g><title>rwsem_spin_on_owner (467 samples, 0.02%)</title><rect x="36.9295%" y="341" width="0.0201%" height="15" fill="rgb(232,57,40)" fg:x="857620" fg:w="467"/><text x="37.1795%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (798 samples, 0.03%)</title><rect x="36.9156%" y="357" width="0.0344%" height="15" fill="rgb(224,186,18)" fg:x="857296" fg:w="798"/><text x="37.1656%" y="367.50"></text></g><g><title>__btrfs_tree_lock (980 samples, 0.04%)</title><rect x="36.9095%" y="405" width="0.0422%" height="15" fill="rgb(215,121,11)" fg:x="857156" fg:w="980"/><text x="37.1595%" y="415.50"></text></g><g><title>down_write (954 samples, 0.04%)</title><rect x="36.9107%" y="389" width="0.0411%" height="15" fill="rgb(245,147,10)" fg:x="857182" fg:w="954"/><text x="37.1607%" y="399.50"></text></g><g><title>rwsem_down_write_slowpath (858 samples, 0.04%)</title><rect x="36.9148%" y="373" width="0.0369%" height="15" fill="rgb(238,153,13)" fg:x="857278" fg:w="858"/><text x="37.1648%" y="383.50"></text></g><g><title>btrfs_tree_lock (992 samples, 0.04%)</title><rect x="36.9095%" y="421" width="0.0427%" height="15" fill="rgb(233,108,0)" fg:x="857156" fg:w="992"/><text x="37.1595%" y="431.50"></text></g><g><title>radix_tree_lookup (348 samples, 0.01%)</title><rect x="36.9882%" y="373" width="0.0150%" height="15" fill="rgb(212,157,17)" fg:x="858982" fg:w="348"/><text x="37.2382%" y="383.50"></text></g><g><title>__radix_tree_lookup (347 samples, 0.01%)</title><rect x="36.9882%" y="357" width="0.0149%" height="15" fill="rgb(225,213,38)" fg:x="858983" fg:w="347"/><text x="37.2382%" y="367.50"></text></g><g><title>find_extent_buffer_nolock (567 samples, 0.02%)</title><rect x="36.9788%" y="389" width="0.0244%" height="15" fill="rgb(248,16,11)" fg:x="858765" fg:w="567"/><text x="37.2288%" y="399.50"></text></g><g><title>find_extent_buffer (780 samples, 0.03%)</title><rect x="36.9770%" y="405" width="0.0336%" height="15" fill="rgb(241,33,4)" fg:x="858723" fg:w="780"/><text x="37.2270%" y="415.50"></text></g><g><title>read_block_for_search (1,233 samples, 0.05%)</title><rect x="36.9593%" y="421" width="0.0531%" height="15" fill="rgb(222,26,43)" fg:x="858312" fg:w="1233"/><text x="37.2093%" y="431.50"></text></g><g><title>find_extent_buffer_nolock (334 samples, 0.01%)</title><rect x="37.0261%" y="325" width="0.0144%" height="15" fill="rgb(243,29,36)" fg:x="859863" fg:w="334"/><text x="37.2761%" y="335.50"></text></g><g><title>find_extent_buffer (454 samples, 0.02%)</title><rect x="37.0248%" y="341" width="0.0195%" height="15" fill="rgb(241,9,27)" fg:x="859832" fg:w="454"/><text x="37.2748%" y="351.50"></text></g><g><title>alloc_extent_buffer (500 samples, 0.02%)</title><rect x="37.0232%" y="357" width="0.0215%" height="15" fill="rgb(205,117,26)" fg:x="859795" fg:w="500"/><text x="37.2732%" y="367.50"></text></g><g><title>btrfs_find_create_tree_block (503 samples, 0.02%)</title><rect x="37.0232%" y="373" width="0.0217%" height="15" fill="rgb(209,80,39)" fg:x="859795" fg:w="503"/><text x="37.2732%" y="383.50"></text></g><g><title>btrfs_readahead_tree_block (651 samples, 0.03%)</title><rect x="37.0189%" y="389" width="0.0280%" height="15" fill="rgb(239,155,6)" fg:x="859696" fg:w="651"/><text x="37.2689%" y="399.50"></text></g><g><title>btrfs_readahead_node_child (770 samples, 0.03%)</title><rect x="37.0143%" y="405" width="0.0332%" height="15" fill="rgb(212,104,12)" fg:x="859588" fg:w="770"/><text x="37.2643%" y="415.50"></text></g><g><title>reada_for_balance (824 samples, 0.04%)</title><rect x="37.0124%" y="421" width="0.0355%" height="15" fill="rgb(234,204,3)" fg:x="859545" fg:w="824"/><text x="37.2624%" y="431.50"></text></g><g><title>select_idle_sibling (588 samples, 0.03%)</title><rect x="37.1004%" y="309" width="0.0253%" height="15" fill="rgb(251,218,7)" fg:x="861589" fg:w="588"/><text x="37.3504%" y="319.50"></text></g><g><title>select_idle_cpu (346 samples, 0.01%)</title><rect x="37.1108%" y="293" width="0.0149%" height="15" fill="rgb(221,81,32)" fg:x="861831" fg:w="346"/><text x="37.3608%" y="303.50"></text></g><g><title>select_task_rq_fair (889 samples, 0.04%)</title><rect x="37.0958%" y="325" width="0.0383%" height="15" fill="rgb(214,152,26)" fg:x="861481" fg:w="889"/><text x="37.3458%" y="335.50"></text></g><g><title>enqueue_task (380 samples, 0.02%)</title><rect x="37.1398%" y="309" width="0.0164%" height="15" fill="rgb(223,22,3)" fg:x="862504" fg:w="380"/><text x="37.3898%" y="319.50"></text></g><g><title>ttwu_do_activate (441 samples, 0.02%)</title><rect x="37.1396%" y="325" width="0.0190%" height="15" fill="rgb(207,174,7)" fg:x="862499" fg:w="441"/><text x="37.3896%" y="335.50"></text></g><g><title>ttwu_queue_wakelist (397 samples, 0.02%)</title><rect x="37.1587%" y="325" width="0.0171%" height="15" fill="rgb(224,19,52)" fg:x="862942" fg:w="397"/><text x="37.4087%" y="335.50"></text></g><g><title>try_to_wake_up (2,441 samples, 0.11%)</title><rect x="37.0723%" y="341" width="0.1051%" height="15" fill="rgb(228,24,14)" fg:x="860935" fg:w="2441"/><text x="37.3223%" y="351.50"></text></g><g><title>rwsem_wake.isra.0 (2,826 samples, 0.12%)</title><rect x="37.0559%" y="373" width="0.1217%" height="15" fill="rgb(230,153,43)" fg:x="860554" fg:w="2826"/><text x="37.3059%" y="383.50"></text></g><g><title>wake_up_q (2,517 samples, 0.11%)</title><rect x="37.0692%" y="357" width="0.1084%" height="15" fill="rgb(231,106,12)" fg:x="860863" fg:w="2517"/><text x="37.3192%" y="367.50"></text></g><g><title>btrfs_tree_unlock (2,843 samples, 0.12%)</title><rect x="37.0552%" y="405" width="0.1224%" height="15" fill="rgb(215,92,2)" fg:x="860538" fg:w="2843"/><text x="37.3052%" y="415.50"></text></g><g><title>up_write (2,833 samples, 0.12%)</title><rect x="37.0556%" y="389" width="0.1220%" height="15" fill="rgb(249,143,25)" fg:x="860548" fg:w="2833"/><text x="37.3056%" y="399.50"></text></g><g><title>unlock_up (3,085 samples, 0.13%)</title><rect x="37.0479%" y="421" width="0.1328%" height="15" fill="rgb(252,7,35)" fg:x="860370" fg:w="3085"/><text x="37.2979%" y="431.50"></text></g><g><title>btrfs_search_slot (18,582 samples, 0.80%)</title><rect x="36.3821%" y="437" width="0.8001%" height="15" fill="rgb(216,69,40)" fg:x="844908" fg:w="18582"/><text x="36.6321%" y="447.50"></text></g><g><title>lock_extent_bits (530 samples, 0.02%)</title><rect x="37.1881%" y="437" width="0.0228%" height="15" fill="rgb(240,36,33)" fg:x="863626" fg:w="530"/><text x="37.4381%" y="447.50"></text></g><g><title>set_extent_bit (420 samples, 0.02%)</title><rect x="37.1929%" y="421" width="0.0181%" height="15" fill="rgb(231,128,14)" fg:x="863736" fg:w="420"/><text x="37.4429%" y="431.50"></text></g><g><title>btrfs_truncate_inode_items (27,803 samples, 1.20%)</title><rect x="36.0233%" y="453" width="1.1972%" height="15" fill="rgb(245,143,14)" fg:x="836576" fg:w="27803"/><text x="36.2733%" y="463.50"></text></g><g><title>need_preemptive_reclaim (313 samples, 0.01%)</title><rect x="37.2483%" y="389" width="0.0135%" height="15" fill="rgb(222,130,28)" fg:x="865024" fg:w="313"/><text x="37.4983%" y="399.50"></text></g><g><title>__reserve_bytes (771 samples, 0.03%)</title><rect x="37.2392%" y="405" width="0.0332%" height="15" fill="rgb(212,10,48)" fg:x="864812" fg:w="771"/><text x="37.4892%" y="415.50"></text></g><g><title>work_busy (245 samples, 0.01%)</title><rect x="37.2619%" y="389" width="0.0105%" height="15" fill="rgb(254,118,45)" fg:x="865338" fg:w="245"/><text x="37.5119%" y="399.50"></text></g><g><title>btrfs_block_rsv_refill (963 samples, 0.04%)</title><rect x="37.2368%" y="437" width="0.0415%" height="15" fill="rgb(228,6,45)" fg:x="864757" fg:w="963"/><text x="37.4868%" y="447.50"></text></g><g><title>btrfs_reserve_metadata_bytes (925 samples, 0.04%)</title><rect x="37.2385%" y="421" width="0.0398%" height="15" fill="rgb(241,18,35)" fg:x="864795" fg:w="925"/><text x="37.4885%" y="431.50"></text></g><g><title>btrfs_join_transaction (528 samples, 0.02%)</title><rect x="37.2783%" y="437" width="0.0227%" height="15" fill="rgb(227,214,53)" fg:x="865720" fg:w="528"/><text x="37.5283%" y="447.50"></text></g><g><title>start_transaction (494 samples, 0.02%)</title><rect x="37.2798%" y="421" width="0.0213%" height="15" fill="rgb(224,107,51)" fg:x="865754" fg:w="494"/><text x="37.5298%" y="431.50"></text></g><g><title>evict_refill_and_join (1,764 samples, 0.08%)</title><rect x="37.2274%" y="453" width="0.0760%" height="15" fill="rgb(248,60,28)" fg:x="864537" fg:w="1764"/><text x="37.4774%" y="463.50"></text></g><g><title>btrfs_evict_inode (77,559 samples, 3.34%)</title><rect x="33.9710%" y="469" width="3.3397%" height="15" fill="rgb(249,101,23)" fg:x="788914" fg:w="77559"/><text x="34.2210%" y="479.50">btr..</text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (371 samples, 0.02%)</title><rect x="37.3537%" y="357" width="0.0160%" height="15" fill="rgb(228,51,19)" fg:x="867471" fg:w="371"/><text x="37.6037%" y="367.50"></text></g><g><title>cshook_security_inode_free_security (244 samples, 0.01%)</title><rect x="37.3592%" y="341" width="0.0105%" height="15" fill="rgb(213,20,6)" fg:x="867598" fg:w="244"/><text x="37.6092%" y="351.50"></text></g><g><title>pinnedhook_security_inode_free_security (582 samples, 0.03%)</title><rect x="37.3465%" y="421" width="0.0251%" height="15" fill="rgb(212,124,10)" fg:x="867303" fg:w="582"/><text x="37.5965%" y="431.50"></text></g><g><title>cshook_security_inode_free_security (530 samples, 0.02%)</title><rect x="37.3487%" y="405" width="0.0228%" height="15" fill="rgb(248,3,40)" fg:x="867355" fg:w="530"/><text x="37.5987%" y="415.50"></text></g><g><title>cshook_security_file_free_security (488 samples, 0.02%)</title><rect x="37.3505%" y="389" width="0.0210%" height="15" fill="rgb(223,178,23)" fg:x="867397" fg:w="488"/><text x="37.6005%" y="399.50"></text></g><g><title>cshook_security_file_free_security (416 samples, 0.02%)</title><rect x="37.3536%" y="373" width="0.0179%" height="15" fill="rgb(240,132,45)" fg:x="867469" fg:w="416"/><text x="37.6036%" y="383.50"></text></g><g><title>__destroy_inode (1,276 samples, 0.05%)</title><rect x="37.3169%" y="453" width="0.0549%" height="15" fill="rgb(245,164,36)" fg:x="866616" fg:w="1276"/><text x="37.5669%" y="463.50"></text></g><g><title>security_inode_free (823 samples, 0.04%)</title><rect x="37.3364%" y="437" width="0.0354%" height="15" fill="rgb(231,188,53)" fg:x="867069" fg:w="823"/><text x="37.5864%" y="447.50"></text></g><g><title>btrfs_drop_extent_cache (392 samples, 0.02%)</title><rect x="37.3791%" y="437" width="0.0169%" height="15" fill="rgb(237,198,39)" fg:x="868061" fg:w="392"/><text x="37.6291%" y="447.50"></text></g><g><title>__clear_extent_bit (336 samples, 0.01%)</title><rect x="37.4087%" y="405" width="0.0145%" height="15" fill="rgb(223,120,35)" fg:x="868749" fg:w="336"/><text x="37.6587%" y="415.50"></text></g><g><title>clear_record_extent_bits (390 samples, 0.02%)</title><rect x="37.4085%" y="421" width="0.0168%" height="15" fill="rgb(253,107,49)" fg:x="868743" fg:w="390"/><text x="37.6585%" y="431.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (437 samples, 0.02%)</title><rect x="37.4069%" y="437" width="0.0188%" height="15" fill="rgb(216,44,31)" fg:x="868706" fg:w="437"/><text x="37.6569%" y="447.50"></text></g><g><title>btrfs_destroy_inode (1,328 samples, 0.06%)</title><rect x="37.3731%" y="453" width="0.0572%" height="15" fill="rgb(253,87,21)" fg:x="867922" fg:w="1328"/><text x="37.6231%" y="463.50"></text></g><g><title>rb_erase (428 samples, 0.02%)</title><rect x="37.4373%" y="453" width="0.0184%" height="15" fill="rgb(226,18,2)" fg:x="869412" fg:w="428"/><text x="37.6873%" y="463.50"></text></g><g><title>destroy_inode (3,271 samples, 0.14%)</title><rect x="37.3159%" y="469" width="0.1409%" height="15" fill="rgb(216,8,46)" fg:x="866593" fg:w="3271"/><text x="37.5659%" y="479.50"></text></g><g><title>evict (81,422 samples, 3.51%)</title><rect x="33.9574%" y="485" width="3.5061%" height="15" fill="rgb(226,140,39)" fg:x="788599" fg:w="81422"/><text x="34.2074%" y="495.50">evi..</text></g><g><title>iput (81,646 samples, 3.52%)</title><rect x="33.9479%" y="501" width="3.5157%" height="15" fill="rgb(221,194,54)" fg:x="788378" fg:w="81646"/><text x="34.1979%" y="511.50">iput</text></g><g><title>_raw_spin_lock (453 samples, 0.02%)</title><rect x="37.4774%" y="485" width="0.0195%" height="15" fill="rgb(213,92,11)" fg:x="870344" fg:w="453"/><text x="37.7274%" y="495.50"></text></g><g><title>list_lru_del (1,442 samples, 0.06%)</title><rect x="37.5449%" y="437" width="0.0621%" height="15" fill="rgb(229,162,46)" fg:x="871911" fg:w="1442"/><text x="37.7949%" y="447.50"></text></g><g><title>mem_cgroup_from_obj (905 samples, 0.04%)</title><rect x="37.5680%" y="421" width="0.0390%" height="15" fill="rgb(214,111,36)" fg:x="872448" fg:w="905"/><text x="37.8180%" y="431.50"></text></g><g><title>d_lru_del (1,707 samples, 0.07%)</title><rect x="37.5341%" y="453" width="0.0735%" height="15" fill="rgb(207,6,21)" fg:x="871660" fg:w="1707"/><text x="37.7841%" y="463.50"></text></g><g><title>d_walk (2,583 samples, 0.11%)</title><rect x="37.4970%" y="485" width="0.1112%" height="15" fill="rgb(213,127,38)" fg:x="870798" fg:w="2583"/><text x="37.7470%" y="495.50"></text></g><g><title>select_collect (1,785 samples, 0.08%)</title><rect x="37.5313%" y="469" width="0.0769%" height="15" fill="rgb(238,118,32)" fg:x="871596" fg:w="1785"/><text x="37.7813%" y="479.50"></text></g><g><title>___d_drop (1,167 samples, 0.05%)</title><rect x="37.6198%" y="453" width="0.0503%" height="15" fill="rgb(240,139,39)" fg:x="873651" fg:w="1167"/><text x="37.8698%" y="463.50"></text></g><g><title>__call_rcu (509 samples, 0.02%)</title><rect x="37.6735%" y="421" width="0.0219%" height="15" fill="rgb(235,10,37)" fg:x="874897" fg:w="509"/><text x="37.9235%" y="431.50"></text></g><g><title>rcu_segcblist_enqueue (272 samples, 0.01%)</title><rect x="37.6837%" y="405" width="0.0117%" height="15" fill="rgb(249,171,38)" fg:x="875134" fg:w="272"/><text x="37.9337%" y="415.50"></text></g><g><title>dentry_free (557 samples, 0.02%)</title><rect x="37.6718%" y="453" width="0.0240%" height="15" fill="rgb(242,144,32)" fg:x="874858" fg:w="557"/><text x="37.9218%" y="463.50"></text></g><g><title>call_rcu (518 samples, 0.02%)</title><rect x="37.6735%" y="437" width="0.0223%" height="15" fill="rgb(217,117,21)" fg:x="874897" fg:w="518"/><text x="37.9235%" y="447.50"></text></g><g><title>__dentry_kill (1,885 samples, 0.08%)</title><rect x="37.6149%" y="469" width="0.0812%" height="15" fill="rgb(249,87,1)" fg:x="873538" fg:w="1885"/><text x="37.8649%" y="479.50"></text></g><g><title>list_lru_del (279 samples, 0.01%)</title><rect x="37.6990%" y="437" width="0.0120%" height="15" fill="rgb(248,196,48)" fg:x="875491" fg:w="279"/><text x="37.9490%" y="447.50"></text></g><g><title>d_lru_del (316 samples, 0.01%)</title><rect x="37.6975%" y="453" width="0.0136%" height="15" fill="rgb(251,206,33)" fg:x="875456" fg:w="316"/><text x="37.9475%" y="463.50"></text></g><g><title>__dput_to_list (350 samples, 0.02%)</title><rect x="37.6961%" y="469" width="0.0151%" height="15" fill="rgb(232,141,28)" fg:x="875423" fg:w="350"/><text x="37.9461%" y="479.50"></text></g><g><title>shrink_dentry_list (2,772 samples, 0.12%)</title><rect x="37.6098%" y="485" width="0.1194%" height="15" fill="rgb(209,167,14)" fg:x="873419" fg:w="2772"/><text x="37.8598%" y="495.50"></text></g><g><title>shrink_dcache_parent (5,935 samples, 0.26%)</title><rect x="37.4740%" y="501" width="0.2556%" height="15" fill="rgb(225,11,50)" fg:x="870264" fg:w="5935"/><text x="37.7240%" y="511.50"></text></g><g><title>do_rmdir (134,328 samples, 5.78%)</title><rect x="31.9463%" y="533" width="5.7842%" height="15" fill="rgb(209,50,20)" fg:x="741895" fg:w="134328"/><text x="32.1963%" y="543.50">do_rmdir</text></g><g><title>vfs_rmdir (132,275 samples, 5.70%)</title><rect x="32.0347%" y="517" width="5.6958%" height="15" fill="rgb(212,17,46)" fg:x="743948" fg:w="132275"/><text x="32.2847%" y="527.50">vfs_rmd..</text></g><g><title>__d_lookup (237 samples, 0.01%)</title><rect x="37.8148%" y="485" width="0.0102%" height="15" fill="rgb(216,101,39)" fg:x="878180" fg:w="237"/><text x="38.0648%" y="495.50"></text></g><g><title>__d_lookup (390 samples, 0.02%)</title><rect x="37.8306%" y="469" width="0.0168%" height="15" fill="rgb(212,228,48)" fg:x="878547" fg:w="390"/><text x="38.0806%" y="479.50"></text></g><g><title>__lookup_hash (1,415 samples, 0.06%)</title><rect x="37.7953%" y="517" width="0.0609%" height="15" fill="rgb(250,6,50)" fg:x="877726" fg:w="1415"/><text x="38.0453%" y="527.50"></text></g><g><title>lookup_dcache (1,103 samples, 0.05%)</title><rect x="37.8087%" y="501" width="0.0475%" height="15" fill="rgb(250,160,48)" fg:x="878038" fg:w="1103"/><text x="38.0587%" y="511.50"></text></g><g><title>d_lookup (724 samples, 0.03%)</title><rect x="37.8250%" y="485" width="0.0312%" height="15" fill="rgb(244,216,33)" fg:x="878417" fg:w="724"/><text x="38.0750%" y="495.50"></text></g><g><title>_raw_spin_lock (403 samples, 0.02%)</title><rect x="37.8578%" y="517" width="0.0174%" height="15" fill="rgb(207,157,5)" fg:x="879177" fg:w="403"/><text x="38.1078%" y="527.50"></text></g><g><title>btrfs_dentry_delete (271 samples, 0.01%)</title><rect x="37.8768%" y="517" width="0.0117%" height="15" fill="rgb(228,199,8)" fg:x="879619" fg:w="271"/><text x="38.1268%" y="527.50"></text></g><g><title>btrfs_drop_inode (235 samples, 0.01%)</title><rect x="37.8885%" y="517" width="0.0101%" height="15" fill="rgb(227,80,20)" fg:x="879890" fg:w="235"/><text x="38.1385%" y="527.50"></text></g><g><title>btrfs_unlink (330 samples, 0.01%)</title><rect x="37.8986%" y="517" width="0.0142%" height="15" fill="rgb(222,9,33)" fg:x="880125" fg:w="330"/><text x="38.1486%" y="527.50"></text></g><g><title>down_write (344 samples, 0.01%)</title><rect x="37.9157%" y="517" width="0.0148%" height="15" fill="rgb(239,44,28)" fg:x="880522" fg:w="344"/><text x="38.1657%" y="527.50"></text></g><g><title>btrfs_dentry_delete (764 samples, 0.03%)</title><rect x="37.9707%" y="501" width="0.0329%" height="15" fill="rgb(249,187,43)" fg:x="881800" fg:w="764"/><text x="38.2207%" y="511.50"></text></g><g><title>lockref_put_or_lock (509 samples, 0.02%)</title><rect x="38.0036%" y="501" width="0.0219%" height="15" fill="rgb(216,141,28)" fg:x="882564" fg:w="509"/><text x="38.2536%" y="511.50"></text></g><g><title>dput (2,267 samples, 0.10%)</title><rect x="37.9305%" y="517" width="0.0976%" height="15" fill="rgb(230,154,53)" fg:x="880866" fg:w="2267"/><text x="38.1805%" y="527.50"></text></g><g><title>__legitimize_path (385 samples, 0.02%)</title><rect x="38.0772%" y="453" width="0.0166%" height="15" fill="rgb(227,82,4)" fg:x="884274" fg:w="385"/><text x="38.3272%" y="463.50"></text></g><g><title>complete_walk (663 samples, 0.03%)</title><rect x="38.0675%" y="485" width="0.0285%" height="15" fill="rgb(220,107,16)" fg:x="884047" fg:w="663"/><text x="38.3175%" y="495.50"></text></g><g><title>try_to_unlazy (536 samples, 0.02%)</title><rect x="38.0729%" y="469" width="0.0231%" height="15" fill="rgb(207,187,2)" fg:x="884174" fg:w="536"/><text x="38.3229%" y="479.50"></text></g><g><title>inode_permission (322 samples, 0.01%)</title><rect x="38.1134%" y="469" width="0.0139%" height="15" fill="rgb(210,162,52)" fg:x="885114" fg:w="322"/><text x="38.3634%" y="479.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (697 samples, 0.03%)</title><rect x="38.0976%" y="485" width="0.0300%" height="15" fill="rgb(217,216,49)" fg:x="884746" fg:w="697"/><text x="38.3476%" y="495.50"></text></g><g><title>__fget_files (434 samples, 0.02%)</title><rect x="38.1382%" y="437" width="0.0187%" height="15" fill="rgb(218,146,49)" fg:x="885690" fg:w="434"/><text x="38.3882%" y="447.50"></text></g><g><title>__fdget_raw (457 samples, 0.02%)</title><rect x="38.1374%" y="469" width="0.0197%" height="15" fill="rgb(216,55,40)" fg:x="885672" fg:w="457"/><text x="38.3874%" y="479.50"></text></g><g><title>__fget_light (453 samples, 0.02%)</title><rect x="38.1376%" y="453" width="0.0195%" height="15" fill="rgb(208,196,21)" fg:x="885676" fg:w="453"/><text x="38.3876%" y="463.50"></text></g><g><title>path_init (934 samples, 0.04%)</title><rect x="38.1287%" y="485" width="0.0402%" height="15" fill="rgb(242,117,42)" fg:x="885469" fg:w="934"/><text x="38.3787%" y="495.50"></text></g><g><title>path_parentat (2,658 samples, 0.11%)</title><rect x="38.0626%" y="501" width="0.1145%" height="15" fill="rgb(210,11,23)" fg:x="883935" fg:w="2658"/><text x="38.3126%" y="511.50"></text></g><g><title>filename_parentat (3,348 samples, 0.14%)</title><rect x="38.0360%" y="517" width="0.1442%" height="15" fill="rgb(217,110,2)" fg:x="883317" fg:w="3348"/><text x="38.2860%" y="527.50"></text></g><g><title>hook_path_unlink (441 samples, 0.02%)</title><rect x="38.1814%" y="517" width="0.0190%" height="15" fill="rgb(229,77,54)" fg:x="886692" fg:w="441"/><text x="38.4314%" y="527.50"></text></g><g><title>ihold (1,030 samples, 0.04%)</title><rect x="38.2004%" y="517" width="0.0444%" height="15" fill="rgb(218,53,16)" fg:x="887133" fg:w="1030"/><text x="38.4504%" y="527.50"></text></g><g><title>_raw_spin_lock (838 samples, 0.04%)</title><rect x="38.2790%" y="501" width="0.0361%" height="15" fill="rgb(215,38,13)" fg:x="888960" fg:w="838"/><text x="38.5290%" y="511.50"></text></g><g><title>btrfs_evict_inode (248 samples, 0.01%)</title><rect x="38.3165%" y="501" width="0.0107%" height="15" fill="rgb(235,42,18)" fg:x="889831" fg:w="248"/><text x="38.5665%" y="511.50"></text></g><g><title>_raw_spin_lock (940 samples, 0.04%)</title><rect x="38.3597%" y="485" width="0.0405%" height="15" fill="rgb(219,66,54)" fg:x="890833" fg:w="940"/><text x="38.6097%" y="495.50"></text></g><g><title>btrfs_end_transaction (451 samples, 0.02%)</title><rect x="38.4275%" y="485" width="0.0194%" height="15" fill="rgb(222,205,4)" fg:x="892407" fg:w="451"/><text x="38.6775%" y="495.50"></text></g><g><title>__btrfs_end_transaction (272 samples, 0.01%)</title><rect x="38.4966%" y="469" width="0.0117%" height="15" fill="rgb(227,213,46)" fg:x="894012" fg:w="272"/><text x="38.7466%" y="479.50"></text></g><g><title>_raw_write_lock (315 samples, 0.01%)</title><rect x="38.5331%" y="469" width="0.0136%" height="15" fill="rgb(250,145,42)" fg:x="894860" fg:w="315"/><text x="38.7831%" y="479.50"></text></g><g><title>btrfs_find_space_info (535 samples, 0.02%)</title><rect x="38.5618%" y="453" width="0.0230%" height="15" fill="rgb(219,15,2)" fg:x="895528" fg:w="535"/><text x="38.8118%" y="463.50"></text></g><g><title>kmem_cache_alloc_trace (921 samples, 0.04%)</title><rect x="38.5849%" y="453" width="0.0397%" height="15" fill="rgb(231,181,52)" fg:x="896063" fg:w="921"/><text x="38.8349%" y="463.50"></text></g><g><title>btrfs_alloc_block_rsv (1,993 samples, 0.09%)</title><rect x="38.5475%" y="469" width="0.0858%" height="15" fill="rgb(235,1,42)" fg:x="895195" fg:w="1993"/><text x="38.7975%" y="479.50"></text></g><g><title>btrfs_alloc_path (251 samples, 0.01%)</title><rect x="38.6333%" y="469" width="0.0108%" height="15" fill="rgb(249,88,27)" fg:x="897188" fg:w="251"/><text x="38.8833%" y="479.50"></text></g><g><title>balance_dirty_pages_ratelimited (268 samples, 0.01%)</title><rect x="38.6655%" y="453" width="0.0115%" height="15" fill="rgb(235,145,16)" fg:x="897936" fg:w="268"/><text x="38.9155%" y="463.50"></text></g><g><title>insert_work (720 samples, 0.03%)</title><rect x="38.7018%" y="373" width="0.0310%" height="15" fill="rgb(237,114,19)" fg:x="898778" fg:w="720"/><text x="38.9518%" y="383.50"></text></g><g><title>wake_up_process (720 samples, 0.03%)</title><rect x="38.7018%" y="357" width="0.0310%" height="15" fill="rgb(238,51,50)" fg:x="898778" fg:w="720"/><text x="38.9518%" y="367.50"></text></g><g><title>try_to_wake_up (709 samples, 0.03%)</title><rect x="38.7023%" y="341" width="0.0305%" height="15" fill="rgb(205,194,25)" fg:x="898789" fg:w="709"/><text x="38.9523%" y="351.50"></text></g><g><title>__queue_work (833 samples, 0.04%)</title><rect x="38.6971%" y="389" width="0.0359%" height="15" fill="rgb(215,203,17)" fg:x="898670" fg:w="833"/><text x="38.9471%" y="399.50"></text></g><g><title>btrfs_queue_work (984 samples, 0.04%)</title><rect x="38.6949%" y="421" width="0.0424%" height="15" fill="rgb(233,112,49)" fg:x="898617" fg:w="984"/><text x="38.9449%" y="431.50"></text></g><g><title>queue_work_on (945 samples, 0.04%)</title><rect x="38.6965%" y="405" width="0.0407%" height="15" fill="rgb(241,130,26)" fg:x="898656" fg:w="945"/><text x="38.9465%" y="415.50"></text></g><g><title>btrfs_wq_run_delayed_node (1,064 samples, 0.05%)</title><rect x="38.6943%" y="437" width="0.0458%" height="15" fill="rgb(252,223,19)" fg:x="898604" fg:w="1064"/><text x="38.9443%" y="447.50"></text></g><g><title>btrfs_balance_delayed_items (1,478 samples, 0.06%)</title><rect x="38.6771%" y="453" width="0.0636%" height="15" fill="rgb(211,95,25)" fg:x="898204" fg:w="1478"/><text x="38.9271%" y="463.50"></text></g><g><title>btrfs_btree_balance_dirty (2,099 samples, 0.09%)</title><rect x="38.6539%" y="469" width="0.0904%" height="15" fill="rgb(251,182,27)" fg:x="897665" fg:w="2099"/><text x="38.9039%" y="479.50"></text></g><g><title>mutex_lock (291 samples, 0.01%)</title><rect x="38.8222%" y="437" width="0.0125%" height="15" fill="rgb(238,24,4)" fg:x="901574" fg:w="291"/><text x="39.0722%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,451 samples, 0.06%)</title><rect x="38.7725%" y="453" width="0.0625%" height="15" fill="rgb(224,220,25)" fg:x="900419" fg:w="1451"/><text x="39.0225%" y="463.50"></text></g><g><title>_find_next_bit (438 samples, 0.02%)</title><rect x="38.9860%" y="341" width="0.0189%" height="15" fill="rgb(239,133,26)" fg:x="905377" fg:w="438"/><text x="39.2360%" y="351.50"></text></g><g><title>steal_from_bitmap.part.0 (506 samples, 0.02%)</title><rect x="38.9859%" y="357" width="0.0218%" height="15" fill="rgb(211,94,48)" fg:x="905375" fg:w="506"/><text x="39.2359%" y="367.50"></text></g><g><title>__btrfs_add_free_space (649 samples, 0.03%)</title><rect x="38.9829%" y="373" width="0.0279%" height="15" fill="rgb(239,87,6)" fg:x="905307" fg:w="649"/><text x="39.2329%" y="383.50"></text></g><g><title>btrfs_add_free_space (672 samples, 0.03%)</title><rect x="38.9829%" y="389" width="0.0289%" height="15" fill="rgb(227,62,0)" fg:x="905307" fg:w="672"/><text x="39.2329%" y="399.50"></text></g><g><title>btrfs_free_tree_block (1,025 samples, 0.04%)</title><rect x="38.9738%" y="405" width="0.0441%" height="15" fill="rgb(211,226,4)" fg:x="905095" fg:w="1025"/><text x="39.2238%" y="415.50"></text></g><g><title>btrfs_del_leaf (1,117 samples, 0.05%)</title><rect x="38.9733%" y="421" width="0.0481%" height="15" fill="rgb(253,38,52)" fg:x="905083" fg:w="1117"/><text x="39.2233%" y="431.50"></text></g><g><title>btrfs_get_32 (473 samples, 0.02%)</title><rect x="39.0214%" y="421" width="0.0204%" height="15" fill="rgb(229,126,40)" fg:x="906200" fg:w="473"/><text x="39.2714%" y="431.50"></text></g><g><title>btrfs_get_token_32 (4,931 samples, 0.21%)</title><rect x="39.0418%" y="421" width="0.2123%" height="15" fill="rgb(229,165,44)" fg:x="906673" fg:w="4931"/><text x="39.2918%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (382 samples, 0.02%)</title><rect x="39.2376%" y="405" width="0.0164%" height="15" fill="rgb(247,95,47)" fg:x="911222" fg:w="382"/><text x="39.4876%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (347 samples, 0.01%)</title><rect x="39.2543%" y="421" width="0.0149%" height="15" fill="rgb(216,140,30)" fg:x="911610" fg:w="347"/><text x="39.5043%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (263 samples, 0.01%)</title><rect x="39.2580%" y="405" width="0.0113%" height="15" fill="rgb(246,214,8)" fg:x="911694" fg:w="263"/><text x="39.5080%" y="415.50"></text></g><g><title>btrfs_set_token_32 (4,594 samples, 0.20%)</title><rect x="39.2694%" y="421" width="0.1978%" height="15" fill="rgb(227,224,15)" fg:x="911960" fg:w="4594"/><text x="39.5194%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (323 samples, 0.01%)</title><rect x="39.4533%" y="405" width="0.0139%" height="15" fill="rgb(233,175,4)" fg:x="916231" fg:w="323"/><text x="39.7033%" y="415.50"></text></g><g><title>check_setget_bounds.isra.0 (1,650 samples, 0.07%)</title><rect x="39.4674%" y="421" width="0.0710%" height="15" fill="rgb(221,66,45)" fg:x="916557" fg:w="1650"/><text x="39.7174%" y="431.50"></text></g><g><title>copy_pages (1,339 samples, 0.06%)</title><rect x="39.5385%" y="421" width="0.0577%" height="15" fill="rgb(221,178,18)" fg:x="918210" fg:w="1339"/><text x="39.7885%" y="431.50"></text></g><g><title>btrfs_get_32 (338 samples, 0.01%)</title><rect x="39.6066%" y="405" width="0.0146%" height="15" fill="rgb(213,81,29)" fg:x="919791" fg:w="338"/><text x="39.8566%" y="415.50"></text></g><g><title>leaf_space_used (576 samples, 0.02%)</title><rect x="39.5989%" y="421" width="0.0248%" height="15" fill="rgb(220,89,49)" fg:x="919611" fg:w="576"/><text x="39.8489%" y="431.50"></text></g><g><title>memcpy_extent_buffer (874 samples, 0.04%)</title><rect x="39.6573%" y="405" width="0.0376%" height="15" fill="rgb(227,60,33)" fg:x="920968" fg:w="874"/><text x="39.9073%" y="415.50"></text></g><g><title>memmove (723 samples, 0.03%)</title><rect x="39.6638%" y="389" width="0.0311%" height="15" fill="rgb(205,113,12)" fg:x="921119" fg:w="723"/><text x="39.9138%" y="399.50"></text></g><g><title>memmove (7,613 samples, 0.33%)</title><rect x="39.6949%" y="405" width="0.3278%" height="15" fill="rgb(211,32,1)" fg:x="921842" fg:w="7613"/><text x="39.9449%" y="415.50"></text></g><g><title>memmove_extent_buffer (9,146 samples, 0.39%)</title><rect x="39.6290%" y="421" width="0.3938%" height="15" fill="rgb(246,2,12)" fg:x="920310" fg:w="9146"/><text x="39.8790%" y="431.50"></text></g><g><title>__push_leaf_left (346 samples, 0.01%)</title><rect x="40.0234%" y="405" width="0.0149%" height="15" fill="rgb(243,37,27)" fg:x="929469" fg:w="346"/><text x="40.2734%" y="415.50"></text></g><g><title>push_leaf_left (513 samples, 0.02%)</title><rect x="40.0228%" y="421" width="0.0221%" height="15" fill="rgb(248,211,31)" fg:x="929456" fg:w="513"/><text x="40.2728%" y="431.50"></text></g><g><title>push_leaf_right (302 samples, 0.01%)</title><rect x="40.0449%" y="421" width="0.0130%" height="15" fill="rgb(242,146,47)" fg:x="929969" fg:w="302"/><text x="40.2949%" y="431.50"></text></g><g><title>btrfs_del_items (27,210 samples, 1.17%)</title><rect x="38.8871%" y="437" width="1.1717%" height="15" fill="rgb(206,70,20)" fg:x="903081" fg:w="27210"/><text x="39.1371%" y="447.50"></text></g><g><title>_raw_spin_lock (719 samples, 0.03%)</title><rect x="40.0630%" y="421" width="0.0310%" height="15" fill="rgb(215,10,51)" fg:x="930389" fg:w="719"/><text x="40.3130%" y="431.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="40.1080%" y="405" width="0.0106%" height="15" fill="rgb(243,178,53)" fg:x="931435" fg:w="246"/><text x="40.3580%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (237 samples, 0.01%)</title><rect x="40.1084%" y="389" width="0.0102%" height="15" fill="rgb(233,221,20)" fg:x="931444" fg:w="237"/><text x="40.3584%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (237 samples, 0.01%)</title><rect x="40.1084%" y="373" width="0.0102%" height="15" fill="rgb(218,95,35)" fg:x="931444" fg:w="237"/><text x="40.3584%" y="383.50"></text></g><g><title>btrfs_block_rsv_release (717 samples, 0.03%)</title><rect x="40.0940%" y="421" width="0.0309%" height="15" fill="rgb(229,13,5)" fg:x="931109" fg:w="717"/><text x="40.3440%" y="431.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (1,724 samples, 0.07%)</title><rect x="40.0589%" y="437" width="0.0742%" height="15" fill="rgb(252,164,30)" fg:x="930295" fg:w="1724"/><text x="40.3089%" y="447.50"></text></g><g><title>btrfs_get_32 (283 samples, 0.01%)</title><rect x="40.1332%" y="437" width="0.0122%" height="15" fill="rgb(232,68,36)" fg:x="932019" fg:w="283"/><text x="40.3832%" y="447.50"></text></g><g><title>btrfs_get_token_32 (830 samples, 0.04%)</title><rect x="40.1454%" y="437" width="0.0357%" height="15" fill="rgb(219,59,54)" fg:x="932302" fg:w="830"/><text x="40.3954%" y="447.50"></text></g><g><title>btrfs_bin_search (287 samples, 0.01%)</title><rect x="40.2106%" y="421" width="0.0124%" height="15" fill="rgb(250,92,33)" fg:x="933818" fg:w="287"/><text x="40.4606%" y="431.50"></text></g><g><title>btrfs_get_64 (281 samples, 0.01%)</title><rect x="40.4633%" y="389" width="0.0121%" height="15" fill="rgb(229,162,54)" fg:x="939686" fg:w="281"/><text x="40.7133%" y="399.50"></text></g><g><title>balance_level (1,116 samples, 0.05%)</title><rect x="40.4330%" y="405" width="0.0481%" height="15" fill="rgb(244,114,52)" fg:x="938983" fg:w="1116"/><text x="40.6830%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (5,544 samples, 0.24%)</title><rect x="40.4890%" y="389" width="0.2387%" height="15" fill="rgb(212,211,43)" fg:x="940282" fg:w="5544"/><text x="40.7390%" y="399.50"></text></g><g><title>btrfs_bin_search (5,729 samples, 0.25%)</title><rect x="40.4811%" y="405" width="0.2467%" height="15" fill="rgb(226,147,8)" fg:x="940099" fg:w="5729"/><text x="40.7311%" y="415.50"></text></g><g><title>pagecache_get_page (321 samples, 0.01%)</title><rect x="40.7486%" y="309" width="0.0138%" height="15" fill="rgb(226,23,13)" fg:x="946311" fg:w="321"/><text x="40.9986%" y="319.50"></text></g><g><title>alloc_extent_buffer (409 samples, 0.02%)</title><rect x="40.7457%" y="325" width="0.0176%" height="15" fill="rgb(240,63,4)" fg:x="946244" fg:w="409"/><text x="40.9957%" y="335.50"></text></g><g><title>btrfs_find_create_tree_block (464 samples, 0.02%)</title><rect x="40.7449%" y="341" width="0.0200%" height="15" fill="rgb(221,1,32)" fg:x="946226" fg:w="464"/><text x="40.9949%" y="351.50"></text></g><g><title>btrfs_init_new_buffer (633 samples, 0.03%)</title><rect x="40.7436%" y="357" width="0.0273%" height="15" fill="rgb(242,117,10)" fg:x="946196" fg:w="633"/><text x="40.9936%" y="367.50"></text></g><g><title>btrfs_reserve_extent (281 samples, 0.01%)</title><rect x="40.7709%" y="357" width="0.0121%" height="15" fill="rgb(249,172,44)" fg:x="946829" fg:w="281"/><text x="41.0209%" y="367.50"></text></g><g><title>btrfs_alloc_tree_block (1,165 samples, 0.05%)</title><rect x="40.7347%" y="373" width="0.0502%" height="15" fill="rgb(244,46,45)" fg:x="945989" fg:w="1165"/><text x="40.9847%" y="383.50"></text></g><g><title>btrfs_free_tree_block (396 samples, 0.02%)</title><rect x="40.7851%" y="373" width="0.0171%" height="15" fill="rgb(206,43,17)" fg:x="947158" fg:w="396"/><text x="41.0351%" y="383.50"></text></g><g><title>__btrfs_cow_block (2,112 samples, 0.09%)</title><rect x="40.7334%" y="389" width="0.0909%" height="15" fill="rgb(239,218,39)" fg:x="945959" fg:w="2112"/><text x="40.9834%" y="399.50"></text></g><g><title>btrfs_cow_block (2,144 samples, 0.09%)</title><rect x="40.7334%" y="405" width="0.0923%" height="15" fill="rgb(208,169,54)" fg:x="945958" fg:w="2144"/><text x="40.9834%" y="415.50"></text></g><g><title>_raw_spin_lock_irq (828 samples, 0.04%)</title><rect x="40.8990%" y="341" width="0.0357%" height="15" fill="rgb(247,25,42)" fg:x="949804" fg:w="828"/><text x="41.1490%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (332 samples, 0.01%)</title><rect x="40.9204%" y="325" width="0.0143%" height="15" fill="rgb(226,23,31)" fg:x="950300" fg:w="332"/><text x="41.1704%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (332 samples, 0.01%)</title><rect x="40.9204%" y="309" width="0.0143%" height="15" fill="rgb(247,16,28)" fg:x="950300" fg:w="332"/><text x="41.1704%" y="319.50"></text></g><g><title>osq_lock (37,130 samples, 1.60%)</title><rect x="41.8518%" y="325" width="1.5988%" height="15" fill="rgb(231,147,38)" fg:x="971931" fg:w="37130"/><text x="42.1018%" y="335.50"></text></g><g><title>osq_unlock (434 samples, 0.02%)</title><rect x="43.4506%" y="325" width="0.0187%" height="15" fill="rgb(253,81,48)" fg:x="1009061" fg:w="434"/><text x="43.7006%" y="335.50"></text></g><g><title>rwsem_spin_on_owner (2,602 samples, 0.11%)</title><rect x="43.4695%" y="325" width="0.1120%" height="15" fill="rgb(249,222,43)" fg:x="1009499" fg:w="2602"/><text x="43.7195%" y="335.50"></text></g><g><title>rwsem_optimistic_spin (61,574 samples, 2.65%)</title><rect x="40.9446%" y="341" width="2.6514%" height="15" fill="rgb(221,3,27)" fg:x="950863" fg:w="61574"/><text x="41.1946%" y="351.50">rw..</text></g><g><title>sched_clock (336 samples, 0.01%)</title><rect x="43.5815%" y="325" width="0.0145%" height="15" fill="rgb(228,180,5)" fg:x="1012101" fg:w="336"/><text x="43.8315%" y="335.50"></text></g><g><title>native_sched_clock (330 samples, 0.01%)</title><rect x="43.5818%" y="309" width="0.0142%" height="15" fill="rgb(227,131,42)" fg:x="1012107" fg:w="330"/><text x="43.8318%" y="319.50"></text></g><g><title>rwsem_spin_on_owner (252 samples, 0.01%)</title><rect x="43.5960%" y="341" width="0.0109%" height="15" fill="rgb(212,3,39)" fg:x="1012437" fg:w="252"/><text x="43.8460%" y="351.50"></text></g><g><title>update_cfs_group (315 samples, 0.01%)</title><rect x="43.6975%" y="261" width="0.0136%" height="15" fill="rgb(226,45,5)" fg:x="1014795" fg:w="315"/><text x="43.9475%" y="271.50"></text></g><g><title>update_curr (1,042 samples, 0.04%)</title><rect x="43.7111%" y="261" width="0.0449%" height="15" fill="rgb(215,167,45)" fg:x="1015110" fg:w="1042"/><text x="43.9611%" y="271.50"></text></g><g><title>update_load_avg (848 samples, 0.04%)</title><rect x="43.7560%" y="261" width="0.0365%" height="15" fill="rgb(250,218,53)" fg:x="1016152" fg:w="848"/><text x="44.0060%" y="271.50"></text></g><g><title>dequeue_entity (2,940 samples, 0.13%)</title><rect x="43.6711%" y="277" width="0.1266%" height="15" fill="rgb(207,140,0)" fg:x="1014181" fg:w="2940"/><text x="43.9211%" y="287.50"></text></g><g><title>update_cfs_group (375 samples, 0.02%)</title><rect x="43.7979%" y="277" width="0.0161%" height="15" fill="rgb(238,133,51)" fg:x="1017125" fg:w="375"/><text x="44.0479%" y="287.50"></text></g><g><title>dequeue_task_fair (3,929 samples, 0.17%)</title><rect x="43.6530%" y="293" width="0.1692%" height="15" fill="rgb(218,203,53)" fg:x="1013760" fg:w="3929"/><text x="43.9030%" y="303.50"></text></g><g><title>dequeue_task (4,195 samples, 0.18%)</title><rect x="43.6485%" y="309" width="0.1806%" height="15" fill="rgb(226,184,25)" fg:x="1013655" fg:w="4195"/><text x="43.8985%" y="319.50"></text></g><g><title>__perf_event_task_sched_in (1,227 samples, 0.05%)</title><rect x="43.8533%" y="293" width="0.0528%" height="15" fill="rgb(231,121,21)" fg:x="1018413" fg:w="1227"/><text x="44.1033%" y="303.50"></text></g><g><title>x86_pmu_enable (1,111 samples, 0.05%)</title><rect x="43.8583%" y="277" width="0.0478%" height="15" fill="rgb(251,14,34)" fg:x="1018529" fg:w="1111"/><text x="44.1083%" y="287.50"></text></g><g><title>intel_pmu_enable_all (1,083 samples, 0.05%)</title><rect x="43.8595%" y="261" width="0.0466%" height="15" fill="rgb(249,193,11)" fg:x="1018557" fg:w="1083"/><text x="44.1095%" y="271.50"></text></g><g><title>native_write_msr (1,014 samples, 0.04%)</title><rect x="43.8625%" y="245" width="0.0437%" height="15" fill="rgb(220,172,37)" fg:x="1018626" fg:w="1014"/><text x="44.1125%" y="255.50"></text></g><g><title>finish_task_switch.isra.0 (1,885 samples, 0.08%)</title><rect x="43.8296%" y="309" width="0.0812%" height="15" fill="rgb(231,229,43)" fg:x="1017862" fg:w="1885"/><text x="44.0796%" y="319.50"></text></g><g><title>newidle_balance (324 samples, 0.01%)</title><rect x="43.9359%" y="277" width="0.0140%" height="15" fill="rgb(250,161,5)" fg:x="1020330" fg:w="324"/><text x="44.1859%" y="287.50"></text></g><g><title>pick_next_task_fair (909 samples, 0.04%)</title><rect x="43.9225%" y="293" width="0.0391%" height="15" fill="rgb(218,225,18)" fg:x="1020020" fg:w="909"/><text x="44.1725%" y="303.50"></text></g><g><title>__update_idle_core (394 samples, 0.02%)</title><rect x="43.9653%" y="261" width="0.0170%" height="15" fill="rgb(245,45,42)" fg:x="1021014" fg:w="394"/><text x="44.2153%" y="271.50"></text></g><g><title>pick_next_task_idle (548 samples, 0.02%)</title><rect x="43.9617%" y="293" width="0.0236%" height="15" fill="rgb(211,115,1)" fg:x="1020929" fg:w="548"/><text x="44.2117%" y="303.50"></text></g><g><title>set_next_task_idle (479 samples, 0.02%)</title><rect x="43.9646%" y="277" width="0.0206%" height="15" fill="rgb(248,133,52)" fg:x="1020998" fg:w="479"/><text x="44.2146%" y="287.50"></text></g><g><title>pick_next_task (1,885 samples, 0.08%)</title><rect x="43.9142%" y="309" width="0.0812%" height="15" fill="rgb(238,100,21)" fg:x="1019827" fg:w="1885"/><text x="44.1642%" y="319.50"></text></g><g><title>perf_event_context_sched_out (448 samples, 0.02%)</title><rect x="44.0138%" y="277" width="0.0193%" height="15" fill="rgb(247,144,11)" fg:x="1022139" fg:w="448"/><text x="44.2638%" y="287.50"></text></g><g><title>__perf_event_task_sched_out (770 samples, 0.03%)</title><rect x="44.0054%" y="293" width="0.0332%" height="15" fill="rgb(206,164,16)" fg:x="1021945" fg:w="770"/><text x="44.2554%" y="303.50"></text></g><g><title>prepare_task_switch (949 samples, 0.04%)</title><rect x="43.9979%" y="309" width="0.0409%" height="15" fill="rgb(222,34,3)" fg:x="1021771" fg:w="949"/><text x="44.2479%" y="319.50"></text></g><g><title>iterate_groups (246 samples, 0.01%)</title><rect x="44.0554%" y="293" width="0.0106%" height="15" fill="rgb(248,82,4)" fg:x="1023105" fg:w="246"/><text x="44.3054%" y="303.50"></text></g><g><title>psi_group_change (2,147 samples, 0.09%)</title><rect x="44.0698%" y="293" width="0.0925%" height="15" fill="rgb(228,81,46)" fg:x="1023441" fg:w="2147"/><text x="44.3198%" y="303.50"></text></g><g><title>psi_task_switch (2,920 samples, 0.13%)</title><rect x="44.0427%" y="309" width="0.1257%" height="15" fill="rgb(227,67,47)" fg:x="1022810" fg:w="2920"/><text x="44.2927%" y="319.50"></text></g><g><title>__schedule (13,366 samples, 0.58%)</title><rect x="43.6151%" y="325" width="0.5755%" height="15" fill="rgb(215,93,53)" fg:x="1012881" fg:w="13366"/><text x="43.8651%" y="335.50"></text></g><g><title>update_rq_clock (278 samples, 0.01%)</title><rect x="44.1787%" y="309" width="0.0120%" height="15" fill="rgb(248,194,39)" fg:x="1025969" fg:w="278"/><text x="44.4287%" y="319.50"></text></g><g><title>schedule (13,589 samples, 0.59%)</title><rect x="43.6099%" y="341" width="0.5851%" height="15" fill="rgb(215,5,19)" fg:x="1012760" fg:w="13589"/><text x="43.8599%" y="351.50"></text></g><g><title>rwsem_down_write_slowpath (77,426 samples, 3.33%)</title><rect x="40.8615%" y="357" width="3.3340%" height="15" fill="rgb(226,215,51)" fg:x="948932" fg:w="77426"/><text x="41.1115%" y="367.50">rws..</text></g><g><title>down_write (77,983 samples, 3.36%)</title><rect x="40.8427%" y="373" width="3.3580%" height="15" fill="rgb(225,56,26)" fg:x="948497" fg:w="77983"/><text x="41.0927%" y="383.50">dow..</text></g><g><title>__btrfs_tree_lock (78,166 samples, 3.37%)</title><rect x="40.8366%" y="389" width="3.3659%" height="15" fill="rgb(222,75,29)" fg:x="948354" fg:w="78166"/><text x="41.0866%" y="399.50">__b..</text></g><g><title>btrfs_root_node (258 samples, 0.01%)</title><rect x="44.2024%" y="389" width="0.0111%" height="15" fill="rgb(236,139,6)" fg:x="1026520" fg:w="258"/><text x="44.4524%" y="399.50"></text></g><g><title>btrfs_lock_root_node (78,565 samples, 3.38%)</title><rect x="40.8322%" y="405" width="3.3830%" height="15" fill="rgb(223,137,36)" fg:x="948253" fg:w="78565"/><text x="41.0822%" y="415.50">btr..</text></g><g><title>_raw_spin_lock_irq (627 samples, 0.03%)</title><rect x="44.3167%" y="341" width="0.0270%" height="15" fill="rgb(226,99,2)" fg:x="1029173" fg:w="627"/><text x="44.5667%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (274 samples, 0.01%)</title><rect x="44.3319%" y="325" width="0.0118%" height="15" fill="rgb(206,133,23)" fg:x="1029526" fg:w="274"/><text x="44.5819%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (274 samples, 0.01%)</title><rect x="44.3319%" y="309" width="0.0118%" height="15" fill="rgb(243,173,15)" fg:x="1029526" fg:w="274"/><text x="44.5819%" y="319.50"></text></g><g><title>update_cfs_group (321 samples, 0.01%)</title><rect x="44.4281%" y="261" width="0.0138%" height="15" fill="rgb(228,69,28)" fg:x="1031760" fg:w="321"/><text x="44.6781%" y="271.50"></text></g><g><title>__calc_delta (243 samples, 0.01%)</title><rect x="44.4629%" y="245" width="0.0105%" height="15" fill="rgb(212,51,22)" fg:x="1032568" fg:w="243"/><text x="44.7129%" y="255.50"></text></g><g><title>update_curr (1,173 samples, 0.05%)</title><rect x="44.4419%" y="261" width="0.0505%" height="15" fill="rgb(227,113,0)" fg:x="1032081" fg:w="1173"/><text x="44.6919%" y="271.50"></text></g><g><title>update_load_avg (779 samples, 0.03%)</title><rect x="44.4924%" y="261" width="0.0335%" height="15" fill="rgb(252,84,27)" fg:x="1033254" fg:w="779"/><text x="44.7424%" y="271.50"></text></g><g><title>dequeue_entity (2,982 samples, 0.13%)</title><rect x="44.4016%" y="277" width="0.1284%" height="15" fill="rgb(223,145,39)" fg:x="1031145" fg:w="2982"/><text x="44.6516%" y="287.50"></text></g><g><title>update_cfs_group (247 samples, 0.01%)</title><rect x="44.5300%" y="277" width="0.0106%" height="15" fill="rgb(239,219,30)" fg:x="1034127" fg:w="247"/><text x="44.7800%" y="287.50"></text></g><g><title>dequeue_task_fair (3,712 samples, 0.16%)</title><rect x="44.3866%" y="293" width="0.1598%" height="15" fill="rgb(224,196,39)" fg:x="1030796" fg:w="3712"/><text x="44.6366%" y="303.50"></text></g><g><title>dequeue_task (3,899 samples, 0.17%)</title><rect x="44.3818%" y="309" width="0.1679%" height="15" fill="rgb(205,35,43)" fg:x="1030686" fg:w="3899"/><text x="44.6318%" y="319.50"></text></g><g><title>__perf_event_task_sched_in (922 samples, 0.04%)</title><rect x="44.5727%" y="293" width="0.0397%" height="15" fill="rgb(228,201,21)" fg:x="1035118" fg:w="922"/><text x="44.8227%" y="303.50"></text></g><g><title>x86_pmu_enable (758 samples, 0.03%)</title><rect x="44.5797%" y="277" width="0.0326%" height="15" fill="rgb(237,118,16)" fg:x="1035282" fg:w="758"/><text x="44.8297%" y="287.50"></text></g><g><title>intel_pmu_enable_all (726 samples, 0.03%)</title><rect x="44.5811%" y="261" width="0.0313%" height="15" fill="rgb(241,17,19)" fg:x="1035314" fg:w="726"/><text x="44.8311%" y="271.50"></text></g><g><title>native_write_msr (672 samples, 0.03%)</title><rect x="44.5834%" y="245" width="0.0289%" height="15" fill="rgb(214,10,25)" fg:x="1035368" fg:w="672"/><text x="44.8334%" y="255.50"></text></g><g><title>flush_smp_call_function_queue (245 samples, 0.01%)</title><rect x="44.6172%" y="229" width="0.0105%" height="15" fill="rgb(238,37,29)" fg:x="1036152" fg:w="245"/><text x="44.8672%" y="239.50"></text></g><g><title>sched_ttwu_pending (237 samples, 0.01%)</title><rect x="44.6175%" y="213" width="0.0102%" height="15" fill="rgb(253,83,25)" fg:x="1036160" fg:w="237"/><text x="44.8675%" y="223.50"></text></g><g><title>__sysvec_call_function_single (257 samples, 0.01%)</title><rect x="44.6171%" y="261" width="0.0111%" height="15" fill="rgb(234,192,12)" fg:x="1036149" fg:w="257"/><text x="44.8671%" y="271.50"></text></g><g><title>generic_smp_call_function_single_interrupt (254 samples, 0.01%)</title><rect x="44.6172%" y="245" width="0.0109%" height="15" fill="rgb(241,216,45)" fg:x="1036152" fg:w="254"/><text x="44.8672%" y="255.50"></text></g><g><title>asm_sysvec_call_function_single (294 samples, 0.01%)</title><rect x="44.6167%" y="293" width="0.0127%" height="15" fill="rgb(242,22,33)" fg:x="1036140" fg:w="294"/><text x="44.8667%" y="303.50"></text></g><g><title>sysvec_call_function_single (292 samples, 0.01%)</title><rect x="44.6168%" y="277" width="0.0126%" height="15" fill="rgb(231,105,49)" fg:x="1036142" fg:w="292"/><text x="44.8668%" y="287.50"></text></g><g><title>finish_task_switch.isra.0 (1,847 samples, 0.08%)</title><rect x="44.5502%" y="309" width="0.0795%" height="15" fill="rgb(218,204,15)" fg:x="1034596" fg:w="1847"/><text x="44.8002%" y="319.50"></text></g><g><title>newidle_balance (405 samples, 0.02%)</title><rect x="44.6530%" y="277" width="0.0174%" height="15" fill="rgb(235,138,41)" fg:x="1036984" fg:w="405"/><text x="44.9030%" y="287.50"></text></g><g><title>pick_next_task_fair (824 samples, 0.04%)</title><rect x="44.6415%" y="293" width="0.0355%" height="15" fill="rgb(246,0,9)" fg:x="1036716" fg:w="824"/><text x="44.8915%" y="303.50"></text></g><g><title>__update_idle_core (434 samples, 0.02%)</title><rect x="44.6827%" y="261" width="0.0187%" height="15" fill="rgb(210,74,4)" fg:x="1037673" fg:w="434"/><text x="44.9327%" y="271.50"></text></g><g><title>pick_next_task_idle (622 samples, 0.03%)</title><rect x="44.6770%" y="293" width="0.0268%" height="15" fill="rgb(250,60,41)" fg:x="1037540" fg:w="622"/><text x="44.9270%" y="303.50"></text></g><g><title>set_next_task_idle (508 samples, 0.02%)</title><rect x="44.6819%" y="277" width="0.0219%" height="15" fill="rgb(220,115,12)" fg:x="1037654" fg:w="508"/><text x="44.9319%" y="287.50"></text></g><g><title>pick_next_task (1,912 samples, 0.08%)</title><rect x="44.6330%" y="309" width="0.0823%" height="15" fill="rgb(237,100,13)" fg:x="1036520" fg:w="1912"/><text x="44.8830%" y="319.50"></text></g><g><title>perf_event_context_sched_out (424 samples, 0.02%)</title><rect x="44.7313%" y="277" width="0.0183%" height="15" fill="rgb(213,55,26)" fg:x="1038801" fg:w="424"/><text x="44.9813%" y="287.50"></text></g><g><title>__perf_event_task_sched_out (723 samples, 0.03%)</title><rect x="44.7241%" y="293" width="0.0311%" height="15" fill="rgb(216,17,4)" fg:x="1038636" fg:w="723"/><text x="44.9741%" y="303.50"></text></g><g><title>prepare_task_switch (850 samples, 0.04%)</title><rect x="44.7190%" y="309" width="0.0366%" height="15" fill="rgb(220,153,47)" fg:x="1038517" fg:w="850"/><text x="44.9690%" y="319.50"></text></g><g><title>iterate_groups (241 samples, 0.01%)</title><rect x="44.7691%" y="293" width="0.0104%" height="15" fill="rgb(215,131,9)" fg:x="1039680" fg:w="241"/><text x="45.0191%" y="303.50"></text></g><g><title>psi_group_change (1,900 samples, 0.08%)</title><rect x="44.7812%" y="293" width="0.0818%" height="15" fill="rgb(233,46,42)" fg:x="1039961" fg:w="1900"/><text x="45.0312%" y="303.50"></text></g><g><title>psi_task_switch (2,590 samples, 0.11%)</title><rect x="44.7585%" y="309" width="0.1115%" height="15" fill="rgb(226,86,7)" fg:x="1039434" fg:w="2590"/><text x="45.0085%" y="319.50"></text></g><g><title>__schedule (12,517 samples, 0.54%)</title><rect x="44.3531%" y="325" width="0.5390%" height="15" fill="rgb(239,226,21)" fg:x="1030019" fg:w="12517"/><text x="44.6031%" y="335.50"></text></g><g><title>update_rq_clock (269 samples, 0.01%)</title><rect x="44.8805%" y="309" width="0.0116%" height="15" fill="rgb(244,137,22)" fg:x="1042267" fg:w="269"/><text x="45.1305%" y="319.50"></text></g><g><title>schedule (12,716 samples, 0.55%)</title><rect x="44.3491%" y="341" width="0.5476%" height="15" fill="rgb(211,139,35)" fg:x="1029927" fg:w="12716"/><text x="44.5991%" y="351.50"></text></g><g><title>rwsem_down_read_slowpath (14,851 samples, 0.64%)</title><rect x="44.2691%" y="357" width="0.6395%" height="15" fill="rgb(214,62,50)" fg:x="1028069" fg:w="14851"/><text x="44.5191%" y="367.50"></text></g><g><title>wake_up_q (258 samples, 0.01%)</title><rect x="44.8975%" y="341" width="0.0111%" height="15" fill="rgb(212,113,44)" fg:x="1042662" fg:w="258"/><text x="45.1475%" y="351.50"></text></g><g><title>down_read (15,675 samples, 0.67%)</title><rect x="44.2354%" y="373" width="0.6750%" height="15" fill="rgb(226,150,43)" fg:x="1027286" fg:w="15675"/><text x="44.4854%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (15,923 samples, 0.69%)</title><rect x="44.2272%" y="389" width="0.6857%" height="15" fill="rgb(250,71,37)" fg:x="1027095" fg:w="15923"/><text x="44.4772%" y="399.50"></text></g><g><title>btrfs_root_node (1,072 samples, 0.05%)</title><rect x="44.9128%" y="389" width="0.0462%" height="15" fill="rgb(219,76,19)" fg:x="1043018" fg:w="1072"/><text x="45.1628%" y="399.50"></text></g><g><title>btrfs_read_lock_root_node (17,236 samples, 0.74%)</title><rect x="44.2186%" y="405" width="0.7422%" height="15" fill="rgb(250,39,11)" fg:x="1026895" fg:w="17236"/><text x="44.4686%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (504 samples, 0.02%)</title><rect x="45.0176%" y="309" width="0.0217%" height="15" fill="rgb(230,64,31)" fg:x="1045452" fg:w="504"/><text x="45.2676%" y="319.50"></text></g><g><title>native_queued_spin_lock_slowpath (399 samples, 0.02%)</title><rect x="45.0222%" y="293" width="0.0172%" height="15" fill="rgb(208,222,23)" fg:x="1045557" fg:w="399"/><text x="45.2722%" y="303.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (399 samples, 0.02%)</title><rect x="45.0222%" y="277" width="0.0172%" height="15" fill="rgb(227,125,18)" fg:x="1045557" fg:w="399"/><text x="45.2722%" y="287.50"></text></g><g><title>select_task_rq_fair (243 samples, 0.01%)</title><rect x="45.0410%" y="309" width="0.0105%" height="15" fill="rgb(234,210,9)" fg:x="1045994" fg:w="243"/><text x="45.2910%" y="319.50"></text></g><g><title>try_to_wake_up (1,331 samples, 0.06%)</title><rect x="45.0063%" y="325" width="0.0573%" height="15" fill="rgb(217,127,24)" fg:x="1045189" fg:w="1331"/><text x="45.2563%" y="335.50"></text></g><g><title>rwsem_wake.isra.0 (1,913 samples, 0.08%)</title><rect x="44.9816%" y="357" width="0.0824%" height="15" fill="rgb(239,141,48)" fg:x="1044614" fg:w="1913"/><text x="45.2316%" y="367.50"></text></g><g><title>wake_up_q (1,432 samples, 0.06%)</title><rect x="45.0023%" y="341" width="0.0617%" height="15" fill="rgb(227,109,8)" fg:x="1045095" fg:w="1432"/><text x="45.2523%" y="351.50"></text></g><g><title>btrfs_tree_read_unlock (1,973 samples, 0.08%)</title><rect x="44.9791%" y="389" width="0.0850%" height="15" fill="rgb(235,184,23)" fg:x="1044556" fg:w="1973"/><text x="45.2291%" y="399.50"></text></g><g><title>up_read (1,937 samples, 0.08%)</title><rect x="44.9806%" y="373" width="0.0834%" height="15" fill="rgb(227,226,48)" fg:x="1044592" fg:w="1937"/><text x="45.2306%" y="383.50"></text></g><g><title>free_extent_buffer (305 samples, 0.01%)</title><rect x="45.0654%" y="389" width="0.0131%" height="15" fill="rgb(206,150,11)" fg:x="1046562" fg:w="305"/><text x="45.3154%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (304 samples, 0.01%)</title><rect x="45.0655%" y="373" width="0.0131%" height="15" fill="rgb(254,2,33)" fg:x="1046563" fg:w="304"/><text x="45.3155%" y="383.50"></text></g><g><title>btrfs_release_path (2,995 samples, 0.13%)</title><rect x="44.9660%" y="405" width="0.1290%" height="15" fill="rgb(243,160,20)" fg:x="1044253" fg:w="2995"/><text x="45.2160%" y="415.50"></text></g><g><title>up_read (381 samples, 0.02%)</title><rect x="45.0786%" y="389" width="0.0164%" height="15" fill="rgb(218,208,30)" fg:x="1046867" fg:w="381"/><text x="45.3286%" y="399.50"></text></g><g><title>__cond_resched (288 samples, 0.01%)</title><rect x="45.1362%" y="357" width="0.0124%" height="15" fill="rgb(224,120,49)" fg:x="1048206" fg:w="288"/><text x="45.3862%" y="367.50"></text></g><g><title>rwsem_spin_on_owner (3,995 samples, 0.17%)</title><rect x="45.2944%" y="325" width="0.1720%" height="15" fill="rgb(246,12,2)" fg:x="1051880" fg:w="3995"/><text x="45.5444%" y="335.50"></text></g><g><title>rwsem_optimistic_spin (7,234 samples, 0.31%)</title><rect x="45.1575%" y="341" width="0.3115%" height="15" fill="rgb(236,117,3)" fg:x="1048700" fg:w="7234"/><text x="45.4075%" y="351.50"></text></g><g><title>__schedule (301 samples, 0.01%)</title><rect x="45.4716%" y="325" width="0.0130%" height="15" fill="rgb(216,128,52)" fg:x="1055995" fg:w="301"/><text x="45.7216%" y="335.50"></text></g><g><title>rwsem_down_write_slowpath (7,729 samples, 0.33%)</title><rect x="45.1519%" y="357" width="0.3328%" height="15" fill="rgb(246,145,19)" fg:x="1048570" fg:w="7729"/><text x="45.4019%" y="367.50"></text></g><g><title>schedule (307 samples, 0.01%)</title><rect x="45.4715%" y="341" width="0.0132%" height="15" fill="rgb(222,11,46)" fg:x="1055992" fg:w="307"/><text x="45.7215%" y="351.50"></text></g><g><title>down_write (8,710 samples, 0.38%)</title><rect x="45.1101%" y="373" width="0.3751%" height="15" fill="rgb(245,82,36)" fg:x="1047599" fg:w="8710"/><text x="45.3601%" y="383.50"></text></g><g><title>__btrfs_tree_lock (8,952 samples, 0.39%)</title><rect x="45.1003%" y="389" width="0.3855%" height="15" fill="rgb(250,73,51)" fg:x="1047372" fg:w="8952"/><text x="45.3503%" y="399.50"></text></g><g><title>btrfs_tree_lock (9,032 samples, 0.39%)</title><rect x="45.1001%" y="405" width="0.3889%" height="15" fill="rgb(221,189,23)" fg:x="1047366" fg:w="9032"/><text x="45.3501%" y="415.50"></text></g><g><title>rwsem_wake.isra.0 (782 samples, 0.03%)</title><rect x="45.4948%" y="373" width="0.0337%" height="15" fill="rgb(210,33,7)" fg:x="1056533" fg:w="782"/><text x="45.7448%" y="383.50"></text></g><g><title>wake_up_q (502 samples, 0.02%)</title><rect x="45.5069%" y="357" width="0.0216%" height="15" fill="rgb(210,107,22)" fg:x="1056813" fg:w="502"/><text x="45.7569%" y="367.50"></text></g><g><title>try_to_wake_up (431 samples, 0.02%)</title><rect x="45.5099%" y="341" width="0.0186%" height="15" fill="rgb(222,116,37)" fg:x="1056884" fg:w="431"/><text x="45.7599%" y="351.50"></text></g><g><title>btrfs_tree_read_unlock (921 samples, 0.04%)</title><rect x="45.4890%" y="405" width="0.0397%" height="15" fill="rgb(254,17,48)" fg:x="1056398" fg:w="921"/><text x="45.7390%" y="415.50"></text></g><g><title>up_read (797 samples, 0.03%)</title><rect x="45.4943%" y="389" width="0.0343%" height="15" fill="rgb(224,36,32)" fg:x="1056522" fg:w="797"/><text x="45.7443%" y="399.50"></text></g><g><title>free_extent_buffer (263 samples, 0.01%)</title><rect x="45.5388%" y="405" width="0.0113%" height="15" fill="rgb(232,90,46)" fg:x="1057555" fg:w="263"/><text x="45.7888%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (263 samples, 0.01%)</title><rect x="45.5388%" y="389" width="0.0113%" height="15" fill="rgb(241,66,40)" fg:x="1057555" fg:w="263"/><text x="45.7888%" y="399.50"></text></g><g><title>btrfs_buffer_uptodate (1,109 samples, 0.05%)</title><rect x="45.5882%" y="389" width="0.0478%" height="15" fill="rgb(249,184,29)" fg:x="1058703" fg:w="1109"/><text x="45.8382%" y="399.50"></text></g><g><title>verify_parent_transid (954 samples, 0.04%)</title><rect x="45.5949%" y="373" width="0.0411%" height="15" fill="rgb(231,181,1)" fg:x="1058858" fg:w="954"/><text x="45.8449%" y="383.50"></text></g><g><title>btrfs_get_64 (768 samples, 0.03%)</title><rect x="45.6360%" y="389" width="0.0331%" height="15" fill="rgb(224,94,2)" fg:x="1059812" fg:w="768"/><text x="45.8860%" y="399.50"></text></g><g><title>btrfs_node_key (1,213 samples, 0.05%)</title><rect x="45.6691%" y="389" width="0.0522%" height="15" fill="rgb(229,170,15)" fg:x="1060580" fg:w="1213"/><text x="45.9191%" y="399.50"></text></g><g><title>read_extent_buffer (1,177 samples, 0.05%)</title><rect x="45.6706%" y="373" width="0.0507%" height="15" fill="rgb(240,127,35)" fg:x="1060616" fg:w="1177"/><text x="45.9206%" y="383.50"></text></g><g><title>btrfs_verify_level_key (320 samples, 0.01%)</title><rect x="45.7214%" y="389" width="0.0138%" height="15" fill="rgb(248,196,34)" fg:x="1061795" fg:w="320"/><text x="45.9714%" y="399.50"></text></g><g><title>__radix_tree_lookup (3,759 samples, 0.16%)</title><rect x="45.8718%" y="341" width="0.1619%" height="15" fill="rgb(236,137,7)" fg:x="1065287" fg:w="3759"/><text x="46.1218%" y="351.50"></text></g><g><title>radix_tree_lookup (3,766 samples, 0.16%)</title><rect x="45.8715%" y="357" width="0.1622%" height="15" fill="rgb(235,127,16)" fg:x="1065281" fg:w="3766"/><text x="46.1215%" y="367.50"></text></g><g><title>find_extent_buffer_nolock (6,265 samples, 0.27%)</title><rect x="45.7641%" y="373" width="0.2698%" height="15" fill="rgb(250,192,54)" fg:x="1062788" fg:w="6265"/><text x="46.0141%" y="383.50"></text></g><g><title>mark_page_accessed (1,878 samples, 0.08%)</title><rect x="46.0339%" y="373" width="0.0809%" height="15" fill="rgb(218,98,20)" fg:x="1069053" fg:w="1878"/><text x="46.2839%" y="383.50"></text></g><g><title>find_extent_buffer (8,830 samples, 0.38%)</title><rect x="45.7410%" y="389" width="0.3802%" height="15" fill="rgb(230,176,47)" fg:x="1062251" fg:w="8830"/><text x="45.9910%" y="399.50"></text></g><g><title>read_block_for_search (13,520 samples, 0.58%)</title><rect x="45.5581%" y="405" width="0.5822%" height="15" fill="rgb(244,2,33)" fg:x="1058003" fg:w="13520"/><text x="45.8081%" y="415.50"></text></g><g><title>btrfs_find_create_tree_block (268 samples, 0.01%)</title><rect x="46.1729%" y="373" width="0.0115%" height="15" fill="rgb(231,100,17)" fg:x="1072281" fg:w="268"/><text x="46.4229%" y="383.50"></text></g><g><title>btrfs_get_64 (359 samples, 0.02%)</title><rect x="46.1845%" y="373" width="0.0155%" height="15" fill="rgb(245,23,12)" fg:x="1072549" fg:w="359"/><text x="46.4345%" y="383.50"></text></g><g><title>btrfs_buffer_uptodate (477 samples, 0.02%)</title><rect x="46.2180%" y="357" width="0.0205%" height="15" fill="rgb(249,55,22)" fg:x="1073329" fg:w="477"/><text x="46.4680%" y="367.50"></text></g><g><title>verify_parent_transid (429 samples, 0.02%)</title><rect x="46.2201%" y="341" width="0.0185%" height="15" fill="rgb(207,134,9)" fg:x="1073377" fg:w="429"/><text x="46.4701%" y="351.50"></text></g><g><title>__radix_tree_lookup (1,460 samples, 0.06%)</title><rect x="46.3218%" y="277" width="0.0629%" height="15" fill="rgb(218,134,0)" fg:x="1075738" fg:w="1460"/><text x="46.5718%" y="287.50"></text></g><g><title>radix_tree_lookup (1,463 samples, 0.06%)</title><rect x="46.3217%" y="293" width="0.0630%" height="15" fill="rgb(213,212,33)" fg:x="1075736" fg:w="1463"/><text x="46.5717%" y="303.50"></text></g><g><title>find_extent_buffer_nolock (2,757 samples, 0.12%)</title><rect x="46.2662%" y="309" width="0.1187%" height="15" fill="rgb(252,106,18)" fg:x="1074447" fg:w="2757"/><text x="46.5162%" y="319.50"></text></g><g><title>mark_page_accessed (708 samples, 0.03%)</title><rect x="46.3849%" y="309" width="0.0305%" height="15" fill="rgb(208,126,42)" fg:x="1077204" fg:w="708"/><text x="46.6349%" y="319.50"></text></g><g><title>find_extent_buffer (3,747 samples, 0.16%)</title><rect x="46.2553%" y="325" width="0.1613%" height="15" fill="rgb(246,175,29)" fg:x="1074195" fg:w="3747"/><text x="46.5053%" y="335.50"></text></g><g><title>alloc_extent_buffer (4,190 samples, 0.18%)</title><rect x="46.2387%" y="341" width="0.1804%" height="15" fill="rgb(215,13,50)" fg:x="1073809" fg:w="4190"/><text x="46.4887%" y="351.50"></text></g><g><title>btrfs_find_create_tree_block (4,213 samples, 0.18%)</title><rect x="46.2386%" y="357" width="0.1814%" height="15" fill="rgb(216,172,15)" fg:x="1073806" fg:w="4213"/><text x="46.4886%" y="367.50"></text></g><g><title>free_extent_buffer.part.0 (362 samples, 0.02%)</title><rect x="46.4200%" y="357" width="0.0156%" height="15" fill="rgb(212,103,13)" fg:x="1078019" fg:w="362"/><text x="46.6700%" y="367.50"></text></g><g><title>release_extent_buffer (311 samples, 0.01%)</title><rect x="46.4222%" y="341" width="0.0134%" height="15" fill="rgb(231,171,36)" fg:x="1078070" fg:w="311"/><text x="46.6722%" y="351.50"></text></g><g><title>btrfs_readahead_tree_block (5,534 samples, 0.24%)</title><rect x="46.1999%" y="373" width="0.2383%" height="15" fill="rgb(250,123,20)" fg:x="1072908" fg:w="5534"/><text x="46.4499%" y="383.50"></text></g><g><title>btrfs_readahead_node_child (6,557 samples, 0.28%)</title><rect x="46.1594%" y="389" width="0.2823%" height="15" fill="rgb(212,53,50)" fg:x="1071968" fg:w="6557"/><text x="46.4094%" y="399.50"></text></g><g><title>reada_for_balance (7,142 samples, 0.31%)</title><rect x="46.1403%" y="405" width="0.3075%" height="15" fill="rgb(243,54,12)" fg:x="1071523" fg:w="7142"/><text x="46.3903%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (391 samples, 0.02%)</title><rect x="46.5219%" y="341" width="0.0168%" height="15" fill="rgb(234,101,34)" fg:x="1080385" fg:w="391"/><text x="46.7719%" y="351.50"></text></g><g><title>rwsem_mark_wake (1,913 samples, 0.08%)</title><rect x="46.5390%" y="341" width="0.0824%" height="15" fill="rgb(254,67,22)" fg:x="1080782" fg:w="1913"/><text x="46.7890%" y="351.50"></text></g><g><title>wake_q_add (345 samples, 0.01%)</title><rect x="46.6227%" y="341" width="0.0149%" height="15" fill="rgb(250,35,47)" fg:x="1082726" fg:w="345"/><text x="46.8727%" y="351.50"></text></g><g><title>wake_q_add_safe (326 samples, 0.01%)</title><rect x="46.6375%" y="341" width="0.0140%" height="15" fill="rgb(226,126,38)" fg:x="1083071" fg:w="326"/><text x="46.8875%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (703 samples, 0.03%)</title><rect x="46.7983%" y="309" width="0.0303%" height="15" fill="rgb(216,138,53)" fg:x="1086805" fg:w="703"/><text x="47.0483%" y="319.50"></text></g><g><title>is_cpu_allowed (276 samples, 0.01%)</title><rect x="46.8296%" y="309" width="0.0119%" height="15" fill="rgb(246,199,43)" fg:x="1087532" fg:w="276"/><text x="47.0796%" y="319.50"></text></g><g><title>_raw_spin_lock (1,886 samples, 0.08%)</title><rect x="46.8484%" y="293" width="0.0812%" height="15" fill="rgb(232,125,11)" fg:x="1087968" fg:w="1886"/><text x="47.0984%" y="303.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,868 samples, 0.08%)</title><rect x="46.8492%" y="277" width="0.0804%" height="15" fill="rgb(218,219,45)" fg:x="1087986" fg:w="1868"/><text x="47.0992%" y="287.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (1,868 samples, 0.08%)</title><rect x="46.8492%" y="261" width="0.0804%" height="15" fill="rgb(216,102,54)" fg:x="1087986" fg:w="1868"/><text x="47.0992%" y="271.50"></text></g><g><title>raw_spin_rq_lock_nested (1,929 samples, 0.08%)</title><rect x="46.8474%" y="309" width="0.0831%" height="15" fill="rgb(250,228,7)" fg:x="1087945" fg:w="1929"/><text x="47.0974%" y="319.50"></text></g><g><title>available_idle_cpu (713 samples, 0.03%)</title><rect x="47.0367%" y="277" width="0.0307%" height="15" fill="rgb(226,125,25)" fg:x="1092340" fg:w="713"/><text x="47.2867%" y="287.50"></text></g><g><title>_find_next_bit (279 samples, 0.01%)</title><rect x="47.1200%" y="261" width="0.0120%" height="15" fill="rgb(224,165,27)" fg:x="1094275" fg:w="279"/><text x="47.3700%" y="271.50"></text></g><g><title>available_idle_cpu (579 samples, 0.02%)</title><rect x="47.1320%" y="261" width="0.0249%" height="15" fill="rgb(233,86,3)" fg:x="1094554" fg:w="579"/><text x="47.3820%" y="271.50"></text></g><g><title>cpumask_next_wrap (345 samples, 0.01%)</title><rect x="47.1581%" y="261" width="0.0149%" height="15" fill="rgb(228,116,20)" fg:x="1095159" fg:w="345"/><text x="47.4081%" y="271.50"></text></g><g><title>_find_next_bit (247 samples, 0.01%)</title><rect x="47.1931%" y="245" width="0.0106%" height="15" fill="rgb(209,192,17)" fg:x="1095973" fg:w="247"/><text x="47.4431%" y="255.50"></text></g><g><title>available_idle_cpu (744 samples, 0.03%)</title><rect x="47.2037%" y="245" width="0.0320%" height="15" fill="rgb(224,88,34)" fg:x="1096220" fg:w="744"/><text x="47.4537%" y="255.50"></text></g><g><title>select_idle_sibling (5,946 samples, 0.26%)</title><rect x="46.9801%" y="293" width="0.2560%" height="15" fill="rgb(233,38,6)" fg:x="1091027" fg:w="5946"/><text x="47.2301%" y="303.50"></text></g><g><title>select_idle_cpu (3,558 samples, 0.15%)</title><rect x="47.0830%" y="277" width="0.1532%" height="15" fill="rgb(212,59,30)" fg:x="1093415" fg:w="3558"/><text x="47.3330%" y="287.50"></text></g><g><title>select_idle_core (1,469 samples, 0.06%)</title><rect x="47.1729%" y="261" width="0.0633%" height="15" fill="rgb(213,80,3)" fg:x="1095504" fg:w="1469"/><text x="47.4229%" y="271.50"></text></g><g><title>task_h_load (675 samples, 0.03%)</title><rect x="47.2362%" y="293" width="0.0291%" height="15" fill="rgb(251,178,7)" fg:x="1096973" fg:w="675"/><text x="47.4862%" y="303.50"></text></g><g><title>available_idle_cpu (793 samples, 0.03%)</title><rect x="47.2787%" y="277" width="0.0341%" height="15" fill="rgb(213,154,26)" fg:x="1097961" fg:w="793"/><text x="47.5287%" y="287.50"></text></g><g><title>select_task_rq_fair (8,936 samples, 0.38%)</title><rect x="46.9366%" y="309" width="0.3848%" height="15" fill="rgb(238,165,49)" fg:x="1090016" fg:w="8936"/><text x="47.1866%" y="319.50"></text></g><g><title>wake_affine (1,304 samples, 0.06%)</title><rect x="47.2652%" y="293" width="0.0562%" height="15" fill="rgb(248,91,46)" fg:x="1097648" fg:w="1304"/><text x="47.5152%" y="303.50"></text></g><g><title>migrate_task_rq_fair (895 samples, 0.04%)</title><rect x="47.3447%" y="293" width="0.0385%" height="15" fill="rgb(244,21,52)" fg:x="1099494" fg:w="895"/><text x="47.5947%" y="303.50"></text></g><g><title>remove_entity_load_avg (539 samples, 0.02%)</title><rect x="47.3600%" y="277" width="0.0232%" height="15" fill="rgb(247,122,20)" fg:x="1099850" fg:w="539"/><text x="47.6100%" y="287.50"></text></g><g><title>_raw_spin_lock_irqsave (361 samples, 0.02%)</title><rect x="47.3677%" y="261" width="0.0155%" height="15" fill="rgb(218,27,9)" fg:x="1100028" fg:w="361"/><text x="47.6177%" y="271.50"></text></g><g><title>set_task_cpu (1,473 samples, 0.06%)</title><rect x="47.3214%" y="309" width="0.0634%" height="15" fill="rgb(246,7,6)" fg:x="1098952" fg:w="1473"/><text x="47.5714%" y="319.50"></text></g><g><title>update_curr (353 samples, 0.02%)</title><rect x="47.4183%" y="245" width="0.0152%" height="15" fill="rgb(227,135,54)" fg:x="1101203" fg:w="353"/><text x="47.6683%" y="255.50"></text></g><g><title>update_load_avg (384 samples, 0.02%)</title><rect x="47.4335%" y="245" width="0.0165%" height="15" fill="rgb(247,14,11)" fg:x="1101556" fg:w="384"/><text x="47.6835%" y="255.50"></text></g><g><title>enqueue_entity (1,132 samples, 0.05%)</title><rect x="47.4020%" y="261" width="0.0487%" height="15" fill="rgb(206,149,34)" fg:x="1100824" fg:w="1132"/><text x="47.6520%" y="271.50"></text></g><g><title>update_cfs_group (275 samples, 0.01%)</title><rect x="47.4511%" y="261" width="0.0118%" height="15" fill="rgb(227,228,4)" fg:x="1101965" fg:w="275"/><text x="47.7011%" y="271.50"></text></g><g><title>enqueue_task_fair (1,956 samples, 0.08%)</title><rect x="47.3895%" y="277" width="0.0842%" height="15" fill="rgb(238,218,28)" fg:x="1100534" fg:w="1956"/><text x="47.6395%" y="287.50"></text></g><g><title>update_load_avg (246 samples, 0.01%)</title><rect x="47.4631%" y="261" width="0.0106%" height="15" fill="rgb(252,86,40)" fg:x="1102244" fg:w="246"/><text x="47.7131%" y="271.50"></text></g><g><title>psi_group_change (1,338 samples, 0.06%)</title><rect x="47.4877%" y="261" width="0.0576%" height="15" fill="rgb(251,225,11)" fg:x="1102815" fg:w="1338"/><text x="47.7377%" y="271.50"></text></g><g><title>psi_task_change (1,721 samples, 0.07%)</title><rect x="47.4748%" y="277" width="0.0741%" height="15" fill="rgb(206,46,49)" fg:x="1102514" fg:w="1721"/><text x="47.7248%" y="287.50"></text></g><g><title>enqueue_task (3,791 samples, 0.16%)</title><rect x="47.3875%" y="293" width="0.1632%" height="15" fill="rgb(245,128,24)" fg:x="1100487" fg:w="3791"/><text x="47.6375%" y="303.50"></text></g><g><title>check_preempt_wakeup (274 samples, 0.01%)</title><rect x="47.5563%" y="261" width="0.0118%" height="15" fill="rgb(219,177,34)" fg:x="1104408" fg:w="274"/><text x="47.8063%" y="271.50"></text></g><g><title>check_preempt_curr (374 samples, 0.02%)</title><rect x="47.5531%" y="277" width="0.0161%" height="15" fill="rgb(218,60,48)" fg:x="1104333" fg:w="374"/><text x="47.8031%" y="287.50"></text></g><g><title>ttwu_do_activate (4,314 samples, 0.19%)</title><rect x="47.3852%" y="309" width="0.1858%" height="15" fill="rgb(221,11,5)" fg:x="1100434" fg:w="4314"/><text x="47.6352%" y="319.50"></text></g><g><title>ttwu_do_wakeup (457 samples, 0.02%)</title><rect x="47.5513%" y="293" width="0.0197%" height="15" fill="rgb(220,148,13)" fg:x="1104291" fg:w="457"/><text x="47.8013%" y="303.50"></text></g><g><title>native_send_call_func_single_ipi (584 samples, 0.03%)</title><rect x="47.6483%" y="261" width="0.0251%" height="15" fill="rgb(210,16,3)" fg:x="1106543" fg:w="584"/><text x="47.8983%" y="271.50"></text></g><g><title>x2apic_send_IPI (560 samples, 0.02%)</title><rect x="47.6493%" y="245" width="0.0241%" height="15" fill="rgb(236,80,2)" fg:x="1106567" fg:w="560"/><text x="47.8993%" y="255.50"></text></g><g><title>native_write_msr (350 samples, 0.02%)</title><rect x="47.6583%" y="229" width="0.0151%" height="15" fill="rgb(239,129,19)" fg:x="1106777" fg:w="350"/><text x="47.9083%" y="239.50"></text></g><g><title>__smp_call_single_queue (1,364 samples, 0.06%)</title><rect x="47.6166%" y="293" width="0.0587%" height="15" fill="rgb(220,106,35)" fg:x="1105808" fg:w="1364"/><text x="47.8666%" y="303.50"></text></g><g><title>send_call_function_single_ipi (1,261 samples, 0.05%)</title><rect x="47.6210%" y="277" width="0.0543%" height="15" fill="rgb(252,139,45)" fg:x="1105911" fg:w="1261"/><text x="47.8710%" y="287.50"></text></g><g><title>llist_add_batch (1,277 samples, 0.05%)</title><rect x="47.6753%" y="293" width="0.0550%" height="15" fill="rgb(229,8,36)" fg:x="1107172" fg:w="1277"/><text x="47.9253%" y="303.50"></text></g><g><title>sched_clock_cpu (262 samples, 0.01%)</title><rect x="47.7311%" y="293" width="0.0113%" height="15" fill="rgb(230,126,33)" fg:x="1108467" fg:w="262"/><text x="47.9811%" y="303.50"></text></g><g><title>ttwu_queue_wakelist (3,981 samples, 0.17%)</title><rect x="47.5717%" y="309" width="0.1714%" height="15" fill="rgb(239,140,21)" fg:x="1104766" fg:w="3981"/><text x="47.8217%" y="319.50"></text></g><g><title>update_rq_clock (276 samples, 0.01%)</title><rect x="47.7432%" y="309" width="0.0119%" height="15" fill="rgb(254,104,9)" fg:x="1108747" fg:w="276"/><text x="47.9932%" y="319.50"></text></g><g><title>try_to_wake_up (25,015 samples, 1.08%)</title><rect x="46.6797%" y="325" width="1.0772%" height="15" fill="rgb(239,52,14)" fg:x="1084050" fg:w="25015"/><text x="46.9297%" y="335.50"></text></g><g><title>rwsem_wake.isra.0 (28,916 samples, 1.25%)</title><rect x="46.5152%" y="357" width="1.2451%" height="15" fill="rgb(208,227,44)" fg:x="1080229" fg:w="28916"/><text x="46.7652%" y="367.50"></text></g><g><title>wake_up_q (25,748 samples, 1.11%)</title><rect x="46.6516%" y="341" width="1.1087%" height="15" fill="rgb(246,18,19)" fg:x="1083397" fg:w="25748"/><text x="46.9016%" y="351.50"></text></g><g><title>btrfs_tree_unlock (29,093 samples, 1.25%)</title><rect x="46.5080%" y="389" width="1.2528%" height="15" fill="rgb(235,228,25)" fg:x="1080062" fg:w="29093"/><text x="46.7580%" y="399.50"></text></g><g><title>up_write (28,967 samples, 1.25%)</title><rect x="46.5134%" y="373" width="1.2473%" height="15" fill="rgb(240,156,20)" fg:x="1080188" fg:w="28967"/><text x="46.7634%" y="383.50"></text></g><g><title>unlock_up (31,196 samples, 1.34%)</title><rect x="46.4479%" y="405" width="1.3433%" height="15" fill="rgb(224,8,20)" fg:x="1078666" fg:w="31196"/><text x="46.6979%" y="415.50"></text></g><g><title>up_write (707 samples, 0.03%)</title><rect x="47.7607%" y="389" width="0.0304%" height="15" fill="rgb(214,12,52)" fg:x="1109155" fg:w="707"/><text x="48.0107%" y="399.50"></text></g><g><title>btrfs_search_slot (175,834 samples, 7.57%)</title><rect x="40.2316%" y="421" width="7.5715%" height="15" fill="rgb(211,220,47)" fg:x="934305" fg:w="175834"/><text x="40.4816%" y="431.50">btrfs_sear..</text></g><g><title>up_read (277 samples, 0.01%)</title><rect x="47.7912%" y="405" width="0.0119%" height="15" fill="rgb(250,173,5)" fg:x="1109862" fg:w="277"/><text x="48.0412%" y="415.50"></text></g><g><title>btrfs_lookup_inode (177,480 samples, 7.64%)</title><rect x="40.1811%" y="437" width="7.6424%" height="15" fill="rgb(250,125,52)" fg:x="933132" fg:w="177480"/><text x="40.4311%" y="447.50">btrfs_look..</text></g><g><title>btrfs_mark_buffer_dirty (497 samples, 0.02%)</title><rect x="47.8235%" y="437" width="0.0214%" height="15" fill="rgb(209,133,18)" fg:x="1110612" fg:w="497"/><text x="48.0735%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (403 samples, 0.02%)</title><rect x="47.8275%" y="421" width="0.0174%" height="15" fill="rgb(216,173,22)" fg:x="1110706" fg:w="403"/><text x="48.0775%" y="431.50"></text></g><g><title>try_to_wake_up (687 samples, 0.03%)</title><rect x="47.8832%" y="357" width="0.0296%" height="15" fill="rgb(205,3,22)" fg:x="1112000" fg:w="687"/><text x="48.1332%" y="367.50"></text></g><g><title>btrfs_tree_unlock (895 samples, 0.04%)</title><rect x="47.8744%" y="421" width="0.0385%" height="15" fill="rgb(248,22,20)" fg:x="1111794" fg:w="895"/><text x="48.1244%" y="431.50"></text></g><g><title>up_write (838 samples, 0.04%)</title><rect x="47.8768%" y="405" width="0.0361%" height="15" fill="rgb(233,6,29)" fg:x="1111851" fg:w="838"/><text x="48.1268%" y="415.50"></text></g><g><title>rwsem_wake.isra.0 (838 samples, 0.04%)</title><rect x="47.8768%" y="389" width="0.0361%" height="15" fill="rgb(240,22,54)" fg:x="1111851" fg:w="838"/><text x="48.1268%" y="399.50"></text></g><g><title>wake_up_q (704 samples, 0.03%)</title><rect x="47.8826%" y="373" width="0.0303%" height="15" fill="rgb(231,133,32)" fg:x="1111985" fg:w="704"/><text x="48.1326%" y="383.50"></text></g><g><title>_raw_spin_lock (589 samples, 0.03%)</title><rect x="47.9162%" y="405" width="0.0254%" height="15" fill="rgb(248,193,4)" fg:x="1112765" fg:w="589"/><text x="48.1662%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,362 samples, 0.06%)</title><rect x="47.9415%" y="405" width="0.0586%" height="15" fill="rgb(211,178,46)" fg:x="1113354" fg:w="1362"/><text x="48.1915%" y="415.50"></text></g><g><title>release_extent_buffer (521 samples, 0.02%)</title><rect x="47.9778%" y="389" width="0.0224%" height="15" fill="rgb(224,5,42)" fg:x="1114195" fg:w="521"/><text x="48.2278%" y="399.50"></text></g><g><title>free_extent_buffer (1,979 samples, 0.09%)</title><rect x="47.9162%" y="421" width="0.0852%" height="15" fill="rgb(239,176,25)" fg:x="1112765" fg:w="1979"/><text x="48.1662%" y="431.50"></text></g><g><title>btrfs_release_path (3,502 samples, 0.15%)</title><rect x="47.8636%" y="437" width="0.1508%" height="15" fill="rgb(245,187,50)" fg:x="1111544" fg:w="3502"/><text x="48.1136%" y="447.50"></text></g><g><title>up_write (302 samples, 0.01%)</title><rect x="48.0014%" y="421" width="0.0130%" height="15" fill="rgb(248,24,15)" fg:x="1114744" fg:w="302"/><text x="48.2514%" y="431.50"></text></g><g><title>rwsem_optimistic_spin (276 samples, 0.01%)</title><rect x="48.0262%" y="357" width="0.0119%" height="15" fill="rgb(205,166,13)" fg:x="1115319" fg:w="276"/><text x="48.2762%" y="367.50"></text></g><g><title>btrfs_lock_root_node (364 samples, 0.02%)</title><rect x="48.0256%" y="421" width="0.0157%" height="15" fill="rgb(208,114,23)" fg:x="1115306" fg:w="364"/><text x="48.2756%" y="431.50"></text></g><g><title>__btrfs_tree_lock (363 samples, 0.02%)</title><rect x="48.0256%" y="405" width="0.0156%" height="15" fill="rgb(239,127,18)" fg:x="1115307" fg:w="363"/><text x="48.2756%" y="415.50"></text></g><g><title>down_write (361 samples, 0.02%)</title><rect x="48.0257%" y="389" width="0.0155%" height="15" fill="rgb(219,154,28)" fg:x="1115309" fg:w="361"/><text x="48.2757%" y="399.50"></text></g><g><title>rwsem_down_write_slowpath (360 samples, 0.02%)</title><rect x="48.0258%" y="373" width="0.0155%" height="15" fill="rgb(225,157,23)" fg:x="1115310" fg:w="360"/><text x="48.2758%" y="383.50"></text></g><g><title>btrfs_search_slot (1,048 samples, 0.05%)</title><rect x="48.0144%" y="437" width="0.0451%" height="15" fill="rgb(219,8,6)" fg:x="1115046" fg:w="1048"/><text x="48.2644%" y="447.50"></text></g><g><title>btrfs_set_token_32 (473 samples, 0.02%)</title><rect x="48.0595%" y="437" width="0.0204%" height="15" fill="rgb(212,47,6)" fg:x="1116094" fg:w="473"/><text x="48.3095%" y="447.50"></text></g><g><title>finish_one_item (1,187 samples, 0.05%)</title><rect x="48.0838%" y="437" width="0.0511%" height="15" fill="rgb(224,190,4)" fg:x="1116657" fg:w="1187"/><text x="48.3338%" y="447.50"></text></g><g><title>__btrfs_update_delayed_inode (217,533 samples, 9.37%)</title><rect x="38.8349%" y="453" width="9.3671%" height="15" fill="rgb(239,183,29)" fg:x="901870" fg:w="217533"/><text x="39.0849%" y="463.50">__btrfs_updat..</text></g><g><title>write_extent_buffer (1,047 samples, 0.05%)</title><rect x="48.1569%" y="437" width="0.0451%" height="15" fill="rgb(213,57,7)" fg:x="1118356" fg:w="1047"/><text x="48.4069%" y="447.50"></text></g><g><title>kmem_cache_alloc (366 samples, 0.02%)</title><rect x="48.2182%" y="437" width="0.0158%" height="15" fill="rgb(216,148,1)" fg:x="1119778" fg:w="366"/><text x="48.4682%" y="447.50"></text></g><g><title>btrfs_alloc_path (577 samples, 0.02%)</title><rect x="48.2167%" y="453" width="0.0248%" height="15" fill="rgb(236,182,29)" fg:x="1119743" fg:w="577"/><text x="48.4667%" y="463.50"></text></g><g><title>balance_dirty_pages_ratelimited (303 samples, 0.01%)</title><rect x="48.2532%" y="437" width="0.0130%" height="15" fill="rgb(244,120,48)" fg:x="1120592" fg:w="303"/><text x="48.5032%" y="447.50"></text></g><g><title>try_to_wake_up (733 samples, 0.03%)</title><rect x="48.2798%" y="325" width="0.0316%" height="15" fill="rgb(206,71,34)" fg:x="1121209" fg:w="733"/><text x="48.5298%" y="335.50"></text></g><g><title>insert_work (745 samples, 0.03%)</title><rect x="48.2793%" y="357" width="0.0321%" height="15" fill="rgb(242,32,6)" fg:x="1121199" fg:w="745"/><text x="48.5293%" y="367.50"></text></g><g><title>wake_up_process (745 samples, 0.03%)</title><rect x="48.2793%" y="341" width="0.0321%" height="15" fill="rgb(241,35,3)" fg:x="1121199" fg:w="745"/><text x="48.5293%" y="351.50"></text></g><g><title>__queue_work (866 samples, 0.04%)</title><rect x="48.2742%" y="373" width="0.0373%" height="15" fill="rgb(222,62,19)" fg:x="1121079" fg:w="866"/><text x="48.5242%" y="383.50"></text></g><g><title>btrfs_queue_work (1,029 samples, 0.04%)</title><rect x="48.2717%" y="405" width="0.0443%" height="15" fill="rgb(223,110,41)" fg:x="1121022" fg:w="1029"/><text x="48.5217%" y="415.50"></text></g><g><title>queue_work_on (985 samples, 0.04%)</title><rect x="48.2736%" y="389" width="0.0424%" height="15" fill="rgb(208,224,4)" fg:x="1121066" fg:w="985"/><text x="48.5236%" y="399.50"></text></g><g><title>btrfs_wq_run_delayed_node (1,120 samples, 0.05%)</title><rect x="48.2713%" y="421" width="0.0482%" height="15" fill="rgb(241,137,19)" fg:x="1121011" fg:w="1120"/><text x="48.5213%" y="431.50"></text></g><g><title>btrfs_balance_delayed_items (1,246 samples, 0.05%)</title><rect x="48.2663%" y="437" width="0.0537%" height="15" fill="rgb(244,24,17)" fg:x="1120895" fg:w="1246"/><text x="48.5163%" y="447.50"></text></g><g><title>btrfs_btree_balance_dirty (1,881 samples, 0.08%)</title><rect x="48.2422%" y="453" width="0.0810%" height="15" fill="rgb(245,178,49)" fg:x="1120336" fg:w="1881"/><text x="48.4922%" y="463.50"></text></g><g><title>kmem_cache_free (792 samples, 0.03%)</title><rect x="48.4090%" y="421" width="0.0341%" height="15" fill="rgb(219,160,38)" fg:x="1124210" fg:w="792"/><text x="48.6590%" y="431.50"></text></g><g><title>__btrfs_end_transaction (2,708 samples, 0.12%)</title><rect x="48.3271%" y="437" width="0.1166%" height="15" fill="rgb(228,137,14)" fg:x="1122308" fg:w="2708"/><text x="48.5771%" y="447.50"></text></g><g><title>btrfs_end_transaction (3,066 samples, 0.13%)</title><rect x="48.3270%" y="453" width="0.1320%" height="15" fill="rgb(237,134,11)" fg:x="1122306" fg:w="3066"/><text x="48.5770%" y="463.50"></text></g><g><title>kmem_cache_free (1,197 samples, 0.05%)</title><rect x="48.4729%" y="437" width="0.0515%" height="15" fill="rgb(211,126,44)" fg:x="1125694" fg:w="1197"/><text x="48.7229%" y="447.50"></text></g><g><title>btrfs_free_path (1,536 samples, 0.07%)</title><rect x="48.4590%" y="453" width="0.0661%" height="15" fill="rgb(226,171,33)" fg:x="1125372" fg:w="1536"/><text x="48.7090%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (527 samples, 0.02%)</title><rect x="48.5322%" y="453" width="0.0227%" height="15" fill="rgb(253,99,13)" fg:x="1127070" fg:w="527"/><text x="48.7822%" y="463.50"></text></g><g><title>_raw_spin_lock (395 samples, 0.02%)</title><rect x="48.5907%" y="421" width="0.0170%" height="15" fill="rgb(244,48,7)" fg:x="1128429" fg:w="395"/><text x="48.8407%" y="431.50"></text></g><g><title>join_transaction (480 samples, 0.02%)</title><rect x="48.6105%" y="421" width="0.0207%" height="15" fill="rgb(244,217,54)" fg:x="1128890" fg:w="480"/><text x="48.8605%" y="431.50"></text></g><g><title>kmem_cache_alloc (618 samples, 0.03%)</title><rect x="48.6312%" y="421" width="0.0266%" height="15" fill="rgb(224,15,18)" fg:x="1129370" fg:w="618"/><text x="48.8812%" y="431.50"></text></g><g><title>btrfs_join_transaction (2,676 samples, 0.12%)</title><rect x="48.5548%" y="453" width="0.1152%" height="15" fill="rgb(244,99,12)" fg:x="1127597" fg:w="2676"/><text x="48.8048%" y="463.50"></text></g><g><title>start_transaction (2,502 samples, 0.11%)</title><rect x="48.5623%" y="437" width="0.1077%" height="15" fill="rgb(233,226,8)" fg:x="1127771" fg:w="2502"/><text x="48.8123%" y="447.50"></text></g><g><title>btrfs_lookup_inode (287 samples, 0.01%)</title><rect x="48.6701%" y="453" width="0.0124%" height="15" fill="rgb(229,211,3)" fg:x="1130273" fg:w="287"/><text x="48.9201%" y="463.50"></text></g><g><title>btrfs_release_delayed_iref (390 samples, 0.02%)</title><rect x="48.6907%" y="453" width="0.0168%" height="15" fill="rgb(216,140,21)" fg:x="1130752" fg:w="390"/><text x="48.9407%" y="463.50"></text></g><g><title>mutex_lock (552 samples, 0.02%)</title><rect x="48.7108%" y="453" width="0.0238%" height="15" fill="rgb(234,122,30)" fg:x="1131218" fg:w="552"/><text x="48.9608%" y="463.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (232,544 samples, 10.01%)</title><rect x="38.7443%" y="469" width="10.0135%" height="15" fill="rgb(236,25,46)" fg:x="899764" fg:w="232544"/><text x="38.9943%" y="479.50">btrfs_commit_i..</text></g><g><title>write_extent_buffer (246 samples, 0.01%)</title><rect x="48.7471%" y="453" width="0.0106%" height="15" fill="rgb(217,52,54)" fg:x="1132062" fg:w="246"/><text x="48.9971%" y="463.50"></text></g><g><title>btrfs_del_items (384 samples, 0.02%)</title><rect x="48.7577%" y="469" width="0.0165%" height="15" fill="rgb(222,29,26)" fg:x="1132308" fg:w="384"/><text x="49.0077%" y="479.50"></text></g><g><title>kmem_cache_alloc (435 samples, 0.02%)</title><rect x="48.8014%" y="437" width="0.0187%" height="15" fill="rgb(216,177,29)" fg:x="1133323" fg:w="435"/><text x="49.0514%" y="447.50"></text></g><g><title>btrfs_alloc_path (640 samples, 0.03%)</title><rect x="48.8002%" y="453" width="0.0276%" height="15" fill="rgb(247,136,51)" fg:x="1133294" fg:w="640"/><text x="49.0502%" y="463.50"></text></g><g><title>btrfs_get_32 (425 samples, 0.02%)</title><rect x="48.8704%" y="437" width="0.0183%" height="15" fill="rgb(231,47,47)" fg:x="1134925" fg:w="425"/><text x="49.1204%" y="447.50"></text></g><g><title>btrfs_get_token_32 (293 samples, 0.01%)</title><rect x="48.8887%" y="437" width="0.0126%" height="15" fill="rgb(211,192,36)" fg:x="1135350" fg:w="293"/><text x="49.1387%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (428 samples, 0.02%)</title><rect x="48.9013%" y="437" width="0.0184%" height="15" fill="rgb(229,156,32)" fg:x="1135643" fg:w="428"/><text x="49.1513%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (290 samples, 0.01%)</title><rect x="48.9073%" y="421" width="0.0125%" height="15" fill="rgb(248,213,20)" fg:x="1135781" fg:w="290"/><text x="49.1573%" y="431.50"></text></g><g><title>btrfs_set_token_32 (241 samples, 0.01%)</title><rect x="48.9197%" y="437" width="0.0104%" height="15" fill="rgb(217,64,7)" fg:x="1136071" fg:w="241"/><text x="49.1697%" y="447.50"></text></g><g><title>btrfs_get_32 (394 samples, 0.02%)</title><rect x="48.9417%" y="421" width="0.0170%" height="15" fill="rgb(232,142,8)" fg:x="1136580" fg:w="394"/><text x="49.1917%" y="431.50"></text></g><g><title>leaf_space_used (591 samples, 0.03%)</title><rect x="48.9353%" y="437" width="0.0254%" height="15" fill="rgb(224,92,44)" fg:x="1136432" fg:w="591"/><text x="49.1853%" y="447.50"></text></g><g><title>copy_pages (255 samples, 0.01%)</title><rect x="48.9703%" y="421" width="0.0110%" height="15" fill="rgb(214,169,17)" fg:x="1137246" fg:w="255"/><text x="49.2203%" y="431.50"></text></g><g><title>memmove_extent_buffer (720 samples, 0.03%)</title><rect x="48.9632%" y="437" width="0.0310%" height="15" fill="rgb(210,59,37)" fg:x="1137081" fg:w="720"/><text x="49.2132%" y="447.50"></text></g><g><title>memcpy_extent_buffer (300 samples, 0.01%)</title><rect x="48.9813%" y="421" width="0.0129%" height="15" fill="rgb(214,116,48)" fg:x="1137501" fg:w="300"/><text x="49.2313%" y="431.50"></text></g><g><title>btrfs_del_items (3,723 samples, 0.16%)</title><rect x="48.8371%" y="453" width="0.1603%" height="15" fill="rgb(244,191,6)" fg:x="1134151" fg:w="3723"/><text x="49.0871%" y="463.50"></text></g><g><title>btrfs_tree_unlock (793 samples, 0.03%)</title><rect x="49.0199%" y="421" width="0.0341%" height="15" fill="rgb(241,50,52)" fg:x="1138398" fg:w="793"/><text x="49.2699%" y="431.50"></text></g><g><title>up_write (737 samples, 0.03%)</title><rect x="49.0224%" y="405" width="0.0317%" height="15" fill="rgb(236,75,39)" fg:x="1138454" fg:w="737"/><text x="49.2724%" y="415.50"></text></g><g><title>rwsem_wake.isra.0 (736 samples, 0.03%)</title><rect x="49.0224%" y="389" width="0.0317%" height="15" fill="rgb(236,99,0)" fg:x="1138455" fg:w="736"/><text x="49.2724%" y="399.50"></text></g><g><title>wake_up_q (638 samples, 0.03%)</title><rect x="49.0266%" y="373" width="0.0275%" height="15" fill="rgb(207,202,15)" fg:x="1138553" fg:w="638"/><text x="49.2766%" y="383.50"></text></g><g><title>try_to_wake_up (628 samples, 0.03%)</title><rect x="49.0270%" y="357" width="0.0270%" height="15" fill="rgb(233,207,14)" fg:x="1138563" fg:w="628"/><text x="49.2770%" y="367.50"></text></g><g><title>_raw_spin_lock (472 samples, 0.02%)</title><rect x="49.0581%" y="405" width="0.0203%" height="15" fill="rgb(226,27,51)" fg:x="1139284" fg:w="472"/><text x="49.3081%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,251 samples, 0.05%)</title><rect x="49.0784%" y="405" width="0.0539%" height="15" fill="rgb(206,104,42)" fg:x="1139756" fg:w="1251"/><text x="49.3284%" y="415.50"></text></g><g><title>release_extent_buffer (499 samples, 0.02%)</title><rect x="49.1108%" y="389" width="0.0215%" height="15" fill="rgb(212,225,4)" fg:x="1140508" fg:w="499"/><text x="49.3608%" y="399.50"></text></g><g><title>free_extent_buffer (1,752 samples, 0.08%)</title><rect x="49.0581%" y="421" width="0.0754%" height="15" fill="rgb(233,96,42)" fg:x="1139284" fg:w="1752"/><text x="49.3081%" y="431.50"></text></g><g><title>btrfs_release_path (3,367 samples, 0.14%)</title><rect x="49.0014%" y="437" width="0.1450%" height="15" fill="rgb(229,21,32)" fg:x="1137967" fg:w="3367"/><text x="49.2514%" y="447.50"></text></g><g><title>up_write (298 samples, 0.01%)</title><rect x="49.1335%" y="421" width="0.0128%" height="15" fill="rgb(226,216,24)" fg:x="1141036" fg:w="298"/><text x="49.3835%" y="431.50"></text></g><g><title>kmem_cache_free (985 samples, 0.04%)</title><rect x="49.1526%" y="437" width="0.0424%" height="15" fill="rgb(221,163,17)" fg:x="1141479" fg:w="985"/><text x="49.4026%" y="447.50"></text></g><g><title>btrfs_free_path (4,605 samples, 0.20%)</title><rect x="48.9974%" y="453" width="0.1983%" height="15" fill="rgb(216,216,42)" fg:x="1137874" fg:w="4605"/><text x="49.2474%" y="463.50"></text></g><g><title>btrfs_get_64 (260 samples, 0.01%)</title><rect x="49.4219%" y="421" width="0.0112%" height="15" fill="rgb(240,118,7)" fg:x="1147732" fg:w="260"/><text x="49.6719%" y="431.50"></text></g><g><title>balance_level (972 samples, 0.04%)</title><rect x="49.3953%" y="437" width="0.0419%" height="15" fill="rgb(221,67,37)" fg:x="1147116" fg:w="972"/><text x="49.6453%" y="447.50"></text></g><g><title>btrfs_bin_search (4,765 samples, 0.21%)</title><rect x="49.4372%" y="437" width="0.2052%" height="15" fill="rgb(241,32,44)" fg:x="1148088" fg:w="4765"/><text x="49.6872%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,593 samples, 0.20%)</title><rect x="49.4446%" y="421" width="0.1978%" height="15" fill="rgb(235,204,43)" fg:x="1148260" fg:w="4593"/><text x="49.6946%" y="431.50"></text></g><g><title>_raw_spin_lock_irq (692 samples, 0.03%)</title><rect x="49.7152%" y="373" width="0.0298%" height="15" fill="rgb(213,116,10)" fg:x="1154544" fg:w="692"/><text x="49.9652%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (248 samples, 0.01%)</title><rect x="49.7343%" y="357" width="0.0107%" height="15" fill="rgb(239,15,48)" fg:x="1154988" fg:w="248"/><text x="49.9843%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (248 samples, 0.01%)</title><rect x="49.7343%" y="341" width="0.0107%" height="15" fill="rgb(207,123,36)" fg:x="1154988" fg:w="248"/><text x="49.9843%" y="351.50"></text></g><g><title>osq_lock (30,976 samples, 1.33%)</title><rect x="50.8100%" y="357" width="1.3338%" height="15" fill="rgb(209,103,30)" fg:x="1179969" fg:w="30976"/><text x="51.0600%" y="367.50"></text></g><g><title>osq_unlock (454 samples, 0.02%)</title><rect x="52.1439%" y="357" width="0.0195%" height="15" fill="rgb(238,100,19)" fg:x="1210945" fg:w="454"/><text x="52.3939%" y="367.50"></text></g><g><title>rwsem_spin_on_owner (2,656 samples, 0.11%)</title><rect x="52.1635%" y="357" width="0.1144%" height="15" fill="rgb(244,30,14)" fg:x="1211402" fg:w="2656"/><text x="52.4135%" y="367.50"></text></g><g><title>rwsem_optimistic_spin (59,068 samples, 2.54%)</title><rect x="49.7534%" y="373" width="2.5435%" height="15" fill="rgb(249,174,6)" fg:x="1155431" fg:w="59068"/><text x="50.0034%" y="383.50">rw..</text></g><g><title>sched_clock (441 samples, 0.02%)</title><rect x="52.2779%" y="357" width="0.0190%" height="15" fill="rgb(235,213,41)" fg:x="1214058" fg:w="441"/><text x="52.5279%" y="367.50"></text></g><g><title>native_sched_clock (437 samples, 0.02%)</title><rect x="52.2781%" y="341" width="0.0188%" height="15" fill="rgb(213,118,6)" fg:x="1214062" fg:w="437"/><text x="52.5281%" y="351.50"></text></g><g><title>rwsem_spin_on_owner (271 samples, 0.01%)</title><rect x="52.2969%" y="373" width="0.0117%" height="15" fill="rgb(235,44,51)" fg:x="1214499" fg:w="271"/><text x="52.5469%" y="383.50"></text></g><g><title>update_cfs_group (273 samples, 0.01%)</title><rect x="52.3894%" y="293" width="0.0118%" height="15" fill="rgb(217,9,53)" fg:x="1216648" fg:w="273"/><text x="52.6394%" y="303.50"></text></g><g><title>update_curr (1,034 samples, 0.04%)</title><rect x="52.4012%" y="293" width="0.0445%" height="15" fill="rgb(237,172,34)" fg:x="1216921" fg:w="1034"/><text x="52.6512%" y="303.50"></text></g><g><title>update_load_avg (913 samples, 0.04%)</title><rect x="52.4457%" y="293" width="0.0393%" height="15" fill="rgb(206,206,11)" fg:x="1217955" fg:w="913"/><text x="52.6957%" y="303.50"></text></g><g><title>dequeue_entity (2,876 samples, 0.12%)</title><rect x="52.3650%" y="309" width="0.1238%" height="15" fill="rgb(214,149,29)" fg:x="1216081" fg:w="2876"/><text x="52.6150%" y="319.50"></text></g><g><title>update_cfs_group (328 samples, 0.01%)</title><rect x="52.4889%" y="309" width="0.0141%" height="15" fill="rgb(208,123,3)" fg:x="1218959" fg:w="328"/><text x="52.7389%" y="319.50"></text></g><g><title>dequeue_task_fair (3,776 samples, 0.16%)</title><rect x="52.3483%" y="325" width="0.1626%" height="15" fill="rgb(229,126,4)" fg:x="1215693" fg:w="3776"/><text x="52.5983%" y="335.50"></text></g><g><title>dequeue_task (4,007 samples, 0.17%)</title><rect x="52.3446%" y="341" width="0.1725%" height="15" fill="rgb(222,92,36)" fg:x="1215607" fg:w="4007"/><text x="52.5946%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (1,061 samples, 0.05%)</title><rect x="52.5399%" y="325" width="0.0457%" height="15" fill="rgb(216,39,41)" fg:x="1220142" fg:w="1061"/><text x="52.7899%" y="335.50"></text></g><g><title>x86_pmu_enable (976 samples, 0.04%)</title><rect x="52.5435%" y="309" width="0.0420%" height="15" fill="rgb(253,127,28)" fg:x="1220227" fg:w="976"/><text x="52.7935%" y="319.50"></text></g><g><title>intel_pmu_enable_all (953 samples, 0.04%)</title><rect x="52.5445%" y="293" width="0.0410%" height="15" fill="rgb(249,152,51)" fg:x="1220250" fg:w="953"/><text x="52.7945%" y="303.50"></text></g><g><title>native_write_msr (902 samples, 0.04%)</title><rect x="52.5467%" y="277" width="0.0388%" height="15" fill="rgb(209,123,42)" fg:x="1220301" fg:w="902"/><text x="52.7967%" y="287.50"></text></g><g><title>finish_task_switch.isra.0 (1,706 samples, 0.07%)</title><rect x="52.5174%" y="341" width="0.0735%" height="15" fill="rgb(241,118,22)" fg:x="1219620" fg:w="1706"/><text x="52.7674%" y="351.50"></text></g><g><title>newidle_balance (311 samples, 0.01%)</title><rect x="52.6126%" y="309" width="0.0134%" height="15" fill="rgb(208,25,7)" fg:x="1221830" fg:w="311"/><text x="52.8626%" y="319.50"></text></g><g><title>pick_next_task_fair (817 samples, 0.04%)</title><rect x="52.6015%" y="325" width="0.0352%" height="15" fill="rgb(243,144,39)" fg:x="1221572" fg:w="817"/><text x="52.8515%" y="335.50"></text></g><g><title>__update_idle_core (331 samples, 0.01%)</title><rect x="52.6400%" y="293" width="0.0143%" height="15" fill="rgb(250,50,5)" fg:x="1222468" fg:w="331"/><text x="52.8900%" y="303.50"></text></g><g><title>pick_next_task_idle (462 samples, 0.02%)</title><rect x="52.6366%" y="325" width="0.0199%" height="15" fill="rgb(207,67,11)" fg:x="1222389" fg:w="462"/><text x="52.8866%" y="335.50"></text></g><g><title>set_next_task_idle (405 samples, 0.02%)</title><rect x="52.6391%" y="309" width="0.0174%" height="15" fill="rgb(245,204,40)" fg:x="1222446" fg:w="405"/><text x="52.8891%" y="319.50"></text></g><g><title>pick_next_task (1,684 samples, 0.07%)</title><rect x="52.5938%" y="341" width="0.0725%" height="15" fill="rgb(238,228,24)" fg:x="1221394" fg:w="1684"/><text x="52.8438%" y="351.50"></text></g><g><title>perf_event_context_sched_out (413 samples, 0.02%)</title><rect x="52.6817%" y="309" width="0.0178%" height="15" fill="rgb(217,116,22)" fg:x="1223435" fg:w="413"/><text x="52.9317%" y="319.50"></text></g><g><title>__perf_event_task_sched_out (679 samples, 0.03%)</title><rect x="52.6743%" y="325" width="0.0292%" height="15" fill="rgb(234,98,12)" fg:x="1223264" fg:w="679"/><text x="52.9243%" y="335.50"></text></g><g><title>prepare_task_switch (825 samples, 0.04%)</title><rect x="52.6687%" y="341" width="0.0355%" height="15" fill="rgb(242,170,50)" fg:x="1223134" fg:w="825"/><text x="52.9187%" y="351.50"></text></g><g><title>psi_group_change (1,857 samples, 0.08%)</title><rect x="52.7306%" y="325" width="0.0800%" height="15" fill="rgb(235,7,5)" fg:x="1224572" fg:w="1857"/><text x="52.9806%" y="335.50"></text></g><g><title>psi_task_switch (2,537 samples, 0.11%)</title><rect x="52.7074%" y="341" width="0.1092%" height="15" fill="rgb(241,114,28)" fg:x="1224033" fg:w="2537"/><text x="52.9574%" y="351.50"></text></g><g><title>__schedule (12,070 samples, 0.52%)</title><rect x="52.3167%" y="357" width="0.5197%" height="15" fill="rgb(246,112,42)" fg:x="1214959" fg:w="12070"/><text x="52.5667%" y="367.50"></text></g><g><title>update_rq_clock (278 samples, 0.01%)</title><rect x="52.8245%" y="341" width="0.0120%" height="15" fill="rgb(248,228,14)" fg:x="1226751" fg:w="278"/><text x="53.0745%" y="351.50"></text></g><g><title>schedule (12,284 samples, 0.53%)</title><rect x="52.3121%" y="373" width="0.5290%" height="15" fill="rgb(208,133,18)" fg:x="1214852" fg:w="12284"/><text x="52.5621%" y="383.50"></text></g><g><title>rwsem_down_write_slowpath (73,359 samples, 3.16%)</title><rect x="49.6824%" y="389" width="3.1589%" height="15" fill="rgb(207,35,49)" fg:x="1153782" fg:w="73359"/><text x="49.9324%" y="399.50">rws..</text></g><g><title>down_write (73,818 samples, 3.18%)</title><rect x="49.6666%" y="405" width="3.1786%" height="15" fill="rgb(205,68,36)" fg:x="1153415" fg:w="73818"/><text x="49.9166%" y="415.50">dow..</text></g><g><title>__btrfs_tree_lock (74,027 samples, 3.19%)</title><rect x="49.6592%" y="421" width="3.1876%" height="15" fill="rgb(245,62,40)" fg:x="1153244" fg:w="74027"/><text x="49.9092%" y="431.50">__b..</text></g><g><title>btrfs_root_node (266 samples, 0.01%)</title><rect x="52.8469%" y="421" width="0.0115%" height="15" fill="rgb(228,27,24)" fg:x="1227271" fg:w="266"/><text x="53.0969%" y="431.50"></text></g><g><title>btrfs_lock_root_node (74,465 samples, 3.21%)</title><rect x="49.6532%" y="437" width="3.2065%" height="15" fill="rgb(253,19,12)" fg:x="1153104" fg:w="74465"/><text x="49.9032%" y="447.50">btr..</text></g><g><title>_raw_spin_lock_irq (650 samples, 0.03%)</title><rect x="52.9508%" y="373" width="0.0280%" height="15" fill="rgb(232,28,20)" fg:x="1229685" fg:w="650"/><text x="53.2008%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (337 samples, 0.01%)</title><rect x="52.9643%" y="357" width="0.0145%" height="15" fill="rgb(218,35,51)" fg:x="1229998" fg:w="337"/><text x="53.2143%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (337 samples, 0.01%)</title><rect x="52.9643%" y="341" width="0.0145%" height="15" fill="rgb(212,90,40)" fg:x="1229998" fg:w="337"/><text x="53.2143%" y="351.50"></text></g><g><title>update_cfs_group (314 samples, 0.01%)</title><rect x="53.0516%" y="293" width="0.0135%" height="15" fill="rgb(220,172,12)" fg:x="1232025" fg:w="314"/><text x="53.3016%" y="303.50"></text></g><g><title>__calc_delta (258 samples, 0.01%)</title><rect x="53.0828%" y="277" width="0.0111%" height="15" fill="rgb(226,159,20)" fg:x="1232750" fg:w="258"/><text x="53.3328%" y="287.50"></text></g><g><title>update_curr (1,031 samples, 0.04%)</title><rect x="53.0651%" y="293" width="0.0444%" height="15" fill="rgb(234,205,16)" fg:x="1232339" fg:w="1031"/><text x="53.3151%" y="303.50"></text></g><g><title>update_load_avg (709 samples, 0.03%)</title><rect x="53.1095%" y="293" width="0.0305%" height="15" fill="rgb(207,9,39)" fg:x="1233370" fg:w="709"/><text x="53.3595%" y="303.50"></text></g><g><title>dequeue_entity (2,661 samples, 0.11%)</title><rect x="53.0284%" y="309" width="0.1146%" height="15" fill="rgb(249,143,15)" fg:x="1231488" fg:w="2661"/><text x="53.2784%" y="319.50"></text></g><g><title>dequeue_task_fair (3,267 samples, 0.14%)</title><rect x="53.0160%" y="325" width="0.1407%" height="15" fill="rgb(253,133,29)" fg:x="1231198" fg:w="3267"/><text x="53.2660%" y="335.50"></text></g><g><title>dequeue_task (3,396 samples, 0.15%)</title><rect x="53.0120%" y="341" width="0.1462%" height="15" fill="rgb(221,187,0)" fg:x="1231107" fg:w="3396"/><text x="53.2620%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (767 samples, 0.03%)</title><rect x="53.1777%" y="325" width="0.0330%" height="15" fill="rgb(205,204,26)" fg:x="1234955" fg:w="767"/><text x="53.4277%" y="335.50"></text></g><g><title>x86_pmu_enable (660 samples, 0.03%)</title><rect x="53.1823%" y="309" width="0.0284%" height="15" fill="rgb(224,68,54)" fg:x="1235062" fg:w="660"/><text x="53.4323%" y="319.50"></text></g><g><title>intel_pmu_enable_all (635 samples, 0.03%)</title><rect x="53.1834%" y="293" width="0.0273%" height="15" fill="rgb(209,67,4)" fg:x="1235087" fg:w="635"/><text x="53.4334%" y="303.50"></text></g><g><title>native_write_msr (601 samples, 0.03%)</title><rect x="53.1849%" y="277" width="0.0259%" height="15" fill="rgb(228,229,18)" fg:x="1235121" fg:w="601"/><text x="53.4349%" y="287.50"></text></g><g><title>asm_sysvec_call_function_single (238 samples, 0.01%)</title><rect x="53.2147%" y="325" width="0.0102%" height="15" fill="rgb(231,89,13)" fg:x="1235813" fg:w="238"/><text x="53.4647%" y="335.50"></text></g><g><title>sysvec_call_function_single (236 samples, 0.01%)</title><rect x="53.2148%" y="309" width="0.0102%" height="15" fill="rgb(210,182,18)" fg:x="1235815" fg:w="236"/><text x="53.4648%" y="319.50"></text></g><g><title>finish_task_switch.isra.0 (1,543 samples, 0.07%)</title><rect x="53.1587%" y="341" width="0.0664%" height="15" fill="rgb(240,105,2)" fg:x="1234513" fg:w="1543"/><text x="53.4087%" y="351.50"></text></g><g><title>newidle_balance (327 samples, 0.01%)</title><rect x="53.2431%" y="309" width="0.0141%" height="15" fill="rgb(207,170,50)" fg:x="1236473" fg:w="327"/><text x="53.4931%" y="319.50"></text></g><g><title>pick_next_task_fair (629 samples, 0.03%)</title><rect x="53.2345%" y="325" width="0.0271%" height="15" fill="rgb(232,133,24)" fg:x="1236274" fg:w="629"/><text x="53.4845%" y="335.50"></text></g><g><title>__update_idle_core (311 samples, 0.01%)</title><rect x="53.2668%" y="293" width="0.0134%" height="15" fill="rgb(235,166,27)" fg:x="1237023" fg:w="311"/><text x="53.5168%" y="303.50"></text></g><g><title>pick_next_task_idle (485 samples, 0.02%)</title><rect x="53.2616%" y="325" width="0.0209%" height="15" fill="rgb(209,19,13)" fg:x="1236903" fg:w="485"/><text x="53.5116%" y="335.50"></text></g><g><title>set_next_task_idle (387 samples, 0.02%)</title><rect x="53.2658%" y="309" width="0.0167%" height="15" fill="rgb(226,79,39)" fg:x="1237001" fg:w="387"/><text x="53.5158%" y="319.50"></text></g><g><title>pick_next_task (1,506 samples, 0.06%)</title><rect x="53.2282%" y="341" width="0.0648%" height="15" fill="rgb(222,163,10)" fg:x="1236128" fg:w="1506"/><text x="53.4782%" y="351.50"></text></g><g><title>perf_event_context_sched_out (365 samples, 0.02%)</title><rect x="53.3069%" y="309" width="0.0157%" height="15" fill="rgb(214,44,19)" fg:x="1237955" fg:w="365"/><text x="53.5569%" y="319.50"></text></g><g><title>__perf_event_task_sched_out (617 samples, 0.03%)</title><rect x="53.3004%" y="325" width="0.0266%" height="15" fill="rgb(210,217,13)" fg:x="1237803" fg:w="617"/><text x="53.5504%" y="335.50"></text></g><g><title>prepare_task_switch (710 samples, 0.03%)</title><rect x="53.2967%" y="341" width="0.0306%" height="15" fill="rgb(237,61,54)" fg:x="1237717" fg:w="710"/><text x="53.5467%" y="351.50"></text></g><g><title>iterate_groups (241 samples, 0.01%)</title><rect x="53.3388%" y="325" width="0.0104%" height="15" fill="rgb(226,184,24)" fg:x="1238696" fg:w="241"/><text x="53.5888%" y="335.50"></text></g><g><title>psi_group_change (1,602 samples, 0.07%)</title><rect x="53.3508%" y="325" width="0.0690%" height="15" fill="rgb(223,226,4)" fg:x="1238974" fg:w="1602"/><text x="53.6008%" y="335.50"></text></g><g><title>psi_task_switch (2,195 samples, 0.09%)</title><rect x="53.3301%" y="341" width="0.0945%" height="15" fill="rgb(210,26,41)" fg:x="1238493" fg:w="2195"/><text x="53.5801%" y="351.50"></text></g><g><title>__schedule (10,534 samples, 0.45%)</title><rect x="52.9893%" y="357" width="0.4536%" height="15" fill="rgb(220,221,6)" fg:x="1230579" fg:w="10534"/><text x="53.2393%" y="367.50"></text></g><g><title>update_rq_clock (256 samples, 0.01%)</title><rect x="53.4319%" y="341" width="0.0110%" height="15" fill="rgb(225,89,49)" fg:x="1240857" fg:w="256"/><text x="53.6819%" y="351.50"></text></g><g><title>schedule (10,724 samples, 0.46%)</title><rect x="52.9858%" y="373" width="0.4618%" height="15" fill="rgb(218,70,45)" fg:x="1230498" fg:w="10724"/><text x="53.2358%" y="383.50"></text></g><g><title>rwsem_down_read_slowpath (12,922 samples, 0.56%)</title><rect x="52.9064%" y="389" width="0.5564%" height="15" fill="rgb(238,166,21)" fg:x="1228654" fg:w="12922"/><text x="53.1564%" y="399.50"></text></g><g><title>wake_up_q (332 samples, 0.01%)</title><rect x="53.4485%" y="373" width="0.0143%" height="15" fill="rgb(224,141,44)" fg:x="1241244" fg:w="332"/><text x="53.6985%" y="383.50"></text></g><g><title>try_to_wake_up (289 samples, 0.01%)</title><rect x="53.4504%" y="357" width="0.0124%" height="15" fill="rgb(230,12,49)" fg:x="1241287" fg:w="289"/><text x="53.7004%" y="367.50"></text></g><g><title>down_read (13,670 samples, 0.59%)</title><rect x="52.8756%" y="405" width="0.5886%" height="15" fill="rgb(212,174,12)" fg:x="1227938" fg:w="13670"/><text x="53.1256%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (13,891 samples, 0.60%)</title><rect x="52.8684%" y="421" width="0.5982%" height="15" fill="rgb(246,67,9)" fg:x="1227771" fg:w="13891"/><text x="53.1184%" y="431.50"></text></g><g><title>btrfs_root_node (912 samples, 0.04%)</title><rect x="53.4665%" y="421" width="0.0393%" height="15" fill="rgb(239,35,23)" fg:x="1241662" fg:w="912"/><text x="53.7165%" y="431.50"></text></g><g><title>btrfs_read_lock_root_node (15,007 samples, 0.65%)</title><rect x="52.8618%" y="437" width="0.6462%" height="15" fill="rgb(211,167,0)" fg:x="1227619" fg:w="15007"/><text x="53.1118%" y="447.50"></text></g><g><title>wake_q_add (281 samples, 0.01%)</title><rect x="53.5397%" y="373" width="0.0121%" height="15" fill="rgb(225,119,45)" fg:x="1243361" fg:w="281"/><text x="53.7897%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (746 samples, 0.03%)</title><rect x="53.5682%" y="341" width="0.0321%" height="15" fill="rgb(210,162,6)" fg:x="1244023" fg:w="746"/><text x="53.8182%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (612 samples, 0.03%)</title><rect x="53.5740%" y="325" width="0.0264%" height="15" fill="rgb(208,118,35)" fg:x="1244157" fg:w="612"/><text x="53.8240%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (612 samples, 0.03%)</title><rect x="53.5740%" y="309" width="0.0264%" height="15" fill="rgb(239,4,53)" fg:x="1244157" fg:w="612"/><text x="53.8240%" y="319.50"></text></g><g><title>try_to_wake_up (1,467 samples, 0.06%)</title><rect x="53.5567%" y="357" width="0.0632%" height="15" fill="rgb(213,130,21)" fg:x="1243756" fg:w="1467"/><text x="53.8067%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (2,169 samples, 0.09%)</title><rect x="53.5268%" y="389" width="0.0934%" height="15" fill="rgb(235,148,0)" fg:x="1243062" fg:w="2169"/><text x="53.7768%" y="399.50"></text></g><g><title>wake_up_q (1,589 samples, 0.07%)</title><rect x="53.5518%" y="373" width="0.0684%" height="15" fill="rgb(244,224,18)" fg:x="1243642" fg:w="1589"/><text x="53.8018%" y="383.50"></text></g><g><title>btrfs_tree_read_unlock (2,234 samples, 0.10%)</title><rect x="53.5241%" y="421" width="0.0962%" height="15" fill="rgb(211,214,4)" fg:x="1242998" fg:w="2234"/><text x="53.7741%" y="431.50"></text></g><g><title>up_read (2,191 samples, 0.09%)</title><rect x="53.5259%" y="405" width="0.0943%" height="15" fill="rgb(206,119,25)" fg:x="1243041" fg:w="2191"/><text x="53.7759%" y="415.50"></text></g><g><title>free_extent_buffer (280 samples, 0.01%)</title><rect x="53.6215%" y="421" width="0.0121%" height="15" fill="rgb(243,93,47)" fg:x="1245260" fg:w="280"/><text x="53.8715%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (280 samples, 0.01%)</title><rect x="53.6215%" y="405" width="0.0121%" height="15" fill="rgb(224,194,6)" fg:x="1245260" fg:w="280"/><text x="53.8715%" y="415.50"></text></g><g><title>btrfs_release_path (3,161 samples, 0.14%)</title><rect x="53.5127%" y="437" width="0.1361%" height="15" fill="rgb(243,229,6)" fg:x="1242734" fg:w="3161"/><text x="53.7627%" y="447.50"></text></g><g><title>up_read (355 samples, 0.02%)</title><rect x="53.6335%" y="421" width="0.0153%" height="15" fill="rgb(207,23,50)" fg:x="1245540" fg:w="355"/><text x="53.8835%" y="431.50"></text></g><g><title>rwsem_spin_on_owner (3,366 samples, 0.14%)</title><rect x="53.8311%" y="357" width="0.1449%" height="15" fill="rgb(253,192,32)" fg:x="1250129" fg:w="3366"/><text x="54.0811%" y="367.50"></text></g><g><title>rwsem_optimistic_spin (6,273 samples, 0.27%)</title><rect x="53.7082%" y="373" width="0.2701%" height="15" fill="rgb(213,21,6)" fg:x="1247275" fg:w="6273"/><text x="53.9582%" y="383.50"></text></g><g><title>__schedule (242 samples, 0.01%)</title><rect x="53.9806%" y="357" width="0.0104%" height="15" fill="rgb(243,151,13)" fg:x="1253600" fg:w="242"/><text x="54.2306%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (6,670 samples, 0.29%)</title><rect x="53.7039%" y="389" width="0.2872%" height="15" fill="rgb(233,165,41)" fg:x="1247174" fg:w="6670"/><text x="53.9539%" y="399.50"></text></g><g><title>schedule (250 samples, 0.01%)</title><rect x="53.9803%" y="373" width="0.0108%" height="15" fill="rgb(246,176,45)" fg:x="1253594" fg:w="250"/><text x="54.2303%" y="383.50"></text></g><g><title>down_write (7,603 samples, 0.33%)</title><rect x="53.6640%" y="405" width="0.3274%" height="15" fill="rgb(217,170,52)" fg:x="1246248" fg:w="7603"/><text x="53.9140%" y="415.50"></text></g><g><title>__btrfs_tree_lock (7,828 samples, 0.34%)</title><rect x="53.6550%" y="421" width="0.3371%" height="15" fill="rgb(214,203,54)" fg:x="1246039" fg:w="7828"/><text x="53.9050%" y="431.50"></text></g><g><title>btrfs_tree_lock (7,894 samples, 0.34%)</title><rect x="53.6548%" y="437" width="0.3399%" height="15" fill="rgb(248,215,49)" fg:x="1246035" fg:w="7894"/><text x="53.9048%" y="447.50"></text></g><g><title>try_to_wake_up (410 samples, 0.02%)</title><rect x="54.0190%" y="373" width="0.0177%" height="15" fill="rgb(208,46,10)" fg:x="1254491" fg:w="410"/><text x="54.2690%" y="383.50"></text></g><g><title>rwsem_wake.isra.0 (841 samples, 0.04%)</title><rect x="54.0004%" y="405" width="0.0362%" height="15" fill="rgb(254,5,31)" fg:x="1254061" fg:w="841"/><text x="54.2504%" y="415.50"></text></g><g><title>wake_up_q (504 samples, 0.02%)</title><rect x="54.0150%" y="389" width="0.0217%" height="15" fill="rgb(222,104,33)" fg:x="1254398" fg:w="504"/><text x="54.2650%" y="399.50"></text></g><g><title>btrfs_tree_read_unlock (974 samples, 0.04%)</title><rect x="53.9948%" y="437" width="0.0419%" height="15" fill="rgb(248,49,16)" fg:x="1253929" fg:w="974"/><text x="54.2448%" y="447.50"></text></g><g><title>up_read (867 samples, 0.04%)</title><rect x="53.9994%" y="421" width="0.0373%" height="15" fill="rgb(232,198,41)" fg:x="1254036" fg:w="867"/><text x="54.2494%" y="431.50"></text></g><g><title>free_extent_buffer (273 samples, 0.01%)</title><rect x="54.0451%" y="437" width="0.0118%" height="15" fill="rgb(214,125,3)" fg:x="1255097" fg:w="273"/><text x="54.2951%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (271 samples, 0.01%)</title><rect x="54.0451%" y="421" width="0.0117%" height="15" fill="rgb(229,220,28)" fg:x="1255099" fg:w="271"/><text x="54.2951%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (859 samples, 0.04%)</title><rect x="54.0905%" y="421" width="0.0370%" height="15" fill="rgb(222,64,37)" fg:x="1256152" fg:w="859"/><text x="54.3405%" y="431.50"></text></g><g><title>verify_parent_transid (738 samples, 0.03%)</title><rect x="54.0957%" y="405" width="0.0318%" height="15" fill="rgb(249,184,13)" fg:x="1256273" fg:w="738"/><text x="54.3457%" y="415.50"></text></g><g><title>btrfs_get_64 (676 samples, 0.03%)</title><rect x="54.1275%" y="421" width="0.0291%" height="15" fill="rgb(252,176,6)" fg:x="1257011" fg:w="676"/><text x="54.3775%" y="431.50"></text></g><g><title>btrfs_node_key (1,171 samples, 0.05%)</title><rect x="54.1566%" y="421" width="0.0504%" height="15" fill="rgb(228,153,7)" fg:x="1257687" fg:w="1171"/><text x="54.4066%" y="431.50"></text></g><g><title>read_extent_buffer (1,127 samples, 0.05%)</title><rect x="54.1585%" y="405" width="0.0485%" height="15" fill="rgb(242,193,5)" fg:x="1257731" fg:w="1127"/><text x="54.4085%" y="415.50"></text></g><g><title>btrfs_verify_level_key (322 samples, 0.01%)</title><rect x="54.2070%" y="421" width="0.0139%" height="15" fill="rgb(232,140,9)" fg:x="1258858" fg:w="322"/><text x="54.4570%" y="431.50"></text></g><g><title>__radix_tree_lookup (3,281 samples, 0.14%)</title><rect x="54.3511%" y="373" width="0.1413%" height="15" fill="rgb(213,222,16)" fg:x="1262205" fg:w="3281"/><text x="54.6011%" y="383.50"></text></g><g><title>radix_tree_lookup (3,285 samples, 0.14%)</title><rect x="54.3510%" y="389" width="0.1415%" height="15" fill="rgb(222,75,50)" fg:x="1262202" fg:w="3285"/><text x="54.6010%" y="399.50"></text></g><g><title>find_extent_buffer_nolock (5,686 samples, 0.24%)</title><rect x="54.2480%" y="405" width="0.2448%" height="15" fill="rgb(205,180,2)" fg:x="1259809" fg:w="5686"/><text x="54.4980%" y="415.50"></text></g><g><title>mark_page_accessed (1,408 samples, 0.06%)</title><rect x="54.4928%" y="405" width="0.0606%" height="15" fill="rgb(216,34,7)" fg:x="1265495" fg:w="1408"/><text x="54.7428%" y="415.50"></text></g><g><title>find_extent_buffer (7,713 samples, 0.33%)</title><rect x="54.2265%" y="421" width="0.3321%" height="15" fill="rgb(253,16,32)" fg:x="1259311" fg:w="7713"/><text x="54.4765%" y="431.50"></text></g><g><title>read_block_for_search (11,849 samples, 0.51%)</title><rect x="54.0641%" y="437" width="0.5102%" height="15" fill="rgb(208,97,28)" fg:x="1255540" fg:w="11849"/><text x="54.3141%" y="447.50"></text></g><g><title>__radix_tree_lookup (842 samples, 0.04%)</title><rect x="54.6901%" y="309" width="0.0363%" height="15" fill="rgb(225,92,11)" fg:x="1270078" fg:w="842"/><text x="54.9401%" y="319.50"></text></g><g><title>radix_tree_lookup (847 samples, 0.04%)</title><rect x="54.6901%" y="325" width="0.0365%" height="15" fill="rgb(243,38,12)" fg:x="1270076" fg:w="847"/><text x="54.9401%" y="335.50"></text></g><g><title>find_extent_buffer_nolock (1,620 samples, 0.07%)</title><rect x="54.6570%" y="341" width="0.0698%" height="15" fill="rgb(208,139,16)" fg:x="1269308" fg:w="1620"/><text x="54.9070%" y="351.50"></text></g><g><title>mark_page_accessed (420 samples, 0.02%)</title><rect x="54.7267%" y="341" width="0.0181%" height="15" fill="rgb(227,24,9)" fg:x="1270928" fg:w="420"/><text x="54.9767%" y="351.50"></text></g><g><title>find_extent_buffer (2,212 samples, 0.10%)</title><rect x="54.6504%" y="357" width="0.0952%" height="15" fill="rgb(206,62,11)" fg:x="1269156" fg:w="2212"/><text x="54.9004%" y="367.50"></text></g><g><title>alloc_extent_buffer (2,542 samples, 0.11%)</title><rect x="54.6377%" y="373" width="0.1095%" height="15" fill="rgb(228,134,27)" fg:x="1268859" fg:w="2542"/><text x="54.8877%" y="383.50"></text></g><g><title>btrfs_find_create_tree_block (2,552 samples, 0.11%)</title><rect x="54.6376%" y="389" width="0.1099%" height="15" fill="rgb(205,55,33)" fg:x="1268857" fg:w="2552"/><text x="54.8876%" y="399.50"></text></g><g><title>btrfs_readahead_tree_block (3,278 samples, 0.14%)</title><rect x="54.6159%" y="405" width="0.1412%" height="15" fill="rgb(243,75,43)" fg:x="1268354" fg:w="3278"/><text x="54.8659%" y="415.50"></text></g><g><title>btrfs_readahead_node_child (3,909 samples, 0.17%)</title><rect x="54.5906%" y="421" width="0.1683%" height="15" fill="rgb(223,27,42)" fg:x="1267767" fg:w="3909"/><text x="54.8406%" y="431.50"></text></g><g><title>reada_for_balance (4,372 samples, 0.19%)</title><rect x="54.5744%" y="437" width="0.1883%" height="15" fill="rgb(232,189,33)" fg:x="1267389" fg:w="4372"/><text x="54.8244%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (361 samples, 0.02%)</title><rect x="54.8275%" y="373" width="0.0155%" height="15" fill="rgb(210,9,39)" fg:x="1273268" fg:w="361"/><text x="55.0775%" y="383.50"></text></g><g><title>rwsem_mark_wake (1,569 samples, 0.07%)</title><rect x="54.8435%" y="373" width="0.0676%" height="15" fill="rgb(242,85,26)" fg:x="1273639" fg:w="1569"/><text x="55.0935%" y="383.50"></text></g><g><title>wake_q_add (382 samples, 0.02%)</title><rect x="54.9126%" y="373" width="0.0164%" height="15" fill="rgb(248,44,4)" fg:x="1275243" fg:w="382"/><text x="55.1626%" y="383.50"></text></g><g><title>wake_q_add_safe (274 samples, 0.01%)</title><rect x="54.9290%" y="373" width="0.0118%" height="15" fill="rgb(250,96,46)" fg:x="1275625" fg:w="274"/><text x="55.1790%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (629 samples, 0.03%)</title><rect x="55.0738%" y="341" width="0.0271%" height="15" fill="rgb(229,116,26)" fg:x="1278987" fg:w="629"/><text x="55.3238%" y="351.50"></text></g><g><title>is_cpu_allowed (281 samples, 0.01%)</title><rect x="55.1012%" y="341" width="0.0121%" height="15" fill="rgb(246,94,34)" fg:x="1279625" fg:w="281"/><text x="55.3512%" y="351.50"></text></g><g><title>_raw_spin_lock (1,407 samples, 0.06%)</title><rect x="55.1186%" y="325" width="0.0606%" height="15" fill="rgb(251,73,21)" fg:x="1280028" fg:w="1407"/><text x="55.3686%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,400 samples, 0.06%)</title><rect x="55.1189%" y="309" width="0.0603%" height="15" fill="rgb(254,121,25)" fg:x="1280035" fg:w="1400"/><text x="55.3689%" y="319.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (1,400 samples, 0.06%)</title><rect x="55.1189%" y="293" width="0.0603%" height="15" fill="rgb(215,161,49)" fg:x="1280035" fg:w="1400"/><text x="55.3689%" y="303.50"></text></g><g><title>raw_spin_rq_lock_nested (1,428 samples, 0.06%)</title><rect x="55.1182%" y="341" width="0.0615%" height="15" fill="rgb(221,43,13)" fg:x="1280018" fg:w="1428"/><text x="55.3682%" y="351.50"></text></g><g><title>available_idle_cpu (578 samples, 0.02%)</title><rect x="55.2656%" y="309" width="0.0249%" height="15" fill="rgb(249,5,37)" fg:x="1283442" fg:w="578"/><text x="55.5156%" y="319.50"></text></g><g><title>available_idle_cpu (454 samples, 0.02%)</title><rect x="55.3404%" y="293" width="0.0195%" height="15" fill="rgb(226,25,44)" fg:x="1285178" fg:w="454"/><text x="55.5904%" y="303.50"></text></g><g><title>cpumask_next_wrap (308 samples, 0.01%)</title><rect x="55.3617%" y="293" width="0.0133%" height="15" fill="rgb(238,189,16)" fg:x="1285673" fg:w="308"/><text x="55.6117%" y="303.50"></text></g><g><title>available_idle_cpu (625 samples, 0.03%)</title><rect x="55.4005%" y="277" width="0.0269%" height="15" fill="rgb(251,186,8)" fg:x="1286574" fg:w="625"/><text x="55.6505%" y="287.50"></text></g><g><title>select_idle_sibling (4,843 samples, 0.21%)</title><rect x="55.2193%" y="325" width="0.2085%" height="15" fill="rgb(254,34,31)" fg:x="1282367" fg:w="4843"/><text x="55.4693%" y="335.50"></text></g><g><title>select_idle_cpu (2,913 samples, 0.13%)</title><rect x="55.3024%" y="309" width="0.1254%" height="15" fill="rgb(225,215,27)" fg:x="1284297" fg:w="2913"/><text x="55.5524%" y="319.50"></text></g><g><title>select_idle_core (1,229 samples, 0.05%)</title><rect x="55.3749%" y="293" width="0.0529%" height="15" fill="rgb(221,192,48)" fg:x="1285981" fg:w="1229"/><text x="55.6249%" y="303.50"></text></g><g><title>task_h_load (513 samples, 0.02%)</title><rect x="55.4279%" y="325" width="0.0221%" height="15" fill="rgb(219,137,20)" fg:x="1287210" fg:w="513"/><text x="55.6779%" y="335.50"></text></g><g><title>available_idle_cpu (635 samples, 0.03%)</title><rect x="55.4615%" y="309" width="0.0273%" height="15" fill="rgb(219,84,11)" fg:x="1287992" fg:w="635"/><text x="55.7115%" y="319.50"></text></g><g><title>select_task_rq_fair (7,245 samples, 0.31%)</title><rect x="55.1841%" y="341" width="0.3120%" height="15" fill="rgb(224,10,23)" fg:x="1281549" fg:w="7245"/><text x="55.4341%" y="351.50"></text></g><g><title>wake_affine (1,071 samples, 0.05%)</title><rect x="55.4499%" y="325" width="0.0461%" height="15" fill="rgb(248,22,39)" fg:x="1287723" fg:w="1071"/><text x="55.6999%" y="335.50"></text></g><g><title>migrate_task_rq_fair (741 samples, 0.03%)</title><rect x="55.5153%" y="325" width="0.0319%" height="15" fill="rgb(212,154,20)" fg:x="1289241" fg:w="741"/><text x="55.7653%" y="335.50"></text></g><g><title>remove_entity_load_avg (477 samples, 0.02%)</title><rect x="55.5267%" y="309" width="0.0205%" height="15" fill="rgb(236,199,50)" fg:x="1289505" fg:w="477"/><text x="55.7767%" y="319.50"></text></g><g><title>_raw_spin_lock_irqsave (317 samples, 0.01%)</title><rect x="55.5336%" y="293" width="0.0137%" height="15" fill="rgb(211,9,17)" fg:x="1289665" fg:w="317"/><text x="55.7836%" y="303.50"></text></g><g><title>set_task_cpu (1,223 samples, 0.05%)</title><rect x="55.4961%" y="341" width="0.0527%" height="15" fill="rgb(243,216,36)" fg:x="1288794" fg:w="1223"/><text x="55.7461%" y="351.50"></text></g><g><title>update_curr (279 samples, 0.01%)</title><rect x="55.5737%" y="277" width="0.0120%" height="15" fill="rgb(250,2,10)" fg:x="1290598" fg:w="279"/><text x="55.8237%" y="287.50"></text></g><g><title>update_load_avg (288 samples, 0.01%)</title><rect x="55.5858%" y="277" width="0.0124%" height="15" fill="rgb(226,50,48)" fg:x="1290877" fg:w="288"/><text x="55.8358%" y="287.50"></text></g><g><title>enqueue_entity (856 samples, 0.04%)</title><rect x="55.5616%" y="293" width="0.0369%" height="15" fill="rgb(243,81,16)" fg:x="1290316" fg:w="856"/><text x="55.8116%" y="303.50"></text></g><g><title>enqueue_task_fair (1,507 samples, 0.06%)</title><rect x="55.5523%" y="309" width="0.0649%" height="15" fill="rgb(250,14,2)" fg:x="1290101" fg:w="1507"/><text x="55.8023%" y="319.50"></text></g><g><title>psi_group_change (1,044 samples, 0.04%)</title><rect x="55.6283%" y="293" width="0.0450%" height="15" fill="rgb(233,135,29)" fg:x="1291866" fg:w="1044"/><text x="55.8783%" y="303.50"></text></g><g><title>psi_task_change (1,334 samples, 0.06%)</title><rect x="55.6186%" y="309" width="0.0574%" height="15" fill="rgb(224,64,43)" fg:x="1291639" fg:w="1334"/><text x="55.8686%" y="319.50"></text></g><g><title>enqueue_task (2,953 samples, 0.13%)</title><rect x="55.5506%" y="325" width="0.1272%" height="15" fill="rgb(238,84,13)" fg:x="1290060" fg:w="2953"/><text x="55.8006%" y="335.50"></text></g><g><title>check_preempt_curr (298 samples, 0.01%)</title><rect x="55.6795%" y="309" width="0.0128%" height="15" fill="rgb(253,48,26)" fg:x="1293053" fg:w="298"/><text x="55.9295%" y="319.50"></text></g><g><title>ttwu_do_activate (3,359 samples, 0.14%)</title><rect x="55.5489%" y="341" width="0.1446%" height="15" fill="rgb(205,223,31)" fg:x="1290022" fg:w="3359"/><text x="55.7989%" y="351.50"></text></g><g><title>ttwu_do_wakeup (357 samples, 0.02%)</title><rect x="55.6782%" y="325" width="0.0154%" height="15" fill="rgb(221,41,32)" fg:x="1293024" fg:w="357"/><text x="55.9282%" y="335.50"></text></g><g><title>native_send_call_func_single_ipi (520 samples, 0.02%)</title><rect x="55.7586%" y="293" width="0.0224%" height="15" fill="rgb(213,158,31)" fg:x="1294892" fg:w="520"/><text x="56.0086%" y="303.50"></text></g><g><title>x2apic_send_IPI (494 samples, 0.02%)</title><rect x="55.7598%" y="277" width="0.0213%" height="15" fill="rgb(245,126,43)" fg:x="1294918" fg:w="494"/><text x="56.0098%" y="287.50"></text></g><g><title>native_write_msr (312 samples, 0.01%)</title><rect x="55.7676%" y="261" width="0.0134%" height="15" fill="rgb(227,7,22)" fg:x="1295100" fg:w="312"/><text x="56.0176%" y="271.50"></text></g><g><title>__smp_call_single_queue (1,170 samples, 0.05%)</title><rect x="55.7324%" y="325" width="0.0504%" height="15" fill="rgb(252,90,44)" fg:x="1294283" fg:w="1170"/><text x="55.9824%" y="335.50"></text></g><g><title>send_call_function_single_ipi (1,077 samples, 0.05%)</title><rect x="55.7364%" y="309" width="0.0464%" height="15" fill="rgb(253,91,0)" fg:x="1294376" fg:w="1077"/><text x="55.9864%" y="319.50"></text></g><g><title>llist_add_batch (1,130 samples, 0.05%)</title><rect x="55.7828%" y="325" width="0.0487%" height="15" fill="rgb(252,175,49)" fg:x="1295453" fg:w="1130"/><text x="56.0328%" y="335.50"></text></g><g><title>sched_clock_cpu (254 samples, 0.01%)</title><rect x="55.8322%" y="325" width="0.0109%" height="15" fill="rgb(246,150,1)" fg:x="1296601" fg:w="254"/><text x="56.0822%" y="335.50"></text></g><g><title>ttwu_queue_wakelist (3,464 samples, 0.15%)</title><rect x="55.6944%" y="341" width="0.1492%" height="15" fill="rgb(241,192,25)" fg:x="1293400" fg:w="3464"/><text x="55.9444%" y="351.50"></text></g><g><title>update_rq_clock (240 samples, 0.01%)</title><rect x="55.8436%" y="341" width="0.0103%" height="15" fill="rgb(239,187,11)" fg:x="1296864" fg:w="240"/><text x="56.0936%" y="351.50"></text></g><g><title>try_to_wake_up (20,623 samples, 0.89%)</title><rect x="54.9671%" y="357" width="0.8880%" height="15" fill="rgb(218,202,51)" fg:x="1276509" fg:w="20623"/><text x="55.2171%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (24,086 samples, 1.04%)</title><rect x="54.8214%" y="389" width="1.0372%" height="15" fill="rgb(225,176,8)" fg:x="1273127" fg:w="24086"/><text x="55.0714%" y="399.50"></text></g><g><title>wake_up_q (21,314 samples, 0.92%)</title><rect x="54.9408%" y="373" width="0.9178%" height="15" fill="rgb(219,122,41)" fg:x="1275899" fg:w="21314"/><text x="55.1908%" y="383.50"></text></g><g><title>btrfs_tree_unlock (24,275 samples, 1.05%)</title><rect x="54.8137%" y="421" width="1.0453%" height="15" fill="rgb(248,140,20)" fg:x="1272947" fg:w="24275"/><text x="55.0637%" y="431.50"></text></g><g><title>up_write (24,154 samples, 1.04%)</title><rect x="54.8189%" y="405" width="1.0401%" height="15" fill="rgb(245,41,37)" fg:x="1273068" fg:w="24154"/><text x="55.0689%" y="415.50"></text></g><g><title>unlock_up (26,082 samples, 1.12%)</title><rect x="54.7626%" y="437" width="1.1231%" height="15" fill="rgb(235,82,39)" fg:x="1271761" fg:w="26082"/><text x="55.0126%" y="447.50"></text></g><g><title>up_write (621 samples, 0.03%)</title><rect x="55.8590%" y="421" width="0.0267%" height="15" fill="rgb(230,108,42)" fg:x="1297222" fg:w="621"/><text x="56.1090%" y="431.50"></text></g><g><title>btrfs_search_slot (155,143 samples, 6.68%)</title><rect x="49.2169%" y="453" width="6.6805%" height="15" fill="rgb(215,150,50)" fg:x="1142971" fg:w="155143"/><text x="49.4669%" y="463.50">btrfs_sea..</text></g><g><title>up_read (271 samples, 0.01%)</title><rect x="55.8857%" y="437" width="0.0117%" height="15" fill="rgb(233,212,5)" fg:x="1297843" fg:w="271"/><text x="56.1357%" y="447.50"></text></g><g><title>btrfs_del_orphan_item (166,158 samples, 7.15%)</title><rect x="48.7742%" y="469" width="7.1548%" height="15" fill="rgb(245,80,22)" fg:x="1132692" fg:w="166158"/><text x="49.0242%" y="479.50">btrfs_del_..</text></g><g><title>btrfs_block_rsv_release (408 samples, 0.02%)</title><rect x="56.0401%" y="437" width="0.0176%" height="15" fill="rgb(238,129,16)" fg:x="1301428" fg:w="408"/><text x="56.2901%" y="447.50"></text></g><g><title>btrfs_create_pending_block_groups (244 samples, 0.01%)</title><rect x="56.0577%" y="437" width="0.0105%" height="15" fill="rgb(240,19,0)" fg:x="1301836" fg:w="244"/><text x="56.3077%" y="447.50"></text></g><g><title>btrfs_put_transaction (320 samples, 0.01%)</title><rect x="56.0682%" y="437" width="0.0138%" height="15" fill="rgb(232,42,35)" fg:x="1302080" fg:w="320"/><text x="56.3182%" y="447.50"></text></g><g><title>_raw_spin_lock (1,510 samples, 0.07%)</title><rect x="56.0925%" y="421" width="0.0650%" height="15" fill="rgb(223,130,24)" fg:x="1302646" fg:w="1510"/><text x="56.3425%" y="431.50"></text></g><g><title>_raw_spin_lock (503 samples, 0.02%)</title><rect x="56.2021%" y="405" width="0.0217%" height="15" fill="rgb(237,16,22)" fg:x="1305190" fg:w="503"/><text x="56.4521%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (491 samples, 0.02%)</title><rect x="56.2026%" y="389" width="0.0211%" height="15" fill="rgb(248,192,20)" fg:x="1305202" fg:w="491"/><text x="56.4526%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (491 samples, 0.02%)</title><rect x="56.2026%" y="373" width="0.0211%" height="15" fill="rgb(233,167,2)" fg:x="1305202" fg:w="491"/><text x="56.4526%" y="383.50"></text></g><g><title>btrfs_block_rsv_release (1,771 samples, 0.08%)</title><rect x="56.1576%" y="421" width="0.0763%" height="15" fill="rgb(252,71,44)" fg:x="1304157" fg:w="1771"/><text x="56.4076%" y="431.50"></text></g><g><title>btrfs_trans_release_metadata (3,437 samples, 0.15%)</title><rect x="56.0888%" y="437" width="0.1480%" height="15" fill="rgb(238,37,47)" fg:x="1302559" fg:w="3437"/><text x="56.3388%" y="447.50"></text></g><g><title>__slab_free (296 samples, 0.01%)</title><rect x="56.2620%" y="421" width="0.0127%" height="15" fill="rgb(214,202,54)" fg:x="1306582" fg:w="296"/><text x="56.5120%" y="431.50"></text></g><g><title>kmem_cache_free (1,490 samples, 0.06%)</title><rect x="56.2368%" y="437" width="0.0642%" height="15" fill="rgb(254,165,40)" fg:x="1305996" fg:w="1490"/><text x="56.4868%" y="447.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (411 samples, 0.02%)</title><rect x="56.2833%" y="421" width="0.0177%" height="15" fill="rgb(246,173,38)" fg:x="1307075" fg:w="411"/><text x="56.5333%" y="431.50"></text></g><g><title>__btrfs_end_transaction (8,335 samples, 0.36%)</title><rect x="55.9432%" y="453" width="0.3589%" height="15" fill="rgb(215,3,27)" fg:x="1299179" fg:w="8335"/><text x="56.1932%" y="463.50"></text></g><g><title>btrfs_trans_release_metadata (317 samples, 0.01%)</title><rect x="56.3096%" y="453" width="0.0137%" height="15" fill="rgb(239,169,51)" fg:x="1307686" fg:w="317"/><text x="56.5596%" y="463.50"></text></g><g><title>btrfs_end_transaction (8,972 samples, 0.39%)</title><rect x="55.9374%" y="469" width="0.3863%" height="15" fill="rgb(212,5,25)" fg:x="1299044" fg:w="8972"/><text x="56.1874%" y="479.50"></text></g><g><title>_raw_spin_lock (363 samples, 0.02%)</title><rect x="56.3286%" y="453" width="0.0156%" height="15" fill="rgb(243,45,17)" fg:x="1308129" fg:w="363"/><text x="56.5786%" y="463.50"></text></g><g><title>btrfs_block_rsv_release (513 samples, 0.02%)</title><rect x="56.3443%" y="453" width="0.0221%" height="15" fill="rgb(242,97,9)" fg:x="1308492" fg:w="513"/><text x="56.5943%" y="463.50"></text></g><g><title>__slab_free (239 samples, 0.01%)</title><rect x="56.4000%" y="437" width="0.0103%" height="15" fill="rgb(228,71,31)" fg:x="1309787" fg:w="239"/><text x="56.6500%" y="447.50"></text></g><g><title>kfree (1,238 samples, 0.05%)</title><rect x="56.3673%" y="453" width="0.0533%" height="15" fill="rgb(252,184,16)" fg:x="1309026" fg:w="1238"/><text x="56.6173%" y="463.50"></text></g><g><title>btrfs_free_block_rsv (2,207 samples, 0.10%)</title><rect x="56.3262%" y="469" width="0.0950%" height="15" fill="rgb(236,169,46)" fg:x="1308073" fg:w="2207"/><text x="56.5762%" y="479.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (642 samples, 0.03%)</title><rect x="56.4495%" y="469" width="0.0276%" height="15" fill="rgb(207,17,47)" fg:x="1310935" fg:w="642"/><text x="56.6995%" y="479.50"></text></g><g><title>btrfs_join_transaction (409 samples, 0.02%)</title><rect x="56.4851%" y="469" width="0.0176%" height="15" fill="rgb(206,201,28)" fg:x="1311762" fg:w="409"/><text x="56.7351%" y="479.50"></text></g><g><title>__slab_free (693 samples, 0.03%)</title><rect x="56.5935%" y="421" width="0.0298%" height="15" fill="rgb(224,184,23)" fg:x="1314279" fg:w="693"/><text x="56.8435%" y="431.50"></text></g><g><title>kmem_cache_free (1,863 samples, 0.08%)</title><rect x="56.5579%" y="437" width="0.0802%" height="15" fill="rgb(208,139,48)" fg:x="1313452" fg:w="1863"/><text x="56.8079%" y="447.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (263 samples, 0.01%)</title><rect x="56.6267%" y="421" width="0.0113%" height="15" fill="rgb(208,130,10)" fg:x="1315052" fg:w="263"/><text x="56.8767%" y="431.50"></text></g><g><title>mutex_lock (572 samples, 0.02%)</title><rect x="56.6385%" y="437" width="0.0246%" height="15" fill="rgb(211,213,45)" fg:x="1315325" fg:w="572"/><text x="56.8885%" y="447.50"></text></g><g><title>__radix_tree_delete (590 samples, 0.03%)</title><rect x="56.6697%" y="405" width="0.0254%" height="15" fill="rgb(235,100,30)" fg:x="1316049" fg:w="590"/><text x="56.9197%" y="415.50"></text></g><g><title>node_tag_clear (262 samples, 0.01%)</title><rect x="56.6838%" y="389" width="0.0113%" height="15" fill="rgb(206,144,31)" fg:x="1316377" fg:w="262"/><text x="56.9338%" y="399.50"></text></g><g><title>__radix_tree_lookup (2,636 samples, 0.11%)</title><rect x="56.6951%" y="405" width="0.1135%" height="15" fill="rgb(224,200,26)" fg:x="1316639" fg:w="2636"/><text x="56.9451%" y="415.50"></text></g><g><title>radix_tree_delete (3,530 samples, 0.15%)</title><rect x="56.6633%" y="437" width="0.1520%" height="15" fill="rgb(247,104,53)" fg:x="1315902" fg:w="3530"/><text x="56.9133%" y="447.50"></text></g><g><title>radix_tree_delete_item (3,454 samples, 0.15%)</title><rect x="56.6666%" y="421" width="0.1487%" height="15" fill="rgb(220,14,17)" fg:x="1315978" fg:w="3454"/><text x="56.9166%" y="431.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (7,070 samples, 0.30%)</title><rect x="56.5114%" y="453" width="0.3044%" height="15" fill="rgb(230,140,40)" fg:x="1312373" fg:w="7070"/><text x="56.7614%" y="463.50"></text></g><g><title>_raw_spin_lock (489 samples, 0.02%)</title><rect x="56.8158%" y="453" width="0.0211%" height="15" fill="rgb(229,2,41)" fg:x="1319443" fg:w="489"/><text x="57.0658%" y="463.50"></text></g><g><title>btrfs_remove_delayed_node (7,751 samples, 0.33%)</title><rect x="56.5113%" y="469" width="0.3338%" height="15" fill="rgb(232,89,16)" fg:x="1312372" fg:w="7751"/><text x="56.7613%" y="479.50"></text></g><g><title>kmem_cache_alloc (431 samples, 0.02%)</title><rect x="57.0407%" y="421" width="0.0186%" height="15" fill="rgb(247,59,52)" fg:x="1324665" fg:w="431"/><text x="57.2907%" y="431.50"></text></g><g><title>alloc_extent_state (753 samples, 0.03%)</title><rect x="57.0353%" y="437" width="0.0324%" height="15" fill="rgb(226,110,21)" fg:x="1324541" fg:w="753"/><text x="57.2853%" y="447.50"></text></g><g><title>btrfs_clear_delalloc_extent (288 samples, 0.01%)</title><rect x="57.0679%" y="437" width="0.0124%" height="15" fill="rgb(224,176,43)" fg:x="1325297" fg:w="288"/><text x="57.3179%" y="447.50"></text></g><g><title>__wake_up_common_lock (531 samples, 0.02%)</title><rect x="57.1198%" y="405" width="0.0229%" height="15" fill="rgb(221,73,6)" fg:x="1326502" fg:w="531"/><text x="57.3698%" y="415.50"></text></g><g><title>__wake_up (720 samples, 0.03%)</title><rect x="57.1134%" y="421" width="0.0310%" height="15" fill="rgb(232,78,19)" fg:x="1326353" fg:w="720"/><text x="57.3634%" y="431.50"></text></g><g><title>btrfs_clear_delalloc_extent (247 samples, 0.01%)</title><rect x="57.1542%" y="421" width="0.0106%" height="15" fill="rgb(233,112,48)" fg:x="1327300" fg:w="247"/><text x="57.4042%" y="431.50"></text></g><g><title>kmem_cache_free (860 samples, 0.04%)</title><rect x="57.1719%" y="405" width="0.0370%" height="15" fill="rgb(243,131,47)" fg:x="1327713" fg:w="860"/><text x="57.4219%" y="415.50"></text></g><g><title>free_extent_state (1,041 samples, 0.04%)</title><rect x="57.1648%" y="421" width="0.0448%" height="15" fill="rgb(226,51,1)" fg:x="1327547" fg:w="1041"/><text x="57.4148%" y="431.50"></text></g><g><title>clear_state_bit (3,018 samples, 0.13%)</title><rect x="57.0803%" y="437" width="0.1300%" height="15" fill="rgb(247,58,7)" fg:x="1325585" fg:w="3018"/><text x="57.3303%" y="447.50"></text></g><g><title>kmem_cache_free (509 samples, 0.02%)</title><rect x="57.2184%" y="421" width="0.0219%" height="15" fill="rgb(209,7,32)" fg:x="1328793" fg:w="509"/><text x="57.4684%" y="431.50"></text></g><g><title>free_extent_state (714 samples, 0.03%)</title><rect x="57.2103%" y="437" width="0.0307%" height="15" fill="rgb(209,39,41)" fg:x="1328603" fg:w="714"/><text x="57.4603%" y="447.50"></text></g><g><title>__clear_extent_bit (6,242 samples, 0.27%)</title><rect x="56.9867%" y="453" width="0.2688%" height="15" fill="rgb(226,182,46)" fg:x="1323411" fg:w="6242"/><text x="57.2367%" y="463.50"></text></g><g><title>_raw_spin_lock (829 samples, 0.04%)</title><rect x="57.2555%" y="453" width="0.0357%" height="15" fill="rgb(230,219,10)" fg:x="1329653" fg:w="829"/><text x="57.5055%" y="463.50"></text></g><g><title>_raw_write_lock (271 samples, 0.01%)</title><rect x="57.2912%" y="453" width="0.0117%" height="15" fill="rgb(227,175,30)" fg:x="1330482" fg:w="271"/><text x="57.5412%" y="463.50"></text></g><g><title>alloc_extent_map (619 samples, 0.03%)</title><rect x="57.3028%" y="453" width="0.0267%" height="15" fill="rgb(217,2,50)" fg:x="1330753" fg:w="619"/><text x="57.5528%" y="463.50"></text></g><g><title>kmem_cache_alloc (438 samples, 0.02%)</title><rect x="57.3394%" y="437" width="0.0189%" height="15" fill="rgb(229,160,0)" fg:x="1331602" fg:w="438"/><text x="57.5894%" y="447.50"></text></g><g><title>btrfs_alloc_path (633 samples, 0.03%)</title><rect x="57.3378%" y="453" width="0.0273%" height="15" fill="rgb(207,78,37)" fg:x="1331566" fg:w="633"/><text x="57.5878%" y="463.50"></text></g><g><title>add_delayed_ref_head (314 samples, 0.01%)</title><rect x="57.4723%" y="389" width="0.0135%" height="15" fill="rgb(225,57,0)" fg:x="1334689" fg:w="314"/><text x="57.7223%" y="399.50"></text></g><g><title>btrfs_add_delayed_tree_ref (609 samples, 0.03%)</title><rect x="57.4706%" y="405" width="0.0262%" height="15" fill="rgb(232,154,2)" fg:x="1334650" fg:w="609"/><text x="57.7206%" y="415.50"></text></g><g><title>_find_next_bit (1,214 samples, 0.05%)</title><rect x="57.5084%" y="357" width="0.0523%" height="15" fill="rgb(241,212,25)" fg:x="1335526" fg:w="1214"/><text x="57.7584%" y="367.50"></text></g><g><title>steal_from_bitmap.part.0 (1,430 samples, 0.06%)</title><rect x="57.5083%" y="373" width="0.0616%" height="15" fill="rgb(226,69,20)" fg:x="1335525" fg:w="1430"/><text x="57.7583%" y="383.50"></text></g><g><title>__btrfs_add_free_space (1,953 samples, 0.08%)</title><rect x="57.4970%" y="389" width="0.0841%" height="15" fill="rgb(247,184,54)" fg:x="1335261" fg:w="1953"/><text x="57.7470%" y="399.50"></text></g><g><title>btrfs_add_free_space (2,007 samples, 0.09%)</title><rect x="57.4969%" y="405" width="0.0864%" height="15" fill="rgb(210,145,0)" fg:x="1335259" fg:w="2007"/><text x="57.7469%" y="415.50"></text></g><g><title>check_ref_cleanup (326 samples, 0.01%)</title><rect x="57.5902%" y="405" width="0.0140%" height="15" fill="rgb(253,82,12)" fg:x="1337427" fg:w="326"/><text x="57.8402%" y="415.50"></text></g><g><title>btrfs_free_tree_block (3,163 samples, 0.14%)</title><rect x="57.4686%" y="421" width="0.1362%" height="15" fill="rgb(245,42,11)" fg:x="1334602" fg:w="3163"/><text x="57.7186%" y="431.50"></text></g><g><title>btrfs_del_leaf (3,437 samples, 0.15%)</title><rect x="57.4665%" y="437" width="0.1480%" height="15" fill="rgb(219,147,32)" fg:x="1334553" fg:w="3437"/><text x="57.7165%" y="447.50"></text></g><g><title>btrfs_get_32 (557 samples, 0.02%)</title><rect x="57.6145%" y="437" width="0.0240%" height="15" fill="rgb(246,12,7)" fg:x="1337991" fg:w="557"/><text x="57.8645%" y="447.50"></text></g><g><title>btrfs_get_token_32 (4,733 samples, 0.20%)</title><rect x="57.6385%" y="437" width="0.2038%" height="15" fill="rgb(243,50,9)" fg:x="1338548" fg:w="4733"/><text x="57.8885%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (353 samples, 0.02%)</title><rect x="57.8271%" y="421" width="0.0152%" height="15" fill="rgb(219,149,6)" fg:x="1342928" fg:w="353"/><text x="58.0771%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (544 samples, 0.02%)</title><rect x="57.8425%" y="437" width="0.0234%" height="15" fill="rgb(241,51,42)" fg:x="1343285" fg:w="544"/><text x="58.0925%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (364 samples, 0.02%)</title><rect x="57.8502%" y="421" width="0.0157%" height="15" fill="rgb(226,128,27)" fg:x="1343465" fg:w="364"/><text x="58.1002%" y="431.50"></text></g><g><title>btrfs_set_token_32 (4,635 samples, 0.20%)</title><rect x="57.8662%" y="437" width="0.1996%" height="15" fill="rgb(244,144,4)" fg:x="1343835" fg:w="4635"/><text x="58.1162%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (344 samples, 0.01%)</title><rect x="58.0509%" y="421" width="0.0148%" height="15" fill="rgb(221,4,13)" fg:x="1348126" fg:w="344"/><text x="58.3009%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,700 samples, 0.07%)</title><rect x="58.0683%" y="437" width="0.0732%" height="15" fill="rgb(208,170,28)" fg:x="1348530" fg:w="1700"/><text x="58.3183%" y="447.50"></text></g><g><title>copy_pages (1,329 samples, 0.06%)</title><rect x="58.1417%" y="437" width="0.0572%" height="15" fill="rgb(226,131,13)" fg:x="1350235" fg:w="1329"/><text x="58.3917%" y="447.50"></text></g><g><title>btrfs_get_32 (314 samples, 0.01%)</title><rect x="58.2159%" y="421" width="0.0135%" height="15" fill="rgb(215,72,41)" fg:x="1351956" fg:w="314"/><text x="58.4659%" y="431.50"></text></g><g><title>leaf_space_used (559 samples, 0.02%)</title><rect x="58.2083%" y="437" width="0.0241%" height="15" fill="rgb(243,108,20)" fg:x="1351780" fg:w="559"/><text x="58.4583%" y="447.50"></text></g><g><title>memcpy_extent_buffer (789 samples, 0.03%)</title><rect x="58.2621%" y="421" width="0.0340%" height="15" fill="rgb(230,189,17)" fg:x="1353030" fg:w="789"/><text x="58.5121%" y="431.50"></text></g><g><title>memmove (648 samples, 0.03%)</title><rect x="58.2682%" y="405" width="0.0279%" height="15" fill="rgb(220,50,17)" fg:x="1353171" fg:w="648"/><text x="58.5182%" y="415.50"></text></g><g><title>memmove_extent_buffer (6,898 samples, 0.30%)</title><rect x="58.2367%" y="437" width="0.2970%" height="15" fill="rgb(248,152,48)" fg:x="1352440" fg:w="6898"/><text x="58.4867%" y="447.50"></text></g><g><title>memmove (5,519 samples, 0.24%)</title><rect x="58.2961%" y="421" width="0.2377%" height="15" fill="rgb(244,91,11)" fg:x="1353819" fg:w="5519"/><text x="58.5461%" y="431.50"></text></g><g><title>clear_extent_buffer_dirty (336 samples, 0.01%)</title><rect x="58.5413%" y="389" width="0.0145%" height="15" fill="rgb(220,157,5)" fg:x="1359514" fg:w="336"/><text x="58.7913%" y="399.50"></text></g><g><title>btree_clear_page_dirty (311 samples, 0.01%)</title><rect x="58.5424%" y="373" width="0.0134%" height="15" fill="rgb(253,137,8)" fg:x="1359539" fg:w="311"/><text x="58.7924%" y="383.50"></text></g><g><title>btrfs_clean_tree_block (368 samples, 0.02%)</title><rect x="58.5412%" y="405" width="0.0158%" height="15" fill="rgb(217,137,51)" fg:x="1359512" fg:w="368"/><text x="58.7912%" y="415.50"></text></g><g><title>__push_leaf_left (1,131 samples, 0.05%)</title><rect x="58.5349%" y="421" width="0.0487%" height="15" fill="rgb(218,209,53)" fg:x="1359366" fg:w="1131"/><text x="58.7849%" y="431.50"></text></g><g><title>btrfs_read_node_slot (260 samples, 0.01%)</title><rect x="58.5896%" y="421" width="0.0112%" height="15" fill="rgb(249,137,25)" fg:x="1360635" fg:w="260"/><text x="58.8396%" y="431.50"></text></g><g><title>push_leaf_left (1,624 samples, 0.07%)</title><rect x="58.5337%" y="437" width="0.0699%" height="15" fill="rgb(239,155,26)" fg:x="1359338" fg:w="1624"/><text x="58.7837%" y="447.50"></text></g><g><title>__push_leaf_right (424 samples, 0.02%)</title><rect x="58.6043%" y="421" width="0.0183%" height="15" fill="rgb(227,85,46)" fg:x="1360977" fg:w="424"/><text x="58.8543%" y="431.50"></text></g><g><title>push_leaf_right (622 samples, 0.03%)</title><rect x="58.6037%" y="437" width="0.0268%" height="15" fill="rgb(251,107,43)" fg:x="1360962" fg:w="622"/><text x="58.8537%" y="447.50"></text></g><g><title>btrfs_del_items (29,357 samples, 1.26%)</title><rect x="57.3751%" y="453" width="1.2641%" height="15" fill="rgb(234,170,33)" fg:x="1332431" fg:w="29357"/><text x="57.6251%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,257 samples, 0.05%)</title><rect x="58.6642%" y="421" width="0.0541%" height="15" fill="rgb(206,29,35)" fg:x="1362367" fg:w="1257"/><text x="58.9142%" y="431.50"></text></g><g><title>memset_erms (373 samples, 0.02%)</title><rect x="58.7192%" y="421" width="0.0161%" height="15" fill="rgb(227,138,25)" fg:x="1363645" fg:w="373"/><text x="58.9692%" y="431.50"></text></g><g><title>alloc_extent_map (1,799 samples, 0.08%)</title><rect x="58.6586%" y="437" width="0.0775%" height="15" fill="rgb(249,131,35)" fg:x="1362237" fg:w="1799"/><text x="58.9086%" y="447.50"></text></g><g><title>kmem_cache_free (1,329 samples, 0.06%)</title><rect x="58.7510%" y="421" width="0.0572%" height="15" fill="rgb(239,6,40)" fg:x="1364385" fg:w="1329"/><text x="59.0010%" y="431.50"></text></g><g><title>free_extent_map (1,706 samples, 0.07%)</title><rect x="58.7361%" y="437" width="0.0735%" height="15" fill="rgb(246,136,47)" fg:x="1364037" fg:w="1706"/><text x="58.9861%" y="447.50"></text></g><g><title>btrfs_drop_extent_cache (4,227 samples, 0.18%)</title><rect x="58.6393%" y="453" width="0.1820%" height="15" fill="rgb(253,58,26)" fg:x="1361790" fg:w="4227"/><text x="58.8893%" y="463.50"></text></g><g><title>try_to_wake_up (687 samples, 0.03%)</title><rect x="58.8527%" y="357" width="0.0296%" height="15" fill="rgb(237,141,10)" fg:x="1366746" fg:w="687"/><text x="59.1027%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (847 samples, 0.04%)</title><rect x="58.8459%" y="389" width="0.0365%" height="15" fill="rgb(234,156,12)" fg:x="1366588" fg:w="847"/><text x="59.0959%" y="399.50"></text></g><g><title>wake_up_q (703 samples, 0.03%)</title><rect x="58.8521%" y="373" width="0.0303%" height="15" fill="rgb(243,224,36)" fg:x="1366732" fg:w="703"/><text x="59.1021%" y="383.50"></text></g><g><title>btrfs_tree_unlock (919 samples, 0.04%)</title><rect x="58.8429%" y="421" width="0.0396%" height="15" fill="rgb(205,229,51)" fg:x="1366517" fg:w="919"/><text x="59.0929%" y="431.50"></text></g><g><title>up_write (849 samples, 0.04%)</title><rect x="58.8459%" y="405" width="0.0366%" height="15" fill="rgb(223,189,4)" fg:x="1366587" fg:w="849"/><text x="59.0959%" y="415.50"></text></g><g><title>_raw_spin_lock (546 samples, 0.02%)</title><rect x="58.8863%" y="405" width="0.0235%" height="15" fill="rgb(249,167,54)" fg:x="1367525" fg:w="546"/><text x="59.1363%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,466 samples, 0.06%)</title><rect x="58.9098%" y="405" width="0.0631%" height="15" fill="rgb(218,34,28)" fg:x="1368072" fg:w="1466"/><text x="59.1598%" y="415.50"></text></g><g><title>release_extent_buffer (548 samples, 0.02%)</title><rect x="58.9493%" y="389" width="0.0236%" height="15" fill="rgb(232,109,42)" fg:x="1368990" fg:w="548"/><text x="59.1993%" y="399.50"></text></g><g><title>free_extent_buffer (2,052 samples, 0.09%)</title><rect x="58.8863%" y="421" width="0.0884%" height="15" fill="rgb(248,214,46)" fg:x="1367525" fg:w="2052"/><text x="59.1363%" y="431.50"></text></g><g><title>btrfs_release_path (3,846 samples, 0.17%)</title><rect x="58.8235%" y="437" width="0.1656%" height="15" fill="rgb(244,216,40)" fg:x="1366068" fg:w="3846"/><text x="59.0735%" y="447.50"></text></g><g><title>up_write (337 samples, 0.01%)</title><rect x="58.9746%" y="421" width="0.0145%" height="15" fill="rgb(231,226,31)" fg:x="1369577" fg:w="337"/><text x="59.2246%" y="431.50"></text></g><g><title>kmem_cache_free (822 samples, 0.04%)</title><rect x="58.9963%" y="437" width="0.0354%" height="15" fill="rgb(238,38,43)" fg:x="1370081" fg:w="822"/><text x="59.2463%" y="447.50"></text></g><g><title>btrfs_free_path (4,898 samples, 0.21%)</title><rect x="58.8213%" y="453" width="0.2109%" height="15" fill="rgb(208,88,43)" fg:x="1366017" fg:w="4898"/><text x="59.0713%" y="463.50"></text></g><g><title>btrfs_get_32 (292 samples, 0.01%)</title><rect x="59.0322%" y="453" width="0.0126%" height="15" fill="rgb(205,136,37)" fg:x="1370915" fg:w="292"/><text x="59.2822%" y="463.50"></text></g><g><title>btrfs_get_8 (401 samples, 0.02%)</title><rect x="59.0501%" y="453" width="0.0173%" height="15" fill="rgb(237,34,14)" fg:x="1371331" fg:w="401"/><text x="59.3001%" y="463.50"></text></g><g><title>btrfs_get_token_32 (760 samples, 0.03%)</title><rect x="59.0737%" y="453" width="0.0327%" height="15" fill="rgb(236,193,44)" fg:x="1371879" fg:w="760"/><text x="59.3237%" y="463.50"></text></g><g><title>kmem_cache_alloc (832 samples, 0.04%)</title><rect x="59.1485%" y="389" width="0.0358%" height="15" fill="rgb(231,48,10)" fg:x="1373614" fg:w="832"/><text x="59.3985%" y="399.50"></text></g><g><title>alloc_extent_state (1,308 samples, 0.06%)</title><rect x="59.1370%" y="405" width="0.0563%" height="15" fill="rgb(213,141,34)" fg:x="1373348" fg:w="1308"/><text x="59.3870%" y="415.50"></text></g><g><title>kmem_cache_free (861 samples, 0.04%)</title><rect x="59.2003%" y="389" width="0.0371%" height="15" fill="rgb(249,130,34)" fg:x="1374819" fg:w="861"/><text x="59.4503%" y="399.50"></text></g><g><title>free_extent_state (1,034 samples, 0.04%)</title><rect x="59.1935%" y="405" width="0.0445%" height="15" fill="rgb(219,42,41)" fg:x="1374659" fg:w="1034"/><text x="59.4435%" y="415.50"></text></g><g><title>__clear_extent_bit (3,032 samples, 0.13%)</title><rect x="59.1125%" y="421" width="0.1306%" height="15" fill="rgb(224,100,54)" fg:x="1372780" fg:w="3032"/><text x="59.3625%" y="431.50"></text></g><g><title>_raw_spin_lock (426 samples, 0.02%)</title><rect x="59.2431%" y="421" width="0.0183%" height="15" fill="rgb(229,200,27)" fg:x="1375812" fg:w="426"/><text x="59.4931%" y="431.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (3,829 samples, 0.16%)</title><rect x="59.1065%" y="453" width="0.1649%" height="15" fill="rgb(217,118,10)" fg:x="1372639" fg:w="3829"/><text x="59.3565%" y="463.50"></text></g><g><title>clear_extent_bit (3,706 samples, 0.16%)</title><rect x="59.1118%" y="437" width="0.1596%" height="15" fill="rgb(206,22,3)" fg:x="1372762" fg:w="3706"/><text x="59.3618%" y="447.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (735 samples, 0.03%)</title><rect x="59.2713%" y="453" width="0.0316%" height="15" fill="rgb(232,163,46)" fg:x="1376468" fg:w="735"/><text x="59.5213%" y="463.50"></text></g><g><title>__btrfs_kill_delayed_node (335 samples, 0.01%)</title><rect x="59.3040%" y="437" width="0.0144%" height="15" fill="rgb(206,95,13)" fg:x="1377227" fg:w="335"/><text x="59.5540%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (483 samples, 0.02%)</title><rect x="59.3185%" y="437" width="0.0208%" height="15" fill="rgb(253,154,18)" fg:x="1377562" fg:w="483"/><text x="59.5685%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (374 samples, 0.02%)</title><rect x="59.3455%" y="437" width="0.0161%" height="15" fill="rgb(219,32,23)" fg:x="1378190" fg:w="374"/><text x="59.5955%" y="447.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,817 samples, 0.08%)</title><rect x="59.3030%" y="453" width="0.0782%" height="15" fill="rgb(230,191,45)" fg:x="1377203" fg:w="1817"/><text x="59.5530%" y="463.50"></text></g><g><title>mutex_unlock (271 samples, 0.01%)</title><rect x="59.3696%" y="437" width="0.0117%" height="15" fill="rgb(229,64,36)" fg:x="1378749" fg:w="271"/><text x="59.6196%" y="447.50"></text></g><g><title>btrfs_release_path (294 samples, 0.01%)</title><rect x="59.3861%" y="453" width="0.0127%" height="15" fill="rgb(205,129,25)" fg:x="1379134" fg:w="294"/><text x="59.6361%" y="463.50"></text></g><g><title>btrfs_get_64 (254 samples, 0.01%)</title><rect x="59.6123%" y="421" width="0.0109%" height="15" fill="rgb(254,112,7)" fg:x="1384385" fg:w="254"/><text x="59.8623%" y="431.50"></text></g><g><title>balance_level (1,045 samples, 0.04%)</title><rect x="59.5822%" y="437" width="0.0450%" height="15" fill="rgb(226,53,48)" fg:x="1383686" fg:w="1045"/><text x="59.8322%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (5,499 samples, 0.24%)</title><rect x="59.6343%" y="421" width="0.2368%" height="15" fill="rgb(214,153,38)" fg:x="1384898" fg:w="5499"/><text x="59.8843%" y="431.50"></text></g><g><title>btrfs_bin_search (5,671 samples, 0.24%)</title><rect x="59.6272%" y="437" width="0.2442%" height="15" fill="rgb(243,101,7)" fg:x="1384731" fg:w="5671"/><text x="59.8772%" y="447.50"></text></g><g><title>__btrfs_cow_block (243 samples, 0.01%)</title><rect x="59.8763%" y="421" width="0.0105%" height="15" fill="rgb(240,140,22)" fg:x="1390517" fg:w="243"/><text x="60.1263%" y="431.50"></text></g><g><title>btrfs_cow_block (247 samples, 0.01%)</title><rect x="59.8763%" y="437" width="0.0106%" height="15" fill="rgb(235,114,2)" fg:x="1390516" fg:w="247"/><text x="60.1263%" y="447.50"></text></g><g><title>_raw_spin_lock_irq (738 samples, 0.03%)</title><rect x="59.9605%" y="373" width="0.0318%" height="15" fill="rgb(242,59,12)" fg:x="1392473" fg:w="738"/><text x="60.2105%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (250 samples, 0.01%)</title><rect x="59.9815%" y="357" width="0.0108%" height="15" fill="rgb(252,134,9)" fg:x="1392961" fg:w="250"/><text x="60.2315%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (250 samples, 0.01%)</title><rect x="59.9815%" y="341" width="0.0108%" height="15" fill="rgb(236,4,44)" fg:x="1392961" fg:w="250"/><text x="60.2315%" y="351.50"></text></g><g><title>osq_lock (32,219 samples, 1.39%)</title><rect x="61.1231%" y="357" width="1.3874%" height="15" fill="rgb(254,172,41)" fg:x="1419471" fg:w="32219"/><text x="61.3731%" y="367.50"></text></g><g><title>osq_unlock (429 samples, 0.02%)</title><rect x="62.5104%" y="357" width="0.0185%" height="15" fill="rgb(244,63,20)" fg:x="1451690" fg:w="429"/><text x="62.7604%" y="367.50"></text></g><g><title>rwsem_spin_on_owner (2,811 samples, 0.12%)</title><rect x="62.5291%" y="357" width="0.1210%" height="15" fill="rgb(250,73,31)" fg:x="1452124" fg:w="2811"/><text x="62.7791%" y="367.50"></text></g><g><title>sched_clock (467 samples, 0.02%)</title><rect x="62.6502%" y="357" width="0.0201%" height="15" fill="rgb(241,38,36)" fg:x="1454935" fg:w="467"/><text x="62.9002%" y="367.50"></text></g><g><title>native_sched_clock (458 samples, 0.02%)</title><rect x="62.6506%" y="341" width="0.0197%" height="15" fill="rgb(245,211,2)" fg:x="1454944" fg:w="458"/><text x="62.9006%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (61,975 samples, 2.67%)</title><rect x="60.0017%" y="373" width="2.6687%" height="15" fill="rgb(206,120,28)" fg:x="1393428" fg:w="61975"/><text x="60.2517%" y="383.50">rw..</text></g><g><title>rwsem_spin_on_owner (300 samples, 0.01%)</title><rect x="62.6703%" y="373" width="0.0129%" height="15" fill="rgb(211,59,34)" fg:x="1455403" fg:w="300"/><text x="62.9203%" y="383.50"></text></g><g><title>update_cfs_group (294 samples, 0.01%)</title><rect x="62.7691%" y="293" width="0.0127%" height="15" fill="rgb(233,168,5)" fg:x="1457697" fg:w="294"/><text x="63.0191%" y="303.50"></text></g><g><title>cpuacct_charge (234 samples, 0.01%)</title><rect x="62.8158%" y="277" width="0.0101%" height="15" fill="rgb(234,33,13)" fg:x="1458781" fg:w="234"/><text x="63.0658%" y="287.50"></text></g><g><title>update_curr (1,076 samples, 0.05%)</title><rect x="62.7818%" y="293" width="0.0463%" height="15" fill="rgb(231,150,26)" fg:x="1457991" fg:w="1076"/><text x="63.0318%" y="303.50"></text></g><g><title>update_load_avg (881 samples, 0.04%)</title><rect x="62.8281%" y="293" width="0.0379%" height="15" fill="rgb(217,191,4)" fg:x="1459067" fg:w="881"/><text x="63.0781%" y="303.50"></text></g><g><title>dequeue_entity (2,958 samples, 0.13%)</title><rect x="62.7422%" y="309" width="0.1274%" height="15" fill="rgb(246,198,38)" fg:x="1457073" fg:w="2958"/><text x="62.9922%" y="319.50"></text></g><g><title>update_cfs_group (309 samples, 0.01%)</title><rect x="62.8697%" y="309" width="0.0133%" height="15" fill="rgb(245,64,37)" fg:x="1460032" fg:w="309"/><text x="63.1197%" y="319.50"></text></g><g><title>dequeue_task_fair (3,860 samples, 0.17%)</title><rect x="62.7248%" y="325" width="0.1662%" height="15" fill="rgb(250,30,36)" fg:x="1456668" fg:w="3860"/><text x="62.9748%" y="335.50"></text></g><g><title>dequeue_task (4,054 samples, 0.17%)</title><rect x="62.7212%" y="341" width="0.1746%" height="15" fill="rgb(217,86,53)" fg:x="1456585" fg:w="4054"/><text x="62.9712%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (985 samples, 0.04%)</title><rect x="62.9201%" y="325" width="0.0424%" height="15" fill="rgb(228,157,16)" fg:x="1461204" fg:w="985"/><text x="63.1701%" y="335.50"></text></g><g><title>x86_pmu_enable (880 samples, 0.04%)</title><rect x="62.9246%" y="309" width="0.0379%" height="15" fill="rgb(217,59,31)" fg:x="1461309" fg:w="880"/><text x="63.1746%" y="319.50"></text></g><g><title>intel_pmu_enable_all (849 samples, 0.04%)</title><rect x="62.9260%" y="293" width="0.0366%" height="15" fill="rgb(237,138,41)" fg:x="1461340" fg:w="849"/><text x="63.1760%" y="303.50"></text></g><g><title>native_write_msr (798 samples, 0.03%)</title><rect x="62.9282%" y="277" width="0.0344%" height="15" fill="rgb(227,91,49)" fg:x="1461391" fg:w="798"/><text x="63.1782%" y="287.50"></text></g><g><title>finish_task_switch.isra.0 (1,660 samples, 0.07%)</title><rect x="62.8963%" y="341" width="0.0715%" height="15" fill="rgb(247,21,44)" fg:x="1460651" fg:w="1660"/><text x="63.1463%" y="351.50"></text></g><g><title>newidle_balance (312 samples, 0.01%)</title><rect x="62.9918%" y="309" width="0.0134%" height="15" fill="rgb(219,210,51)" fg:x="1462868" fg:w="312"/><text x="63.2418%" y="319.50"></text></g><g><title>pick_next_task_fair (876 samples, 0.04%)</title><rect x="62.9790%" y="325" width="0.0377%" height="15" fill="rgb(209,140,6)" fg:x="1462571" fg:w="876"/><text x="63.2290%" y="335.50"></text></g><g><title>__update_idle_core (407 samples, 0.02%)</title><rect x="63.0212%" y="293" width="0.0175%" height="15" fill="rgb(221,188,24)" fg:x="1463551" fg:w="407"/><text x="63.2712%" y="303.50"></text></g><g><title>pick_next_task_idle (566 samples, 0.02%)</title><rect x="63.0167%" y="325" width="0.0244%" height="15" fill="rgb(232,154,20)" fg:x="1463447" fg:w="566"/><text x="63.2667%" y="335.50"></text></g><g><title>set_next_task_idle (495 samples, 0.02%)</title><rect x="63.0198%" y="309" width="0.0213%" height="15" fill="rgb(244,137,50)" fg:x="1463518" fg:w="495"/><text x="63.2698%" y="319.50"></text></g><g><title>pick_next_task (1,869 samples, 0.08%)</title><rect x="62.9718%" y="341" width="0.0805%" height="15" fill="rgb(225,185,43)" fg:x="1462404" fg:w="1869"/><text x="63.2218%" y="351.50"></text></g><g><title>perf_event_context_sched_out (431 samples, 0.02%)</title><rect x="63.0710%" y="309" width="0.0186%" height="15" fill="rgb(213,205,38)" fg:x="1464707" fg:w="431"/><text x="63.3210%" y="319.50"></text></g><g><title>__perf_event_task_sched_out (739 samples, 0.03%)</title><rect x="63.0632%" y="325" width="0.0318%" height="15" fill="rgb(236,73,12)" fg:x="1464527" fg:w="739"/><text x="63.3132%" y="335.50"></text></g><g><title>prepare_task_switch (932 samples, 0.04%)</title><rect x="63.0552%" y="341" width="0.0401%" height="15" fill="rgb(235,219,13)" fg:x="1464341" fg:w="932"/><text x="63.3052%" y="351.50"></text></g><g><title>iterate_groups (264 samples, 0.01%)</title><rect x="63.1110%" y="325" width="0.0114%" height="15" fill="rgb(218,59,36)" fg:x="1465637" fg:w="264"/><text x="63.3610%" y="335.50"></text></g><g><title>psi_group_change (2,001 samples, 0.09%)</title><rect x="63.1248%" y="325" width="0.0862%" height="15" fill="rgb(205,110,39)" fg:x="1465958" fg:w="2001"/><text x="63.3748%" y="335.50"></text></g><g><title>psi_task_switch (2,759 samples, 0.12%)</title><rect x="63.0980%" y="341" width="0.1188%" height="15" fill="rgb(218,206,42)" fg:x="1465334" fg:w="2759"/><text x="63.3480%" y="351.50"></text></g><g><title>__schedule (12,635 samples, 0.54%)</title><rect x="62.6921%" y="357" width="0.5441%" height="15" fill="rgb(248,125,24)" fg:x="1455909" fg:w="12635"/><text x="62.9421%" y="367.50"></text></g><g><title>update_rq_clock (241 samples, 0.01%)</title><rect x="63.2258%" y="341" width="0.0104%" height="15" fill="rgb(242,28,27)" fg:x="1468303" fg:w="241"/><text x="63.4758%" y="351.50"></text></g><g><title>schedule (12,850 samples, 0.55%)</title><rect x="62.6875%" y="373" width="0.5533%" height="15" fill="rgb(216,228,15)" fg:x="1455802" fg:w="12850"/><text x="62.9375%" y="383.50"></text></g><g><title>rwsem_down_write_slowpath (76,987 samples, 3.32%)</title><rect x="59.9260%" y="389" width="3.3151%" height="15" fill="rgb(235,116,46)" fg:x="1391671" fg:w="76987"/><text x="60.1760%" y="399.50">rws..</text></g><g><title>down_write (77,493 samples, 3.34%)</title><rect x="59.9074%" y="405" width="3.3369%" height="15" fill="rgb(224,18,32)" fg:x="1391238" fg:w="77493"/><text x="60.1574%" y="415.50">dow..</text></g><g><title>__btrfs_tree_lock (77,713 samples, 3.35%)</title><rect x="59.8994%" y="421" width="3.3464%" height="15" fill="rgb(252,5,12)" fg:x="1391054" fg:w="77713"/><text x="60.1494%" y="431.50">__b..</text></g><g><title>btrfs_root_node (295 samples, 0.01%)</title><rect x="63.2458%" y="421" width="0.0127%" height="15" fill="rgb(251,36,5)" fg:x="1468767" fg:w="295"/><text x="63.4958%" y="431.50"></text></g><g><title>btrfs_lock_root_node (78,182 samples, 3.37%)</title><rect x="59.8936%" y="437" width="3.3666%" height="15" fill="rgb(217,53,14)" fg:x="1390918" fg:w="78182"/><text x="60.1436%" y="447.50">btr..</text></g><g><title>_raw_spin_lock_irq (642 samples, 0.03%)</title><rect x="63.3517%" y="373" width="0.0276%" height="15" fill="rgb(215,86,45)" fg:x="1471226" fg:w="642"/><text x="63.6017%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (326 samples, 0.01%)</title><rect x="63.3653%" y="357" width="0.0140%" height="15" fill="rgb(242,169,11)" fg:x="1471542" fg:w="326"/><text x="63.6153%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (326 samples, 0.01%)</title><rect x="63.3653%" y="341" width="0.0140%" height="15" fill="rgb(211,213,45)" fg:x="1471542" fg:w="326"/><text x="63.6153%" y="351.50"></text></g><g><title>update_cfs_group (276 samples, 0.01%)</title><rect x="63.4561%" y="293" width="0.0119%" height="15" fill="rgb(205,88,11)" fg:x="1473652" fg:w="276"/><text x="63.7061%" y="303.50"></text></g><g><title>update_curr (954 samples, 0.04%)</title><rect x="63.4680%" y="293" width="0.0411%" height="15" fill="rgb(252,69,26)" fg:x="1473928" fg:w="954"/><text x="63.7180%" y="303.50"></text></g><g><title>update_load_avg (769 samples, 0.03%)</title><rect x="63.5091%" y="293" width="0.0331%" height="15" fill="rgb(246,123,37)" fg:x="1474882" fg:w="769"/><text x="63.7591%" y="303.50"></text></g><g><title>dequeue_entity (2,601 samples, 0.11%)</title><rect x="63.4338%" y="309" width="0.1120%" height="15" fill="rgb(212,205,5)" fg:x="1473133" fg:w="2601"/><text x="63.6838%" y="319.50"></text></g><g><title>dequeue_task_fair (3,234 samples, 0.14%)</title><rect x="63.4194%" y="325" width="0.1393%" height="15" fill="rgb(253,148,0)" fg:x="1472800" fg:w="3234"/><text x="63.6694%" y="335.50"></text></g><g><title>dequeue_task (3,399 samples, 0.15%)</title><rect x="63.4153%" y="341" width="0.1464%" height="15" fill="rgb(239,22,4)" fg:x="1472703" fg:w="3399"/><text x="63.6653%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (825 samples, 0.04%)</title><rect x="63.5792%" y="325" width="0.0355%" height="15" fill="rgb(226,26,53)" fg:x="1476510" fg:w="825"/><text x="63.8292%" y="335.50"></text></g><g><title>x86_pmu_enable (701 samples, 0.03%)</title><rect x="63.5845%" y="309" width="0.0302%" height="15" fill="rgb(225,229,45)" fg:x="1476634" fg:w="701"/><text x="63.8345%" y="319.50"></text></g><g><title>intel_pmu_enable_all (676 samples, 0.03%)</title><rect x="63.5856%" y="293" width="0.0291%" height="15" fill="rgb(220,60,37)" fg:x="1476659" fg:w="676"/><text x="63.8356%" y="303.50"></text></g><g><title>native_write_msr (644 samples, 0.03%)</title><rect x="63.5870%" y="277" width="0.0277%" height="15" fill="rgb(217,180,35)" fg:x="1476691" fg:w="644"/><text x="63.8370%" y="287.50"></text></g><g><title>asm_sysvec_call_function_single (242 samples, 0.01%)</title><rect x="63.6185%" y="325" width="0.0104%" height="15" fill="rgb(229,7,53)" fg:x="1477422" fg:w="242"/><text x="63.8685%" y="335.50"></text></g><g><title>sysvec_call_function_single (239 samples, 0.01%)</title><rect x="63.6186%" y="309" width="0.0103%" height="15" fill="rgb(254,137,3)" fg:x="1477425" fg:w="239"/><text x="63.8686%" y="319.50"></text></g><g><title>finish_task_switch.isra.0 (1,557 samples, 0.07%)</title><rect x="63.5619%" y="341" width="0.0670%" height="15" fill="rgb(215,140,41)" fg:x="1476108" fg:w="1557"/><text x="63.8119%" y="351.50"></text></g><g><title>newidle_balance (324 samples, 0.01%)</title><rect x="63.6476%" y="309" width="0.0140%" height="15" fill="rgb(250,80,15)" fg:x="1478099" fg:w="324"/><text x="63.8976%" y="319.50"></text></g><g><title>pick_next_task_fair (665 samples, 0.03%)</title><rect x="63.6379%" y="325" width="0.0286%" height="15" fill="rgb(252,191,6)" fg:x="1477872" fg:w="665"/><text x="63.8879%" y="335.50"></text></g><g><title>__update_idle_core (365 samples, 0.02%)</title><rect x="63.6723%" y="293" width="0.0157%" height="15" fill="rgb(246,217,18)" fg:x="1478671" fg:w="365"/><text x="63.9223%" y="303.50"></text></g><g><title>pick_next_task_idle (541 samples, 0.02%)</title><rect x="63.6665%" y="325" width="0.0233%" height="15" fill="rgb(223,93,7)" fg:x="1478537" fg:w="541"/><text x="63.9165%" y="335.50"></text></g><g><title>set_next_task_idle (438 samples, 0.02%)</title><rect x="63.6709%" y="309" width="0.0189%" height="15" fill="rgb(225,55,52)" fg:x="1478640" fg:w="438"/><text x="63.9209%" y="319.50"></text></g><g><title>pick_next_task (1,570 samples, 0.07%)</title><rect x="63.6316%" y="341" width="0.0676%" height="15" fill="rgb(240,31,24)" fg:x="1477727" fg:w="1570"/><text x="63.8816%" y="351.50"></text></g><g><title>perf_event_context_sched_out (342 samples, 0.01%)</title><rect x="63.7133%" y="309" width="0.0147%" height="15" fill="rgb(205,56,52)" fg:x="1479623" fg:w="342"/><text x="63.9633%" y="319.50"></text></g><g><title>__perf_event_task_sched_out (647 samples, 0.03%)</title><rect x="63.7060%" y="325" width="0.0279%" height="15" fill="rgb(246,146,12)" fg:x="1479454" fg:w="647"/><text x="63.9560%" y="335.50"></text></g><g><title>prepare_task_switch (742 samples, 0.03%)</title><rect x="63.7023%" y="341" width="0.0320%" height="15" fill="rgb(239,84,36)" fg:x="1479368" fg:w="742"/><text x="63.9523%" y="351.50"></text></g><g><title>psi_group_change (1,616 samples, 0.07%)</title><rect x="63.7572%" y="325" width="0.0696%" height="15" fill="rgb(207,41,40)" fg:x="1480644" fg:w="1616"/><text x="64.0072%" y="335.50"></text></g><g><title>psi_task_switch (2,182 samples, 0.09%)</title><rect x="63.7380%" y="341" width="0.0940%" height="15" fill="rgb(241,179,25)" fg:x="1480197" fg:w="2182"/><text x="63.9880%" y="351.50"></text></g><g><title>__schedule (10,701 samples, 0.46%)</title><rect x="63.3895%" y="357" width="0.4608%" height="15" fill="rgb(210,0,34)" fg:x="1472104" fg:w="10701"/><text x="63.6395%" y="367.50"></text></g><g><title>update_rq_clock (252 samples, 0.01%)</title><rect x="63.8394%" y="341" width="0.0109%" height="15" fill="rgb(225,217,29)" fg:x="1482553" fg:w="252"/><text x="64.0894%" y="351.50"></text></g><g><title>schedule (10,849 samples, 0.47%)</title><rect x="63.3865%" y="373" width="0.4672%" height="15" fill="rgb(216,191,38)" fg:x="1472035" fg:w="10849"/><text x="63.6365%" y="383.50"></text></g><g><title>rwsem_down_read_slowpath (12,896 samples, 0.56%)</title><rect x="63.3100%" y="389" width="0.5553%" height="15" fill="rgb(232,140,52)" fg:x="1470258" fg:w="12896"/><text x="63.5600%" y="399.50"></text></g><g><title>wake_up_q (258 samples, 0.01%)</title><rect x="63.8542%" y="373" width="0.0111%" height="15" fill="rgb(223,158,51)" fg:x="1482896" fg:w="258"/><text x="64.1042%" y="383.50"></text></g><g><title>down_read (13,711 samples, 0.59%)</title><rect x="63.2761%" y="405" width="0.5904%" height="15" fill="rgb(235,29,51)" fg:x="1469472" fg:w="13711"/><text x="63.5261%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (13,922 samples, 0.60%)</title><rect x="63.2694%" y="421" width="0.5995%" height="15" fill="rgb(215,181,18)" fg:x="1469315" fg:w="13922"/><text x="63.5194%" y="431.50"></text></g><g><title>btrfs_root_node (1,068 samples, 0.05%)</title><rect x="63.8689%" y="421" width="0.0460%" height="15" fill="rgb(227,125,34)" fg:x="1483238" fg:w="1068"/><text x="64.1189%" y="431.50"></text></g><g><title>btrfs_read_lock_root_node (15,211 samples, 0.65%)</title><rect x="63.2623%" y="437" width="0.6550%" height="15" fill="rgb(230,197,49)" fg:x="1469151" fg:w="15211"/><text x="63.5123%" y="447.50"></text></g><g><title>wake_q_add (241 samples, 0.01%)</title><rect x="63.9506%" y="373" width="0.0104%" height="15" fill="rgb(239,141,16)" fg:x="1485136" fg:w="241"/><text x="64.2006%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (701 samples, 0.03%)</title><rect x="63.9774%" y="341" width="0.0302%" height="15" fill="rgb(225,105,43)" fg:x="1485757" fg:w="701"/><text x="64.2274%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (572 samples, 0.02%)</title><rect x="63.9829%" y="325" width="0.0246%" height="15" fill="rgb(214,131,14)" fg:x="1485886" fg:w="572"/><text x="64.2329%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (572 samples, 0.02%)</title><rect x="63.9829%" y="309" width="0.0246%" height="15" fill="rgb(229,177,11)" fg:x="1485886" fg:w="572"/><text x="64.2329%" y="319.50"></text></g><g><title>try_to_wake_up (1,412 samples, 0.06%)</title><rect x="63.9668%" y="357" width="0.0608%" height="15" fill="rgb(231,180,14)" fg:x="1485512" fg:w="1412"/><text x="64.2168%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (2,077 samples, 0.09%)</title><rect x="63.9384%" y="389" width="0.0894%" height="15" fill="rgb(232,88,2)" fg:x="1484852" fg:w="2077"/><text x="64.1884%" y="399.50"></text></g><g><title>wake_up_q (1,552 samples, 0.07%)</title><rect x="63.9610%" y="373" width="0.0668%" height="15" fill="rgb(205,220,8)" fg:x="1485377" fg:w="1552"/><text x="64.2110%" y="383.50"></text></g><g><title>btrfs_tree_read_unlock (2,175 samples, 0.09%)</title><rect x="63.9342%" y="421" width="0.0937%" height="15" fill="rgb(225,23,53)" fg:x="1484755" fg:w="2175"/><text x="64.1842%" y="431.50"></text></g><g><title>up_read (2,105 samples, 0.09%)</title><rect x="63.9373%" y="405" width="0.0906%" height="15" fill="rgb(213,62,29)" fg:x="1484825" fg:w="2105"/><text x="64.1873%" y="415.50"></text></g><g><title>free_extent_buffer (296 samples, 0.01%)</title><rect x="64.0294%" y="421" width="0.0127%" height="15" fill="rgb(227,75,7)" fg:x="1486965" fg:w="296"/><text x="64.2794%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (295 samples, 0.01%)</title><rect x="64.0294%" y="405" width="0.0127%" height="15" fill="rgb(207,105,14)" fg:x="1486966" fg:w="295"/><text x="64.2794%" y="415.50"></text></g><g><title>btrfs_release_path (3,146 samples, 0.14%)</title><rect x="63.9221%" y="437" width="0.1355%" height="15" fill="rgb(245,62,29)" fg:x="1484473" fg:w="3146"/><text x="64.1721%" y="447.50"></text></g><g><title>up_read (358 samples, 0.02%)</title><rect x="64.0421%" y="421" width="0.0154%" height="15" fill="rgb(236,202,4)" fg:x="1487261" fg:w="358"/><text x="64.2921%" y="431.50"></text></g><g><title>__cond_resched (240 samples, 0.01%)</title><rect x="64.0975%" y="389" width="0.0103%" height="15" fill="rgb(250,67,1)" fg:x="1488547" fg:w="240"/><text x="64.3475%" y="399.50"></text></g><g><title>rwsem_spin_on_owner (4,526 samples, 0.19%)</title><rect x="64.2418%" y="357" width="0.1949%" height="15" fill="rgb(253,115,44)" fg:x="1491897" fg:w="4526"/><text x="64.4918%" y="367.50"></text></g><g><title>rwsem_optimistic_spin (7,447 samples, 0.32%)</title><rect x="64.1180%" y="373" width="0.3207%" height="15" fill="rgb(251,139,18)" fg:x="1489022" fg:w="7447"/><text x="64.3680%" y="383.50"></text></g><g><title>__schedule (244 samples, 0.01%)</title><rect x="64.4408%" y="357" width="0.0105%" height="15" fill="rgb(218,22,32)" fg:x="1496519" fg:w="244"/><text x="64.6908%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (7,881 samples, 0.34%)</title><rect x="64.1121%" y="389" width="0.3394%" height="15" fill="rgb(243,53,5)" fg:x="1488885" fg:w="7881"/><text x="64.3621%" y="399.50"></text></g><g><title>schedule (247 samples, 0.01%)</title><rect x="64.4408%" y="373" width="0.0106%" height="15" fill="rgb(227,56,16)" fg:x="1496519" fg:w="247"/><text x="64.6908%" y="383.50"></text></g><g><title>down_write (8,787 samples, 0.38%)</title><rect x="64.0735%" y="405" width="0.3784%" height="15" fill="rgb(245,53,0)" fg:x="1487988" fg:w="8787"/><text x="64.3235%" y="415.50"></text></g><g><title>__btrfs_tree_lock (9,016 samples, 0.39%)</title><rect x="64.0648%" y="421" width="0.3882%" height="15" fill="rgb(216,170,35)" fg:x="1487786" fg:w="9016"/><text x="64.3148%" y="431.50"></text></g><g><title>btrfs_tree_lock (9,093 samples, 0.39%)</title><rect x="64.0646%" y="437" width="0.3915%" height="15" fill="rgb(211,200,8)" fg:x="1487782" fg:w="9093"/><text x="64.3146%" y="447.50"></text></g><g><title>try_to_wake_up (403 samples, 0.02%)</title><rect x="64.4804%" y="373" width="0.0174%" height="15" fill="rgb(228,204,44)" fg:x="1497438" fg:w="403"/><text x="64.7304%" y="383.50"></text></g><g><title>rwsem_wake.isra.0 (837 samples, 0.04%)</title><rect x="64.4618%" y="405" width="0.0360%" height="15" fill="rgb(214,121,17)" fg:x="1497007" fg:w="837"/><text x="64.7118%" y="415.50"></text></g><g><title>wake_up_q (495 samples, 0.02%)</title><rect x="64.4765%" y="389" width="0.0213%" height="15" fill="rgb(233,64,38)" fg:x="1497349" fg:w="495"/><text x="64.7265%" y="399.50"></text></g><g><title>btrfs_tree_read_unlock (970 samples, 0.04%)</title><rect x="64.4561%" y="437" width="0.0418%" height="15" fill="rgb(253,54,19)" fg:x="1496875" fg:w="970"/><text x="64.7061%" y="447.50"></text></g><g><title>up_read (855 samples, 0.04%)</title><rect x="64.4611%" y="421" width="0.0368%" height="15" fill="rgb(253,94,18)" fg:x="1496990" fg:w="855"/><text x="64.7111%" y="431.50"></text></g><g><title>free_extent_buffer (264 samples, 0.01%)</title><rect x="64.5085%" y="437" width="0.0114%" height="15" fill="rgb(227,57,52)" fg:x="1498092" fg:w="264"/><text x="64.7585%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (263 samples, 0.01%)</title><rect x="64.5086%" y="421" width="0.0113%" height="15" fill="rgb(230,228,50)" fg:x="1498093" fg:w="263"/><text x="64.7586%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (757 samples, 0.03%)</title><rect x="64.5574%" y="421" width="0.0326%" height="15" fill="rgb(217,205,27)" fg:x="1499227" fg:w="757"/><text x="64.8074%" y="431.50"></text></g><g><title>verify_parent_transid (637 samples, 0.03%)</title><rect x="64.5626%" y="405" width="0.0274%" height="15" fill="rgb(252,71,50)" fg:x="1499347" fg:w="637"/><text x="64.8126%" y="415.50"></text></g><g><title>btrfs_get_64 (760 samples, 0.03%)</title><rect x="64.5900%" y="421" width="0.0327%" height="15" fill="rgb(209,86,4)" fg:x="1499985" fg:w="760"/><text x="64.8400%" y="431.50"></text></g><g><title>btrfs_node_key (1,149 samples, 0.05%)</title><rect x="64.6228%" y="421" width="0.0495%" height="15" fill="rgb(229,94,0)" fg:x="1500745" fg:w="1149"/><text x="64.8728%" y="431.50"></text></g><g><title>read_extent_buffer (1,117 samples, 0.05%)</title><rect x="64.6242%" y="405" width="0.0481%" height="15" fill="rgb(252,223,21)" fg:x="1500777" fg:w="1117"/><text x="64.8742%" y="415.50"></text></g><g><title>btrfs_verify_level_key (279 samples, 0.01%)</title><rect x="64.6722%" y="421" width="0.0120%" height="15" fill="rgb(230,210,4)" fg:x="1501894" fg:w="279"/><text x="64.9222%" y="431.50"></text></g><g><title>__radix_tree_lookup (3,213 samples, 0.14%)</title><rect x="64.8000%" y="373" width="0.1384%" height="15" fill="rgb(240,149,38)" fg:x="1504860" fg:w="3213"/><text x="65.0500%" y="383.50"></text></g><g><title>radix_tree_lookup (3,219 samples, 0.14%)</title><rect x="64.7998%" y="389" width="0.1386%" height="15" fill="rgb(254,105,20)" fg:x="1504855" fg:w="3219"/><text x="65.0498%" y="399.50"></text></g><g><title>find_extent_buffer_nolock (5,285 samples, 0.23%)</title><rect x="64.7112%" y="405" width="0.2276%" height="15" fill="rgb(253,87,46)" fg:x="1502798" fg:w="5285"/><text x="64.9612%" y="415.50"></text></g><g><title>mark_page_accessed (1,382 samples, 0.06%)</title><rect x="64.9388%" y="405" width="0.0595%" height="15" fill="rgb(253,116,33)" fg:x="1508083" fg:w="1382"/><text x="65.1888%" y="415.50"></text></g><g><title>find_extent_buffer (7,255 samples, 0.31%)</title><rect x="64.6909%" y="421" width="0.3124%" height="15" fill="rgb(229,198,5)" fg:x="1502328" fg:w="7255"/><text x="64.9409%" y="431.50"></text></g><g><title>read_block_for_search (11,445 samples, 0.49%)</title><rect x="64.5274%" y="437" width="0.4928%" height="15" fill="rgb(242,38,37)" fg:x="1498529" fg:w="11445"/><text x="64.7774%" y="447.50"></text></g><g><title>btrfs_get_64 (374 samples, 0.02%)</title><rect x="65.0613%" y="405" width="0.0161%" height="15" fill="rgb(242,69,53)" fg:x="1510928" fg:w="374"/><text x="65.3113%" y="415.50"></text></g><g><title>_raw_spin_lock (239 samples, 0.01%)</title><rect x="65.0801%" y="389" width="0.0103%" height="15" fill="rgb(249,80,16)" fg:x="1511365" fg:w="239"/><text x="65.3301%" y="399.50"></text></g><g><title>btrfs_buffer_uptodate (388 samples, 0.02%)</title><rect x="65.0939%" y="389" width="0.0167%" height="15" fill="rgb(206,128,11)" fg:x="1511687" fg:w="388"/><text x="65.3439%" y="399.50"></text></g><g><title>verify_parent_transid (342 samples, 0.01%)</title><rect x="65.0959%" y="373" width="0.0147%" height="15" fill="rgb(212,35,20)" fg:x="1511733" fg:w="342"/><text x="65.3459%" y="383.50"></text></g><g><title>__radix_tree_lookup (1,351 samples, 0.06%)</title><rect x="65.1931%" y="309" width="0.0582%" height="15" fill="rgb(236,79,13)" fg:x="1513989" fg:w="1351"/><text x="65.4431%" y="319.50"></text></g><g><title>radix_tree_lookup (1,358 samples, 0.06%)</title><rect x="65.1928%" y="325" width="0.0585%" height="15" fill="rgb(233,123,3)" fg:x="1513983" fg:w="1358"/><text x="65.4428%" y="335.50"></text></g><g><title>find_extent_buffer_nolock (2,613 samples, 0.11%)</title><rect x="65.1390%" y="341" width="0.1125%" height="15" fill="rgb(214,93,52)" fg:x="1512734" fg:w="2613"/><text x="65.3890%" y="351.50"></text></g><g><title>mark_page_accessed (731 samples, 0.03%)</title><rect x="65.2515%" y="341" width="0.0315%" height="15" fill="rgb(251,37,40)" fg:x="1515347" fg:w="731"/><text x="65.5015%" y="351.50"></text></g><g><title>find_extent_buffer (3,669 samples, 0.16%)</title><rect x="65.1257%" y="357" width="0.1580%" height="15" fill="rgb(227,80,54)" fg:x="1512425" fg:w="3669"/><text x="65.3757%" y="367.50"></text></g><g><title>alloc_extent_buffer (4,070 samples, 0.18%)</title><rect x="65.1109%" y="373" width="0.1753%" height="15" fill="rgb(254,48,11)" fg:x="1512082" fg:w="4070"/><text x="65.3609%" y="383.50"></text></g><g><title>btrfs_find_create_tree_block (4,094 samples, 0.18%)</title><rect x="65.1106%" y="389" width="0.1763%" height="15" fill="rgb(235,193,26)" fg:x="1512075" fg:w="4094"/><text x="65.3606%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (337 samples, 0.01%)</title><rect x="65.2869%" y="389" width="0.0145%" height="15" fill="rgb(229,99,21)" fg:x="1516169" fg:w="337"/><text x="65.5369%" y="399.50"></text></g><g><title>release_extent_buffer (290 samples, 0.01%)</title><rect x="65.2890%" y="373" width="0.0125%" height="15" fill="rgb(211,140,41)" fg:x="1516216" fg:w="290"/><text x="65.5390%" y="383.50"></text></g><g><title>btrfs_readahead_tree_block (5,255 samples, 0.23%)</title><rect x="65.0774%" y="405" width="0.2263%" height="15" fill="rgb(240,227,30)" fg:x="1511302" fg:w="5255"/><text x="65.3274%" y="415.50"></text></g><g><title>btrfs_readahead_node_child (6,244 samples, 0.27%)</title><rect x="65.0384%" y="421" width="0.2689%" height="15" fill="rgb(215,224,45)" fg:x="1510397" fg:w="6244"/><text x="65.2884%" y="431.50"></text></g><g><title>reada_for_balance (6,767 samples, 0.29%)</title><rect x="65.0202%" y="437" width="0.2914%" height="15" fill="rgb(206,123,31)" fg:x="1509974" fg:w="6767"/><text x="65.2702%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (340 samples, 0.01%)</title><rect x="65.3788%" y="373" width="0.0146%" height="15" fill="rgb(210,138,16)" fg:x="1518303" fg:w="340"/><text x="65.6288%" y="383.50"></text></g><g><title>rwsem_mark_wake (1,636 samples, 0.07%)</title><rect x="65.3938%" y="373" width="0.0704%" height="15" fill="rgb(228,57,28)" fg:x="1518651" fg:w="1636"/><text x="65.6438%" y="383.50"></text></g><g><title>wake_q_add (375 samples, 0.02%)</title><rect x="65.4656%" y="373" width="0.0161%" height="15" fill="rgb(242,170,10)" fg:x="1520317" fg:w="375"/><text x="65.7156%" y="383.50"></text></g><g><title>wake_q_add_safe (321 samples, 0.01%)</title><rect x="65.4817%" y="373" width="0.0138%" height="15" fill="rgb(228,214,39)" fg:x="1520692" fg:w="321"/><text x="65.7317%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (637 samples, 0.03%)</title><rect x="65.6312%" y="341" width="0.0274%" height="15" fill="rgb(218,179,33)" fg:x="1524163" fg:w="637"/><text x="65.8812%" y="351.50"></text></g><g><title>is_cpu_allowed (252 samples, 0.01%)</title><rect x="65.6594%" y="341" width="0.0109%" height="15" fill="rgb(235,193,39)" fg:x="1524819" fg:w="252"/><text x="65.9094%" y="351.50"></text></g><g><title>_raw_spin_lock (1,597 samples, 0.07%)</title><rect x="65.6760%" y="325" width="0.0688%" height="15" fill="rgb(219,221,36)" fg:x="1525205" fg:w="1597"/><text x="65.9260%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,589 samples, 0.07%)</title><rect x="65.6764%" y="309" width="0.0684%" height="15" fill="rgb(248,218,19)" fg:x="1525213" fg:w="1589"/><text x="65.9264%" y="319.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (1,589 samples, 0.07%)</title><rect x="65.6764%" y="293" width="0.0684%" height="15" fill="rgb(205,50,9)" fg:x="1525213" fg:w="1589"/><text x="65.9264%" y="303.50"></text></g><g><title>raw_spin_rq_lock_nested (1,621 samples, 0.07%)</title><rect x="65.6755%" y="341" width="0.0698%" height="15" fill="rgb(238,81,28)" fg:x="1525193" fg:w="1621"/><text x="65.9255%" y="351.50"></text></g><g><title>available_idle_cpu (632 samples, 0.03%)</title><rect x="65.8409%" y="309" width="0.0272%" height="15" fill="rgb(235,110,19)" fg:x="1529033" fg:w="632"/><text x="66.0909%" y="319.50"></text></g><g><title>_find_next_bit (248 samples, 0.01%)</title><rect x="65.9102%" y="293" width="0.0107%" height="15" fill="rgb(214,7,14)" fg:x="1530644" fg:w="248"/><text x="66.1602%" y="303.50"></text></g><g><title>available_idle_cpu (538 samples, 0.02%)</title><rect x="65.9209%" y="293" width="0.0232%" height="15" fill="rgb(211,77,3)" fg:x="1530892" fg:w="538"/><text x="66.1709%" y="303.50"></text></g><g><title>cpumask_next_wrap (271 samples, 0.01%)</title><rect x="65.9452%" y="293" width="0.0117%" height="15" fill="rgb(229,5,9)" fg:x="1531456" fg:w="271"/><text x="66.1952%" y="303.50"></text></g><g><title>_find_next_bit (236 samples, 0.01%)</title><rect x="65.9762%" y="277" width="0.0102%" height="15" fill="rgb(225,90,11)" fg:x="1532175" fg:w="236"/><text x="66.2262%" y="287.50"></text></g><g><title>available_idle_cpu (676 samples, 0.03%)</title><rect x="65.9863%" y="277" width="0.0291%" height="15" fill="rgb(242,56,8)" fg:x="1532411" fg:w="676"/><text x="66.2363%" y="287.50"></text></g><g><title>select_idle_sibling (5,238 samples, 0.23%)</title><rect x="65.7905%" y="325" width="0.2256%" height="15" fill="rgb(249,212,39)" fg:x="1527864" fg:w="5238"/><text x="66.0405%" y="335.50"></text></g><g><title>select_idle_cpu (3,152 samples, 0.14%)</title><rect x="65.8804%" y="309" width="0.1357%" height="15" fill="rgb(236,90,9)" fg:x="1529950" fg:w="3152"/><text x="66.1304%" y="319.50"></text></g><g><title>select_idle_core (1,375 samples, 0.06%)</title><rect x="65.9569%" y="293" width="0.0592%" height="15" fill="rgb(206,88,35)" fg:x="1531727" fg:w="1375"/><text x="66.2069%" y="303.50"></text></g><g><title>task_h_load (520 samples, 0.02%)</title><rect x="66.0161%" y="325" width="0.0224%" height="15" fill="rgb(205,126,30)" fg:x="1533102" fg:w="520"/><text x="66.2661%" y="335.50"></text></g><g><title>available_idle_cpu (668 samples, 0.03%)</title><rect x="66.0498%" y="309" width="0.0288%" height="15" fill="rgb(230,176,12)" fg:x="1533886" fg:w="668"/><text x="66.2998%" y="319.50"></text></g><g><title>select_task_rq_fair (7,767 samples, 0.33%)</title><rect x="65.7511%" y="341" width="0.3345%" height="15" fill="rgb(243,19,9)" fg:x="1526949" fg:w="7767"/><text x="66.0011%" y="351.50"></text></g><g><title>wake_affine (1,094 samples, 0.05%)</title><rect x="66.0385%" y="325" width="0.0471%" height="15" fill="rgb(245,171,17)" fg:x="1533622" fg:w="1094"/><text x="66.2885%" y="335.50"></text></g><g><title>migrate_task_rq_fair (789 samples, 0.03%)</title><rect x="66.1052%" y="325" width="0.0340%" height="15" fill="rgb(227,52,21)" fg:x="1535172" fg:w="789"/><text x="66.3552%" y="335.50"></text></g><g><title>remove_entity_load_avg (496 samples, 0.02%)</title><rect x="66.1178%" y="309" width="0.0214%" height="15" fill="rgb(238,69,14)" fg:x="1535465" fg:w="496"/><text x="66.3678%" y="319.50"></text></g><g><title>_raw_spin_lock_irqsave (310 samples, 0.01%)</title><rect x="66.1258%" y="293" width="0.0133%" height="15" fill="rgb(241,156,39)" fg:x="1535651" fg:w="310"/><text x="66.3758%" y="303.50"></text></g><g><title>set_task_cpu (1,273 samples, 0.05%)</title><rect x="66.0856%" y="341" width="0.0548%" height="15" fill="rgb(212,227,28)" fg:x="1534716" fg:w="1273"/><text x="66.3356%" y="351.50"></text></g><g><title>update_curr (323 samples, 0.01%)</title><rect x="66.1689%" y="277" width="0.0139%" height="15" fill="rgb(209,118,27)" fg:x="1536652" fg:w="323"/><text x="66.4189%" y="287.50"></text></g><g><title>update_load_avg (313 samples, 0.01%)</title><rect x="66.1829%" y="277" width="0.0135%" height="15" fill="rgb(226,102,5)" fg:x="1536975" fg:w="313"/><text x="66.4329%" y="287.50"></text></g><g><title>enqueue_entity (966 samples, 0.04%)</title><rect x="66.1553%" y="293" width="0.0416%" height="15" fill="rgb(223,34,3)" fg:x="1536336" fg:w="966"/><text x="66.4053%" y="303.50"></text></g><g><title>update_cfs_group (252 samples, 0.01%)</title><rect x="66.1976%" y="293" width="0.0109%" height="15" fill="rgb(221,81,38)" fg:x="1537317" fg:w="252"/><text x="66.4476%" y="303.50"></text></g><g><title>enqueue_task_fair (1,732 samples, 0.07%)</title><rect x="66.1443%" y="309" width="0.0746%" height="15" fill="rgb(236,219,28)" fg:x="1536079" fg:w="1732"/><text x="66.3943%" y="319.50"></text></g><g><title>update_load_avg (239 samples, 0.01%)</title><rect x="66.2086%" y="293" width="0.0103%" height="15" fill="rgb(213,200,14)" fg:x="1537572" fg:w="239"/><text x="66.4586%" y="303.50"></text></g><g><title>psi_group_change (1,152 samples, 0.05%)</title><rect x="66.2316%" y="293" width="0.0496%" height="15" fill="rgb(240,33,19)" fg:x="1538106" fg:w="1152"/><text x="66.4816%" y="303.50"></text></g><g><title>psi_task_change (1,484 samples, 0.06%)</title><rect x="66.2199%" y="309" width="0.0639%" height="15" fill="rgb(233,113,27)" fg:x="1537835" fg:w="1484"/><text x="66.4699%" y="319.50"></text></g><g><title>enqueue_task (3,306 samples, 0.14%)</title><rect x="66.1427%" y="325" width="0.1424%" height="15" fill="rgb(220,221,18)" fg:x="1536042" fg:w="3306"/><text x="66.3927%" y="335.50"></text></g><g><title>check_preempt_curr (317 samples, 0.01%)</title><rect x="66.2872%" y="309" width="0.0137%" height="15" fill="rgb(238,92,8)" fg:x="1539398" fg:w="317"/><text x="66.5372%" y="319.50"></text></g><g><title>ttwu_do_activate (3,755 samples, 0.16%)</title><rect x="66.1407%" y="341" width="0.1617%" height="15" fill="rgb(222,164,16)" fg:x="1535996" fg:w="3755"/><text x="66.3907%" y="351.50"></text></g><g><title>ttwu_do_wakeup (392 samples, 0.02%)</title><rect x="66.2855%" y="325" width="0.0169%" height="15" fill="rgb(241,119,3)" fg:x="1539359" fg:w="392"/><text x="66.5355%" y="335.50"></text></g><g><title>native_send_call_func_single_ipi (536 samples, 0.02%)</title><rect x="66.3734%" y="293" width="0.0231%" height="15" fill="rgb(241,44,8)" fg:x="1541401" fg:w="536"/><text x="66.6234%" y="303.50"></text></g><g><title>x2apic_send_IPI (522 samples, 0.02%)</title><rect x="66.3740%" y="277" width="0.0225%" height="15" fill="rgb(230,36,40)" fg:x="1541415" fg:w="522"/><text x="66.6240%" y="287.50"></text></g><g><title>native_write_msr (322 samples, 0.01%)</title><rect x="66.3827%" y="261" width="0.0139%" height="15" fill="rgb(243,16,36)" fg:x="1541615" fg:w="322"/><text x="66.6327%" y="271.50"></text></g><g><title>__smp_call_single_queue (1,266 samples, 0.05%)</title><rect x="66.3438%" y="325" width="0.0545%" height="15" fill="rgb(231,4,26)" fg:x="1540713" fg:w="1266"/><text x="66.5938%" y="335.50"></text></g><g><title>send_call_function_single_ipi (1,136 samples, 0.05%)</title><rect x="66.3494%" y="309" width="0.0489%" height="15" fill="rgb(240,9,31)" fg:x="1540843" fg:w="1136"/><text x="66.5994%" y="319.50"></text></g><g><title>llist_add_batch (1,140 samples, 0.05%)</title><rect x="66.3983%" y="325" width="0.0491%" height="15" fill="rgb(207,173,15)" fg:x="1541979" fg:w="1140"/><text x="66.6483%" y="335.50"></text></g><g><title>sched_clock_cpu (252 samples, 0.01%)</title><rect x="66.4478%" y="325" width="0.0109%" height="15" fill="rgb(224,192,53)" fg:x="1543129" fg:w="252"/><text x="66.6978%" y="335.50"></text></g><g><title>ttwu_queue_wakelist (3,626 samples, 0.16%)</title><rect x="66.3032%" y="341" width="0.1561%" height="15" fill="rgb(223,67,28)" fg:x="1539770" fg:w="3626"/><text x="66.5532%" y="351.50"></text></g><g><title>update_rq_clock (239 samples, 0.01%)</title><rect x="66.4593%" y="341" width="0.0103%" height="15" fill="rgb(211,20,47)" fg:x="1543396" fg:w="239"/><text x="66.7093%" y="351.50"></text></g><g><title>try_to_wake_up (22,021 samples, 0.95%)</title><rect x="65.5228%" y="357" width="0.9482%" height="15" fill="rgb(240,228,2)" fg:x="1521647" fg:w="22021"/><text x="65.7728%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (25,570 samples, 1.10%)</title><rect x="65.3728%" y="389" width="1.1011%" height="15" fill="rgb(248,151,12)" fg:x="1518164" fg:w="25570"/><text x="65.6228%" y="399.50"></text></g><g><title>wake_up_q (22,721 samples, 0.98%)</title><rect x="65.4955%" y="373" width="0.9784%" height="15" fill="rgb(244,8,39)" fg:x="1521013" fg:w="22721"/><text x="65.7455%" y="383.50"></text></g><g><title>btrfs_tree_unlock (25,755 samples, 1.11%)</title><rect x="65.3655%" y="421" width="1.1090%" height="15" fill="rgb(222,26,8)" fg:x="1517993" fg:w="25755"/><text x="65.6155%" y="431.50"></text></g><g><title>up_write (25,646 samples, 1.10%)</title><rect x="65.3702%" y="405" width="1.1043%" height="15" fill="rgb(213,106,44)" fg:x="1518102" fg:w="25646"/><text x="65.6202%" y="415.50"></text></g><g><title>unlock_up (27,689 samples, 1.19%)</title><rect x="65.3116%" y="437" width="1.1923%" height="15" fill="rgb(214,129,20)" fg:x="1516741" fg:w="27689"/><text x="65.5616%" y="447.50"></text></g><g><title>up_write (682 samples, 0.03%)</title><rect x="66.4745%" y="421" width="0.0294%" height="15" fill="rgb(212,32,13)" fg:x="1543748" fg:w="682"/><text x="66.7245%" y="431.50"></text></g><g><title>btrfs_search_slot (165,287 samples, 7.12%)</title><rect x="59.3988%" y="453" width="7.1173%" height="15" fill="rgb(208,168,33)" fg:x="1379428" fg:w="165287"/><text x="59.6488%" y="463.50">btrfs_sear..</text></g><g><title>up_read (285 samples, 0.01%)</title><rect x="66.5039%" y="437" width="0.0123%" height="15" fill="rgb(231,207,8)" fg:x="1544430" fg:w="285"/><text x="66.7539%" y="447.50"></text></g><g><title>btrfs_set_token_32 (504 samples, 0.02%)</title><rect x="66.5161%" y="453" width="0.0217%" height="15" fill="rgb(235,219,23)" fg:x="1544715" fg:w="504"/><text x="66.7661%" y="463.50"></text></g><g><title>_raw_spin_lock (243 samples, 0.01%)</title><rect x="66.5759%" y="437" width="0.0105%" height="15" fill="rgb(226,216,26)" fg:x="1546102" fg:w="243"/><text x="66.8259%" y="447.50"></text></g><g><title>cache_state_if_flags (240 samples, 0.01%)</title><rect x="66.5960%" y="437" width="0.0103%" height="15" fill="rgb(239,137,16)" fg:x="1546569" fg:w="240"/><text x="66.8460%" y="447.50"></text></g><g><title>kmem_cache_alloc (838 samples, 0.04%)</title><rect x="66.6696%" y="405" width="0.0361%" height="15" fill="rgb(207,12,36)" fg:x="1548279" fg:w="838"/><text x="66.9196%" y="415.50"></text></g><g><title>alloc_extent_state (1,267 samples, 0.05%)</title><rect x="66.6573%" y="421" width="0.0546%" height="15" fill="rgb(210,214,24)" fg:x="1547992" fg:w="1267"/><text x="66.9073%" y="431.50"></text></g><g><title>btrfs_set_delalloc_extent (320 samples, 0.01%)</title><rect x="66.7312%" y="405" width="0.0138%" height="15" fill="rgb(206,56,30)" fg:x="1549710" fg:w="320"/><text x="66.9812%" y="415.50"></text></g><g><title>insert_state (1,049 samples, 0.05%)</title><rect x="66.7178%" y="421" width="0.0452%" height="15" fill="rgb(228,143,26)" fg:x="1549399" fg:w="1049"/><text x="66.9678%" y="431.50"></text></g><g><title>set_state_bits (418 samples, 0.02%)</title><rect x="66.7450%" y="405" width="0.0180%" height="15" fill="rgb(216,218,46)" fg:x="1550030" fg:w="418"/><text x="66.9950%" y="415.50"></text></g><g><title>lock_extent_bits (4,874 samples, 0.21%)</title><rect x="66.5677%" y="453" width="0.2099%" height="15" fill="rgb(206,6,19)" fg:x="1545912" fg:w="4874"/><text x="66.8177%" y="463.50"></text></g><g><title>set_extent_bit (3,766 samples, 0.16%)</title><rect x="66.6154%" y="437" width="0.1622%" height="15" fill="rgb(239,177,51)" fg:x="1547020" fg:w="3766"/><text x="66.8654%" y="447.50"></text></g><g><title>read_extent_buffer (599 samples, 0.03%)</title><rect x="66.7975%" y="453" width="0.0258%" height="15" fill="rgb(216,55,25)" fg:x="1551250" fg:w="599"/><text x="67.0475%" y="463.50"></text></g><g><title>btrfs_truncate_inode_items (231,988 samples, 9.99%)</title><rect x="56.8501%" y="469" width="9.9895%" height="15" fill="rgb(231,163,29)" fg:x="1320238" fg:w="231988"/><text x="57.1001%" y="479.50">btrfs_truncate..</text></g><g><title>_raw_spin_lock_irq (369 samples, 0.02%)</title><rect x="66.8450%" y="453" width="0.0159%" height="15" fill="rgb(232,149,50)" fg:x="1552353" fg:w="369"/><text x="67.0950%" y="463.50"></text></g><g><title>clear_inode (496 samples, 0.02%)</title><rect x="66.8396%" y="469" width="0.0214%" height="15" fill="rgb(223,142,48)" fg:x="1552227" fg:w="496"/><text x="67.0896%" y="479.50"></text></g><g><title>truncate_inode_pages_final (1,060 samples, 0.05%)</title><rect x="66.8691%" y="453" width="0.0456%" height="15" fill="rgb(245,83,23)" fg:x="1552912" fg:w="1060"/><text x="67.1191%" y="463.50"></text></g><g><title>truncate_inode_pages_range (558 samples, 0.02%)</title><rect x="66.8907%" y="437" width="0.0240%" height="15" fill="rgb(224,63,2)" fg:x="1553414" fg:w="558"/><text x="67.1407%" y="447.50"></text></g><g><title>evict_inode_truncate_pages (1,327 samples, 0.06%)</title><rect x="66.8610%" y="469" width="0.0571%" height="15" fill="rgb(218,65,53)" fg:x="1552723" fg:w="1327"/><text x="67.1110%" y="479.50"></text></g><g><title>_raw_spin_lock (1,506 samples, 0.06%)</title><rect x="66.9355%" y="453" width="0.0648%" height="15" fill="rgb(221,84,29)" fg:x="1554453" fg:w="1506"/><text x="67.1855%" y="463.50"></text></g><g><title>_raw_spin_lock (234 samples, 0.01%)</title><rect x="67.0669%" y="405" width="0.0101%" height="15" fill="rgb(234,0,32)" fg:x="1557506" fg:w="234"/><text x="67.3169%" y="415.50"></text></g><g><title>btrfs_bg_type_to_factor (382 samples, 0.02%)</title><rect x="67.0787%" y="405" width="0.0164%" height="15" fill="rgb(206,20,16)" fg:x="1557780" fg:w="382"/><text x="67.3287%" y="415.50"></text></g><g><title>_raw_spin_lock (567 samples, 0.02%)</title><rect x="67.1698%" y="389" width="0.0244%" height="15" fill="rgb(244,172,18)" fg:x="1559895" fg:w="567"/><text x="67.4198%" y="399.50"></text></g><g><title>need_preemptive_reclaim (3,114 samples, 0.13%)</title><rect x="67.1197%" y="405" width="0.1341%" height="15" fill="rgb(254,133,1)" fg:x="1558731" fg:w="3114"/><text x="67.3697%" y="415.50"></text></g><g><title>btrfs_get_alloc_profile (1,374 samples, 0.06%)</title><rect x="67.1946%" y="389" width="0.0592%" height="15" fill="rgb(222,206,41)" fg:x="1560471" fg:w="1374"/><text x="67.4446%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (914 samples, 0.04%)</title><rect x="67.2719%" y="389" width="0.0394%" height="15" fill="rgb(212,3,42)" fg:x="1562267" fg:w="914"/><text x="67.5219%" y="399.50"></text></g><g><title>idr_find (879 samples, 0.04%)</title><rect x="67.3113%" y="389" width="0.0379%" height="15" fill="rgb(241,11,4)" fg:x="1563182" fg:w="879"/><text x="67.5613%" y="399.50"></text></g><g><title>radix_tree_lookup (825 samples, 0.04%)</title><rect x="67.3137%" y="373" width="0.0355%" height="15" fill="rgb(205,19,26)" fg:x="1563236" fg:w="825"/><text x="67.5637%" y="383.50"></text></g><g><title>__radix_tree_lookup (812 samples, 0.03%)</title><rect x="67.3142%" y="357" width="0.0350%" height="15" fill="rgb(210,179,32)" fg:x="1563249" fg:w="812"/><text x="67.5642%" y="367.50"></text></g><g><title>__reserve_bytes (7,437 samples, 0.32%)</title><rect x="67.0309%" y="421" width="0.3202%" height="15" fill="rgb(227,116,49)" fg:x="1556669" fg:w="7437"/><text x="67.2809%" y="431.50"></text></g><g><title>work_busy (2,248 samples, 0.10%)</title><rect x="67.2543%" y="405" width="0.0968%" height="15" fill="rgb(211,146,6)" fg:x="1561858" fg:w="2248"/><text x="67.5043%" y="415.50"></text></g><g><title>_raw_spin_lock (425 samples, 0.02%)</title><rect x="67.3511%" y="421" width="0.0183%" height="15" fill="rgb(219,44,39)" fg:x="1564106" fg:w="425"/><text x="67.6011%" y="431.50"></text></g><g><title>btrfs_space_info_update_bytes_may_use (367 samples, 0.02%)</title><rect x="67.3694%" y="421" width="0.0158%" height="15" fill="rgb(234,128,11)" fg:x="1564531" fg:w="367"/><text x="67.6194%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (8,925 samples, 0.38%)</title><rect x="67.0092%" y="453" width="0.3843%" height="15" fill="rgb(220,183,53)" fg:x="1556165" fg:w="8925"/><text x="67.2592%" y="463.50"></text></g><g><title>btrfs_reserve_metadata_bytes (8,570 samples, 0.37%)</title><rect x="67.0245%" y="437" width="0.3690%" height="15" fill="rgb(213,219,32)" fg:x="1556520" fg:w="8570"/><text x="67.2745%" y="447.50"></text></g><g><title>_raw_spin_lock (690 samples, 0.03%)</title><rect x="67.4603%" y="421" width="0.0297%" height="15" fill="rgb(232,156,16)" fg:x="1566642" fg:w="690"/><text x="67.7103%" y="431.50"></text></g><g><title>join_transaction (873 samples, 0.04%)</title><rect x="67.4948%" y="421" width="0.0376%" height="15" fill="rgb(246,135,34)" fg:x="1567443" fg:w="873"/><text x="67.7448%" y="431.50"></text></g><g><title>kmem_cache_alloc (997 samples, 0.04%)</title><rect x="67.5324%" y="421" width="0.0429%" height="15" fill="rgb(241,99,0)" fg:x="1568316" fg:w="997"/><text x="67.7824%" y="431.50"></text></g><g><title>memset_erms (292 samples, 0.01%)</title><rect x="67.5781%" y="421" width="0.0126%" height="15" fill="rgb(222,103,45)" fg:x="1569377" fg:w="292"/><text x="67.8281%" y="431.50"></text></g><g><title>btrfs_join_transaction (4,660 samples, 0.20%)</title><rect x="67.3935%" y="453" width="0.2007%" height="15" fill="rgb(212,57,4)" fg:x="1565090" fg:w="4660"/><text x="67.6435%" y="463.50"></text></g><g><title>start_transaction (4,379 samples, 0.19%)</title><rect x="67.4056%" y="437" width="0.1886%" height="15" fill="rgb(215,68,47)" fg:x="1565371" fg:w="4379"/><text x="67.6556%" y="447.50"></text></g><g><title>evict_refill_and_join (16,173 samples, 0.70%)</title><rect x="66.9181%" y="469" width="0.6964%" height="15" fill="rgb(230,84,2)" fg:x="1554050" fg:w="16173"/><text x="67.1681%" y="479.50"></text></g><g><title>start_transaction (310 samples, 0.01%)</title><rect x="67.6012%" y="453" width="0.0133%" height="15" fill="rgb(220,102,14)" fg:x="1569913" fg:w="310"/><text x="67.8512%" y="463.50"></text></g><g><title>lock_extent_bits (273 samples, 0.01%)</title><rect x="67.6368%" y="469" width="0.0118%" height="15" fill="rgb(240,10,32)" fg:x="1570740" fg:w="273"/><text x="67.8868%" y="479.50"></text></g><g><title>mutex_unlock (477 samples, 0.02%)</title><rect x="67.6498%" y="469" width="0.0205%" height="15" fill="rgb(215,47,27)" fg:x="1571043" fg:w="477"/><text x="67.8998%" y="479.50"></text></g><g><title>btrfs_evict_inode (679,049 samples, 29.24%)</title><rect x="38.4469%" y="485" width="29.2402%" height="15" fill="rgb(233,188,43)" fg:x="892858" fg:w="679049"/><text x="38.6969%" y="495.50">btrfs_evict_inode</text></g><g><title>btrfs_free_io_failure_record (326 samples, 0.01%)</title><rect x="67.6889%" y="485" width="0.0140%" height="15" fill="rgb(253,190,1)" fg:x="1571951" fg:w="326"/><text x="67.9389%" y="495.50"></text></g><g><title>btrfs_remove_delayed_node (369 samples, 0.02%)</title><rect x="67.7030%" y="485" width="0.0159%" height="15" fill="rgb(206,114,52)" fg:x="1572277" fg:w="369"/><text x="67.9530%" y="495.50"></text></g><g><title>__srcu_read_lock (340 samples, 0.01%)</title><rect x="67.7720%" y="421" width="0.0146%" height="15" fill="rgb(233,120,37)" fg:x="1573880" fg:w="340"/><text x="68.0220%" y="431.50"></text></g><g><title>__srcu_read_lock (355 samples, 0.02%)</title><rect x="67.7899%" y="405" width="0.0153%" height="15" fill="rgb(214,52,39)" fg:x="1574296" fg:w="355"/><text x="68.0399%" y="415.50"></text></g><g><title>__srcu_read_unlock (246 samples, 0.01%)</title><rect x="67.8052%" y="405" width="0.0106%" height="15" fill="rgb(223,80,29)" fg:x="1574651" fg:w="246"/><text x="68.0552%" y="415.50"></text></g><g><title>fsnotify_destroy_marks (1,107 samples, 0.05%)</title><rect x="67.7682%" y="437" width="0.0477%" height="15" fill="rgb(230,101,40)" fg:x="1573791" fg:w="1107"/><text x="68.0182%" y="447.50"></text></g><g><title>fsnotify_grab_connector (663 samples, 0.03%)</title><rect x="67.7873%" y="421" width="0.0285%" height="15" fill="rgb(219,211,8)" fg:x="1574235" fg:w="663"/><text x="68.0373%" y="431.50"></text></g><g><title>__fsnotify_inode_delete (1,241 samples, 0.05%)</title><rect x="67.7680%" y="453" width="0.0534%" height="15" fill="rgb(252,126,28)" fg:x="1573786" fg:w="1241"/><text x="68.0180%" y="463.50"></text></g><g><title>hook_inode_free_security (1,838 samples, 0.08%)</title><rect x="67.8316%" y="453" width="0.0791%" height="15" fill="rgb(215,56,38)" fg:x="1575263" fg:w="1838"/><text x="68.0816%" y="463.50"></text></g><g><title>acquire_rundown (367 samples, 0.02%)</title><rect x="67.9517%" y="437" width="0.0158%" height="15" fill="rgb(249,55,44)" fg:x="1578053" fg:w="367"/><text x="68.2017%" y="447.50"></text></g><g><title>__call_rcu (789 samples, 0.03%)</title><rect x="67.9677%" y="421" width="0.0340%" height="15" fill="rgb(220,221,32)" fg:x="1578425" fg:w="789"/><text x="68.2177%" y="431.50"></text></g><g><title>rcu_segcblist_enqueue (309 samples, 0.01%)</title><rect x="67.9884%" y="405" width="0.0133%" height="15" fill="rgb(212,216,41)" fg:x="1578905" fg:w="309"/><text x="68.2384%" y="415.50"></text></g><g><title>call_rcu (799 samples, 0.03%)</title><rect x="67.9675%" y="437" width="0.0344%" height="15" fill="rgb(228,213,43)" fg:x="1578421" fg:w="799"/><text x="68.2175%" y="447.50"></text></g><g><title>cshook_security_file_free_security (292 samples, 0.01%)</title><rect x="68.0151%" y="421" width="0.0126%" height="15" fill="rgb(211,31,26)" fg:x="1579526" fg:w="292"/><text x="68.2651%" y="431.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (514 samples, 0.02%)</title><rect x="68.0279%" y="405" width="0.0221%" height="15" fill="rgb(229,202,19)" fg:x="1579823" fg:w="514"/><text x="68.2779%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (258 samples, 0.01%)</title><rect x="68.0699%" y="389" width="0.0111%" height="15" fill="rgb(229,105,46)" fg:x="1580798" fg:w="258"/><text x="68.3199%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (546 samples, 0.02%)</title><rect x="68.1075%" y="357" width="0.0235%" height="15" fill="rgb(235,108,1)" fg:x="1581672" fg:w="546"/><text x="68.3575%" y="367.50"></text></g><g><title>[[falcon_kal]] (1,969 samples, 0.08%)</title><rect x="68.1580%" y="341" width="0.0848%" height="15" fill="rgb(245,111,35)" fg:x="1582844" fg:w="1969"/><text x="68.4080%" y="351.50"></text></g><g><title>down_write (1,913 samples, 0.08%)</title><rect x="68.1604%" y="325" width="0.0824%" height="15" fill="rgb(219,185,31)" fg:x="1582900" fg:w="1913"/><text x="68.4104%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (4,032 samples, 0.17%)</title><rect x="68.0811%" y="373" width="0.1736%" height="15" fill="rgb(214,4,43)" fg:x="1581058" fg:w="4032"/><text x="68.3311%" y="383.50"></text></g><g><title>cshook_security_inode_free_security (2,872 samples, 0.12%)</title><rect x="68.1310%" y="357" width="0.1237%" height="15" fill="rgb(235,227,40)" fg:x="1582218" fg:w="2872"/><text x="68.3810%" y="367.50"></text></g><g><title>cshook_security_inode_free_security (471 samples, 0.02%)</title><rect x="68.2547%" y="373" width="0.0203%" height="15" fill="rgb(230,88,30)" fg:x="1585090" fg:w="471"/><text x="68.5047%" y="383.50"></text></g><g><title>pinnedhook_security_inode_free_security (6,105 samples, 0.26%)</title><rect x="68.0121%" y="437" width="0.2629%" height="15" fill="rgb(216,217,1)" fg:x="1579457" fg:w="6105"/><text x="68.2621%" y="447.50"></text></g><g><title>cshook_security_inode_free_security (5,744 samples, 0.25%)</title><rect x="68.0277%" y="421" width="0.2473%" height="15" fill="rgb(248,139,50)" fg:x="1579818" fg:w="5744"/><text x="68.2777%" y="431.50"></text></g><g><title>cshook_security_file_free_security (5,225 samples, 0.22%)</title><rect x="68.0500%" y="405" width="0.2250%" height="15" fill="rgb(233,1,21)" fg:x="1580337" fg:w="5225"/><text x="68.3000%" y="415.50"></text></g><g><title>cshook_security_file_free_security (4,505 samples, 0.19%)</title><rect x="68.0810%" y="389" width="0.1940%" height="15" fill="rgb(215,183,12)" fg:x="1581057" fg:w="4505"/><text x="68.3310%" y="399.50"></text></g><g><title>__destroy_inode (12,475 samples, 0.54%)</title><rect x="67.7390%" y="469" width="0.5372%" height="15" fill="rgb(229,104,42)" fg:x="1573114" fg:w="12475"/><text x="67.9890%" y="479.50"></text></g><g><title>security_inode_free (8,108 samples, 0.35%)</title><rect x="67.9271%" y="453" width="0.3491%" height="15" fill="rgb(243,34,48)" fg:x="1577481" fg:w="8108"/><text x="68.1771%" y="463.50"></text></g><g><title>_raw_write_lock (280 samples, 0.01%)</title><rect x="68.3150%" y="453" width="0.0121%" height="15" fill="rgb(239,11,44)" fg:x="1586491" fg:w="280"/><text x="68.5650%" y="463.50"></text></g><g><title>alloc_extent_map (285 samples, 0.01%)</title><rect x="68.3271%" y="453" width="0.0123%" height="15" fill="rgb(231,98,35)" fg:x="1586771" fg:w="285"/><text x="68.5771%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,105 samples, 0.05%)</title><rect x="68.3632%" y="421" width="0.0476%" height="15" fill="rgb(233,28,25)" fg:x="1587610" fg:w="1105"/><text x="68.6132%" y="431.50"></text></g><g><title>memset_erms (388 samples, 0.02%)</title><rect x="68.4117%" y="421" width="0.0167%" height="15" fill="rgb(234,123,11)" fg:x="1588737" fg:w="388"/><text x="68.6617%" y="431.50"></text></g><g><title>alloc_extent_map (1,684 samples, 0.07%)</title><rect x="68.3567%" y="437" width="0.0725%" height="15" fill="rgb(220,69,3)" fg:x="1587459" fg:w="1684"/><text x="68.6067%" y="447.50"></text></g><g><title>kmem_cache_free (1,150 samples, 0.05%)</title><rect x="68.4426%" y="421" width="0.0495%" height="15" fill="rgb(214,64,36)" fg:x="1589453" fg:w="1150"/><text x="68.6926%" y="431.50"></text></g><g><title>free_extent_map (1,493 samples, 0.06%)</title><rect x="68.4294%" y="437" width="0.0643%" height="15" fill="rgb(211,138,32)" fg:x="1589146" fg:w="1493"/><text x="68.6794%" y="447.50"></text></g><g><title>btrfs_drop_extent_cache (3,803 samples, 0.16%)</title><rect x="68.3394%" y="453" width="0.1638%" height="15" fill="rgb(213,118,47)" fg:x="1587057" fg:w="3803"/><text x="68.5894%" y="463.50"></text></g><g><title>kmem_cache_alloc (385 samples, 0.02%)</title><rect x="68.5145%" y="389" width="0.0166%" height="15" fill="rgb(243,124,49)" fg:x="1591124" fg:w="385"/><text x="68.7645%" y="399.50"></text></g><g><title>alloc_extent_state (663 samples, 0.03%)</title><rect x="68.5110%" y="405" width="0.0285%" height="15" fill="rgb(221,30,28)" fg:x="1591043" fg:w="663"/><text x="68.7610%" y="415.50"></text></g><g><title>kmem_cache_free (438 samples, 0.02%)</title><rect x="68.5458%" y="389" width="0.0189%" height="15" fill="rgb(246,37,13)" fg:x="1591849" fg:w="438"/><text x="68.7958%" y="399.50"></text></g><g><title>free_extent_state (593 samples, 0.03%)</title><rect x="68.5396%" y="405" width="0.0255%" height="15" fill="rgb(249,66,14)" fg:x="1591707" fg:w="593"/><text x="68.7896%" y="415.50"></text></g><g><title>__clear_extent_bit (1,422 samples, 0.06%)</title><rect x="68.5049%" y="421" width="0.0612%" height="15" fill="rgb(213,166,5)" fg:x="1590901" fg:w="1422"/><text x="68.7549%" y="431.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (1,624 samples, 0.07%)</title><rect x="68.5032%" y="453" width="0.0699%" height="15" fill="rgb(221,66,24)" fg:x="1590860" fg:w="1624"/><text x="68.7532%" y="463.50"></text></g><g><title>clear_extent_bit (1,600 samples, 0.07%)</title><rect x="68.5042%" y="437" width="0.0689%" height="15" fill="rgb(210,132,17)" fg:x="1590884" fg:w="1600"/><text x="68.7542%" y="447.50"></text></g><g><title>_raw_spin_lock_irq (259 samples, 0.01%)</title><rect x="68.5864%" y="437" width="0.0112%" height="15" fill="rgb(243,202,5)" fg:x="1592793" fg:w="259"/><text x="68.8364%" y="447.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (572 samples, 0.02%)</title><rect x="68.5731%" y="453" width="0.0246%" height="15" fill="rgb(233,70,48)" fg:x="1592484" fg:w="572"/><text x="68.8231%" y="463.50"></text></g><g><title>kmem_cache_alloc (859 samples, 0.04%)</title><rect x="68.6597%" y="389" width="0.0370%" height="15" fill="rgb(238,41,26)" fg:x="1594496" fg:w="859"/><text x="68.9097%" y="399.50"></text></g><g><title>alloc_extent_state (1,391 samples, 0.06%)</title><rect x="68.6462%" y="405" width="0.0599%" height="15" fill="rgb(241,19,31)" fg:x="1594181" fg:w="1391"/><text x="68.8962%" y="415.50"></text></g><g><title>kmem_cache_free (592 samples, 0.03%)</title><rect x="68.7142%" y="389" width="0.0255%" height="15" fill="rgb(214,76,10)" fg:x="1595762" fg:w="592"/><text x="68.9642%" y="399.50"></text></g><g><title>free_extent_state (807 samples, 0.03%)</title><rect x="68.7061%" y="405" width="0.0347%" height="15" fill="rgb(254,202,22)" fg:x="1595573" fg:w="807"/><text x="68.9561%" y="415.50"></text></g><g><title>__clear_extent_bit (2,791 samples, 0.12%)</title><rect x="68.6232%" y="421" width="0.1202%" height="15" fill="rgb(214,72,24)" fg:x="1593648" fg:w="2791"/><text x="68.8732%" y="431.50"></text></g><g><title>_raw_spin_lock (294 samples, 0.01%)</title><rect x="68.7434%" y="421" width="0.0127%" height="15" fill="rgb(221,92,46)" fg:x="1596439" fg:w="294"/><text x="68.9934%" y="431.50"></text></g><g><title>clear_record_extent_bits (3,324 samples, 0.14%)</title><rect x="68.6215%" y="437" width="0.1431%" height="15" fill="rgb(246,13,50)" fg:x="1593607" fg:w="3324"/><text x="68.8715%" y="447.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (3,782 samples, 0.16%)</title><rect x="68.6059%" y="453" width="0.1629%" height="15" fill="rgb(240,165,38)" fg:x="1593245" fg:w="3782"/><text x="68.8559%" y="463.50"></text></g><g><title>ulist_init (367 samples, 0.02%)</title><rect x="68.7876%" y="453" width="0.0158%" height="15" fill="rgb(241,24,51)" fg:x="1597465" fg:w="367"/><text x="69.0376%" y="463.50"></text></g><g><title>btrfs_destroy_inode (11,974 samples, 0.52%)</title><rect x="68.2890%" y="469" width="0.5156%" height="15" fill="rgb(227,51,44)" fg:x="1585887" fg:w="11974"/><text x="68.5390%" y="479.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (562 samples, 0.02%)</title><rect x="68.8068%" y="469" width="0.0242%" height="15" fill="rgb(231,121,3)" fg:x="1597911" fg:w="562"/><text x="69.0568%" y="479.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (350 samples, 0.02%)</title><rect x="68.8390%" y="469" width="0.0151%" height="15" fill="rgb(245,3,41)" fg:x="1598658" fg:w="350"/><text x="69.0890%" y="479.50"></text></g><g><title>__call_rcu (448 samples, 0.02%)</title><rect x="68.8540%" y="453" width="0.0193%" height="15" fill="rgb(214,13,26)" fg:x="1599008" fg:w="448"/><text x="69.1040%" y="463.50"></text></g><g><title>rcu_segcblist_enqueue (242 samples, 0.01%)</title><rect x="68.8629%" y="437" width="0.0104%" height="15" fill="rgb(252,75,11)" fg:x="1599214" fg:w="242"/><text x="69.1129%" y="447.50"></text></g><g><title>call_rcu (461 samples, 0.02%)</title><rect x="68.8540%" y="469" width="0.0199%" height="15" fill="rgb(218,226,17)" fg:x="1599008" fg:w="461"/><text x="69.1040%" y="479.50"></text></g><g><title>rb_erase (3,785 samples, 0.16%)</title><rect x="68.8820%" y="469" width="0.1630%" height="15" fill="rgb(248,89,38)" fg:x="1599658" fg:w="3785"/><text x="69.1320%" y="479.50"></text></g><g><title>destroy_inode (30,795 samples, 1.33%)</title><rect x="67.7304%" y="485" width="1.3260%" height="15" fill="rgb(237,73,46)" fg:x="1572914" fg:w="30795"/><text x="67.9804%" y="495.50"></text></g><g><title>security_inode_free (266 samples, 0.01%)</title><rect x="69.0450%" y="469" width="0.0115%" height="15" fill="rgb(242,78,33)" fg:x="1603443" fg:w="266"/><text x="69.2950%" y="479.50"></text></g><g><title>evict_inode_truncate_pages (280 samples, 0.01%)</title><rect x="69.0565%" y="485" width="0.0121%" height="15" fill="rgb(235,60,3)" fg:x="1603709" fg:w="280"/><text x="69.3065%" y="495.50"></text></g><g><title>evict (714,854 samples, 30.78%)</title><rect x="38.3282%" y="501" width="30.7819%" height="15" fill="rgb(216,172,19)" fg:x="890101" fg:w="714854"/><text x="38.5782%" y="511.50">evict</text></g><g><title>wake_up_bit (245 samples, 0.01%)</title><rect x="69.0996%" y="485" width="0.0105%" height="15" fill="rgb(227,6,42)" fg:x="1604710" fg:w="245"/><text x="69.3496%" y="495.50"></text></g><g><title>iput (716,816 samples, 30.87%)</title><rect x="38.2447%" y="517" width="30.8664%" height="15" fill="rgb(223,207,42)" fg:x="888163" fg:w="716816"/><text x="38.4947%" y="527.50">iput</text></g><g><title>lockref_put_or_lock (319 samples, 0.01%)</title><rect x="69.1116%" y="517" width="0.0137%" height="15" fill="rgb(246,138,30)" fg:x="1604989" fg:w="319"/><text x="69.3616%" y="527.50"></text></g><g><title>mnt_want_write (528 samples, 0.02%)</title><rect x="69.1390%" y="517" width="0.0227%" height="15" fill="rgb(251,199,47)" fg:x="1605625" fg:w="528"/><text x="69.3890%" y="527.50"></text></g><g><title>__slab_free (347 samples, 0.01%)</title><rect x="69.2255%" y="485" width="0.0149%" height="15" fill="rgb(228,218,44)" fg:x="1607634" fg:w="347"/><text x="69.4755%" y="495.50"></text></g><g><title>kmem_cache_free (1,428 samples, 0.06%)</title><rect x="69.1992%" y="501" width="0.0615%" height="15" fill="rgb(220,68,6)" fg:x="1607025" fg:w="1428"/><text x="69.4492%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (411 samples, 0.02%)</title><rect x="69.2430%" y="485" width="0.0177%" height="15" fill="rgb(240,60,26)" fg:x="1608042" fg:w="411"/><text x="69.4930%" y="495.50"></text></g><g><title>putname (2,054 samples, 0.09%)</title><rect x="69.1727%" y="517" width="0.0884%" height="15" fill="rgb(211,200,19)" fg:x="1606409" fg:w="2054"/><text x="69.4227%" y="527.50"></text></g><g><title>apparmor_path_unlink (453 samples, 0.02%)</title><rect x="69.2742%" y="501" width="0.0195%" height="15" fill="rgb(242,145,30)" fg:x="1608765" fg:w="453"/><text x="69.5242%" y="511.50"></text></g><g><title>security_path_unlink (565 samples, 0.02%)</title><rect x="69.2694%" y="517" width="0.0243%" height="15" fill="rgb(225,64,13)" fg:x="1608654" fg:w="565"/><text x="69.5194%" y="527.50"></text></g><g><title>up_write (272 samples, 0.01%)</title><rect x="69.2938%" y="517" width="0.0117%" height="15" fill="rgb(218,103,35)" fg:x="1609220" fg:w="272"/><text x="69.5438%" y="527.50"></text></g><g><title>btrfs_end_transaction (421 samples, 0.02%)</title><rect x="69.3697%" y="501" width="0.0181%" height="15" fill="rgb(216,93,46)" fg:x="1610984" fg:w="421"/><text x="69.6197%" y="511.50"></text></g><g><title>kmem_cache_alloc (570 samples, 0.02%)</title><rect x="69.5461%" y="453" width="0.0245%" height="15" fill="rgb(225,159,27)" fg:x="1615081" fg:w="570"/><text x="69.7961%" y="463.50"></text></g><g><title>btrfs_alloc_path (759 samples, 0.03%)</title><rect x="69.5443%" y="469" width="0.0327%" height="15" fill="rgb(225,204,11)" fg:x="1615039" fg:w="759"/><text x="69.7943%" y="479.50"></text></g><g><title>kmem_cache_alloc (279 samples, 0.01%)</title><rect x="69.6006%" y="437" width="0.0120%" height="15" fill="rgb(205,56,4)" fg:x="1616346" fg:w="279"/><text x="69.8506%" y="447.50"></text></g><g><title>btrfs_alloc_path (483 samples, 0.02%)</title><rect x="69.5999%" y="453" width="0.0208%" height="15" fill="rgb(206,6,35)" fg:x="1616330" fg:w="483"/><text x="69.8499%" y="463.50"></text></g><g><title>try_to_wake_up (346 samples, 0.01%)</title><rect x="69.6364%" y="357" width="0.0149%" height="15" fill="rgb(247,73,52)" fg:x="1617177" fg:w="346"/><text x="69.8864%" y="367.50"></text></g><g><title>btrfs_tree_unlock (440 samples, 0.02%)</title><rect x="69.6324%" y="421" width="0.0189%" height="15" fill="rgb(246,97,4)" fg:x="1617085" fg:w="440"/><text x="69.8824%" y="431.50"></text></g><g><title>up_write (403 samples, 0.02%)</title><rect x="69.6340%" y="405" width="0.0174%" height="15" fill="rgb(212,37,15)" fg:x="1617122" fg:w="403"/><text x="69.8840%" y="415.50"></text></g><g><title>rwsem_wake.isra.0 (402 samples, 0.02%)</title><rect x="69.6341%" y="389" width="0.0173%" height="15" fill="rgb(208,130,40)" fg:x="1617123" fg:w="402"/><text x="69.8841%" y="399.50"></text></g><g><title>wake_up_q (354 samples, 0.02%)</title><rect x="69.6361%" y="373" width="0.0152%" height="15" fill="rgb(236,55,29)" fg:x="1617171" fg:w="354"/><text x="69.8861%" y="383.50"></text></g><g><title>free_extent_buffer.part.0 (329 samples, 0.01%)</title><rect x="69.6618%" y="405" width="0.0142%" height="15" fill="rgb(209,156,45)" fg:x="1617768" fg:w="329"/><text x="69.9118%" y="415.50"></text></g><g><title>release_extent_buffer (261 samples, 0.01%)</title><rect x="69.6648%" y="389" width="0.0112%" height="15" fill="rgb(249,107,4)" fg:x="1617836" fg:w="261"/><text x="69.9148%" y="399.50"></text></g><g><title>free_extent_buffer (560 samples, 0.02%)</title><rect x="69.6527%" y="421" width="0.0241%" height="15" fill="rgb(227,7,13)" fg:x="1617556" fg:w="560"/><text x="69.9027%" y="431.50"></text></g><g><title>btrfs_release_path (1,486 samples, 0.06%)</title><rect x="69.6230%" y="437" width="0.0640%" height="15" fill="rgb(250,129,14)" fg:x="1616866" fg:w="1486"/><text x="69.8730%" y="447.50"></text></g><g><title>up_write (236 samples, 0.01%)</title><rect x="69.6768%" y="421" width="0.0102%" height="15" fill="rgb(229,92,13)" fg:x="1618116" fg:w="236"/><text x="69.9268%" y="431.50"></text></g><g><title>kmem_cache_free (538 samples, 0.02%)</title><rect x="69.6895%" y="437" width="0.0232%" height="15" fill="rgb(245,98,39)" fg:x="1618410" fg:w="538"/><text x="69.9395%" y="447.50"></text></g><g><title>btrfs_free_path (2,149 samples, 0.09%)</title><rect x="69.6207%" y="453" width="0.0925%" height="15" fill="rgb(234,135,48)" fg:x="1616813" fg:w="2149"/><text x="69.8707%" y="463.50"></text></g><g><title>balance_level (320 samples, 0.01%)</title><rect x="69.7573%" y="421" width="0.0138%" height="15" fill="rgb(230,98,28)" fg:x="1619985" fg:w="320"/><text x="70.0073%" y="431.50"></text></g><g><title>btrfs_bin_search (1,115 samples, 0.05%)</title><rect x="69.7711%" y="421" width="0.0480%" height="15" fill="rgb(223,121,0)" fg:x="1620305" fg:w="1115"/><text x="70.0211%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (1,035 samples, 0.04%)</title><rect x="69.7745%" y="405" width="0.0446%" height="15" fill="rgb(234,173,33)" fg:x="1620385" fg:w="1035"/><text x="70.0245%" y="415.50"></text></g><g><title>rwsem_optimistic_spin (1,232 samples, 0.05%)</title><rect x="69.8313%" y="357" width="0.0531%" height="15" fill="rgb(245,47,8)" fg:x="1621703" fg:w="1232"/><text x="70.0813%" y="367.50"></text></g><g><title>down_write (1,467 samples, 0.06%)</title><rect x="69.8241%" y="389" width="0.0632%" height="15" fill="rgb(205,17,20)" fg:x="1621537" fg:w="1467"/><text x="70.0741%" y="399.50"></text></g><g><title>rwsem_down_write_slowpath (1,320 samples, 0.06%)</title><rect x="69.8305%" y="373" width="0.0568%" height="15" fill="rgb(232,151,16)" fg:x="1621684" fg:w="1320"/><text x="70.0805%" y="383.50"></text></g><g><title>__btrfs_tree_lock (1,502 samples, 0.06%)</title><rect x="69.8227%" y="405" width="0.0647%" height="15" fill="rgb(208,30,32)" fg:x="1621503" fg:w="1502"/><text x="70.0727%" y="415.50"></text></g><g><title>btrfs_lock_root_node (1,683 samples, 0.07%)</title><rect x="69.8217%" y="421" width="0.0725%" height="15" fill="rgb(254,26,3)" fg:x="1621480" fg:w="1683"/><text x="70.0717%" y="431.50"></text></g><g><title>__schedule (237 samples, 0.01%)</title><rect x="69.9075%" y="341" width="0.0102%" height="15" fill="rgb(240,177,30)" fg:x="1623473" fg:w="237"/><text x="70.1575%" y="351.50"></text></g><g><title>rwsem_down_read_slowpath (273 samples, 0.01%)</title><rect x="69.9060%" y="373" width="0.0118%" height="15" fill="rgb(248,76,44)" fg:x="1623439" fg:w="273"/><text x="70.1560%" y="383.50"></text></g><g><title>schedule (239 samples, 0.01%)</title><rect x="69.9075%" y="357" width="0.0103%" height="15" fill="rgb(241,186,54)" fg:x="1623473" fg:w="239"/><text x="70.1575%" y="367.50"></text></g><g><title>down_read (459 samples, 0.02%)</title><rect x="69.8981%" y="389" width="0.0198%" height="15" fill="rgb(249,171,29)" fg:x="1623254" fg:w="459"/><text x="70.1481%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (507 samples, 0.02%)</title><rect x="69.8960%" y="405" width="0.0218%" height="15" fill="rgb(237,151,44)" fg:x="1623207" fg:w="507"/><text x="70.1460%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (725 samples, 0.03%)</title><rect x="69.8945%" y="421" width="0.0312%" height="15" fill="rgb(228,174,30)" fg:x="1623171" fg:w="725"/><text x="70.1445%" y="431.50"></text></g><g><title>free_extent_buffer (304 samples, 0.01%)</title><rect x="69.9379%" y="421" width="0.0131%" height="15" fill="rgb(252,14,37)" fg:x="1624178" fg:w="304"/><text x="70.1879%" y="431.50"></text></g><g><title>btrfs_node_key (240 samples, 0.01%)</title><rect x="69.9723%" y="405" width="0.0103%" height="15" fill="rgb(207,111,40)" fg:x="1624979" fg:w="240"/><text x="70.2223%" y="415.50"></text></g><g><title>radix_tree_lookup (428 samples, 0.02%)</title><rect x="69.9991%" y="373" width="0.0184%" height="15" fill="rgb(248,171,54)" fg:x="1625600" fg:w="428"/><text x="70.2491%" y="383.50"></text></g><g><title>__radix_tree_lookup (424 samples, 0.02%)</title><rect x="69.9993%" y="357" width="0.0183%" height="15" fill="rgb(211,127,2)" fg:x="1625604" fg:w="424"/><text x="70.2493%" y="367.50"></text></g><g><title>find_extent_buffer_nolock (574 samples, 0.02%)</title><rect x="69.9931%" y="389" width="0.0247%" height="15" fill="rgb(236,87,47)" fg:x="1625460" fg:w="574"/><text x="70.2431%" y="399.50"></text></g><g><title>mark_page_accessed (257 samples, 0.01%)</title><rect x="70.0178%" y="389" width="0.0111%" height="15" fill="rgb(223,190,45)" fg:x="1626034" fg:w="257"/><text x="70.2678%" y="399.50"></text></g><g><title>find_extent_buffer (979 samples, 0.04%)</title><rect x="69.9872%" y="405" width="0.0422%" height="15" fill="rgb(215,5,16)" fg:x="1625325" fg:w="979"/><text x="70.2372%" y="415.50"></text></g><g><title>read_block_for_search (1,860 samples, 0.08%)</title><rect x="69.9519%" y="421" width="0.0801%" height="15" fill="rgb(252,82,33)" fg:x="1624505" fg:w="1860"/><text x="70.2019%" y="431.50"></text></g><g><title>unlock_up (317 samples, 0.01%)</title><rect x="70.0333%" y="421" width="0.0137%" height="15" fill="rgb(247,213,44)" fg:x="1626394" fg:w="317"/><text x="70.2833%" y="431.50"></text></g><g><title>btrfs_search_slot (7,674 samples, 0.33%)</title><rect x="69.7216%" y="437" width="0.3304%" height="15" fill="rgb(205,196,44)" fg:x="1619156" fg:w="7674"/><text x="69.9716%" y="447.50"></text></g><g><title>btrfs_lookup_dir_index_item (7,956 samples, 0.34%)</title><rect x="69.7133%" y="453" width="0.3426%" height="15" fill="rgb(237,96,54)" fg:x="1618962" fg:w="7956"/><text x="69.9633%" y="463.50"></text></g><g><title>balance_level (286 samples, 0.01%)</title><rect x="70.1043%" y="421" width="0.0123%" height="15" fill="rgb(230,113,34)" fg:x="1628043" fg:w="286"/><text x="70.3543%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (1,379 samples, 0.06%)</title><rect x="70.1202%" y="405" width="0.0594%" height="15" fill="rgb(221,224,12)" fg:x="1628413" fg:w="1379"/><text x="70.3702%" y="415.50"></text></g><g><title>btrfs_bin_search (1,464 samples, 0.06%)</title><rect x="70.1166%" y="421" width="0.0630%" height="15" fill="rgb(219,112,44)" fg:x="1628329" fg:w="1464"/><text x="70.3666%" y="431.50"></text></g><g><title>rwsem_optimistic_spin (1,133 samples, 0.05%)</title><rect x="70.1916%" y="357" width="0.0488%" height="15" fill="rgb(210,31,13)" fg:x="1630070" fg:w="1133"/><text x="70.4416%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (1,225 samples, 0.05%)</title><rect x="70.1907%" y="373" width="0.0527%" height="15" fill="rgb(230,25,16)" fg:x="1630051" fg:w="1225"/><text x="70.4407%" y="383.50"></text></g><g><title>down_write (1,380 samples, 0.06%)</title><rect x="70.1841%" y="389" width="0.0594%" height="15" fill="rgb(246,108,53)" fg:x="1629897" fg:w="1380"/><text x="70.4341%" y="399.50"></text></g><g><title>__btrfs_tree_lock (1,420 samples, 0.06%)</title><rect x="70.1825%" y="405" width="0.0611%" height="15" fill="rgb(241,172,50)" fg:x="1629859" fg:w="1420"/><text x="70.4325%" y="415.50"></text></g><g><title>btrfs_lock_root_node (1,602 samples, 0.07%)</title><rect x="70.1816%" y="421" width="0.0690%" height="15" fill="rgb(235,141,10)" fg:x="1629839" fg:w="1602"/><text x="70.4316%" y="431.50"></text></g><g><title>__schedule (394 samples, 0.02%)</title><rect x="70.2664%" y="341" width="0.0170%" height="15" fill="rgb(220,174,43)" fg:x="1631808" fg:w="394"/><text x="70.5164%" y="351.50"></text></g><g><title>schedule (397 samples, 0.02%)</title><rect x="70.2663%" y="357" width="0.0171%" height="15" fill="rgb(215,181,40)" fg:x="1631806" fg:w="397"/><text x="70.5163%" y="367.50"></text></g><g><title>down_read (688 samples, 0.03%)</title><rect x="70.2540%" y="389" width="0.0296%" height="15" fill="rgb(230,97,2)" fg:x="1631521" fg:w="688"/><text x="70.5040%" y="399.50"></text></g><g><title>rwsem_down_read_slowpath (443 samples, 0.02%)</title><rect x="70.2646%" y="373" width="0.0191%" height="15" fill="rgb(211,25,27)" fg:x="1631766" fg:w="443"/><text x="70.5146%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (731 samples, 0.03%)</title><rect x="70.2524%" y="405" width="0.0315%" height="15" fill="rgb(230,87,26)" fg:x="1631483" fg:w="731"/><text x="70.5024%" y="415.50"></text></g><g><title>btrfs_root_node (241 samples, 0.01%)</title><rect x="70.2839%" y="405" width="0.0104%" height="15" fill="rgb(227,160,17)" fg:x="1632214" fg:w="241"/><text x="70.5339%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (1,013 samples, 0.04%)</title><rect x="70.2509%" y="421" width="0.0436%" height="15" fill="rgb(244,85,34)" fg:x="1631449" fg:w="1013"/><text x="70.5009%" y="431.50"></text></g><g><title>free_extent_buffer (305 samples, 0.01%)</title><rect x="70.3080%" y="421" width="0.0131%" height="15" fill="rgb(207,70,0)" fg:x="1632775" fg:w="305"/><text x="70.5580%" y="431.50"></text></g><g><title>btrfs_node_key (247 samples, 0.01%)</title><rect x="70.3459%" y="405" width="0.0106%" height="15" fill="rgb(223,129,7)" fg:x="1633653" fg:w="247"/><text x="70.5959%" y="415.50"></text></g><g><title>radix_tree_lookup (555 samples, 0.02%)</title><rect x="70.3762%" y="373" width="0.0239%" height="15" fill="rgb(246,105,7)" fg:x="1634358" fg:w="555"/><text x="70.6262%" y="383.50"></text></g><g><title>__radix_tree_lookup (552 samples, 0.02%)</title><rect x="70.3763%" y="357" width="0.0238%" height="15" fill="rgb(215,154,42)" fg:x="1634361" fg:w="552"/><text x="70.6263%" y="367.50"></text></g><g><title>find_extent_buffer_nolock (761 samples, 0.03%)</title><rect x="70.3675%" y="389" width="0.0328%" height="15" fill="rgb(220,215,30)" fg:x="1634156" fg:w="761"/><text x="70.6175%" y="399.50"></text></g><g><title>mark_page_accessed (265 samples, 0.01%)</title><rect x="70.4003%" y="389" width="0.0114%" height="15" fill="rgb(228,81,51)" fg:x="1634917" fg:w="265"/><text x="70.6503%" y="399.50"></text></g><g><title>find_extent_buffer (1,195 samples, 0.05%)</title><rect x="70.3609%" y="405" width="0.0515%" height="15" fill="rgb(247,71,54)" fg:x="1634002" fg:w="1195"/><text x="70.6109%" y="415.50"></text></g><g><title>read_block_for_search (2,136 samples, 0.09%)</title><rect x="70.3226%" y="421" width="0.0920%" height="15" fill="rgb(234,176,34)" fg:x="1633112" fg:w="2136"/><text x="70.5726%" y="431.50"></text></g><g><title>unlock_up (366 samples, 0.02%)</title><rect x="70.4158%" y="421" width="0.0158%" height="15" fill="rgb(241,103,54)" fg:x="1635278" fg:w="366"/><text x="70.6658%" y="431.50"></text></g><g><title>btrfs_search_slot (8,602 samples, 0.37%)</title><rect x="70.0666%" y="437" width="0.3704%" height="15" fill="rgb(228,22,34)" fg:x="1627167" fg:w="8602"/><text x="70.3166%" y="447.50"></text></g><g><title>crc32c (389 samples, 0.02%)</title><rect x="70.4386%" y="437" width="0.0168%" height="15" fill="rgb(241,179,48)" fg:x="1635807" fg:w="389"/><text x="70.6886%" y="447.50"></text></g><g><title>crypto_shash_update (277 samples, 0.01%)</title><rect x="70.4434%" y="421" width="0.0119%" height="15" fill="rgb(235,167,37)" fg:x="1635919" fg:w="277"/><text x="70.6934%" y="431.50"></text></g><g><title>btrfs_lookup_dir_item (9,391 samples, 0.40%)</title><rect x="70.0558%" y="453" width="0.4044%" height="15" fill="rgb(213,109,30)" fg:x="1626918" fg:w="9391"/><text x="70.3058%" y="463.50"></text></g><g><title>try_to_wake_up (350 samples, 0.02%)</title><rect x="70.4771%" y="373" width="0.0151%" height="15" fill="rgb(222,172,16)" fg:x="1636702" fg:w="350"/><text x="70.7271%" y="383.50"></text></g><g><title>btrfs_tree_unlock (439 samples, 0.02%)</title><rect x="70.4734%" y="437" width="0.0189%" height="15" fill="rgb(233,192,5)" fg:x="1636614" fg:w="439"/><text x="70.7234%" y="447.50"></text></g><g><title>up_write (405 samples, 0.02%)</title><rect x="70.4748%" y="421" width="0.0174%" height="15" fill="rgb(247,189,41)" fg:x="1636648" fg:w="405"/><text x="70.7248%" y="431.50"></text></g><g><title>rwsem_wake.isra.0 (403 samples, 0.02%)</title><rect x="70.4749%" y="405" width="0.0174%" height="15" fill="rgb(218,134,47)" fg:x="1636650" fg:w="403"/><text x="70.7249%" y="415.50"></text></g><g><title>wake_up_q (355 samples, 0.02%)</title><rect x="70.4770%" y="389" width="0.0153%" height="15" fill="rgb(216,29,3)" fg:x="1636698" fg:w="355"/><text x="70.7270%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (319 samples, 0.01%)</title><rect x="70.5032%" y="421" width="0.0137%" height="15" fill="rgb(246,140,12)" fg:x="1637307" fg:w="319"/><text x="70.7532%" y="431.50"></text></g><g><title>release_extent_buffer (264 samples, 0.01%)</title><rect x="70.5056%" y="405" width="0.0114%" height="15" fill="rgb(230,136,11)" fg:x="1637362" fg:w="264"/><text x="70.7556%" y="415.50"></text></g><g><title>free_extent_buffer (548 samples, 0.02%)</title><rect x="70.4938%" y="437" width="0.0236%" height="15" fill="rgb(247,22,47)" fg:x="1637088" fg:w="548"/><text x="70.7438%" y="447.50"></text></g><g><title>btrfs_release_path (1,594 samples, 0.07%)</title><rect x="70.4602%" y="453" width="0.0686%" height="15" fill="rgb(218,84,22)" fg:x="1636309" fg:w="1594"/><text x="70.7102%" y="463.50"></text></g><g><title>up_write (267 samples, 0.01%)</title><rect x="70.5174%" y="437" width="0.0115%" height="15" fill="rgb(216,87,39)" fg:x="1637636" fg:w="267"/><text x="70.7674%" y="447.50"></text></g><g><title>join_running_log_trans (516 samples, 0.02%)</title><rect x="70.5369%" y="453" width="0.0222%" height="15" fill="rgb(221,178,8)" fg:x="1638089" fg:w="516"/><text x="70.7869%" y="463.50"></text></g><g><title>mutex_lock (271 samples, 0.01%)</title><rect x="70.5474%" y="437" width="0.0117%" height="15" fill="rgb(230,42,11)" fg:x="1638334" fg:w="271"/><text x="70.7974%" y="447.50"></text></g><g><title>btrfs_del_dir_entries_in_log (23,226 samples, 1.00%)</title><rect x="69.5770%" y="469" width="1.0001%" height="15" fill="rgb(237,229,4)" fg:x="1615798" fg:w="23226"/><text x="69.8270%" y="479.50"></text></g><g><title>kmem_cache_alloc (609 samples, 0.03%)</title><rect x="70.6112%" y="421" width="0.0262%" height="15" fill="rgb(222,31,33)" fg:x="1639815" fg:w="609"/><text x="70.8612%" y="431.50"></text></g><g><title>btrfs_alloc_path (863 samples, 0.04%)</title><rect x="70.6071%" y="437" width="0.0372%" height="15" fill="rgb(210,17,39)" fg:x="1639721" fg:w="863"/><text x="70.8571%" y="447.50"></text></g><g><title>kmem_cache_alloc (399 samples, 0.02%)</title><rect x="70.6567%" y="405" width="0.0172%" height="15" fill="rgb(244,93,20)" fg:x="1640873" fg:w="399"/><text x="70.9067%" y="415.50"></text></g><g><title>btrfs_alloc_path (634 samples, 0.03%)</title><rect x="70.6549%" y="421" width="0.0273%" height="15" fill="rgb(210,40,47)" fg:x="1640830" fg:w="634"/><text x="70.9049%" y="431.50"></text></g><g><title>try_to_wake_up (282 samples, 0.01%)</title><rect x="70.6993%" y="325" width="0.0121%" height="15" fill="rgb(239,211,47)" fg:x="1641860" fg:w="282"/><text x="70.9493%" y="335.50"></text></g><g><title>btrfs_tree_unlock (392 samples, 0.02%)</title><rect x="70.6947%" y="389" width="0.0169%" height="15" fill="rgb(251,223,49)" fg:x="1641754" fg:w="392"/><text x="70.9447%" y="399.50"></text></g><g><title>up_write (345 samples, 0.01%)</title><rect x="70.6967%" y="373" width="0.0149%" height="15" fill="rgb(221,149,5)" fg:x="1641801" fg:w="345"/><text x="70.9467%" y="383.50"></text></g><g><title>rwsem_wake.isra.0 (343 samples, 0.01%)</title><rect x="70.6968%" y="357" width="0.0148%" height="15" fill="rgb(219,224,51)" fg:x="1641803" fg:w="343"/><text x="70.9468%" y="367.50"></text></g><g><title>wake_up_q (298 samples, 0.01%)</title><rect x="70.6987%" y="341" width="0.0128%" height="15" fill="rgb(223,7,8)" fg:x="1641848" fg:w="298"/><text x="70.9487%" y="351.50"></text></g><g><title>free_extent_buffer.part.0 (332 samples, 0.01%)</title><rect x="70.7211%" y="373" width="0.0143%" height="15" fill="rgb(241,217,22)" fg:x="1642368" fg:w="332"/><text x="70.9711%" y="383.50"></text></g><g><title>release_extent_buffer (271 samples, 0.01%)</title><rect x="70.7238%" y="357" width="0.0117%" height="15" fill="rgb(248,209,0)" fg:x="1642429" fg:w="271"/><text x="70.9738%" y="367.50"></text></g><g><title>free_extent_buffer (533 samples, 0.02%)</title><rect x="70.7130%" y="389" width="0.0230%" height="15" fill="rgb(217,205,4)" fg:x="1642180" fg:w="533"/><text x="70.9630%" y="399.50"></text></g><g><title>btrfs_release_path (1,400 samples, 0.06%)</title><rect x="70.6853%" y="405" width="0.0603%" height="15" fill="rgb(228,124,39)" fg:x="1641536" fg:w="1400"/><text x="70.9353%" y="415.50"></text></g><g><title>kmem_cache_free (487 samples, 0.02%)</title><rect x="70.7477%" y="405" width="0.0210%" height="15" fill="rgb(250,116,42)" fg:x="1642984" fg:w="487"/><text x="70.9977%" y="415.50"></text></g><g><title>btrfs_free_path (1,996 samples, 0.09%)</title><rect x="70.6835%" y="421" width="0.0859%" height="15" fill="rgb(223,202,9)" fg:x="1641495" fg:w="1996"/><text x="70.9335%" y="431.50"></text></g><g><title>balance_level (298 samples, 0.01%)</title><rect x="70.8072%" y="405" width="0.0128%" height="15" fill="rgb(242,222,40)" fg:x="1644368" fg:w="298"/><text x="71.0572%" y="415.50"></text></g><g><title>btrfs_bin_search (1,078 samples, 0.05%)</title><rect x="70.8201%" y="405" width="0.0464%" height="15" fill="rgb(229,99,46)" fg:x="1644666" fg:w="1078"/><text x="71.0701%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (994 samples, 0.04%)</title><rect x="70.8237%" y="389" width="0.0428%" height="15" fill="rgb(225,56,46)" fg:x="1644750" fg:w="994"/><text x="71.0737%" y="399.50"></text></g><g><title>rwsem_optimistic_spin (1,767 samples, 0.08%)</title><rect x="70.8782%" y="341" width="0.0761%" height="15" fill="rgb(227,94,5)" fg:x="1646015" fg:w="1767"/><text x="71.1282%" y="351.50"></text></g><g><title>down_write (2,071 samples, 0.09%)</title><rect x="70.8705%" y="373" width="0.0892%" height="15" fill="rgb(205,112,38)" fg:x="1645837" fg:w="2071"/><text x="71.1205%" y="383.50"></text></g><g><title>rwsem_down_write_slowpath (1,916 samples, 0.08%)</title><rect x="70.8772%" y="357" width="0.0825%" height="15" fill="rgb(231,133,46)" fg:x="1645992" fg:w="1916"/><text x="71.1272%" y="367.50"></text></g><g><title>__btrfs_tree_lock (2,109 samples, 0.09%)</title><rect x="70.8690%" y="389" width="0.0908%" height="15" fill="rgb(217,16,9)" fg:x="1645801" fg:w="2109"/><text x="71.1190%" y="399.50"></text></g><g><title>btrfs_lock_root_node (2,290 samples, 0.10%)</title><rect x="70.8682%" y="405" width="0.0986%" height="15" fill="rgb(249,173,9)" fg:x="1645783" fg:w="2290"/><text x="71.1182%" y="415.50"></text></g><g><title>schedule (322 samples, 0.01%)</title><rect x="70.9801%" y="341" width="0.0139%" height="15" fill="rgb(205,163,53)" fg:x="1648383" fg:w="322"/><text x="71.2301%" y="351.50"></text></g><g><title>__schedule (317 samples, 0.01%)</title><rect x="70.9803%" y="325" width="0.0137%" height="15" fill="rgb(217,54,41)" fg:x="1648388" fg:w="317"/><text x="71.2303%" y="335.50"></text></g><g><title>down_read (562 samples, 0.02%)</title><rect x="70.9699%" y="373" width="0.0242%" height="15" fill="rgb(228,216,12)" fg:x="1648146" fg:w="562"/><text x="71.2199%" y="383.50"></text></g><g><title>rwsem_down_read_slowpath (359 samples, 0.02%)</title><rect x="70.9787%" y="357" width="0.0155%" height="15" fill="rgb(244,228,15)" fg:x="1648349" fg:w="359"/><text x="71.2287%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (589 samples, 0.03%)</title><rect x="70.9689%" y="389" width="0.0254%" height="15" fill="rgb(221,176,53)" fg:x="1648121" fg:w="589"/><text x="71.2189%" y="399.50"></text></g><g><title>btrfs_read_lock_root_node (790 samples, 0.03%)</title><rect x="70.9671%" y="405" width="0.0340%" height="15" fill="rgb(205,94,34)" fg:x="1648081" fg:w="790"/><text x="71.2171%" y="415.50"></text></g><g><title>free_extent_buffer (271 samples, 0.01%)</title><rect x="71.0144%" y="405" width="0.0117%" height="15" fill="rgb(213,110,48)" fg:x="1649179" fg:w="271"/><text x="71.2644%" y="415.50"></text></g><g><title>btrfs_node_key (236 samples, 0.01%)</title><rect x="71.0481%" y="389" width="0.0102%" height="15" fill="rgb(236,142,28)" fg:x="1649961" fg:w="236"/><text x="71.2981%" y="399.50"></text></g><g><title>radix_tree_lookup (393 samples, 0.02%)</title><rect x="71.0751%" y="357" width="0.0169%" height="15" fill="rgb(225,135,29)" fg:x="1650589" fg:w="393"/><text x="71.3251%" y="367.50"></text></g><g><title>__radix_tree_lookup (389 samples, 0.02%)</title><rect x="71.0753%" y="341" width="0.0168%" height="15" fill="rgb(252,45,31)" fg:x="1650593" fg:w="389"/><text x="71.3253%" y="351.50"></text></g><g><title>find_extent_buffer_nolock (545 samples, 0.02%)</title><rect x="71.0687%" y="373" width="0.0235%" height="15" fill="rgb(211,187,50)" fg:x="1650440" fg:w="545"/><text x="71.3187%" y="383.50"></text></g><g><title>mark_page_accessed (260 samples, 0.01%)</title><rect x="71.0922%" y="373" width="0.0112%" height="15" fill="rgb(229,109,7)" fg:x="1650985" fg:w="260"/><text x="71.3422%" y="383.50"></text></g><g><title>find_extent_buffer (954 samples, 0.04%)</title><rect x="71.0628%" y="389" width="0.0411%" height="15" fill="rgb(251,131,51)" fg:x="1650303" fg:w="954"/><text x="71.3128%" y="399.50"></text></g><g><title>read_block_for_search (1,847 samples, 0.08%)</title><rect x="71.0270%" y="405" width="0.0795%" height="15" fill="rgb(251,180,35)" fg:x="1649471" fg:w="1847"/><text x="71.2770%" y="415.50"></text></g><g><title>unlock_up (324 samples, 0.01%)</title><rect x="71.1077%" y="405" width="0.0140%" height="15" fill="rgb(211,46,32)" fg:x="1651345" fg:w="324"/><text x="71.3577%" y="415.50"></text></g><g><title>btrfs_search_slot (8,247 samples, 0.36%)</title><rect x="70.7716%" y="421" width="0.3551%" height="15" fill="rgb(248,123,17)" fg:x="1643541" fg:w="8247"/><text x="71.0216%" y="431.50"></text></g><g><title>crc32c (752 samples, 0.03%)</title><rect x="71.1279%" y="421" width="0.0324%" height="15" fill="rgb(227,141,18)" fg:x="1651815" fg:w="752"/><text x="71.3779%" y="431.50"></text></g><g><title>crypto_shash_update (394 samples, 0.02%)</title><rect x="71.1433%" y="405" width="0.0170%" height="15" fill="rgb(216,102,9)" fg:x="1652173" fg:w="394"/><text x="71.3933%" y="415.50"></text></g><g><title>crc32c_pcl_intel_update (247 samples, 0.01%)</title><rect x="71.1497%" y="389" width="0.0106%" height="15" fill="rgb(253,47,13)" fg:x="1652320" fg:w="247"/><text x="71.3997%" y="399.50"></text></g><g><title>btrfs_del_inode_extref (12,222 samples, 0.53%)</title><rect x="70.6464%" y="437" width="0.5263%" height="15" fill="rgb(226,93,23)" fg:x="1640632" fg:w="12222"/><text x="70.8964%" y="447.50"></text></g><g><title>try_to_wake_up (526 samples, 0.02%)</title><rect x="71.1972%" y="341" width="0.0226%" height="15" fill="rgb(247,104,17)" fg:x="1653425" fg:w="526"/><text x="71.4472%" y="351.50"></text></g><g><title>btrfs_tree_unlock (657 samples, 0.03%)</title><rect x="71.1919%" y="405" width="0.0283%" height="15" fill="rgb(233,203,26)" fg:x="1653300" fg:w="657"/><text x="71.4419%" y="415.50"></text></g><g><title>up_write (611 samples, 0.03%)</title><rect x="71.1938%" y="389" width="0.0263%" height="15" fill="rgb(244,98,49)" fg:x="1653346" fg:w="611"/><text x="71.4438%" y="399.50"></text></g><g><title>rwsem_wake.isra.0 (610 samples, 0.03%)</title><rect x="71.1939%" y="373" width="0.0263%" height="15" fill="rgb(235,134,22)" fg:x="1653347" fg:w="610"/><text x="71.4439%" y="383.50"></text></g><g><title>wake_up_q (543 samples, 0.02%)</title><rect x="71.1968%" y="357" width="0.0234%" height="15" fill="rgb(221,70,32)" fg:x="1653414" fg:w="543"/><text x="71.4468%" y="367.50"></text></g><g><title>free_extent_buffer.part.0 (317 samples, 0.01%)</title><rect x="71.2302%" y="389" width="0.0137%" height="15" fill="rgb(238,15,50)" fg:x="1654190" fg:w="317"/><text x="71.4802%" y="399.50"></text></g><g><title>release_extent_buffer (269 samples, 0.01%)</title><rect x="71.2323%" y="373" width="0.0116%" height="15" fill="rgb(215,221,48)" fg:x="1654238" fg:w="269"/><text x="71.4823%" y="383.50"></text></g><g><title>free_extent_buffer (537 samples, 0.02%)</title><rect x="71.2217%" y="405" width="0.0231%" height="15" fill="rgb(236,73,3)" fg:x="1653994" fg:w="537"/><text x="71.4717%" y="415.50"></text></g><g><title>btrfs_release_path (1,734 samples, 0.07%)</title><rect x="71.1793%" y="421" width="0.0747%" height="15" fill="rgb(250,107,11)" fg:x="1653009" fg:w="1734"/><text x="71.4293%" y="431.50"></text></g><g><title>kmem_cache_free (771 samples, 0.03%)</title><rect x="71.2567%" y="421" width="0.0332%" height="15" fill="rgb(242,39,14)" fg:x="1654805" fg:w="771"/><text x="71.5067%" y="431.50"></text></g><g><title>btrfs_free_path (2,734 samples, 0.12%)</title><rect x="71.1727%" y="437" width="0.1177%" height="15" fill="rgb(248,164,37)" fg:x="1652854" fg:w="2734"/><text x="71.4227%" y="447.50"></text></g><g><title>balance_level (376 samples, 0.02%)</title><rect x="71.3549%" y="421" width="0.0162%" height="15" fill="rgb(217,60,12)" fg:x="1657087" fg:w="376"/><text x="71.6049%" y="431.50"></text></g><g><title>btrfs_bin_search (1,716 samples, 0.07%)</title><rect x="71.3711%" y="421" width="0.0739%" height="15" fill="rgb(240,125,29)" fg:x="1657463" fg:w="1716"/><text x="71.6211%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (1,647 samples, 0.07%)</title><rect x="71.3741%" y="405" width="0.0709%" height="15" fill="rgb(208,207,28)" fg:x="1657532" fg:w="1647"/><text x="71.6241%" y="415.50"></text></g><g><title>osq_lock (516 samples, 0.02%)</title><rect x="71.4794%" y="341" width="0.0222%" height="15" fill="rgb(209,159,27)" fg:x="1659977" fg:w="516"/><text x="71.7294%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (1,226 samples, 0.05%)</title><rect x="71.4591%" y="357" width="0.0528%" height="15" fill="rgb(251,176,53)" fg:x="1659505" fg:w="1226"/><text x="71.7091%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (1,390 samples, 0.06%)</title><rect x="71.4576%" y="373" width="0.0599%" height="15" fill="rgb(211,85,7)" fg:x="1659472" fg:w="1390"/><text x="71.7076%" y="383.50"></text></g><g><title>down_write (1,542 samples, 0.07%)</title><rect x="71.4512%" y="389" width="0.0664%" height="15" fill="rgb(216,64,54)" fg:x="1659322" fg:w="1542"/><text x="71.7012%" y="399.50"></text></g><g><title>__btrfs_tree_lock (1,601 samples, 0.07%)</title><rect x="71.4487%" y="405" width="0.0689%" height="15" fill="rgb(217,54,24)" fg:x="1659264" fg:w="1601"/><text x="71.6987%" y="415.50"></text></g><g><title>btrfs_lock_root_node (1,798 samples, 0.08%)</title><rect x="71.4476%" y="421" width="0.0774%" height="15" fill="rgb(208,206,53)" fg:x="1659239" fg:w="1798"/><text x="71.6976%" y="431.50"></text></g><g><title>__schedule (614 samples, 0.03%)</title><rect x="71.5418%" y="341" width="0.0264%" height="15" fill="rgb(251,74,39)" fg:x="1661427" fg:w="614"/><text x="71.7918%" y="351.50"></text></g><g><title>schedule (627 samples, 0.03%)</title><rect x="71.5415%" y="357" width="0.0270%" height="15" fill="rgb(226,47,5)" fg:x="1661420" fg:w="627"/><text x="71.7915%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (691 samples, 0.03%)</title><rect x="71.5389%" y="373" width="0.0298%" height="15" fill="rgb(234,111,33)" fg:x="1661359" fg:w="691"/><text x="71.7889%" y="383.50"></text></g><g><title>down_read (924 samples, 0.04%)</title><rect x="71.5289%" y="389" width="0.0398%" height="15" fill="rgb(251,14,10)" fg:x="1661128" fg:w="924"/><text x="71.7789%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (968 samples, 0.04%)</title><rect x="71.5273%" y="405" width="0.0417%" height="15" fill="rgb(232,43,0)" fg:x="1661091" fg:w="968"/><text x="71.7773%" y="415.50"></text></g><g><title>btrfs_root_node (721 samples, 0.03%)</title><rect x="71.5690%" y="405" width="0.0310%" height="15" fill="rgb(222,68,43)" fg:x="1662059" fg:w="721"/><text x="71.8190%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (1,736 samples, 0.07%)</title><rect x="71.5261%" y="421" width="0.0748%" height="15" fill="rgb(217,24,23)" fg:x="1661061" fg:w="1736"/><text x="71.7761%" y="431.50"></text></g><g><title>btrfs_tree_lock (236 samples, 0.01%)</title><rect x="71.6040%" y="421" width="0.0102%" height="15" fill="rgb(229,209,14)" fg:x="1662870" fg:w="236"/><text x="71.8540%" y="431.50"></text></g><g><title>free_extent_buffer (310 samples, 0.01%)</title><rect x="71.6192%" y="421" width="0.0133%" height="15" fill="rgb(250,149,48)" fg:x="1663225" fg:w="310"/><text x="71.8692%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (296 samples, 0.01%)</title><rect x="71.6430%" y="405" width="0.0127%" height="15" fill="rgb(210,120,37)" fg:x="1663776" fg:w="296"/><text x="71.8930%" y="415.50"></text></g><g><title>verify_parent_transid (257 samples, 0.01%)</title><rect x="71.6446%" y="389" width="0.0111%" height="15" fill="rgb(210,21,8)" fg:x="1663815" fg:w="257"/><text x="71.8946%" y="399.50"></text></g><g><title>btrfs_node_key (315 samples, 0.01%)</title><rect x="71.6635%" y="405" width="0.0136%" height="15" fill="rgb(243,145,7)" fg:x="1664254" fg:w="315"/><text x="71.9135%" y="415.50"></text></g><g><title>read_extent_buffer (308 samples, 0.01%)</title><rect x="71.6638%" y="389" width="0.0133%" height="15" fill="rgb(238,178,32)" fg:x="1664261" fg:w="308"/><text x="71.9138%" y="399.50"></text></g><g><title>__radix_tree_lookup (1,137 samples, 0.05%)</title><rect x="71.7150%" y="357" width="0.0490%" height="15" fill="rgb(222,4,10)" fg:x="1665450" fg:w="1137"/><text x="71.9650%" y="367.50"></text></g><g><title>radix_tree_lookup (1,139 samples, 0.05%)</title><rect x="71.7150%" y="373" width="0.0490%" height="15" fill="rgb(239,7,37)" fg:x="1665449" fg:w="1139"/><text x="71.9650%" y="383.50"></text></g><g><title>find_extent_buffer_nolock (1,786 samples, 0.08%)</title><rect x="71.6873%" y="389" width="0.0769%" height="15" fill="rgb(215,31,37)" fg:x="1664805" fg:w="1786"/><text x="71.9373%" y="399.50"></text></g><g><title>mark_page_accessed (459 samples, 0.02%)</title><rect x="71.7642%" y="389" width="0.0198%" height="15" fill="rgb(224,83,33)" fg:x="1666591" fg:w="459"/><text x="72.0142%" y="399.50"></text></g><g><title>find_extent_buffer (2,410 samples, 0.10%)</title><rect x="71.6812%" y="405" width="0.1038%" height="15" fill="rgb(239,55,3)" fg:x="1664663" fg:w="2410"/><text x="71.9312%" y="415.50"></text></g><g><title>read_block_for_search (3,564 samples, 0.15%)</title><rect x="71.6343%" y="421" width="0.1535%" height="15" fill="rgb(247,92,11)" fg:x="1663574" fg:w="3564"/><text x="71.8843%" y="431.50"></text></g><g><title>unlock_up (353 samples, 0.02%)</title><rect x="71.7895%" y="421" width="0.0152%" height="15" fill="rgb(239,200,7)" fg:x="1667180" fg:w="353"/><text x="72.0395%" y="431.50"></text></g><g><title>btrfs_search_slot (11,995 samples, 0.52%)</title><rect x="71.2940%" y="437" width="0.5165%" height="15" fill="rgb(227,115,8)" fg:x="1655673" fg:w="11995"/><text x="71.5440%" y="447.50"></text></g><g><title>crc32c (257 samples, 0.01%)</title><rect x="71.8119%" y="437" width="0.0111%" height="15" fill="rgb(215,189,27)" fg:x="1667699" fg:w="257"/><text x="72.0619%" y="447.50"></text></g><g><title>btrfs_del_inode_ref (28,567 samples, 1.23%)</title><rect x="70.5991%" y="453" width="1.2301%" height="15" fill="rgb(251,216,39)" fg:x="1639535" fg:w="28567"/><text x="70.8491%" y="463.50"></text></g><g><title>join_running_log_trans (846 samples, 0.04%)</title><rect x="71.8409%" y="453" width="0.0364%" height="15" fill="rgb(207,29,47)" fg:x="1668372" fg:w="846"/><text x="72.0909%" y="463.50"></text></g><g><title>mutex_lock (520 samples, 0.02%)</title><rect x="71.8549%" y="437" width="0.0224%" height="15" fill="rgb(210,71,34)" fg:x="1668698" fg:w="520"/><text x="72.1049%" y="447.50"></text></g><g><title>btrfs_del_inode_ref_in_log (30,474 samples, 1.31%)</title><rect x="70.5776%" y="469" width="1.3122%" height="15" fill="rgb(253,217,51)" fg:x="1639036" fg:w="30474"/><text x="70.8276%" y="479.50"></text></g><g><title>btrfs_del_items (242 samples, 0.01%)</title><rect x="71.8899%" y="469" width="0.0104%" height="15" fill="rgb(222,117,46)" fg:x="1669510" fg:w="242"/><text x="72.1399%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,305 samples, 0.06%)</title><rect x="71.9279%" y="453" width="0.0562%" height="15" fill="rgb(226,132,6)" fg:x="1670394" fg:w="1305"/><text x="72.1779%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (1,765 samples, 0.08%)</title><rect x="71.9985%" y="437" width="0.0760%" height="15" fill="rgb(254,145,51)" fg:x="1672032" fg:w="1765"/><text x="72.2485%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,842 samples, 0.08%)</title><rect x="71.9952%" y="453" width="0.0793%" height="15" fill="rgb(231,199,27)" fg:x="1671956" fg:w="1842"/><text x="72.2452%" y="463.50"></text></g><g><title>mutex_lock (427 samples, 0.02%)</title><rect x="72.0745%" y="453" width="0.0184%" height="15" fill="rgb(245,158,14)" fg:x="1673798" fg:w="427"/><text x="72.3245%" y="463.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (4,615 samples, 0.20%)</title><rect x="71.9003%" y="469" width="0.1987%" height="15" fill="rgb(240,113,14)" fg:x="1669752" fg:w="4615"/><text x="72.1503%" y="479.50"></text></g><g><title>__btrfs_add_delayed_item (1,652 samples, 0.07%)</title><rect x="72.1226%" y="453" width="0.0711%" height="15" fill="rgb(210,20,13)" fg:x="1674914" fg:w="1652"/><text x="72.3726%" y="463.50"></text></g><g><title>btrfs_comp_cpu_keys (1,112 samples, 0.05%)</title><rect x="72.1458%" y="437" width="0.0479%" height="15" fill="rgb(241,144,13)" fg:x="1675454" fg:w="1112"/><text x="72.3958%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (574 samples, 0.02%)</title><rect x="72.1937%" y="453" width="0.0247%" height="15" fill="rgb(235,43,34)" fg:x="1676566" fg:w="574"/><text x="72.4437%" y="463.50"></text></g><g><title>_raw_spin_lock (973 samples, 0.04%)</title><rect x="72.2412%" y="437" width="0.0419%" height="15" fill="rgb(208,36,20)" fg:x="1677669" fg:w="973"/><text x="72.4912%" y="447.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,278 samples, 0.06%)</title><rect x="72.2343%" y="453" width="0.0550%" height="15" fill="rgb(239,204,10)" fg:x="1677508" fg:w="1278"/><text x="72.4843%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (733 samples, 0.03%)</title><rect x="72.2895%" y="453" width="0.0316%" height="15" fill="rgb(217,84,43)" fg:x="1678790" fg:w="733"/><text x="72.5395%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (602 samples, 0.03%)</title><rect x="72.2951%" y="437" width="0.0259%" height="15" fill="rgb(241,170,50)" fg:x="1678921" fg:w="602"/><text x="72.5451%" y="447.50"></text></g><g><title>kmem_cache_alloc_trace (781 samples, 0.03%)</title><rect x="72.3210%" y="453" width="0.0336%" height="15" fill="rgb(226,205,29)" fg:x="1679523" fg:w="781"/><text x="72.5710%" y="463.50"></text></g><g><title>mutex_spin_on_owner (1,060 samples, 0.05%)</title><rect x="72.3817%" y="405" width="0.0456%" height="15" fill="rgb(233,113,1)" fg:x="1680931" fg:w="1060"/><text x="72.6317%" y="415.50"></text></g><g><title>dequeue_task_fair (270 samples, 0.01%)</title><rect x="72.4309%" y="341" width="0.0116%" height="15" fill="rgb(253,98,13)" fg:x="1682075" fg:w="270"/><text x="72.6809%" y="351.50"></text></g><g><title>dequeue_task (282 samples, 0.01%)</title><rect x="72.4307%" y="357" width="0.0121%" height="15" fill="rgb(211,115,12)" fg:x="1682069" fg:w="282"/><text x="72.6807%" y="367.50"></text></g><g><title>__schedule (878 samples, 0.04%)</title><rect x="72.4281%" y="373" width="0.0378%" height="15" fill="rgb(208,12,16)" fg:x="1682010" fg:w="878"/><text x="72.6781%" y="383.50"></text></g><g><title>__mutex_lock.constprop.0 (2,092 samples, 0.09%)</title><rect x="72.3764%" y="421" width="0.0901%" height="15" fill="rgb(237,193,54)" fg:x="1680808" fg:w="2092"/><text x="72.6264%" y="431.50"></text></g><g><title>schedule_preempt_disabled (898 samples, 0.04%)</title><rect x="72.4278%" y="405" width="0.0387%" height="15" fill="rgb(243,22,42)" fg:x="1682002" fg:w="898"/><text x="72.6778%" y="415.50"></text></g><g><title>schedule (898 samples, 0.04%)</title><rect x="72.4278%" y="389" width="0.0387%" height="15" fill="rgb(233,151,36)" fg:x="1682002" fg:w="898"/><text x="72.6778%" y="399.50"></text></g><g><title>__mutex_lock_slowpath (2,115 samples, 0.09%)</title><rect x="72.3763%" y="437" width="0.0911%" height="15" fill="rgb(237,57,45)" fg:x="1680807" fg:w="2115"/><text x="72.6263%" y="447.50"></text></g><g><title>mutex_lock (2,506 samples, 0.11%)</title><rect x="72.3605%" y="453" width="0.1079%" height="15" fill="rgb(221,88,17)" fg:x="1680439" fg:w="2506"/><text x="72.6105%" y="463.50"></text></g><g><title>mutex_unlock (526 samples, 0.02%)</title><rect x="72.4684%" y="453" width="0.0226%" height="15" fill="rgb(230,79,15)" fg:x="1682945" fg:w="526"/><text x="72.7184%" y="463.50"></text></g><g><title>rb_insert_color (556 samples, 0.02%)</title><rect x="72.4910%" y="453" width="0.0239%" height="15" fill="rgb(213,57,13)" fg:x="1683471" fg:w="556"/><text x="72.7410%" y="463.50"></text></g><g><title>btrfs_delete_delayed_dir_index (9,426 samples, 0.41%)</title><rect x="72.1106%" y="469" width="0.4059%" height="15" fill="rgb(222,116,39)" fg:x="1674637" fg:w="9426"/><text x="72.3606%" y="479.50"></text></g><g><title>_find_next_bit (322 samples, 0.01%)</title><rect x="72.6648%" y="357" width="0.0139%" height="15" fill="rgb(245,107,2)" fg:x="1687507" fg:w="322"/><text x="72.9148%" y="367.50"></text></g><g><title>steal_from_bitmap.part.0 (375 samples, 0.02%)</title><rect x="72.6648%" y="373" width="0.0161%" height="15" fill="rgb(238,1,10)" fg:x="1687506" fg:w="375"/><text x="72.9148%" y="383.50"></text></g><g><title>__btrfs_add_free_space (540 samples, 0.02%)</title><rect x="72.6616%" y="389" width="0.0233%" height="15" fill="rgb(249,4,48)" fg:x="1687432" fg:w="540"/><text x="72.9116%" y="399.50"></text></g><g><title>btrfs_add_free_space (553 samples, 0.02%)</title><rect x="72.6616%" y="405" width="0.0238%" height="15" fill="rgb(223,151,18)" fg:x="1687432" fg:w="553"/><text x="72.9116%" y="415.50"></text></g><g><title>btrfs_free_tree_block (897 samples, 0.04%)</title><rect x="72.6527%" y="421" width="0.0386%" height="15" fill="rgb(227,65,43)" fg:x="1687225" fg:w="897"/><text x="72.9027%" y="431.50"></text></g><g><title>btrfs_del_leaf (968 samples, 0.04%)</title><rect x="72.6522%" y="437" width="0.0417%" height="15" fill="rgb(218,40,45)" fg:x="1687214" fg:w="968"/><text x="72.9022%" y="447.50"></text></g><g><title>btrfs_get_32 (574 samples, 0.02%)</title><rect x="72.6939%" y="437" width="0.0247%" height="15" fill="rgb(252,121,31)" fg:x="1688183" fg:w="574"/><text x="72.9439%" y="447.50"></text></g><g><title>btrfs_get_token_32 (8,919 samples, 0.38%)</title><rect x="72.7187%" y="437" width="0.3841%" height="15" fill="rgb(219,158,43)" fg:x="1688757" fg:w="8919"/><text x="72.9687%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (594 samples, 0.03%)</title><rect x="73.0771%" y="421" width="0.0256%" height="15" fill="rgb(231,162,42)" fg:x="1697082" fg:w="594"/><text x="73.3271%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (501 samples, 0.02%)</title><rect x="73.1028%" y="437" width="0.0216%" height="15" fill="rgb(217,179,25)" fg:x="1697677" fg:w="501"/><text x="73.3528%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (286 samples, 0.01%)</title><rect x="73.1120%" y="421" width="0.0123%" height="15" fill="rgb(206,212,31)" fg:x="1697892" fg:w="286"/><text x="73.3620%" y="431.50"></text></g><g><title>btrfs_set_token_32 (7,959 samples, 0.34%)</title><rect x="73.1245%" y="437" width="0.3427%" height="15" fill="rgb(235,144,12)" fg:x="1698181" fg:w="7959"/><text x="73.3745%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (542 samples, 0.02%)</title><rect x="73.4438%" y="421" width="0.0233%" height="15" fill="rgb(213,51,10)" fg:x="1705598" fg:w="542"/><text x="73.6938%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (2,839 samples, 0.12%)</title><rect x="73.4672%" y="437" width="0.1222%" height="15" fill="rgb(231,145,14)" fg:x="1706141" fg:w="2839"/><text x="73.7172%" y="447.50"></text></g><g><title>copy_pages (1,004 samples, 0.04%)</title><rect x="73.5895%" y="437" width="0.0432%" height="15" fill="rgb(235,15,28)" fg:x="1708981" fg:w="1004"/><text x="73.8395%" y="447.50"></text></g><g><title>btrfs_get_32 (350 samples, 0.02%)</title><rect x="73.6439%" y="421" width="0.0151%" height="15" fill="rgb(237,206,10)" fg:x="1710244" fg:w="350"/><text x="73.8939%" y="431.50"></text></g><g><title>leaf_space_used (600 samples, 0.03%)</title><rect x="73.6354%" y="437" width="0.0258%" height="15" fill="rgb(236,227,27)" fg:x="1710047" fg:w="600"/><text x="73.8854%" y="447.50"></text></g><g><title>copy_pages (239 samples, 0.01%)</title><rect x="73.6901%" y="421" width="0.0103%" height="15" fill="rgb(246,83,35)" fg:x="1711317" fg:w="239"/><text x="73.9401%" y="431.50"></text></g><g><title>memcpy_extent_buffer (1,396 samples, 0.06%)</title><rect x="73.7004%" y="421" width="0.0601%" height="15" fill="rgb(220,136,24)" fg:x="1711557" fg:w="1396"/><text x="73.9504%" y="431.50"></text></g><g><title>memmove (1,178 samples, 0.05%)</title><rect x="73.7098%" y="405" width="0.0507%" height="15" fill="rgb(217,3,25)" fg:x="1711775" fg:w="1178"/><text x="73.9598%" y="415.50"></text></g><g><title>memmove_extent_buffer (7,760 samples, 0.33%)</title><rect x="73.6678%" y="437" width="0.3341%" height="15" fill="rgb(239,24,14)" fg:x="1710799" fg:w="7760"/><text x="73.9178%" y="447.50"></text></g><g><title>memmove (5,606 samples, 0.24%)</title><rect x="73.7605%" y="421" width="0.2414%" height="15" fill="rgb(244,16,53)" fg:x="1712953" fg:w="5606"/><text x="74.0105%" y="431.50"></text></g><g><title>__push_leaf_left (445 samples, 0.02%)</title><rect x="74.0023%" y="421" width="0.0192%" height="15" fill="rgb(208,175,44)" fg:x="1718567" fg:w="445"/><text x="74.2523%" y="431.50"></text></g><g><title>push_leaf_left (629 samples, 0.03%)</title><rect x="74.0019%" y="437" width="0.0271%" height="15" fill="rgb(252,18,48)" fg:x="1718559" fg:w="629"/><text x="74.2519%" y="447.50"></text></g><g><title>__push_leaf_right (282 samples, 0.01%)</title><rect x="74.0292%" y="421" width="0.0121%" height="15" fill="rgb(234,199,32)" fg:x="1719193" fg:w="282"/><text x="74.2792%" y="431.50"></text></g><g><title>push_leaf_right (409 samples, 0.02%)</title><rect x="74.0290%" y="437" width="0.0176%" height="15" fill="rgb(225,77,54)" fg:x="1719188" fg:w="409"/><text x="74.2790%" y="447.50"></text></g><g><title>btrfs_del_items (35,395 samples, 1.52%)</title><rect x="72.5270%" y="453" width="1.5241%" height="15" fill="rgb(225,42,25)" fg:x="1684305" fg:w="35395"/><text x="72.7770%" y="463.50"></text></g><g><title>btrfs_get_token_32 (1,347 samples, 0.06%)</title><rect x="74.0687%" y="453" width="0.0580%" height="15" fill="rgb(242,227,46)" fg:x="1720110" fg:w="1347"/><text x="74.3187%" y="463.50"></text></g><g><title>btrfs_set_token_32 (869 samples, 0.04%)</title><rect x="74.1281%" y="453" width="0.0374%" height="15" fill="rgb(246,197,35)" fg:x="1721488" fg:w="869"/><text x="74.3781%" y="463.50"></text></g><g><title>btrfs_delete_one_dir_name (38,581 samples, 1.66%)</title><rect x="72.5165%" y="469" width="1.6613%" height="15" fill="rgb(215,159,26)" fg:x="1684063" fg:w="38581"/><text x="72.7665%" y="479.50"></text></g><g><title>btrfs_end_log_trans (704 samples, 0.03%)</title><rect x="74.1778%" y="469" width="0.0303%" height="15" fill="rgb(212,194,50)" fg:x="1722644" fg:w="704"/><text x="74.4278%" y="479.50"></text></g><g><title>btrfs_release_path (243 samples, 0.01%)</title><rect x="74.2167%" y="453" width="0.0105%" height="15" fill="rgb(246,132,1)" fg:x="1723546" fg:w="243"/><text x="74.4667%" y="463.50"></text></g><g><title>kmem_cache_free (921 samples, 0.04%)</title><rect x="74.2272%" y="453" width="0.0397%" height="15" fill="rgb(217,71,7)" fg:x="1723789" fg:w="921"/><text x="74.4772%" y="463.50"></text></g><g><title>btrfs_free_path (1,376 samples, 0.06%)</title><rect x="74.2082%" y="469" width="0.0593%" height="15" fill="rgb(252,59,32)" fg:x="1723348" fg:w="1376"/><text x="74.4582%" y="479.50"></text></g><g><title>balance_level (260 samples, 0.01%)</title><rect x="74.3113%" y="453" width="0.0112%" height="15" fill="rgb(253,204,25)" fg:x="1725744" fg:w="260"/><text x="74.5613%" y="463.50"></text></g><g><title>btrfs_bin_search (306 samples, 0.01%)</title><rect x="74.3225%" y="453" width="0.0132%" height="15" fill="rgb(232,21,16)" fg:x="1726004" fg:w="306"/><text x="74.5725%" y="463.50"></text></g><g><title>btrfs_get_16 (250 samples, 0.01%)</title><rect x="74.3357%" y="453" width="0.0108%" height="15" fill="rgb(248,90,29)" fg:x="1726311" fg:w="250"/><text x="74.5857%" y="463.50"></text></g><g><title>btrfs_get_16 (878 samples, 0.04%)</title><rect x="74.3686%" y="437" width="0.0378%" height="15" fill="rgb(249,223,7)" fg:x="1727075" fg:w="878"/><text x="74.6186%" y="447.50"></text></g><g><title>btrfs_get_32 (316 samples, 0.01%)</title><rect x="74.4065%" y="437" width="0.0136%" height="15" fill="rgb(231,119,42)" fg:x="1727953" fg:w="316"/><text x="74.6565%" y="447.50"></text></g><g><title>memcmp (732 samples, 0.03%)</title><rect x="74.4254%" y="437" width="0.0315%" height="15" fill="rgb(215,41,35)" fg:x="1728394" fg:w="732"/><text x="74.6754%" y="447.50"></text></g><g><title>btrfs_match_dir_item_name (2,679 samples, 0.12%)</title><rect x="74.3555%" y="453" width="0.1154%" height="15" fill="rgb(220,44,45)" fg:x="1726769" fg:w="2679"/><text x="74.6055%" y="463.50"></text></g><g><title>memcmp_extent_buffer (322 samples, 0.01%)</title><rect x="74.4570%" y="437" width="0.0139%" height="15" fill="rgb(253,197,36)" fg:x="1729126" fg:w="322"/><text x="74.7070%" y="447.50"></text></g><g><title>btrfs_get_64 (326 samples, 0.01%)</title><rect x="74.7276%" y="421" width="0.0140%" height="15" fill="rgb(245,225,54)" fg:x="1735411" fg:w="326"/><text x="74.9776%" y="431.50"></text></g><g><title>balance_level (1,219 samples, 0.05%)</title><rect x="74.6970%" y="437" width="0.0525%" height="15" fill="rgb(239,94,37)" fg:x="1734700" fg:w="1219"/><text x="74.9470%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (6,758 samples, 0.29%)</title><rect x="74.7577%" y="421" width="0.2910%" height="15" fill="rgb(242,217,10)" fg:x="1736110" fg:w="6758"/><text x="75.0077%" y="431.50"></text></g><g><title>btrfs_bin_search (6,951 samples, 0.30%)</title><rect x="74.7495%" y="437" width="0.2993%" height="15" fill="rgb(250,193,7)" fg:x="1735919" fg:w="6951"/><text x="74.9995%" y="447.50"></text></g><g><title>btrfs_alloc_tree_block (252 samples, 0.01%)</title><rect x="75.0558%" y="405" width="0.0109%" height="15" fill="rgb(230,104,19)" fg:x="1743032" fg:w="252"/><text x="75.3058%" y="415.50"></text></g><g><title>__btrfs_cow_block (445 samples, 0.02%)</title><rect x="75.0555%" y="421" width="0.0192%" height="15" fill="rgb(230,181,4)" fg:x="1743026" fg:w="445"/><text x="75.3055%" y="431.50"></text></g><g><title>btrfs_cow_block (456 samples, 0.02%)</title><rect x="75.0555%" y="437" width="0.0196%" height="15" fill="rgb(216,219,49)" fg:x="1743026" fg:w="456"/><text x="75.3055%" y="447.50"></text></g><g><title>_raw_spin_lock_irq (754 samples, 0.03%)</title><rect x="75.1533%" y="373" width="0.0325%" height="15" fill="rgb(254,144,0)" fg:x="1745298" fg:w="754"/><text x="75.4033%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (258 samples, 0.01%)</title><rect x="75.1747%" y="357" width="0.0111%" height="15" fill="rgb(205,209,38)" fg:x="1745794" fg:w="258"/><text x="75.4247%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (258 samples, 0.01%)</title><rect x="75.1747%" y="341" width="0.0111%" height="15" fill="rgb(240,21,42)" fg:x="1745794" fg:w="258"/><text x="75.4247%" y="351.50"></text></g><g><title>osq_lock (37,106 samples, 1.60%)</title><rect x="76.3096%" y="357" width="1.5978%" height="15" fill="rgb(241,132,3)" fg:x="1772150" fg:w="37106"/><text x="76.5596%" y="367.50"></text></g><g><title>osq_unlock (500 samples, 0.02%)</title><rect x="77.9074%" y="357" width="0.0215%" height="15" fill="rgb(225,14,2)" fg:x="1809256" fg:w="500"/><text x="78.1574%" y="367.50"></text></g><g><title>rwsem_spin_on_owner (2,626 samples, 0.11%)</title><rect x="77.9293%" y="357" width="0.1131%" height="15" fill="rgb(210,141,35)" fg:x="1809765" fg:w="2626"/><text x="78.1793%" y="367.50"></text></g><g><title>sched_clock (479 samples, 0.02%)</title><rect x="78.0424%" y="357" width="0.0206%" height="15" fill="rgb(251,14,44)" fg:x="1812391" fg:w="479"/><text x="78.2924%" y="367.50"></text></g><g><title>native_sched_clock (476 samples, 0.02%)</title><rect x="78.0425%" y="341" width="0.0205%" height="15" fill="rgb(247,48,18)" fg:x="1812394" fg:w="476"/><text x="78.2925%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (66,581 samples, 2.87%)</title><rect x="75.1961%" y="373" width="2.8670%" height="15" fill="rgb(225,0,40)" fg:x="1746290" fg:w="66581"/><text x="75.4461%" y="383.50">rw..</text></g><g><title>rwsem_spin_on_owner (285 samples, 0.01%)</title><rect x="78.0631%" y="373" width="0.0123%" height="15" fill="rgb(221,31,33)" fg:x="1812871" fg:w="285"/><text x="78.3131%" y="383.50"></text></g><g><title>update_cfs_group (308 samples, 0.01%)</title><rect x="78.1759%" y="293" width="0.0133%" height="15" fill="rgb(237,42,40)" fg:x="1815492" fg:w="308"/><text x="78.4259%" y="303.50"></text></g><g><title>cpuacct_charge (281 samples, 0.01%)</title><rect x="78.2279%" y="277" width="0.0121%" height="15" fill="rgb(233,51,29)" fg:x="1816699" fg:w="281"/><text x="78.4779%" y="287.50"></text></g><g><title>update_curr (1,232 samples, 0.05%)</title><rect x="78.1892%" y="293" width="0.0531%" height="15" fill="rgb(226,58,20)" fg:x="1815800" fg:w="1232"/><text x="78.4392%" y="303.50"></text></g><g><title>__update_load_avg_cfs_rq (233 samples, 0.01%)</title><rect x="78.2677%" y="277" width="0.0100%" height="15" fill="rgb(208,98,7)" fg:x="1817623" fg:w="233"/><text x="78.5177%" y="287.50"></text></g><g><title>update_load_avg (1,067 samples, 0.05%)</title><rect x="78.2422%" y="293" width="0.0459%" height="15" fill="rgb(228,143,44)" fg:x="1817032" fg:w="1067"/><text x="78.4922%" y="303.50"></text></g><g><title>__update_load_avg_se (243 samples, 0.01%)</title><rect x="78.2777%" y="277" width="0.0105%" height="15" fill="rgb(246,55,38)" fg:x="1817856" fg:w="243"/><text x="78.5277%" y="287.50"></text></g><g><title>dequeue_entity (3,449 samples, 0.15%)</title><rect x="78.1451%" y="309" width="0.1485%" height="15" fill="rgb(247,87,16)" fg:x="1814776" fg:w="3449"/><text x="78.3951%" y="319.50"></text></g><g><title>update_cfs_group (303 samples, 0.01%)</title><rect x="78.2936%" y="309" width="0.0130%" height="15" fill="rgb(234,129,42)" fg:x="1818225" fg:w="303"/><text x="78.5436%" y="319.50"></text></g><g><title>dequeue_task_fair (4,415 samples, 0.19%)</title><rect x="78.1252%" y="325" width="0.1901%" height="15" fill="rgb(220,82,16)" fg:x="1814314" fg:w="4415"/><text x="78.3752%" y="335.50"></text></g><g><title>dequeue_task (4,670 samples, 0.20%)</title><rect x="78.1199%" y="341" width="0.2011%" height="15" fill="rgb(211,88,4)" fg:x="1814190" fg:w="4670"/><text x="78.3699%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (1,195 samples, 0.05%)</title><rect x="78.3447%" y="325" width="0.0515%" height="15" fill="rgb(248,151,21)" fg:x="1819411" fg:w="1195"/><text x="78.5947%" y="335.50"></text></g><g><title>x86_pmu_enable (1,073 samples, 0.05%)</title><rect x="78.3499%" y="309" width="0.0462%" height="15" fill="rgb(238,163,6)" fg:x="1819533" fg:w="1073"/><text x="78.5999%" y="319.50"></text></g><g><title>intel_pmu_enable_all (1,041 samples, 0.04%)</title><rect x="78.3513%" y="293" width="0.0448%" height="15" fill="rgb(209,183,11)" fg:x="1819565" fg:w="1041"/><text x="78.6013%" y="303.50"></text></g><g><title>native_write_msr (977 samples, 0.04%)</title><rect x="78.3541%" y="277" width="0.0421%" height="15" fill="rgb(219,37,20)" fg:x="1819629" fg:w="977"/><text x="78.6041%" y="287.50"></text></g><g><title>finish_task_switch.isra.0 (1,870 samples, 0.08%)</title><rect x="78.3212%" y="341" width="0.0805%" height="15" fill="rgb(210,158,4)" fg:x="1818866" fg:w="1870"/><text x="78.5712%" y="351.50"></text></g><g><title>newidle_balance (383 samples, 0.02%)</title><rect x="78.4289%" y="309" width="0.0165%" height="15" fill="rgb(221,167,53)" fg:x="1821366" fg:w="383"/><text x="78.6789%" y="319.50"></text></g><g><title>pick_next_task_fair (970 samples, 0.04%)</title><rect x="78.4153%" y="325" width="0.0418%" height="15" fill="rgb(237,151,45)" fg:x="1821051" fg:w="970"/><text x="78.6653%" y="335.50"></text></g><g><title>__update_idle_core (454 samples, 0.02%)</title><rect x="78.4628%" y="293" width="0.0195%" height="15" fill="rgb(231,39,3)" fg:x="1822155" fg:w="454"/><text x="78.7128%" y="303.50"></text></g><g><title>pick_next_task_idle (657 samples, 0.03%)</title><rect x="78.4571%" y="325" width="0.0283%" height="15" fill="rgb(212,167,28)" fg:x="1822021" fg:w="657"/><text x="78.7071%" y="335.50"></text></g><g><title>set_next_task_idle (549 samples, 0.02%)</title><rect x="78.4617%" y="309" width="0.0236%" height="15" fill="rgb(232,178,8)" fg:x="1822129" fg:w="549"/><text x="78.7117%" y="319.50"></text></g><g><title>pick_next_task (2,121 samples, 0.09%)</title><rect x="78.4055%" y="341" width="0.0913%" height="15" fill="rgb(225,151,20)" fg:x="1820823" fg:w="2121"/><text x="78.6555%" y="351.50"></text></g><g><title>perf_event_context_sched_out (476 samples, 0.02%)</title><rect x="78.5160%" y="309" width="0.0205%" height="15" fill="rgb(238,3,37)" fg:x="1823389" fg:w="476"/><text x="78.7660%" y="319.50"></text></g><g><title>__perf_event_task_sched_out (793 samples, 0.03%)</title><rect x="78.5076%" y="325" width="0.0341%" height="15" fill="rgb(251,147,42)" fg:x="1823195" fg:w="793"/><text x="78.7576%" y="335.50"></text></g><g><title>prepare_task_switch (980 samples, 0.04%)</title><rect x="78.5003%" y="341" width="0.0422%" height="15" fill="rgb(208,173,10)" fg:x="1823024" fg:w="980"/><text x="78.7503%" y="351.50"></text></g><g><title>iterate_groups (261 samples, 0.01%)</title><rect x="78.5586%" y="325" width="0.0112%" height="15" fill="rgb(246,225,4)" fg:x="1824378" fg:w="261"/><text x="78.8086%" y="335.50"></text></g><g><title>psi_group_change (2,263 samples, 0.10%)</title><rect x="78.5730%" y="325" width="0.0974%" height="15" fill="rgb(248,102,6)" fg:x="1824714" fg:w="2263"/><text x="78.8230%" y="335.50"></text></g><g><title>psi_task_switch (3,024 samples, 0.13%)</title><rect x="78.5462%" y="341" width="0.1302%" height="15" fill="rgb(232,6,21)" fg:x="1824092" fg:w="3024"/><text x="78.7962%" y="351.50"></text></g><g><title>__schedule (14,302 samples, 0.62%)</title><rect x="78.0838%" y="357" width="0.6159%" height="15" fill="rgb(221,179,22)" fg:x="1813353" fg:w="14302"/><text x="78.3338%" y="367.50"></text></g><g><title>update_rq_clock (301 samples, 0.01%)</title><rect x="78.6867%" y="341" width="0.0130%" height="15" fill="rgb(252,50,20)" fg:x="1827354" fg:w="301"/><text x="78.9367%" y="351.50"></text></g><g><title>schedule (14,550 samples, 0.63%)</title><rect x="78.0789%" y="373" width="0.6265%" height="15" fill="rgb(222,56,38)" fg:x="1813238" fg:w="14550"/><text x="78.3289%" y="383.50"></text></g><g><title>rwsem_down_write_slowpath (83,355 samples, 3.59%)</title><rect x="75.1163%" y="389" width="3.5893%" height="15" fill="rgb(206,193,29)" fg:x="1744438" fg:w="83355"/><text x="75.3663%" y="399.50">rwse..</text></g><g><title>down_write (83,912 samples, 3.61%)</title><rect x="75.0975%" y="405" width="3.6133%" height="15" fill="rgb(239,192,45)" fg:x="1744001" fg:w="83912"/><text x="75.3475%" y="415.50">down..</text></g><g><title>__btrfs_tree_lock (84,127 samples, 3.62%)</title><rect x="75.0900%" y="421" width="3.6225%" height="15" fill="rgb(254,18,36)" fg:x="1743827" fg:w="84127"/><text x="75.3400%" y="431.50">__bt..</text></g><g><title>btrfs_root_node (270 samples, 0.01%)</title><rect x="78.7126%" y="421" width="0.0116%" height="15" fill="rgb(221,127,11)" fg:x="1827955" fg:w="270"/><text x="78.9626%" y="431.50"></text></g><g><title>btrfs_lock_root_node (84,573 samples, 3.64%)</title><rect x="75.0843%" y="437" width="3.6418%" height="15" fill="rgb(234,146,35)" fg:x="1743695" fg:w="84573"/><text x="75.3343%" y="447.50">btrf..</text></g><g><title>_raw_spin_lock_irq (533 samples, 0.02%)</title><rect x="78.8256%" y="373" width="0.0230%" height="15" fill="rgb(254,201,37)" fg:x="1830580" fg:w="533"/><text x="79.0756%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (235 samples, 0.01%)</title><rect x="78.8385%" y="357" width="0.0101%" height="15" fill="rgb(211,202,23)" fg:x="1830878" fg:w="235"/><text x="79.0885%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (235 samples, 0.01%)</title><rect x="78.8385%" y="341" width="0.0101%" height="15" fill="rgb(237,91,2)" fg:x="1830878" fg:w="235"/><text x="79.0885%" y="351.50"></text></g><g><title>update_cfs_group (287 samples, 0.01%)</title><rect x="78.9441%" y="293" width="0.0124%" height="15" fill="rgb(226,228,36)" fg:x="1833332" fg:w="287"/><text x="79.1941%" y="303.50"></text></g><g><title>cpuacct_charge (267 samples, 0.01%)</title><rect x="78.9948%" y="277" width="0.0115%" height="15" fill="rgb(213,63,50)" fg:x="1834510" fg:w="267"/><text x="79.2448%" y="287.50"></text></g><g><title>update_curr (1,201 samples, 0.05%)</title><rect x="78.9565%" y="293" width="0.0517%" height="15" fill="rgb(235,194,19)" fg:x="1833619" fg:w="1201"/><text x="79.2065%" y="303.50"></text></g><g><title>update_load_avg (1,002 samples, 0.04%)</title><rect x="79.0082%" y="293" width="0.0431%" height="15" fill="rgb(207,204,18)" fg:x="1834820" fg:w="1002"/><text x="79.2582%" y="303.50"></text></g><g><title>dequeue_entity (3,211 samples, 0.14%)</title><rect x="78.9164%" y="309" width="0.1383%" height="15" fill="rgb(248,8,7)" fg:x="1832688" fg:w="3211"/><text x="79.1664%" y="319.50"></text></g><g><title>update_cfs_group (241 samples, 0.01%)</title><rect x="79.0547%" y="309" width="0.0104%" height="15" fill="rgb(223,145,47)" fg:x="1835900" fg:w="241"/><text x="79.3047%" y="319.50"></text></g><g><title>dequeue_task_fair (3,989 samples, 0.17%)</title><rect x="78.8985%" y="325" width="0.1718%" height="15" fill="rgb(228,84,11)" fg:x="1832272" fg:w="3989"/><text x="79.1485%" y="335.50"></text></g><g><title>dequeue_task (4,231 samples, 0.18%)</title><rect x="78.8915%" y="341" width="0.1822%" height="15" fill="rgb(218,76,45)" fg:x="1832111" fg:w="4231"/><text x="79.1415%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (1,102 samples, 0.05%)</title><rect x="79.0917%" y="325" width="0.0475%" height="15" fill="rgb(223,80,15)" fg:x="1836759" fg:w="1102"/><text x="79.3417%" y="335.50"></text></g><g><title>x86_pmu_enable (957 samples, 0.04%)</title><rect x="79.0979%" y="309" width="0.0412%" height="15" fill="rgb(219,218,33)" fg:x="1836904" fg:w="957"/><text x="79.3479%" y="319.50"></text></g><g><title>intel_pmu_enable_all (919 samples, 0.04%)</title><rect x="79.0996%" y="293" width="0.0396%" height="15" fill="rgb(208,51,11)" fg:x="1836942" fg:w="919"/><text x="79.3496%" y="303.50"></text></g><g><title>native_write_msr (878 samples, 0.04%)</title><rect x="79.1013%" y="277" width="0.0378%" height="15" fill="rgb(229,165,39)" fg:x="1836983" fg:w="878"/><text x="79.3513%" y="287.50"></text></g><g><title>asm_sysvec_call_function_single (262 samples, 0.01%)</title><rect x="79.1423%" y="325" width="0.0113%" height="15" fill="rgb(241,100,24)" fg:x="1837934" fg:w="262"/><text x="79.3923%" y="335.50"></text></g><g><title>sysvec_call_function_single (257 samples, 0.01%)</title><rect x="79.1425%" y="309" width="0.0111%" height="15" fill="rgb(228,14,23)" fg:x="1837939" fg:w="257"/><text x="79.3925%" y="319.50"></text></g><g><title>finish_task_switch.isra.0 (1,856 samples, 0.08%)</title><rect x="79.0742%" y="341" width="0.0799%" height="15" fill="rgb(247,116,52)" fg:x="1836352" fg:w="1856"/><text x="79.3242%" y="351.50"></text></g><g><title>newidle_balance (377 samples, 0.02%)</title><rect x="79.1807%" y="309" width="0.0162%" height="15" fill="rgb(216,149,33)" fg:x="1838826" fg:w="377"/><text x="79.4307%" y="319.50"></text></g><g><title>pick_next_task_fair (834 samples, 0.04%)</title><rect x="79.1683%" y="325" width="0.0359%" height="15" fill="rgb(238,142,29)" fg:x="1838538" fg:w="834"/><text x="79.4183%" y="335.50"></text></g><g><title>__update_idle_core (500 samples, 0.02%)</title><rect x="79.2107%" y="293" width="0.0215%" height="15" fill="rgb(224,83,40)" fg:x="1839522" fg:w="500"/><text x="79.4607%" y="303.50"></text></g><g><title>pick_next_task_idle (716 samples, 0.03%)</title><rect x="79.2042%" y="325" width="0.0308%" height="15" fill="rgb(234,165,11)" fg:x="1839372" fg:w="716"/><text x="79.4542%" y="335.50"></text></g><g><title>set_next_task_idle (597 samples, 0.03%)</title><rect x="79.2093%" y="309" width="0.0257%" height="15" fill="rgb(215,96,23)" fg:x="1839491" fg:w="597"/><text x="79.4593%" y="319.50"></text></g><g><title>pick_next_task (2,080 samples, 0.09%)</title><rect x="79.1576%" y="341" width="0.0896%" height="15" fill="rgb(233,179,26)" fg:x="1838290" fg:w="2080"/><text x="79.4076%" y="351.50"></text></g><g><title>perf_event_context_sched_out (476 samples, 0.02%)</title><rect x="79.2642%" y="309" width="0.0205%" height="15" fill="rgb(225,129,33)" fg:x="1840766" fg:w="476"/><text x="79.5142%" y="319.50"></text></g><g><title>__perf_event_task_sched_out (769 samples, 0.03%)</title><rect x="79.2564%" y="325" width="0.0331%" height="15" fill="rgb(237,49,13)" fg:x="1840583" fg:w="769"/><text x="79.5064%" y="335.50"></text></g><g><title>prepare_task_switch (897 samples, 0.04%)</title><rect x="79.2514%" y="341" width="0.0386%" height="15" fill="rgb(211,3,31)" fg:x="1840468" fg:w="897"/><text x="79.5014%" y="351.50"></text></g><g><title>iterate_groups (290 samples, 0.01%)</title><rect x="79.3060%" y="325" width="0.0125%" height="15" fill="rgb(216,152,19)" fg:x="1841735" fg:w="290"/><text x="79.5560%" y="335.50"></text></g><g><title>psi_group_change (2,008 samples, 0.09%)</title><rect x="79.3211%" y="325" width="0.0865%" height="15" fill="rgb(251,121,35)" fg:x="1842086" fg:w="2008"/><text x="79.5711%" y="335.50"></text></g><g><title>psi_task_switch (2,754 samples, 0.12%)</title><rect x="79.2943%" y="341" width="0.1186%" height="15" fill="rgb(210,217,47)" fg:x="1841465" fg:w="2754"/><text x="79.5443%" y="351.50"></text></g><g><title>__schedule (13,328 samples, 0.57%)</title><rect x="78.8591%" y="357" width="0.5739%" height="15" fill="rgb(244,116,22)" fg:x="1831358" fg:w="13328"/><text x="79.1091%" y="367.50"></text></g><g><title>update_rq_clock (261 samples, 0.01%)</title><rect x="79.4218%" y="341" width="0.0112%" height="15" fill="rgb(228,17,21)" fg:x="1844425" fg:w="261"/><text x="79.6718%" y="351.50"></text></g><g><title>schedule (13,561 samples, 0.58%)</title><rect x="78.8556%" y="373" width="0.5839%" height="15" fill="rgb(240,149,34)" fg:x="1831277" fg:w="13561"/><text x="79.1056%" y="383.50"></text></g><g><title>rwsem_down_read_slowpath (15,505 samples, 0.67%)</title><rect x="78.7808%" y="389" width="0.6677%" height="15" fill="rgb(208,125,47)" fg:x="1829538" fg:w="15505"/><text x="79.0308%" y="399.50"></text></g><g><title>down_read (16,333 samples, 0.70%)</title><rect x="78.7474%" y="405" width="0.7033%" height="15" fill="rgb(249,186,39)" fg:x="1828763" fg:w="16333"/><text x="78.9974%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (16,612 samples, 0.72%)</title><rect x="78.7386%" y="421" width="0.7153%" height="15" fill="rgb(240,220,33)" fg:x="1828559" fg:w="16612"/><text x="78.9886%" y="431.50"></text></g><g><title>btrfs_root_node (1,324 samples, 0.06%)</title><rect x="79.4539%" y="421" width="0.0570%" height="15" fill="rgb(243,110,23)" fg:x="1845171" fg:w="1324"/><text x="79.7039%" y="431.50"></text></g><g><title>btrfs_read_lock_root_node (18,211 samples, 0.78%)</title><rect x="78.7290%" y="437" width="0.7842%" height="15" fill="rgb(219,163,46)" fg:x="1828337" fg:w="18211"/><text x="78.9790%" y="447.50"></text></g><g><title>wake_q_add (258 samples, 0.01%)</title><rect x="79.5504%" y="373" width="0.0111%" height="15" fill="rgb(216,126,30)" fg:x="1847412" fg:w="258"/><text x="79.8004%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (591 samples, 0.03%)</title><rect x="79.5756%" y="341" width="0.0254%" height="15" fill="rgb(208,139,11)" fg:x="1847996" fg:w="591"/><text x="79.8256%" y="351.50"></text></g><g><title>native_queued_spin_lock_slowpath (469 samples, 0.02%)</title><rect x="79.5808%" y="325" width="0.0202%" height="15" fill="rgb(213,118,36)" fg:x="1848118" fg:w="469"/><text x="79.8308%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (469 samples, 0.02%)</title><rect x="79.5808%" y="309" width="0.0202%" height="15" fill="rgb(226,43,17)" fg:x="1848118" fg:w="469"/><text x="79.8308%" y="319.50"></text></g><g><title>try_to_wake_up (1,306 samples, 0.06%)</title><rect x="79.5660%" y="357" width="0.0562%" height="15" fill="rgb(254,217,4)" fg:x="1847773" fg:w="1306"/><text x="79.8160%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (1,920 samples, 0.08%)</title><rect x="79.5397%" y="389" width="0.0827%" height="15" fill="rgb(210,134,47)" fg:x="1847164" fg:w="1920"/><text x="79.7897%" y="399.50"></text></g><g><title>wake_up_q (1,414 samples, 0.06%)</title><rect x="79.5615%" y="373" width="0.0609%" height="15" fill="rgb(237,24,49)" fg:x="1847670" fg:w="1414"/><text x="79.8115%" y="383.50"></text></g><g><title>btrfs_tree_read_unlock (2,016 samples, 0.09%)</title><rect x="79.5357%" y="421" width="0.0868%" height="15" fill="rgb(251,39,46)" fg:x="1847070" fg:w="2016"/><text x="79.7857%" y="431.50"></text></g><g><title>up_read (1,952 samples, 0.08%)</title><rect x="79.5384%" y="405" width="0.0841%" height="15" fill="rgb(251,220,3)" fg:x="1847134" fg:w="1952"/><text x="79.7884%" y="415.50"></text></g><g><title>free_extent_buffer (312 samples, 0.01%)</title><rect x="79.6241%" y="421" width="0.0134%" height="15" fill="rgb(228,105,12)" fg:x="1849123" fg:w="312"/><text x="79.8741%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (311 samples, 0.01%)</title><rect x="79.6241%" y="405" width="0.0134%" height="15" fill="rgb(215,196,1)" fg:x="1849124" fg:w="311"/><text x="79.8741%" y="415.50"></text></g><g><title>btrfs_release_path (3,085 samples, 0.13%)</title><rect x="79.5208%" y="437" width="0.1328%" height="15" fill="rgb(214,33,39)" fg:x="1846724" fg:w="3085"/><text x="79.7708%" y="447.50"></text></g><g><title>up_read (374 samples, 0.02%)</title><rect x="79.6375%" y="421" width="0.0161%" height="15" fill="rgb(220,19,52)" fg:x="1849435" fg:w="374"/><text x="79.8875%" y="431.50"></text></g><g><title>__cond_resched (235 samples, 0.01%)</title><rect x="79.6985%" y="389" width="0.0101%" height="15" fill="rgb(221,78,38)" fg:x="1850850" fg:w="235"/><text x="79.9485%" y="399.50"></text></g><g><title>rwsem_spin_on_owner (4,385 samples, 0.19%)</title><rect x="79.8669%" y="357" width="0.1888%" height="15" fill="rgb(253,30,16)" fg:x="1854762" fg:w="4385"/><text x="80.1169%" y="367.50"></text></g><g><title>rwsem_optimistic_spin (7,927 samples, 0.34%)</title><rect x="79.7175%" y="373" width="0.3413%" height="15" fill="rgb(242,65,0)" fg:x="1851293" fg:w="7927"/><text x="79.9675%" y="383.50"></text></g><g><title>__schedule (336 samples, 0.01%)</title><rect x="80.0611%" y="357" width="0.0145%" height="15" fill="rgb(235,201,12)" fg:x="1859272" fg:w="336"/><text x="80.3111%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (8,441 samples, 0.36%)</title><rect x="79.7122%" y="389" width="0.3635%" height="15" fill="rgb(233,161,9)" fg:x="1851169" fg:w="8441"/><text x="79.9622%" y="399.50"></text></g><g><title>schedule (340 samples, 0.01%)</title><rect x="80.0610%" y="373" width="0.0146%" height="15" fill="rgb(241,207,41)" fg:x="1859270" fg:w="340"/><text x="80.3110%" y="383.50"></text></g><g><title>down_write (9,385 samples, 0.40%)</title><rect x="79.6721%" y="405" width="0.4041%" height="15" fill="rgb(212,69,46)" fg:x="1850238" fg:w="9385"/><text x="79.9221%" y="415.50"></text></g><g><title>__btrfs_tree_lock (9,622 samples, 0.41%)</title><rect x="79.6628%" y="421" width="0.4143%" height="15" fill="rgb(239,69,45)" fg:x="1850023" fg:w="9622"/><text x="79.9128%" y="431.50"></text></g><g><title>btrfs_tree_lock (9,688 samples, 0.42%)</title><rect x="79.6627%" y="437" width="0.4172%" height="15" fill="rgb(242,117,48)" fg:x="1850020" fg:w="9688"/><text x="79.9127%" y="447.50"></text></g><g><title>try_to_wake_up (421 samples, 0.02%)</title><rect x="80.1016%" y="373" width="0.0181%" height="15" fill="rgb(228,41,36)" fg:x="1860213" fg:w="421"/><text x="80.3516%" y="383.50"></text></g><g><title>rwsem_wake.isra.0 (791 samples, 0.03%)</title><rect x="80.0858%" y="405" width="0.0341%" height="15" fill="rgb(212,3,32)" fg:x="1859846" fg:w="791"/><text x="80.3358%" y="415.50"></text></g><g><title>wake_up_q (496 samples, 0.02%)</title><rect x="80.0985%" y="389" width="0.0214%" height="15" fill="rgb(233,41,49)" fg:x="1860141" fg:w="496"/><text x="80.3485%" y="399.50"></text></g><g><title>btrfs_tree_read_unlock (930 samples, 0.04%)</title><rect x="80.0799%" y="437" width="0.0400%" height="15" fill="rgb(252,170,49)" fg:x="1859708" fg:w="930"/><text x="80.3299%" y="447.50"></text></g><g><title>up_read (806 samples, 0.03%)</title><rect x="80.0852%" y="421" width="0.0347%" height="15" fill="rgb(229,53,26)" fg:x="1859832" fg:w="806"/><text x="80.3352%" y="431.50"></text></g><g><title>free_extent_buffer (261 samples, 0.01%)</title><rect x="80.1318%" y="437" width="0.0112%" height="15" fill="rgb(217,157,12)" fg:x="1860913" fg:w="261"/><text x="80.3818%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (261 samples, 0.01%)</title><rect x="80.1318%" y="421" width="0.0112%" height="15" fill="rgb(227,17,9)" fg:x="1860913" fg:w="261"/><text x="80.3818%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (1,111 samples, 0.05%)</title><rect x="80.1811%" y="421" width="0.0478%" height="15" fill="rgb(218,84,12)" fg:x="1862058" fg:w="1111"/><text x="80.4311%" y="431.50"></text></g><g><title>verify_parent_transid (943 samples, 0.04%)</title><rect x="80.1883%" y="405" width="0.0406%" height="15" fill="rgb(212,79,24)" fg:x="1862226" fg:w="943"/><text x="80.4383%" y="415.50"></text></g><g><title>btrfs_get_64 (789 samples, 0.03%)</title><rect x="80.2289%" y="421" width="0.0340%" height="15" fill="rgb(217,222,37)" fg:x="1863169" fg:w="789"/><text x="80.4789%" y="431.50"></text></g><g><title>btrfs_node_key (1,263 samples, 0.05%)</title><rect x="80.2629%" y="421" width="0.0544%" height="15" fill="rgb(246,208,8)" fg:x="1863958" fg:w="1263"/><text x="80.5129%" y="431.50"></text></g><g><title>read_extent_buffer (1,223 samples, 0.05%)</title><rect x="80.2646%" y="405" width="0.0527%" height="15" fill="rgb(244,133,10)" fg:x="1863998" fg:w="1223"/><text x="80.5146%" y="415.50"></text></g><g><title>btrfs_verify_level_key (357 samples, 0.02%)</title><rect x="80.3173%" y="421" width="0.0154%" height="15" fill="rgb(209,219,41)" fg:x="1865221" fg:w="357"/><text x="80.5673%" y="431.50"></text></g><g><title>__radix_tree_lookup (3,933 samples, 0.17%)</title><rect x="80.4688%" y="373" width="0.1694%" height="15" fill="rgb(253,175,45)" fg:x="1868739" fg:w="3933"/><text x="80.7188%" y="383.50"></text></g><g><title>radix_tree_lookup (3,938 samples, 0.17%)</title><rect x="80.4686%" y="389" width="0.1696%" height="15" fill="rgb(235,100,37)" fg:x="1868735" fg:w="3938"/><text x="80.7186%" y="399.50"></text></g><g><title>find_extent_buffer_nolock (6,431 samples, 0.28%)</title><rect x="80.3616%" y="405" width="0.2769%" height="15" fill="rgb(225,87,19)" fg:x="1866250" fg:w="6431"/><text x="80.6116%" y="415.50"></text></g><g><title>mark_page_accessed (1,726 samples, 0.07%)</title><rect x="80.6385%" y="405" width="0.0743%" height="15" fill="rgb(217,152,17)" fg:x="1872681" fg:w="1726"/><text x="80.8885%" y="415.50"></text></g><g><title>find_extent_buffer (8,827 samples, 0.38%)</title><rect x="80.3380%" y="421" width="0.3801%" height="15" fill="rgb(235,72,13)" fg:x="1865702" fg:w="8827"/><text x="80.5880%" y="431.50"></text></g><g><title>read_block_for_search (13,637 samples, 0.59%)</title><rect x="80.1522%" y="437" width="0.5872%" height="15" fill="rgb(233,140,18)" fg:x="1861387" fg:w="13637"/><text x="80.4022%" y="447.50"></text></g><g><title>btrfs_find_create_tree_block (295 samples, 0.01%)</title><rect x="80.7756%" y="405" width="0.0127%" height="15" fill="rgb(207,212,28)" fg:x="1875864" fg:w="295"/><text x="81.0256%" y="415.50"></text></g><g><title>btrfs_get_64 (426 samples, 0.02%)</title><rect x="80.7883%" y="405" width="0.0183%" height="15" fill="rgb(220,130,25)" fg:x="1876159" fg:w="426"/><text x="81.0383%" y="415.50"></text></g><g><title>_raw_spin_lock (292 samples, 0.01%)</title><rect x="80.8098%" y="389" width="0.0126%" height="15" fill="rgb(205,55,34)" fg:x="1876659" fg:w="292"/><text x="81.0598%" y="399.50"></text></g><g><title>btrfs_buffer_uptodate (609 samples, 0.03%)</title><rect x="80.8263%" y="389" width="0.0262%" height="15" fill="rgb(237,54,35)" fg:x="1877043" fg:w="609"/><text x="81.0763%" y="399.50"></text></g><g><title>verify_parent_transid (578 samples, 0.02%)</title><rect x="80.8277%" y="373" width="0.0249%" height="15" fill="rgb(208,67,23)" fg:x="1877074" fg:w="578"/><text x="81.0777%" y="383.50"></text></g><g><title>__radix_tree_lookup (1,781 samples, 0.08%)</title><rect x="80.9532%" y="309" width="0.0767%" height="15" fill="rgb(206,207,50)" fg:x="1879990" fg:w="1781"/><text x="81.2032%" y="319.50"></text></g><g><title>radix_tree_lookup (1,788 samples, 0.08%)</title><rect x="80.9530%" y="325" width="0.0770%" height="15" fill="rgb(213,211,42)" fg:x="1879985" fg:w="1788"/><text x="81.2030%" y="335.50"></text></g><g><title>find_extent_buffer_nolock (3,360 samples, 0.14%)</title><rect x="80.8855%" y="341" width="0.1447%" height="15" fill="rgb(252,197,50)" fg:x="1878418" fg:w="3360"/><text x="81.1355%" y="351.50"></text></g><g><title>mark_page_accessed (993 samples, 0.04%)</title><rect x="81.0302%" y="341" width="0.0428%" height="15" fill="rgb(251,211,41)" fg:x="1881778" fg:w="993"/><text x="81.2802%" y="351.50"></text></g><g><title>find_extent_buffer (4,683 samples, 0.20%)</title><rect x="80.8727%" y="357" width="0.2017%" height="15" fill="rgb(229,211,5)" fg:x="1878119" fg:w="4683"/><text x="81.1227%" y="367.50"></text></g><g><title>alloc_extent_buffer (5,220 samples, 0.22%)</title><rect x="80.8527%" y="373" width="0.2248%" height="15" fill="rgb(239,36,31)" fg:x="1877656" fg:w="5220"/><text x="81.1027%" y="383.50"></text></g><g><title>btrfs_find_create_tree_block (5,249 samples, 0.23%)</title><rect x="80.8526%" y="389" width="0.2260%" height="15" fill="rgb(248,67,31)" fg:x="1877652" fg:w="5249"/><text x="81.1026%" y="399.50"></text></g><g><title>free_extent_buffer.part.0 (389 samples, 0.02%)</title><rect x="81.0786%" y="389" width="0.0168%" height="15" fill="rgb(249,55,44)" fg:x="1882901" fg:w="389"/><text x="81.3286%" y="399.50"></text></g><g><title>release_extent_buffer (320 samples, 0.01%)</title><rect x="81.0816%" y="373" width="0.0138%" height="15" fill="rgb(216,82,12)" fg:x="1882970" fg:w="320"/><text x="81.3316%" y="383.50"></text></g><g><title>btrfs_readahead_tree_block (6,749 samples, 0.29%)</title><rect x="80.8066%" y="405" width="0.2906%" height="15" fill="rgb(242,174,1)" fg:x="1876585" fg:w="6749"/><text x="81.0566%" y="415.50"></text></g><g><title>btrfs_readahead_node_child (7,938 samples, 0.34%)</title><rect x="80.7596%" y="421" width="0.3418%" height="15" fill="rgb(208,120,29)" fg:x="1875493" fg:w="7938"/><text x="81.0096%" y="431.50"></text></g><g><title>reada_for_balance (8,562 samples, 0.37%)</title><rect x="80.7394%" y="437" width="0.3687%" height="15" fill="rgb(221,105,43)" fg:x="1875024" fg:w="8562"/><text x="80.9894%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (417 samples, 0.02%)</title><rect x="81.1881%" y="373" width="0.0180%" height="15" fill="rgb(234,124,22)" fg:x="1885444" fg:w="417"/><text x="81.4381%" y="383.50"></text></g><g><title>rwsem_mark_wake (1,826 samples, 0.08%)</title><rect x="81.2065%" y="373" width="0.0786%" height="15" fill="rgb(212,23,30)" fg:x="1885871" fg:w="1826"/><text x="81.4565%" y="383.50"></text></g><g><title>wake_q_add (429 samples, 0.02%)</title><rect x="81.2865%" y="373" width="0.0185%" height="15" fill="rgb(219,122,53)" fg:x="1887729" fg:w="429"/><text x="81.5365%" y="383.50"></text></g><g><title>wake_q_add_safe (337 samples, 0.01%)</title><rect x="81.3050%" y="373" width="0.0145%" height="15" fill="rgb(248,84,24)" fg:x="1888158" fg:w="337"/><text x="81.5550%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (731 samples, 0.03%)</title><rect x="81.4660%" y="341" width="0.0315%" height="15" fill="rgb(245,115,18)" fg:x="1891899" fg:w="731"/><text x="81.7160%" y="351.50"></text></g><g><title>is_cpu_allowed (297 samples, 0.01%)</title><rect x="81.4984%" y="341" width="0.0128%" height="15" fill="rgb(227,176,51)" fg:x="1892651" fg:w="297"/><text x="81.7484%" y="351.50"></text></g><g><title>_raw_spin_lock (1,760 samples, 0.08%)</title><rect x="81.5184%" y="325" width="0.0758%" height="15" fill="rgb(229,63,42)" fg:x="1893114" fg:w="1760"/><text x="81.7684%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,745 samples, 0.08%)</title><rect x="81.5190%" y="309" width="0.0751%" height="15" fill="rgb(247,202,24)" fg:x="1893129" fg:w="1745"/><text x="81.7690%" y="319.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (1,745 samples, 0.08%)</title><rect x="81.5190%" y="293" width="0.0751%" height="15" fill="rgb(244,173,20)" fg:x="1893129" fg:w="1745"/><text x="81.7690%" y="303.50"></text></g><g><title>raw_spin_rq_lock_nested (1,791 samples, 0.08%)</title><rect x="81.5177%" y="341" width="0.0771%" height="15" fill="rgb(242,81,47)" fg:x="1893099" fg:w="1791"/><text x="81.7677%" y="351.50"></text></g><g><title>available_idle_cpu (660 samples, 0.03%)</title><rect x="81.7019%" y="309" width="0.0284%" height="15" fill="rgb(231,185,54)" fg:x="1897376" fg:w="660"/><text x="81.9519%" y="319.50"></text></g><g><title>_find_next_bit (253 samples, 0.01%)</title><rect x="81.7806%" y="293" width="0.0109%" height="15" fill="rgb(243,55,32)" fg:x="1899203" fg:w="253"/><text x="82.0306%" y="303.50"></text></g><g><title>available_idle_cpu (583 samples, 0.03%)</title><rect x="81.7915%" y="293" width="0.0251%" height="15" fill="rgb(208,167,19)" fg:x="1899456" fg:w="583"/><text x="82.0415%" y="303.50"></text></g><g><title>cpumask_next_wrap (313 samples, 0.01%)</title><rect x="81.8177%" y="293" width="0.0135%" height="15" fill="rgb(231,72,35)" fg:x="1900066" fg:w="313"/><text x="82.0677%" y="303.50"></text></g><g><title>_find_next_bit (253 samples, 0.01%)</title><rect x="81.8514%" y="277" width="0.0109%" height="15" fill="rgb(250,173,51)" fg:x="1900847" fg:w="253"/><text x="82.1014%" y="287.50"></text></g><g><title>available_idle_cpu (777 samples, 0.03%)</title><rect x="81.8622%" y="277" width="0.0335%" height="15" fill="rgb(209,5,22)" fg:x="1901100" fg:w="777"/><text x="82.1122%" y="287.50"></text></g><g><title>select_idle_sibling (5,879 samples, 0.25%)</title><rect x="81.6431%" y="325" width="0.2532%" height="15" fill="rgb(250,174,19)" fg:x="1896011" fg:w="5879"/><text x="81.8931%" y="335.50"></text></g><g><title>select_idle_cpu (3,479 samples, 0.15%)</title><rect x="81.7465%" y="309" width="0.1498%" height="15" fill="rgb(217,3,49)" fg:x="1898411" fg:w="3479"/><text x="81.9965%" y="319.50"></text></g><g><title>select_idle_core (1,511 samples, 0.07%)</title><rect x="81.8312%" y="293" width="0.0651%" height="15" fill="rgb(218,225,5)" fg:x="1900379" fg:w="1511"/><text x="82.0812%" y="303.50"></text></g><g><title>task_h_load (602 samples, 0.03%)</title><rect x="81.8963%" y="325" width="0.0259%" height="15" fill="rgb(236,89,11)" fg:x="1901890" fg:w="602"/><text x="82.1463%" y="335.50"></text></g><g><title>available_idle_cpu (768 samples, 0.03%)</title><rect x="81.9360%" y="309" width="0.0331%" height="15" fill="rgb(206,33,28)" fg:x="1902812" fg:w="768"/><text x="82.1860%" y="319.50"></text></g><g><title>select_task_rq_fair (8,726 samples, 0.38%)</title><rect x="81.6012%" y="341" width="0.3757%" height="15" fill="rgb(241,56,42)" fg:x="1895037" fg:w="8726"/><text x="81.8512%" y="351.50"></text></g><g><title>wake_affine (1,271 samples, 0.05%)</title><rect x="81.9222%" y="325" width="0.0547%" height="15" fill="rgb(222,44,11)" fg:x="1902492" fg:w="1271"/><text x="82.1722%" y="335.50"></text></g><g><title>migrate_task_rq_fair (884 samples, 0.04%)</title><rect x="81.9988%" y="325" width="0.0381%" height="15" fill="rgb(234,111,20)" fg:x="1904271" fg:w="884"/><text x="82.2488%" y="335.50"></text></g><g><title>remove_entity_load_avg (550 samples, 0.02%)</title><rect x="82.0132%" y="309" width="0.0237%" height="15" fill="rgb(237,77,6)" fg:x="1904605" fg:w="550"/><text x="82.2632%" y="319.50"></text></g><g><title>_raw_spin_lock_irqsave (383 samples, 0.02%)</title><rect x="82.0204%" y="293" width="0.0165%" height="15" fill="rgb(235,111,23)" fg:x="1904772" fg:w="383"/><text x="82.2704%" y="303.50"></text></g><g><title>set_task_cpu (1,419 samples, 0.06%)</title><rect x="81.9769%" y="341" width="0.0611%" height="15" fill="rgb(251,135,29)" fg:x="1903763" fg:w="1419"/><text x="82.2269%" y="351.50"></text></g><g><title>update_curr (365 samples, 0.02%)</title><rect x="82.0690%" y="277" width="0.0157%" height="15" fill="rgb(217,57,1)" fg:x="1905901" fg:w="365"/><text x="82.3190%" y="287.50"></text></g><g><title>update_load_avg (360 samples, 0.02%)</title><rect x="82.0847%" y="277" width="0.0155%" height="15" fill="rgb(249,119,31)" fg:x="1906266" fg:w="360"/><text x="82.3347%" y="287.50"></text></g><g><title>enqueue_entity (1,087 samples, 0.05%)</title><rect x="82.0543%" y="293" width="0.0468%" height="15" fill="rgb(233,164,33)" fg:x="1905561" fg:w="1087"/><text x="82.3043%" y="303.50"></text></g><g><title>update_cfs_group (235 samples, 0.01%)</title><rect x="82.1016%" y="293" width="0.0101%" height="15" fill="rgb(250,217,43)" fg:x="1906659" fg:w="235"/><text x="82.3516%" y="303.50"></text></g><g><title>enqueue_task_fair (1,842 samples, 0.08%)</title><rect x="82.0426%" y="309" width="0.0793%" height="15" fill="rgb(232,154,50)" fg:x="1905289" fg:w="1842"/><text x="82.2926%" y="319.50"></text></g><g><title>update_load_avg (235 samples, 0.01%)</title><rect x="82.1118%" y="293" width="0.0101%" height="15" fill="rgb(227,190,8)" fg:x="1906896" fg:w="235"/><text x="82.3618%" y="303.50"></text></g><g><title>psi_group_change (1,178 samples, 0.05%)</title><rect x="82.1349%" y="293" width="0.0507%" height="15" fill="rgb(209,217,32)" fg:x="1907432" fg:w="1178"/><text x="82.3849%" y="303.50"></text></g><g><title>psi_task_change (1,532 samples, 0.07%)</title><rect x="82.1231%" y="309" width="0.0660%" height="15" fill="rgb(243,203,50)" fg:x="1907157" fg:w="1532"/><text x="82.3731%" y="319.50"></text></g><g><title>enqueue_task (3,480 samples, 0.15%)</title><rect x="82.0409%" y="325" width="0.1499%" height="15" fill="rgb(232,152,27)" fg:x="1905248" fg:w="3480"/><text x="82.2909%" y="335.50"></text></g><g><title>check_preempt_wakeup (261 samples, 0.01%)</title><rect x="82.1970%" y="293" width="0.0112%" height="15" fill="rgb(240,34,29)" fg:x="1908873" fg:w="261"/><text x="82.4470%" y="303.50"></text></g><g><title>check_preempt_curr (377 samples, 0.02%)</title><rect x="82.1936%" y="309" width="0.0162%" height="15" fill="rgb(215,185,52)" fg:x="1908794" fg:w="377"/><text x="82.4436%" y="319.50"></text></g><g><title>ttwu_do_activate (4,023 samples, 0.17%)</title><rect x="82.0385%" y="341" width="0.1732%" height="15" fill="rgb(240,89,49)" fg:x="1905193" fg:w="4023"/><text x="82.2885%" y="351.50"></text></g><g><title>ttwu_do_wakeup (478 samples, 0.02%)</title><rect x="82.1911%" y="325" width="0.0206%" height="15" fill="rgb(225,12,52)" fg:x="1908738" fg:w="478"/><text x="82.4411%" y="335.50"></text></g><g><title>native_send_call_func_single_ipi (620 samples, 0.03%)</title><rect x="82.2902%" y="293" width="0.0267%" height="15" fill="rgb(239,128,45)" fg:x="1911039" fg:w="620"/><text x="82.5402%" y="303.50"></text></g><g><title>x2apic_send_IPI (584 samples, 0.03%)</title><rect x="82.2918%" y="277" width="0.0251%" height="15" fill="rgb(211,78,47)" fg:x="1911075" fg:w="584"/><text x="82.5418%" y="287.50"></text></g><g><title>native_write_msr (365 samples, 0.02%)</title><rect x="82.3012%" y="261" width="0.0157%" height="15" fill="rgb(232,31,21)" fg:x="1911294" fg:w="365"/><text x="82.5512%" y="271.50"></text></g><g><title>__smp_call_single_queue (1,386 samples, 0.06%)</title><rect x="82.2590%" y="325" width="0.0597%" height="15" fill="rgb(222,168,14)" fg:x="1910314" fg:w="1386"/><text x="82.5090%" y="335.50"></text></g><g><title>send_call_function_single_ipi (1,251 samples, 0.05%)</title><rect x="82.2648%" y="309" width="0.0539%" height="15" fill="rgb(209,128,24)" fg:x="1910449" fg:w="1251"/><text x="82.5148%" y="319.50"></text></g><g><title>llist_add_batch (1,253 samples, 0.05%)</title><rect x="82.3187%" y="325" width="0.0540%" height="15" fill="rgb(249,35,13)" fg:x="1911700" fg:w="1253"/><text x="82.5687%" y="335.50"></text></g><g><title>sched_clock_cpu (297 samples, 0.01%)</title><rect x="82.3732%" y="325" width="0.0128%" height="15" fill="rgb(218,7,2)" fg:x="1912966" fg:w="297"/><text x="82.6232%" y="335.50"></text></g><g><title>ttwu_queue_wakelist (4,045 samples, 0.17%)</title><rect x="82.2124%" y="341" width="0.1742%" height="15" fill="rgb(238,107,27)" fg:x="1909232" fg:w="4045"/><text x="82.4624%" y="351.50"></text></g><g><title>update_rq_clock (268 samples, 0.01%)</title><rect x="82.3866%" y="341" width="0.0115%" height="15" fill="rgb(217,88,38)" fg:x="1913277" fg:w="268"/><text x="82.6366%" y="351.50"></text></g><g><title>try_to_wake_up (24,423 samples, 1.05%)</title><rect x="81.3481%" y="357" width="1.0517%" height="15" fill="rgb(230,207,0)" fg:x="1889161" fg:w="24423"/><text x="81.5981%" y="367.50"></text></g><g><title>rwsem_wake.isra.0 (28,402 samples, 1.22%)</title><rect x="81.1803%" y="389" width="1.2230%" height="15" fill="rgb(249,64,54)" fg:x="1885264" fg:w="28402"/><text x="81.4303%" y="399.50"></text></g><g><title>wake_up_q (25,171 samples, 1.08%)</title><rect x="81.3195%" y="373" width="1.0839%" height="15" fill="rgb(231,7,11)" fg:x="1888495" fg:w="25171"/><text x="81.5695%" y="383.50"></text></g><g><title>btrfs_tree_unlock (28,623 samples, 1.23%)</title><rect x="81.1713%" y="421" width="1.2325%" height="15" fill="rgb(205,149,21)" fg:x="1885054" fg:w="28623"/><text x="81.4213%" y="431.50"></text></g><g><title>up_write (28,488 samples, 1.23%)</title><rect x="81.1771%" y="405" width="1.2267%" height="15" fill="rgb(215,126,34)" fg:x="1885189" fg:w="28488"/><text x="81.4271%" y="415.50"></text></g><g><title>unlock_up (30,765 samples, 1.32%)</title><rect x="81.1081%" y="437" width="1.3248%" height="15" fill="rgb(241,132,45)" fg:x="1883587" fg:w="30765"/><text x="81.3581%" y="447.50"></text></g><g><title>up_write (675 samples, 0.03%)</title><rect x="82.4038%" y="421" width="0.0291%" height="15" fill="rgb(252,69,32)" fg:x="1913677" fg:w="675"/><text x="82.6538%" y="431.50"></text></g><g><title>btrfs_search_slot (185,061 samples, 7.97%)</title><rect x="74.4778%" y="453" width="7.9688%" height="15" fill="rgb(232,204,19)" fg:x="1729610" fg:w="185061"/><text x="74.7278%" y="463.50">btrfs_searc..</text></g><g><title>up_read (319 samples, 0.01%)</title><rect x="82.4329%" y="437" width="0.0137%" height="15" fill="rgb(249,15,47)" fg:x="1914352" fg:w="319"/><text x="82.6829%" y="447.50"></text></g><g><title>crc32c (994 samples, 0.04%)</title><rect x="82.4514%" y="453" width="0.0428%" height="15" fill="rgb(209,227,23)" fg:x="1914783" fg:w="994"/><text x="82.7014%" y="463.50"></text></g><g><title>crypto_shash_update (486 samples, 0.02%)</title><rect x="82.4733%" y="437" width="0.0209%" height="15" fill="rgb(248,92,24)" fg:x="1915291" fg:w="486"/><text x="82.7233%" y="447.50"></text></g><g><title>crc32c_pcl_intel_update (279 samples, 0.01%)</title><rect x="82.4822%" y="421" width="0.0120%" height="15" fill="rgb(247,59,2)" fg:x="1915498" fg:w="279"/><text x="82.7322%" y="431.50"></text></g><g><title>crypto_shash_update (314 samples, 0.01%)</title><rect x="82.4942%" y="453" width="0.0135%" height="15" fill="rgb(221,30,5)" fg:x="1915777" fg:w="314"/><text x="82.7442%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (191,776 samples, 8.26%)</title><rect x="74.2779%" y="469" width="8.2580%" height="15" fill="rgb(208,108,53)" fg:x="1724967" fg:w="191776"/><text x="74.5279%" y="479.50">btrfs_looku..</text></g><g><title>try_to_wake_up (998 samples, 0.04%)</title><rect x="82.5789%" y="389" width="0.0430%" height="15" fill="rgb(211,183,26)" fg:x="1917744" fg:w="998"/><text x="82.8289%" y="399.50"></text></g><g><title>btrfs_tree_unlock (1,272 samples, 0.05%)</title><rect x="82.5672%" y="453" width="0.0548%" height="15" fill="rgb(232,132,4)" fg:x="1917472" fg:w="1272"/><text x="82.8172%" y="463.50"></text></g><g><title>up_write (1,215 samples, 0.05%)</title><rect x="82.5697%" y="437" width="0.0523%" height="15" fill="rgb(253,128,37)" fg:x="1917529" fg:w="1215"/><text x="82.8197%" y="447.50"></text></g><g><title>rwsem_wake.isra.0 (1,213 samples, 0.05%)</title><rect x="82.5698%" y="421" width="0.0522%" height="15" fill="rgb(221,58,24)" fg:x="1917531" fg:w="1213"/><text x="82.8198%" y="431.50"></text></g><g><title>wake_up_q (1,024 samples, 0.04%)</title><rect x="82.5779%" y="405" width="0.0441%" height="15" fill="rgb(230,54,45)" fg:x="1917720" fg:w="1024"/><text x="82.8279%" y="415.50"></text></g><g><title>_raw_spin_lock (563 samples, 0.02%)</title><rect x="82.6258%" y="437" width="0.0242%" height="15" fill="rgb(254,21,18)" fg:x="1918833" fg:w="563"/><text x="82.8758%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,457 samples, 0.06%)</title><rect x="82.6501%" y="437" width="0.0627%" height="15" fill="rgb(221,108,0)" fg:x="1919396" fg:w="1457"/><text x="82.9001%" y="447.50"></text></g><g><title>release_extent_buffer (503 samples, 0.02%)</title><rect x="82.6912%" y="421" width="0.0217%" height="15" fill="rgb(206,95,1)" fg:x="1920350" fg:w="503"/><text x="82.9412%" y="431.50"></text></g><g><title>free_extent_buffer (2,056 samples, 0.09%)</title><rect x="82.6258%" y="453" width="0.0885%" height="15" fill="rgb(237,52,5)" fg:x="1918833" fg:w="2056"/><text x="82.8758%" y="463.50"></text></g><g><title>btrfs_release_path (4,300 samples, 0.19%)</title><rect x="82.5451%" y="469" width="0.1852%" height="15" fill="rgb(218,150,34)" fg:x="1916958" fg:w="4300"/><text x="82.7951%" y="479.50"></text></g><g><title>up_write (369 samples, 0.02%)</title><rect x="82.7144%" y="453" width="0.0159%" height="15" fill="rgb(235,194,28)" fg:x="1920889" fg:w="369"/><text x="82.9644%" y="463.50"></text></g><g><title>_raw_spin_lock (359 samples, 0.02%)</title><rect x="82.7543%" y="453" width="0.0155%" height="15" fill="rgb(245,92,18)" fg:x="1921817" fg:w="359"/><text x="83.0043%" y="463.50"></text></g><g><title>mutex_lock (261 samples, 0.01%)</title><rect x="82.7968%" y="421" width="0.0112%" height="15" fill="rgb(253,203,53)" fg:x="1922803" fg:w="261"/><text x="83.0468%" y="431.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (680 samples, 0.03%)</title><rect x="82.7788%" y="437" width="0.0293%" height="15" fill="rgb(249,185,47)" fg:x="1922385" fg:w="680"/><text x="83.0288%" y="447.50"></text></g><g><title>_raw_spin_lock (284 samples, 0.01%)</title><rect x="82.8085%" y="437" width="0.0122%" height="15" fill="rgb(252,194,52)" fg:x="1923074" fg:w="284"/><text x="83.0585%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (373 samples, 0.02%)</title><rect x="82.8225%" y="437" width="0.0161%" height="15" fill="rgb(210,53,36)" fg:x="1923401" fg:w="373"/><text x="83.0725%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (317 samples, 0.01%)</title><rect x="82.8249%" y="421" width="0.0137%" height="15" fill="rgb(237,37,25)" fg:x="1923457" fg:w="317"/><text x="83.0749%" y="431.50"></text></g><g><title>fill_stack_inode_item (1,059 samples, 0.05%)</title><rect x="82.8386%" y="437" width="0.0456%" height="15" fill="rgb(242,116,27)" fg:x="1923774" fg:w="1059"/><text x="83.0886%" y="447.50"></text></g><g><title>mutex_lock (295 samples, 0.01%)</title><rect x="82.8962%" y="437" width="0.0127%" height="15" fill="rgb(213,185,26)" fg:x="1925111" fg:w="295"/><text x="83.1462%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (3,492 samples, 0.15%)</title><rect x="82.7700%" y="453" width="0.1504%" height="15" fill="rgb(225,204,8)" fg:x="1922180" fg:w="3492"/><text x="83.0200%" y="463.50"></text></g><g><title>mutex_unlock (266 samples, 0.01%)</title><rect x="82.9089%" y="437" width="0.0115%" height="15" fill="rgb(254,111,37)" fg:x="1925406" fg:w="266"/><text x="83.1589%" y="447.50"></text></g><g><title>ktime_get_real_ts64 (262 samples, 0.01%)</title><rect x="82.9245%" y="437" width="0.0113%" height="15" fill="rgb(242,35,9)" fg:x="1925770" fg:w="262"/><text x="83.1745%" y="447.50"></text></g><g><title>btrfs_update_root_times (588 samples, 0.03%)</title><rect x="82.9214%" y="453" width="0.0253%" height="15" fill="rgb(232,138,49)" fg:x="1925697" fg:w="588"/><text x="83.1714%" y="463.50"></text></g><g><title>read_tsc (253 samples, 0.01%)</title><rect x="82.9358%" y="437" width="0.0109%" height="15" fill="rgb(247,56,4)" fg:x="1926032" fg:w="253"/><text x="83.1858%" y="447.50"></text></g><g><title>btrfs_update_inode (5,099 samples, 0.22%)</title><rect x="82.7437%" y="469" width="0.2196%" height="15" fill="rgb(226,179,17)" fg:x="1921571" fg:w="5099"/><text x="82.9937%" y="479.50"></text></g><g><title>crc32c (370 samples, 0.02%)</title><rect x="82.9694%" y="469" width="0.0159%" height="15" fill="rgb(216,163,45)" fg:x="1926811" fg:w="370"/><text x="83.2194%" y="479.50"></text></g><g><title>mutex_unlock (711 samples, 0.03%)</title><rect x="83.0083%" y="469" width="0.0306%" height="15" fill="rgb(211,157,3)" fg:x="1927714" fg:w="711"/><text x="83.2583%" y="479.50"></text></g><g><title>__btrfs_unlink_inode (315,651 samples, 13.59%)</title><rect x="69.4468%" y="485" width="13.5921%" height="15" fill="rgb(234,44,20)" fg:x="1612775" fg:w="315651"/><text x="69.6968%" y="495.50">__btrfs_unlink_inode</text></g><g><title>balance_dirty_pages_ratelimited (393 samples, 0.02%)</title><rect x="83.0644%" y="469" width="0.0169%" height="15" fill="rgb(254,138,23)" fg:x="1929018" fg:w="393"/><text x="83.3144%" y="479.50"></text></g><g><title>select_idle_sibling (248 samples, 0.01%)</title><rect x="83.1278%" y="325" width="0.0107%" height="15" fill="rgb(206,119,39)" fg:x="1930490" fg:w="248"/><text x="83.3778%" y="335.50"></text></g><g><title>select_task_rq_fair (273 samples, 0.01%)</title><rect x="83.1270%" y="341" width="0.0118%" height="15" fill="rgb(231,105,52)" fg:x="1930471" fg:w="273"/><text x="83.3770%" y="351.50"></text></g><g><title>try_to_wake_up (864 samples, 0.04%)</title><rect x="83.1165%" y="357" width="0.0372%" height="15" fill="rgb(250,20,5)" fg:x="1930228" fg:w="864"/><text x="83.3665%" y="367.50"></text></g><g><title>insert_work (882 samples, 0.04%)</title><rect x="83.1158%" y="389" width="0.0380%" height="15" fill="rgb(215,198,30)" fg:x="1930211" fg:w="882"/><text x="83.3658%" y="399.50"></text></g><g><title>wake_up_process (879 samples, 0.04%)</title><rect x="83.1159%" y="373" width="0.0379%" height="15" fill="rgb(246,142,8)" fg:x="1930214" fg:w="879"/><text x="83.3659%" y="383.50"></text></g><g><title>__queue_work (1,157 samples, 0.05%)</title><rect x="83.1040%" y="405" width="0.0498%" height="15" fill="rgb(243,26,38)" fg:x="1929937" fg:w="1157"/><text x="83.3540%" y="415.50"></text></g><g><title>btrfs_queue_work (1,378 samples, 0.06%)</title><rect x="83.1001%" y="437" width="0.0593%" height="15" fill="rgb(205,133,28)" fg:x="1929847" fg:w="1378"/><text x="83.3501%" y="447.50"></text></g><g><title>queue_work_on (1,316 samples, 0.06%)</title><rect x="83.1028%" y="421" width="0.0567%" height="15" fill="rgb(212,34,0)" fg:x="1929909" fg:w="1316"/><text x="83.3528%" y="431.50"></text></g><g><title>btrfs_wq_run_delayed_node (1,524 samples, 0.07%)</title><rect x="83.0990%" y="453" width="0.0656%" height="15" fill="rgb(251,226,22)" fg:x="1929821" fg:w="1524"/><text x="83.3490%" y="463.50"></text></g><g><title>btrfs_balance_delayed_items (1,949 samples, 0.08%)</title><rect x="83.0813%" y="469" width="0.0839%" height="15" fill="rgb(252,119,9)" fg:x="1929411" fg:w="1949"/><text x="83.3313%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (2,686 samples, 0.12%)</title><rect x="83.0554%" y="485" width="0.1157%" height="15" fill="rgb(213,150,50)" fg:x="1928810" fg:w="2686"/><text x="83.3054%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (288 samples, 0.01%)</title><rect x="83.2527%" y="453" width="0.0124%" height="15" fill="rgb(212,24,39)" fg:x="1933391" fg:w="288"/><text x="83.5027%" y="463.50"></text></g><g><title>_raw_spin_lock (884 samples, 0.04%)</title><rect x="83.2876%" y="437" width="0.0381%" height="15" fill="rgb(213,46,39)" fg:x="1934201" fg:w="884"/><text x="83.5376%" y="447.50"></text></g><g><title>_raw_spin_lock (343 samples, 0.01%)</title><rect x="83.3504%" y="421" width="0.0148%" height="15" fill="rgb(239,106,12)" fg:x="1935659" fg:w="343"/><text x="83.6004%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (329 samples, 0.01%)</title><rect x="83.3510%" y="405" width="0.0142%" height="15" fill="rgb(249,229,21)" fg:x="1935673" fg:w="329"/><text x="83.6010%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (329 samples, 0.01%)</title><rect x="83.3510%" y="389" width="0.0142%" height="15" fill="rgb(212,158,3)" fg:x="1935673" fg:w="329"/><text x="83.6010%" y="399.50"></text></g><g><title>btrfs_block_rsv_release (1,110 samples, 0.05%)</title><rect x="83.3257%" y="437" width="0.0478%" height="15" fill="rgb(253,26,48)" fg:x="1935085" fg:w="1110"/><text x="83.5757%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,124 samples, 0.09%)</title><rect x="83.2850%" y="453" width="0.0915%" height="15" fill="rgb(238,178,20)" fg:x="1934142" fg:w="2124"/><text x="83.5350%" y="463.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (233 samples, 0.01%)</title><rect x="83.4067%" y="437" width="0.0100%" height="15" fill="rgb(208,86,15)" fg:x="1936967" fg:w="233"/><text x="83.6567%" y="447.50"></text></g><g><title>kmem_cache_free (935 samples, 0.04%)</title><rect x="83.3765%" y="453" width="0.0403%" height="15" fill="rgb(239,42,53)" fg:x="1936266" fg:w="935"/><text x="83.6265%" y="463.50"></text></g><g><title>__btrfs_end_transaction (5,306 samples, 0.23%)</title><rect x="83.1888%" y="469" width="0.2285%" height="15" fill="rgb(245,226,8)" fg:x="1931906" fg:w="5306"/><text x="83.4388%" y="479.50"></text></g><g><title>btrfs_end_transaction (5,742 samples, 0.25%)</title><rect x="83.1887%" y="485" width="0.2473%" height="15" fill="rgb(216,176,32)" fg:x="1931905" fg:w="5742"/><text x="83.4387%" y="495.50"></text></g><g><title>kmem_cache_alloc (385 samples, 0.02%)</title><rect x="83.4877%" y="437" width="0.0166%" height="15" fill="rgb(231,186,21)" fg:x="1938848" fg:w="385"/><text x="83.7377%" y="447.50"></text></g><g><title>btrfs_alloc_path (644 samples, 0.03%)</title><rect x="83.4861%" y="453" width="0.0277%" height="15" fill="rgb(205,95,49)" fg:x="1938811" fg:w="644"/><text x="83.7361%" y="463.50"></text></g><g><title>_raw_spin_lock (536 samples, 0.02%)</title><rect x="83.5385%" y="405" width="0.0231%" height="15" fill="rgb(217,145,8)" fg:x="1940027" fg:w="536"/><text x="83.7885%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (1,428 samples, 0.06%)</title><rect x="83.5615%" y="405" width="0.0615%" height="15" fill="rgb(239,144,48)" fg:x="1940563" fg:w="1428"/><text x="83.8115%" y="415.50"></text></g><g><title>release_extent_buffer (509 samples, 0.02%)</title><rect x="83.6011%" y="389" width="0.0219%" height="15" fill="rgb(214,189,23)" fg:x="1941482" fg:w="509"/><text x="83.8511%" y="399.50"></text></g><g><title>free_extent_buffer (2,008 samples, 0.09%)</title><rect x="83.5385%" y="421" width="0.0865%" height="15" fill="rgb(229,157,17)" fg:x="1940027" fg:w="2008"/><text x="83.7885%" y="431.50"></text></g><g><title>btrfs_release_path (2,654 samples, 0.11%)</title><rect x="83.5176%" y="437" width="0.1143%" height="15" fill="rgb(230,5,48)" fg:x="1939543" fg:w="2654"/><text x="83.7676%" y="447.50"></text></g><g><title>kmem_cache_free (841 samples, 0.04%)</title><rect x="83.6366%" y="437" width="0.0362%" height="15" fill="rgb(224,156,48)" fg:x="1942305" fg:w="841"/><text x="83.8866%" y="447.50"></text></g><g><title>btrfs_free_path (3,700 samples, 0.16%)</title><rect x="83.5138%" y="453" width="0.1593%" height="15" fill="rgb(223,14,29)" fg:x="1939455" fg:w="3700"/><text x="83.7638%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (362 samples, 0.02%)</title><rect x="83.6978%" y="437" width="0.0156%" height="15" fill="rgb(229,96,36)" fg:x="1943728" fg:w="362"/><text x="83.9478%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,100 samples, 0.18%)</title><rect x="83.8531%" y="405" width="0.1765%" height="15" fill="rgb(231,102,53)" fg:x="1947334" fg:w="4100"/><text x="84.1031%" y="415.50"></text></g><g><title>btrfs_bin_search (4,223 samples, 0.18%)</title><rect x="83.8478%" y="421" width="0.1818%" height="15" fill="rgb(210,77,38)" fg:x="1947212" fg:w="4223"/><text x="84.0978%" y="431.50"></text></g><g><title>btrfs_get_32 (403 samples, 0.02%)</title><rect x="84.0578%" y="389" width="0.0174%" height="15" fill="rgb(235,131,6)" fg:x="1952088" fg:w="403"/><text x="84.3078%" y="399.50"></text></g><g><title>btrfs_leaf_free_space (892 samples, 0.04%)</title><rect x="84.0392%" y="421" width="0.0384%" height="15" fill="rgb(252,55,38)" fg:x="1951656" fg:w="892"/><text x="84.2892%" y="431.50"></text></g><g><title>leaf_space_used (677 samples, 0.03%)</title><rect x="84.0485%" y="405" width="0.0292%" height="15" fill="rgb(246,38,14)" fg:x="1951871" fg:w="677"/><text x="84.2985%" y="415.50"></text></g><g><title>_raw_spin_lock_irq (358 samples, 0.02%)</title><rect x="84.1296%" y="357" width="0.0154%" height="15" fill="rgb(242,27,5)" fg:x="1953756" fg:w="358"/><text x="84.3796%" y="367.50"></text></g><g><title>update_curr (752 samples, 0.03%)</title><rect x="84.2070%" y="277" width="0.0324%" height="15" fill="rgb(228,65,35)" fg:x="1955552" fg:w="752"/><text x="84.4570%" y="287.50"></text></g><g><title>update_load_avg (579 samples, 0.02%)</title><rect x="84.2394%" y="277" width="0.0249%" height="15" fill="rgb(245,93,11)" fg:x="1956304" fg:w="579"/><text x="84.4894%" y="287.50"></text></g><g><title>dequeue_entity (1,934 samples, 0.08%)</title><rect x="84.1838%" y="293" width="0.0833%" height="15" fill="rgb(213,1,31)" fg:x="1955014" fg:w="1934"/><text x="84.4338%" y="303.50"></text></g><g><title>dequeue_task_fair (2,412 samples, 0.10%)</title><rect x="84.1724%" y="309" width="0.1039%" height="15" fill="rgb(237,205,14)" fg:x="1954749" fg:w="2412"/><text x="84.4224%" y="319.50"></text></g><g><title>dequeue_task (2,538 samples, 0.11%)</title><rect x="84.1692%" y="325" width="0.1093%" height="15" fill="rgb(232,118,45)" fg:x="1954675" fg:w="2538"/><text x="84.4192%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (546 samples, 0.02%)</title><rect x="84.2893%" y="309" width="0.0235%" height="15" fill="rgb(218,5,6)" fg:x="1957464" fg:w="546"/><text x="84.5393%" y="319.50"></text></g><g><title>x86_pmu_enable (466 samples, 0.02%)</title><rect x="84.2927%" y="293" width="0.0201%" height="15" fill="rgb(251,87,51)" fg:x="1957544" fg:w="466"/><text x="84.5427%" y="303.50"></text></g><g><title>intel_pmu_enable_all (450 samples, 0.02%)</title><rect x="84.2934%" y="277" width="0.0194%" height="15" fill="rgb(207,225,20)" fg:x="1957560" fg:w="450"/><text x="84.5434%" y="287.50"></text></g><g><title>native_write_msr (430 samples, 0.02%)</title><rect x="84.2943%" y="261" width="0.0185%" height="15" fill="rgb(222,78,54)" fg:x="1957580" fg:w="430"/><text x="84.5443%" y="271.50"></text></g><g><title>finish_task_switch.isra.0 (996 samples, 0.04%)</title><rect x="84.2787%" y="325" width="0.0429%" height="15" fill="rgb(232,85,16)" fg:x="1957218" fg:w="996"/><text x="84.5287%" y="335.50"></text></g><g><title>newidle_balance (245 samples, 0.01%)</title><rect x="84.3356%" y="293" width="0.0105%" height="15" fill="rgb(244,25,33)" fg:x="1958539" fg:w="245"/><text x="84.5856%" y="303.50"></text></g><g><title>pick_next_task_fair (456 samples, 0.02%)</title><rect x="84.3297%" y="309" width="0.0196%" height="15" fill="rgb(233,24,36)" fg:x="1958402" fg:w="456"/><text x="84.5797%" y="319.50"></text></g><g><title>__update_idle_core (268 samples, 0.01%)</title><rect x="84.3524%" y="277" width="0.0115%" height="15" fill="rgb(253,49,54)" fg:x="1958929" fg:w="268"/><text x="84.6024%" y="287.50"></text></g><g><title>pick_next_task_idle (373 samples, 0.02%)</title><rect x="84.3493%" y="309" width="0.0161%" height="15" fill="rgb(245,12,22)" fg:x="1958858" fg:w="373"/><text x="84.5993%" y="319.50"></text></g><g><title>set_next_task_idle (320 samples, 0.01%)</title><rect x="84.3516%" y="293" width="0.0138%" height="15" fill="rgb(253,141,28)" fg:x="1958911" fg:w="320"/><text x="84.6016%" y="303.50"></text></g><g><title>pick_next_task (1,173 samples, 0.05%)</title><rect x="84.3241%" y="325" width="0.0505%" height="15" fill="rgb(225,207,27)" fg:x="1958272" fg:w="1173"/><text x="84.5741%" y="335.50"></text></g><g><title>perf_event_context_sched_out (262 samples, 0.01%)</title><rect x="84.3850%" y="293" width="0.0113%" height="15" fill="rgb(220,84,2)" fg:x="1959687" fg:w="262"/><text x="84.6350%" y="303.50"></text></g><g><title>__perf_event_task_sched_out (454 samples, 0.02%)</title><rect x="84.3804%" y="309" width="0.0195%" height="15" fill="rgb(224,37,37)" fg:x="1959580" fg:w="454"/><text x="84.6304%" y="319.50"></text></g><g><title>prepare_task_switch (526 samples, 0.02%)</title><rect x="84.3775%" y="325" width="0.0226%" height="15" fill="rgb(220,143,18)" fg:x="1959513" fg:w="526"/><text x="84.6275%" y="335.50"></text></g><g><title>psi_group_change (1,134 samples, 0.05%)</title><rect x="84.4201%" y="309" width="0.0488%" height="15" fill="rgb(210,88,33)" fg:x="1960501" fg:w="1134"/><text x="84.6701%" y="319.50"></text></g><g><title>psi_task_switch (1,603 samples, 0.07%)</title><rect x="84.4029%" y="325" width="0.0690%" height="15" fill="rgb(219,87,51)" fg:x="1960102" fg:w="1603"/><text x="84.6529%" y="335.50"></text></g><g><title>__schedule (7,696 samples, 0.33%)</title><rect x="84.1522%" y="341" width="0.3314%" height="15" fill="rgb(211,7,35)" fg:x="1954280" fg:w="7696"/><text x="84.4022%" y="351.50"></text></g><g><title>schedule (7,828 samples, 0.34%)</title><rect x="84.1501%" y="357" width="0.3371%" height="15" fill="rgb(232,77,2)" fg:x="1954231" fg:w="7828"/><text x="84.4001%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (9,072 samples, 0.39%)</title><rect x="84.1038%" y="373" width="0.3906%" height="15" fill="rgb(249,94,25)" fg:x="1953157" fg:w="9072"/><text x="84.3538%" y="383.50"></text></g><g><title>down_read (9,444 samples, 0.41%)</title><rect x="84.0887%" y="389" width="0.4067%" height="15" fill="rgb(215,112,2)" fg:x="1952805" fg:w="9444"/><text x="84.3387%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (9,563 samples, 0.41%)</title><rect x="84.0846%" y="405" width="0.4118%" height="15" fill="rgb(226,115,48)" fg:x="1952711" fg:w="9563"/><text x="84.3346%" y="415.50"></text></g><g><title>btrfs_root_node (916 samples, 0.04%)</title><rect x="84.4964%" y="405" width="0.0394%" height="15" fill="rgb(249,196,10)" fg:x="1962274" fg:w="916"/><text x="84.7464%" y="415.50"></text></g><g><title>btrfs_read_lock_root_node (10,601 samples, 0.46%)</title><rect x="84.0801%" y="421" width="0.4565%" height="15" fill="rgb(237,109,14)" fg:x="1952605" fg:w="10601"/><text x="84.3301%" y="431.50"></text></g><g><title>osq_lock (1,908 samples, 0.08%)</title><rect x="84.6203%" y="341" width="0.0822%" height="15" fill="rgb(217,103,53)" fg:x="1965151" fg:w="1908"/><text x="84.8703%" y="351.50"></text></g><g><title>rwsem_spin_on_owner (3,761 samples, 0.16%)</title><rect x="84.7058%" y="341" width="0.1620%" height="15" fill="rgb(244,137,9)" fg:x="1967137" fg:w="3761"/><text x="84.9558%" y="351.50"></text></g><g><title>rwsem_optimistic_spin (6,797 samples, 0.29%)</title><rect x="84.5763%" y="357" width="0.2927%" height="15" fill="rgb(227,201,3)" fg:x="1964130" fg:w="6797"/><text x="84.8263%" y="367.50"></text></g><g><title>__schedule (356 samples, 0.02%)</title><rect x="84.8700%" y="341" width="0.0153%" height="15" fill="rgb(243,94,6)" fg:x="1970949" fg:w="356"/><text x="85.1200%" y="351.50"></text></g><g><title>schedule (368 samples, 0.02%)</title><rect x="84.8698%" y="357" width="0.0158%" height="15" fill="rgb(235,118,5)" fg:x="1970946" fg:w="368"/><text x="85.1198%" y="367.50"></text></g><g><title>rwsem_down_write_slowpath (7,361 samples, 0.32%)</title><rect x="84.5688%" y="373" width="0.3170%" height="15" fill="rgb(247,10,30)" fg:x="1963955" fg:w="7361"/><text x="84.8188%" y="383.50"></text></g><g><title>down_write (7,945 samples, 0.34%)</title><rect x="84.5438%" y="389" width="0.3421%" height="15" fill="rgb(205,26,28)" fg:x="1963374" fg:w="7945"/><text x="84.7938%" y="399.50"></text></g><g><title>__btrfs_tree_lock (8,117 samples, 0.35%)</title><rect x="84.5372%" y="405" width="0.3495%" height="15" fill="rgb(206,99,35)" fg:x="1963222" fg:w="8117"/><text x="84.7872%" y="415.50"></text></g><g><title>btrfs_tree_lock (8,161 samples, 0.35%)</title><rect x="84.5372%" y="421" width="0.3514%" height="15" fill="rgb(238,130,40)" fg:x="1963221" fg:w="8161"/><text x="84.7872%" y="431.50"></text></g><g><title>update_curr (515 samples, 0.02%)</title><rect x="84.9710%" y="277" width="0.0222%" height="15" fill="rgb(224,126,31)" fg:x="1973294" fg:w="515"/><text x="85.2210%" y="287.50"></text></g><g><title>update_load_avg (408 samples, 0.02%)</title><rect x="84.9931%" y="277" width="0.0176%" height="15" fill="rgb(254,105,17)" fg:x="1973809" fg:w="408"/><text x="85.2431%" y="287.50"></text></g><g><title>dequeue_entity (1,361 samples, 0.06%)</title><rect x="84.9536%" y="293" width="0.0586%" height="15" fill="rgb(216,87,36)" fg:x="1972890" fg:w="1361"/><text x="85.2036%" y="303.50"></text></g><g><title>dequeue_task_fair (1,689 samples, 0.07%)</title><rect x="84.9453%" y="309" width="0.0727%" height="15" fill="rgb(240,21,12)" fg:x="1972699" fg:w="1689"/><text x="85.1953%" y="319.50"></text></g><g><title>dequeue_task (1,773 samples, 0.08%)</title><rect x="84.9428%" y="325" width="0.0763%" height="15" fill="rgb(245,192,34)" fg:x="1972640" fg:w="1773"/><text x="85.1928%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (335 samples, 0.01%)</title><rect x="85.0259%" y="309" width="0.0144%" height="15" fill="rgb(226,100,49)" fg:x="1974570" fg:w="335"/><text x="85.2759%" y="319.50"></text></g><g><title>x86_pmu_enable (300 samples, 0.01%)</title><rect x="85.0274%" y="293" width="0.0129%" height="15" fill="rgb(245,188,27)" fg:x="1974605" fg:w="300"/><text x="85.2774%" y="303.50"></text></g><g><title>intel_pmu_enable_all (292 samples, 0.01%)</title><rect x="85.0277%" y="277" width="0.0126%" height="15" fill="rgb(212,170,8)" fg:x="1974613" fg:w="292"/><text x="85.2777%" y="287.50"></text></g><g><title>native_write_msr (279 samples, 0.01%)</title><rect x="85.0283%" y="261" width="0.0120%" height="15" fill="rgb(217,113,29)" fg:x="1974626" fg:w="279"/><text x="85.2783%" y="271.50"></text></g><g><title>finish_task_switch.isra.0 (552 samples, 0.02%)</title><rect x="85.0192%" y="325" width="0.0238%" height="15" fill="rgb(237,30,3)" fg:x="1974414" fg:w="552"/><text x="85.2692%" y="335.50"></text></g><g><title>pick_next_task_fair (282 samples, 0.01%)</title><rect x="85.0467%" y="309" width="0.0121%" height="15" fill="rgb(227,19,28)" fg:x="1975054" fg:w="282"/><text x="85.2967%" y="319.50"></text></g><g><title>__update_idle_core (241 samples, 0.01%)</title><rect x="85.0612%" y="277" width="0.0104%" height="15" fill="rgb(239,172,45)" fg:x="1975390" fg:w="241"/><text x="85.3112%" y="287.50"></text></g><g><title>pick_next_task_idle (325 samples, 0.01%)</title><rect x="85.0589%" y="309" width="0.0140%" height="15" fill="rgb(254,55,39)" fg:x="1975336" fg:w="325"/><text x="85.3089%" y="319.50"></text></g><g><title>set_next_task_idle (282 samples, 0.01%)</title><rect x="85.0607%" y="293" width="0.0121%" height="15" fill="rgb(249,208,12)" fg:x="1975379" fg:w="282"/><text x="85.3107%" y="303.50"></text></g><g><title>pick_next_task (810 samples, 0.03%)</title><rect x="85.0438%" y="325" width="0.0349%" height="15" fill="rgb(240,52,13)" fg:x="1974986" fg:w="810"/><text x="85.2938%" y="335.50"></text></g><g><title>__perf_event_task_sched_out (277 samples, 0.01%)</title><rect x="85.0831%" y="309" width="0.0119%" height="15" fill="rgb(252,149,13)" fg:x="1975898" fg:w="277"/><text x="85.3331%" y="319.50"></text></g><g><title>prepare_task_switch (343 samples, 0.01%)</title><rect x="85.0803%" y="325" width="0.0148%" height="15" fill="rgb(232,81,48)" fg:x="1975834" fg:w="343"/><text x="85.3303%" y="335.50"></text></g><g><title>psi_group_change (782 samples, 0.03%)</title><rect x="85.1072%" y="309" width="0.0337%" height="15" fill="rgb(222,144,2)" fg:x="1976459" fg:w="782"/><text x="85.3572%" y="319.50"></text></g><g><title>psi_task_switch (1,093 samples, 0.05%)</title><rect x="85.0962%" y="325" width="0.0471%" height="15" fill="rgb(216,81,32)" fg:x="1976202" fg:w="1093"/><text x="85.3462%" y="335.50"></text></g><g><title>__schedule (5,322 samples, 0.23%)</title><rect x="84.9292%" y="341" width="0.2292%" height="15" fill="rgb(244,78,51)" fg:x="1972325" fg:w="5322"/><text x="85.1792%" y="351.50"></text></g><g><title>schedule (5,416 samples, 0.23%)</title><rect x="84.9272%" y="357" width="0.2332%" height="15" fill="rgb(217,66,21)" fg:x="1972277" fg:w="5416"/><text x="85.1772%" y="367.50"></text></g><g><title>rwsem_down_read_slowpath (5,844 samples, 0.25%)</title><rect x="84.9105%" y="373" width="0.2516%" height="15" fill="rgb(247,101,42)" fg:x="1971889" fg:w="5844"/><text x="85.1605%" y="383.50"></text></g><g><title>down_read (6,255 samples, 0.27%)</title><rect x="84.8931%" y="389" width="0.2693%" height="15" fill="rgb(227,81,39)" fg:x="1971487" fg:w="6255"/><text x="85.1431%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (6,381 samples, 0.27%)</title><rect x="84.8887%" y="405" width="0.2748%" height="15" fill="rgb(220,223,44)" fg:x="1971385" fg:w="6381"/><text x="85.1387%" y="415.50"></text></g><g><title>btrfs_tree_read_lock (6,406 samples, 0.28%)</title><rect x="84.8886%" y="421" width="0.2758%" height="15" fill="rgb(205,218,2)" fg:x="1971382" fg:w="6406"/><text x="85.1386%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (914 samples, 0.04%)</title><rect x="85.2100%" y="405" width="0.0394%" height="15" fill="rgb(212,207,28)" fg:x="1978846" fg:w="914"/><text x="85.4600%" y="415.50"></text></g><g><title>verify_parent_transid (809 samples, 0.03%)</title><rect x="85.2145%" y="389" width="0.0348%" height="15" fill="rgb(224,12,41)" fg:x="1978951" fg:w="809"/><text x="85.4645%" y="399.50"></text></g><g><title>btrfs_get_64 (764 samples, 0.03%)</title><rect x="85.2494%" y="405" width="0.0329%" height="15" fill="rgb(216,118,12)" fg:x="1979760" fg:w="764"/><text x="85.4994%" y="415.50"></text></g><g><title>btrfs_node_key (1,091 samples, 0.05%)</title><rect x="85.2823%" y="405" width="0.0470%" height="15" fill="rgb(252,97,46)" fg:x="1980524" fg:w="1091"/><text x="85.5323%" y="415.50"></text></g><g><title>read_extent_buffer (1,058 samples, 0.05%)</title><rect x="85.2837%" y="389" width="0.0456%" height="15" fill="rgb(244,206,19)" fg:x="1980557" fg:w="1058"/><text x="85.5337%" y="399.50"></text></g><g><title>btrfs_verify_level_key (277 samples, 0.01%)</title><rect x="85.3293%" y="405" width="0.0119%" height="15" fill="rgb(231,84,31)" fg:x="1981615" fg:w="277"/><text x="85.5793%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,992 samples, 0.13%)</title><rect x="85.4807%" y="357" width="0.1288%" height="15" fill="rgb(244,133,0)" fg:x="1985133" fg:w="2992"/><text x="85.7307%" y="367.50"></text></g><g><title>radix_tree_lookup (3,001 samples, 0.13%)</title><rect x="85.4804%" y="373" width="0.1292%" height="15" fill="rgb(223,15,50)" fg:x="1985126" fg:w="3001"/><text x="85.7304%" y="383.50"></text></g><g><title>find_extent_buffer_nolock (5,501 samples, 0.24%)</title><rect x="85.3734%" y="389" width="0.2369%" height="15" fill="rgb(250,118,49)" fg:x="1982639" fg:w="5501"/><text x="85.6234%" y="399.50"></text></g><g><title>mark_page_accessed (1,505 samples, 0.06%)</title><rect x="85.6102%" y="389" width="0.0648%" height="15" fill="rgb(248,25,38)" fg:x="1988140" fg:w="1505"/><text x="85.8602%" y="399.50"></text></g><g><title>find_extent_buffer (7,646 samples, 0.33%)</title><rect x="85.3499%" y="405" width="0.3292%" height="15" fill="rgb(215,70,14)" fg:x="1982094" fg:w="7646"/><text x="85.5999%" y="415.50"></text></g><g><title>read_block_for_search (11,783 samples, 0.51%)</title><rect x="85.1827%" y="421" width="0.5074%" height="15" fill="rgb(215,28,15)" fg:x="1978211" fg:w="11783"/><text x="85.4327%" y="431.50"></text></g><g><title>wake_q_add (303 samples, 0.01%)</title><rect x="85.7727%" y="357" width="0.0130%" height="15" fill="rgb(243,6,28)" fg:x="1991914" fg:w="303"/><text x="86.0227%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (247 samples, 0.01%)</title><rect x="85.8084%" y="325" width="0.0106%" height="15" fill="rgb(222,130,1)" fg:x="1992743" fg:w="247"/><text x="86.0584%" y="335.50"></text></g><g><title>select_task_rq_fair (422 samples, 0.02%)</title><rect x="85.8218%" y="325" width="0.0182%" height="15" fill="rgb(236,166,44)" fg:x="1993054" fg:w="422"/><text x="86.0718%" y="335.50"></text></g><g><title>ttwu_queue_wakelist (477 samples, 0.02%)</title><rect x="85.8450%" y="325" width="0.0205%" height="15" fill="rgb(221,108,14)" fg:x="1993592" fg:w="477"/><text x="86.0950%" y="335.50"></text></g><g><title>try_to_wake_up (1,731 samples, 0.07%)</title><rect x="85.7918%" y="341" width="0.0745%" height="15" fill="rgb(252,3,45)" fg:x="1992357" fg:w="1731"/><text x="86.0418%" y="351.50"></text></g><g><title>rwsem_wake.isra.0 (2,531 samples, 0.11%)</title><rect x="85.7583%" y="373" width="0.1090%" height="15" fill="rgb(237,68,30)" fg:x="1991579" fg:w="2531"/><text x="86.0083%" y="383.50"></text></g><g><title>wake_up_q (1,893 samples, 0.08%)</title><rect x="85.7858%" y="357" width="0.0815%" height="15" fill="rgb(211,79,22)" fg:x="1992217" fg:w="1893"/><text x="86.0358%" y="367.50"></text></g><g><title>btrfs_tree_read_unlock (2,661 samples, 0.11%)</title><rect x="85.7528%" y="405" width="0.1146%" height="15" fill="rgb(252,185,21)" fg:x="1991452" fg:w="2661"/><text x="86.0028%" y="415.50"></text></g><g><title>up_read (2,571 samples, 0.11%)</title><rect x="85.7567%" y="389" width="0.1107%" height="15" fill="rgb(225,189,26)" fg:x="1991542" fg:w="2571"/><text x="86.0067%" y="399.50"></text></g><g><title>try_to_wake_up (583 samples, 0.03%)</title><rect x="85.8748%" y="341" width="0.0251%" height="15" fill="rgb(241,30,40)" fg:x="1994284" fg:w="583"/><text x="86.1248%" y="351.50"></text></g><g><title>rwsem_wake.isra.0 (710 samples, 0.03%)</title><rect x="85.8694%" y="373" width="0.0306%" height="15" fill="rgb(235,215,44)" fg:x="1994158" fg:w="710"/><text x="86.1194%" y="383.50"></text></g><g><title>wake_up_q (604 samples, 0.03%)</title><rect x="85.8739%" y="357" width="0.0260%" height="15" fill="rgb(205,8,29)" fg:x="1994264" fg:w="604"/><text x="86.1239%" y="367.50"></text></g><g><title>btrfs_tree_unlock (756 samples, 0.03%)</title><rect x="85.8674%" y="405" width="0.0326%" height="15" fill="rgb(241,137,42)" fg:x="1994113" fg:w="756"/><text x="86.1174%" y="415.50"></text></g><g><title>up_write (714 samples, 0.03%)</title><rect x="85.8692%" y="389" width="0.0307%" height="15" fill="rgb(237,155,2)" fg:x="1994155" fg:w="714"/><text x="86.1192%" y="399.50"></text></g><g><title>up_read (788 samples, 0.03%)</title><rect x="85.9000%" y="405" width="0.0339%" height="15" fill="rgb(245,29,42)" fg:x="1994869" fg:w="788"/><text x="86.1500%" y="415.50"></text></g><g><title>btrfs_search_slot (51,747 samples, 2.23%)</title><rect x="83.7146%" y="437" width="2.2282%" height="15" fill="rgb(234,101,35)" fg:x="1944118" fg:w="51747"/><text x="83.9646%" y="447.50">b..</text></g><g><title>unlock_up (5,715 samples, 0.25%)</title><rect x="85.6968%" y="421" width="0.2461%" height="15" fill="rgb(228,64,37)" fg:x="1990150" fg:w="5715"/><text x="85.9468%" y="431.50"></text></g><g><title>btrfs_get_32 (295 samples, 0.01%)</title><rect x="86.0273%" y="421" width="0.0127%" height="15" fill="rgb(217,214,36)" fg:x="1997825" fg:w="295"/><text x="86.2773%" y="431.50"></text></g><g><title>btrfs_get_token_32 (266 samples, 0.01%)</title><rect x="86.0400%" y="421" width="0.0115%" height="15" fill="rgb(243,70,3)" fg:x="1998120" fg:w="266"/><text x="86.2900%" y="431.50"></text></g><g><title>btrfs_get_32 (570 samples, 0.02%)</title><rect x="86.0694%" y="389" width="0.0245%" height="15" fill="rgb(253,158,52)" fg:x="1998803" fg:w="570"/><text x="86.3194%" y="399.50"></text></g><g><title>btrfs_leaf_free_space (1,106 samples, 0.05%)</title><rect x="86.0514%" y="421" width="0.0476%" height="15" fill="rgb(234,111,54)" fg:x="1998386" fg:w="1106"/><text x="86.3014%" y="431.50"></text></g><g><title>leaf_space_used (932 samples, 0.04%)</title><rect x="86.0589%" y="405" width="0.0401%" height="15" fill="rgb(217,70,32)" fg:x="1998560" fg:w="932"/><text x="86.3089%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (572 samples, 0.02%)</title><rect x="86.0990%" y="421" width="0.0246%" height="15" fill="rgb(234,18,33)" fg:x="1999492" fg:w="572"/><text x="86.3490%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (304 samples, 0.01%)</title><rect x="86.1106%" y="405" width="0.0131%" height="15" fill="rgb(234,12,49)" fg:x="1999760" fg:w="304"/><text x="86.3606%" y="415.50"></text></g><g><title>btrfs_set_token_32 (484 samples, 0.02%)</title><rect x="86.1237%" y="421" width="0.0208%" height="15" fill="rgb(236,10,21)" fg:x="2000064" fg:w="484"/><text x="86.3737%" y="431.50"></text></g><g><title>btrfs_unlock_up_safe (553 samples, 0.02%)</title><rect x="86.1445%" y="421" width="0.0238%" height="15" fill="rgb(248,182,45)" fg:x="2000548" fg:w="553"/><text x="86.3945%" y="431.50"></text></g><g><title>copy_pages (318 samples, 0.01%)</title><rect x="86.1748%" y="421" width="0.0137%" height="15" fill="rgb(217,95,36)" fg:x="2001251" fg:w="318"/><text x="86.4248%" y="431.50"></text></g><g><title>memmove_extent_buffer (506 samples, 0.02%)</title><rect x="86.1892%" y="421" width="0.0218%" height="15" fill="rgb(212,110,31)" fg:x="2001586" fg:w="506"/><text x="86.4392%" y="431.50"></text></g><g><title>setup_items_for_insert (6,125 samples, 0.26%)</title><rect x="85.9723%" y="437" width="0.2637%" height="15" fill="rgb(206,32,53)" fg:x="1996549" fg:w="6125"/><text x="86.2223%" y="447.50"></text></g><g><title>write_extent_buffer (553 samples, 0.02%)</title><rect x="86.2123%" y="421" width="0.0238%" height="15" fill="rgb(246,141,37)" fg:x="2002121" fg:w="553"/><text x="86.4623%" y="431.50"></text></g><g><title>btrfs_insert_empty_items (59,787 samples, 2.57%)</title><rect x="83.6732%" y="453" width="2.5745%" height="15" fill="rgb(219,16,7)" fg:x="1943155" fg:w="59787"/><text x="83.9232%" y="463.50">bt..</text></g><g><title>btrfs_orphan_add (65,420 samples, 2.82%)</title><rect x="83.4482%" y="485" width="2.8170%" height="15" fill="rgb(230,205,45)" fg:x="1937932" fg:w="65420"/><text x="83.6982%" y="495.50">bt..</text></g><g><title>btrfs_insert_orphan_item (64,817 samples, 2.79%)</title><rect x="83.4742%" y="469" width="2.7910%" height="15" fill="rgb(231,43,49)" fg:x="1938535" fg:w="64817"/><text x="83.7242%" y="479.50">bt..</text></g><g><title>btrfs_record_unlink_dir (972 samples, 0.04%)</title><rect x="86.2653%" y="485" width="0.0419%" height="15" fill="rgb(212,106,34)" fg:x="2003352" fg:w="972"/><text x="86.5153%" y="495.50"></text></g><g><title>mutex_lock (785 samples, 0.03%)</title><rect x="86.2733%" y="469" width="0.0338%" height="15" fill="rgb(206,83,17)" fg:x="2003539" fg:w="785"/><text x="86.5233%" y="479.50"></text></g><g><title>_raw_spin_lock (1,326 samples, 0.06%)</title><rect x="86.3989%" y="453" width="0.0571%" height="15" fill="rgb(244,154,49)" fg:x="2006456" fg:w="1326"/><text x="86.6489%" y="463.50"></text></g><g><title>_raw_spin_lock (253 samples, 0.01%)</title><rect x="86.4930%" y="405" width="0.0109%" height="15" fill="rgb(244,149,49)" fg:x="2008641" fg:w="253"/><text x="86.7430%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (243 samples, 0.01%)</title><rect x="86.4934%" y="389" width="0.0105%" height="15" fill="rgb(227,134,18)" fg:x="2008651" fg:w="243"/><text x="86.7434%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (243 samples, 0.01%)</title><rect x="86.4934%" y="373" width="0.0105%" height="15" fill="rgb(237,116,36)" fg:x="2008651" fg:w="243"/><text x="86.7434%" y="383.50"></text></g><g><title>_raw_spin_lock (346 samples, 0.01%)</title><rect x="86.5582%" y="389" width="0.0149%" height="15" fill="rgb(205,129,40)" fg:x="2010154" fg:w="346"/><text x="86.8082%" y="399.50"></text></g><g><title>need_preemptive_reclaim (1,808 samples, 0.08%)</title><rect x="86.5294%" y="405" width="0.0779%" height="15" fill="rgb(236,178,4)" fg:x="2009487" fg:w="1808"/><text x="86.7794%" y="415.50"></text></g><g><title>btrfs_get_alloc_profile (794 samples, 0.03%)</title><rect x="86.5731%" y="389" width="0.0342%" height="15" fill="rgb(251,76,53)" fg:x="2010501" fg:w="794"/><text x="86.8231%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (578 samples, 0.02%)</title><rect x="86.6165%" y="389" width="0.0249%" height="15" fill="rgb(242,92,40)" fg:x="2011508" fg:w="578"/><text x="86.8665%" y="399.50"></text></g><g><title>idr_find (505 samples, 0.02%)</title><rect x="86.6414%" y="389" width="0.0217%" height="15" fill="rgb(209,45,30)" fg:x="2012088" fg:w="505"/><text x="86.8914%" y="399.50"></text></g><g><title>radix_tree_lookup (415 samples, 0.02%)</title><rect x="86.6453%" y="373" width="0.0179%" height="15" fill="rgb(218,157,36)" fg:x="2012178" fg:w="415"/><text x="86.8953%" y="383.50"></text></g><g><title>__radix_tree_lookup (411 samples, 0.02%)</title><rect x="86.6455%" y="357" width="0.0177%" height="15" fill="rgb(222,186,16)" fg:x="2012182" fg:w="411"/><text x="86.8955%" y="367.50"></text></g><g><title>__reserve_bytes (4,289 samples, 0.18%)</title><rect x="86.4800%" y="421" width="0.1847%" height="15" fill="rgb(254,72,35)" fg:x="2008338" fg:w="4289"/><text x="86.7300%" y="431.50"></text></g><g><title>work_busy (1,323 samples, 0.06%)</title><rect x="86.6077%" y="405" width="0.0570%" height="15" fill="rgb(224,25,35)" fg:x="2011304" fg:w="1323"/><text x="86.8577%" y="415.50"></text></g><g><title>_raw_spin_lock (563 samples, 0.02%)</title><rect x="86.6646%" y="421" width="0.0242%" height="15" fill="rgb(206,135,52)" fg:x="2012627" fg:w="563"/><text x="86.9146%" y="431.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,555 samples, 0.24%)</title><rect x="86.4618%" y="437" width="0.2392%" height="15" fill="rgb(229,174,47)" fg:x="2007917" fg:w="5555"/><text x="86.7118%" y="447.50"></text></g><g><title>btrfs_block_rsv_add (5,684 samples, 0.24%)</title><rect x="86.4563%" y="453" width="0.2448%" height="15" fill="rgb(242,184,21)" fg:x="2007789" fg:w="5684"/><text x="86.7063%" y="463.50"></text></g><g><title>join_transaction (481 samples, 0.02%)</title><rect x="86.7128%" y="453" width="0.0207%" height="15" fill="rgb(213,22,45)" fg:x="2013745" fg:w="481"/><text x="86.9628%" y="463.50"></text></g><g><title>kmem_cache_alloc (577 samples, 0.02%)</title><rect x="86.7335%" y="453" width="0.0248%" height="15" fill="rgb(237,81,54)" fg:x="2014226" fg:w="577"/><text x="86.9835%" y="463.50"></text></g><g><title>start_transaction (10,352 samples, 0.45%)</title><rect x="86.3299%" y="469" width="0.4458%" height="15" fill="rgb(248,177,18)" fg:x="2004852" fg:w="10352"/><text x="86.5799%" y="479.50"></text></g><g><title>wait_current_trans (252 samples, 0.01%)</title><rect x="86.7648%" y="453" width="0.0109%" height="15" fill="rgb(254,31,16)" fg:x="2014952" fg:w="252"/><text x="87.0148%" y="463.50"></text></g><g><title>btrfs_start_transaction_fallback_global_rsv (10,885 samples, 0.47%)</title><rect x="86.3150%" y="485" width="0.4687%" height="15" fill="rgb(235,20,31)" fg:x="2004508" fg:w="10885"/><text x="86.5650%" y="495.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (360 samples, 0.02%)</title><rect x="86.8151%" y="453" width="0.0155%" height="15" fill="rgb(240,56,43)" fg:x="2016121" fg:w="360"/><text x="87.0651%" y="463.50"></text></g><g><title>_raw_spin_lock (761 samples, 0.03%)</title><rect x="86.8310%" y="453" width="0.0328%" height="15" fill="rgb(237,197,51)" fg:x="2016491" fg:w="761"/><text x="87.0810%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (269 samples, 0.01%)</title><rect x="86.8694%" y="453" width="0.0116%" height="15" fill="rgb(241,162,44)" fg:x="2017381" fg:w="269"/><text x="87.1194%" y="463.50"></text></g><g><title>fill_stack_inode_item (513 samples, 0.02%)</title><rect x="86.8809%" y="453" width="0.0221%" height="15" fill="rgb(224,23,20)" fg:x="2017650" fg:w="513"/><text x="87.1309%" y="463.50"></text></g><g><title>mutex_lock (235 samples, 0.01%)</title><rect x="86.9036%" y="453" width="0.0101%" height="15" fill="rgb(250,109,34)" fg:x="2018176" fg:w="235"/><text x="87.1536%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (2,988 samples, 0.13%)</title><rect x="86.7952%" y="469" width="0.1287%" height="15" fill="rgb(214,175,50)" fg:x="2015659" fg:w="2988"/><text x="87.0452%" y="479.50"></text></g><g><title>mutex_unlock (236 samples, 0.01%)</title><rect x="86.9137%" y="453" width="0.0102%" height="15" fill="rgb(213,182,5)" fg:x="2018411" fg:w="236"/><text x="87.1637%" y="463.50"></text></g><g><title>btrfs_update_root_times (300 samples, 0.01%)</title><rect x="86.9240%" y="469" width="0.0129%" height="15" fill="rgb(209,199,19)" fg:x="2018651" fg:w="300"/><text x="87.1740%" y="479.50"></text></g><g><title>btrfs_update_inode (3,694 samples, 0.16%)</title><rect x="86.7838%" y="485" width="0.1591%" height="15" fill="rgb(236,224,42)" fg:x="2015393" fg:w="3694"/><text x="87.0338%" y="495.50"></text></g><g><title>drop_nlink (490 samples, 0.02%)</title><rect x="86.9433%" y="485" width="0.0211%" height="15" fill="rgb(246,226,29)" fg:x="2019099" fg:w="490"/><text x="87.1933%" y="495.50"></text></g><g><title>btrfs_unlink (408,186 samples, 17.58%)</title><rect x="69.4050%" y="501" width="17.5767%" height="15" fill="rgb(227,223,11)" fg:x="1611804" fg:w="408186"/><text x="69.6550%" y="511.50">btrfs_unlink</text></g><g><title>__srcu_read_lock (355 samples, 0.02%)</title><rect x="87.0082%" y="437" width="0.0153%" height="15" fill="rgb(219,7,51)" fg:x="2020606" fg:w="355"/><text x="87.2582%" y="447.50"></text></g><g><title>__srcu_read_lock (321 samples, 0.01%)</title><rect x="87.0266%" y="421" width="0.0138%" height="15" fill="rgb(245,167,10)" fg:x="2021032" fg:w="321"/><text x="87.2766%" y="431.50"></text></g><g><title>fsnotify_destroy_marks (1,080 samples, 0.05%)</title><rect x="87.0044%" y="453" width="0.0465%" height="15" fill="rgb(237,224,16)" fg:x="2020516" fg:w="1080"/><text x="87.2544%" y="463.50"></text></g><g><title>fsnotify_grab_connector (619 samples, 0.03%)</title><rect x="87.0242%" y="437" width="0.0267%" height="15" fill="rgb(226,132,13)" fg:x="2020977" fg:w="619"/><text x="87.2742%" y="447.50"></text></g><g><title>__srcu_read_unlock (243 samples, 0.01%)</title><rect x="87.0404%" y="421" width="0.0105%" height="15" fill="rgb(214,140,3)" fg:x="2021353" fg:w="243"/><text x="87.2904%" y="431.50"></text></g><g><title>__fsnotify_inode_delete (1,290 samples, 0.06%)</title><rect x="87.0041%" y="469" width="0.0555%" height="15" fill="rgb(221,177,4)" fg:x="2020511" fg:w="1290"/><text x="87.2541%" y="479.50"></text></g><g><title>dentry_unlink_inode (2,336 samples, 0.10%)</title><rect x="86.9909%" y="485" width="0.1006%" height="15" fill="rgb(238,139,3)" fg:x="2020203" fg:w="2336"/><text x="87.2409%" y="495.50"></text></g><g><title>d_delete (2,577 samples, 0.11%)</title><rect x="86.9823%" y="501" width="0.1110%" height="15" fill="rgb(216,17,39)" fg:x="2020004" fg:w="2577"/><text x="87.2323%" y="511.50"></text></g><g><title>down_write (680 samples, 0.03%)</title><rect x="87.0974%" y="501" width="0.0293%" height="15" fill="rgb(238,120,9)" fg:x="2022678" fg:w="680"/><text x="87.3474%" y="511.50"></text></g><g><title>drop_nlink (234 samples, 0.01%)</title><rect x="87.1267%" y="501" width="0.0101%" height="15" fill="rgb(244,92,53)" fg:x="2023358" fg:w="234"/><text x="87.3767%" y="511.50"></text></g><g><title>fsnotify (781 samples, 0.03%)</title><rect x="87.1368%" y="501" width="0.0336%" height="15" fill="rgb(224,148,33)" fg:x="2023592" fg:w="781"/><text x="87.3868%" y="511.50"></text></g><g><title>btrfs_permission (402 samples, 0.02%)</title><rect x="87.2147%" y="485" width="0.0173%" height="15" fill="rgb(243,6,36)" fg:x="2025400" fg:w="402"/><text x="87.4647%" y="495.50"></text></g><g><title>inode_permission (515 samples, 0.02%)</title><rect x="87.2320%" y="485" width="0.0222%" height="15" fill="rgb(230,102,11)" fg:x="2025802" fg:w="515"/><text x="87.4820%" y="495.50"></text></g><g><title>may_delete (1,477 samples, 0.06%)</title><rect x="87.1908%" y="501" width="0.0636%" height="15" fill="rgb(234,148,36)" fg:x="2024846" fg:w="1477"/><text x="87.4408%" y="511.50"></text></g><g><title>pinnedhook_security_inode_unlink (287 samples, 0.01%)</title><rect x="87.2544%" y="501" width="0.0124%" height="15" fill="rgb(251,153,25)" fg:x="2026323" fg:w="287"/><text x="87.5044%" y="511.50"></text></g><g><title>cshook_security_inode_unlink (292 samples, 0.01%)</title><rect x="87.2783%" y="485" width="0.0126%" height="15" fill="rgb(215,129,8)" fg:x="2026879" fg:w="292"/><text x="87.5283%" y="495.50"></text></g><g><title>[[falcon_kal]] (271 samples, 0.01%)</title><rect x="87.2924%" y="469" width="0.0117%" height="15" fill="rgb(224,128,35)" fg:x="2027206" fg:w="271"/><text x="87.5424%" y="479.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (316 samples, 0.01%)</title><rect x="87.3041%" y="469" width="0.0136%" height="15" fill="rgb(237,56,52)" fg:x="2027477" fg:w="316"/><text x="87.5541%" y="479.50"></text></g><g><title>pinnedhook_security_inode_unlink (1,137 samples, 0.05%)</title><rect x="87.2909%" y="485" width="0.0490%" height="15" fill="rgb(234,213,19)" fg:x="2027171" fg:w="1137"/><text x="87.5409%" y="495.50"></text></g><g><title>cshook_security_inode_unlink (515 samples, 0.02%)</title><rect x="87.3177%" y="469" width="0.0222%" height="15" fill="rgb(252,82,23)" fg:x="2027793" fg:w="515"/><text x="87.5677%" y="479.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (268 samples, 0.01%)</title><rect x="87.3283%" y="453" width="0.0115%" height="15" fill="rgb(254,201,21)" fg:x="2028040" fg:w="268"/><text x="87.5783%" y="463.50"></text></g><g><title>do_unlinkat (1,152,142 samples, 49.61%)</title><rect x="37.7306%" y="533" width="49.6118%" height="15" fill="rgb(250,186,11)" fg:x="876223" fg:w="1152142"/><text x="37.9806%" y="543.50">do_unlinkat</text></g><g><title>vfs_unlink (418,873 samples, 18.04%)</title><rect x="69.3055%" y="517" width="18.0369%" height="15" fill="rgb(211,174,5)" fg:x="1609492" fg:w="418873"/><text x="69.5555%" y="527.50">vfs_unlink</text></g><g><title>security_inode_unlink (1,755 samples, 0.08%)</title><rect x="87.2668%" y="501" width="0.0756%" height="15" fill="rgb(214,121,10)" fg:x="2026610" fg:w="1755"/><text x="87.5168%" y="511.50"></text></g><g><title>dput (305 samples, 0.01%)</title><rect x="87.3460%" y="533" width="0.0131%" height="15" fill="rgb(241,66,2)" fg:x="2028451" fg:w="305"/><text x="87.5960%" y="543.50"></text></g><g><title>kmem_cache_alloc (493 samples, 0.02%)</title><rect x="87.3742%" y="501" width="0.0212%" height="15" fill="rgb(220,167,19)" fg:x="2029104" fg:w="493"/><text x="87.6242%" y="511.50"></text></g><g><title>memset_erms (1,236 samples, 0.05%)</title><rect x="87.3960%" y="501" width="0.0532%" height="15" fill="rgb(231,54,50)" fg:x="2029611" fg:w="1236"/><text x="87.6460%" y="511.50"></text></g><g><title>__check_heap_object (254 samples, 0.01%)</title><rect x="87.4833%" y="453" width="0.0109%" height="15" fill="rgb(239,217,53)" fg:x="2031638" fg:w="254"/><text x="87.7333%" y="463.50"></text></g><g><title>__check_object_size.part.0 (828 samples, 0.04%)</title><rect x="87.4751%" y="469" width="0.0357%" height="15" fill="rgb(248,8,0)" fg:x="2031448" fg:w="828"/><text x="87.7251%" y="479.50"></text></g><g><title>__virt_addr_valid (384 samples, 0.02%)</title><rect x="87.4942%" y="453" width="0.0165%" height="15" fill="rgb(229,118,37)" fg:x="2031892" fg:w="384"/><text x="87.7442%" y="463.50"></text></g><g><title>__check_object_size (1,027 samples, 0.04%)</title><rect x="87.4746%" y="485" width="0.0442%" height="15" fill="rgb(253,223,43)" fg:x="2031437" fg:w="1027"/><text x="87.7246%" y="495.50"></text></g><g><title>getname_flags.part.0 (3,507 samples, 0.15%)</title><rect x="87.3680%" y="517" width="0.1510%" height="15" fill="rgb(211,77,36)" fg:x="2028960" fg:w="3507"/><text x="87.6180%" y="527.50"></text></g><g><title>strncpy_from_user (1,603 samples, 0.07%)</title><rect x="87.4499%" y="501" width="0.0690%" height="15" fill="rgb(219,3,53)" fg:x="2030864" fg:w="1603"/><text x="87.6999%" y="511.50"></text></g><g><title>getname_flags (3,524 samples, 0.15%)</title><rect x="87.3680%" y="533" width="0.1517%" height="15" fill="rgb(244,45,42)" fg:x="2028960" fg:w="3524"/><text x="87.6180%" y="543.50"></text></g><g><title>mnt_drop_write (898 samples, 0.04%)</title><rect x="87.5270%" y="533" width="0.0387%" height="15" fill="rgb(225,95,27)" fg:x="2032654" fg:w="898"/><text x="87.7770%" y="543.50"></text></g><g><title>mnt_want_write (252 samples, 0.01%)</title><rect x="87.5657%" y="533" width="0.0109%" height="15" fill="rgb(207,74,8)" fg:x="2033552" fg:w="252"/><text x="87.8157%" y="543.50"></text></g><g><title>putname (281 samples, 0.01%)</title><rect x="87.5860%" y="533" width="0.0121%" height="15" fill="rgb(243,63,36)" fg:x="2034023" fg:w="281"/><text x="87.8360%" y="543.50"></text></g><g><title>__x64_sys_unlinkat (1,292,983 samples, 55.68%)</title><rect x="31.9348%" y="549" width="55.6764%" height="15" fill="rgb(211,180,12)" fg:x="741626" fg:w="1292983"/><text x="32.1848%" y="559.50">__x64_sys_unlinkat</text></g><g><title>crowdstrike_probe_sched_process_exec (243 samples, 0.01%)</title><rect x="87.6115%" y="549" width="0.0105%" height="15" fill="rgb(254,166,49)" fg:x="2034617" fg:w="243"/><text x="87.8615%" y="559.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (333 samples, 0.01%)</title><rect x="87.6220%" y="549" width="0.0143%" height="15" fill="rgb(205,19,0)" fg:x="2034860" fg:w="333"/><text x="87.8720%" y="559.50"></text></g><g><title>cshook_security_file_free_security (254 samples, 0.01%)</title><rect x="87.6364%" y="549" width="0.0109%" height="15" fill="rgb(224,172,32)" fg:x="2035193" fg:w="254"/><text x="87.8864%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (1,073 samples, 0.05%)</title><rect x="87.8746%" y="437" width="0.0462%" height="15" fill="rgb(254,136,30)" fg:x="2040727" fg:w="1073"/><text x="88.1246%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (505 samples, 0.02%)</title><rect x="87.8991%" y="421" width="0.0217%" height="15" fill="rgb(246,19,35)" fg:x="2041295" fg:w="505"/><text x="88.1491%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (505 samples, 0.02%)</title><rect x="87.8991%" y="405" width="0.0217%" height="15" fill="rgb(219,24,36)" fg:x="2041295" fg:w="505"/><text x="88.1491%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (540 samples, 0.02%)</title><rect x="87.9740%" y="389" width="0.0233%" height="15" fill="rgb(251,55,1)" fg:x="2043034" fg:w="540"/><text x="88.2240%" y="399.50"></text></g><g><title>is_cpu_allowed (394 samples, 0.02%)</title><rect x="87.9974%" y="389" width="0.0170%" height="15" fill="rgb(218,117,39)" fg:x="2043577" fg:w="394"/><text x="88.2474%" y="399.50"></text></g><g><title>kthread_is_per_cpu (327 samples, 0.01%)</title><rect x="88.0003%" y="373" width="0.0141%" height="15" fill="rgb(248,169,11)" fg:x="2043644" fg:w="327"/><text x="88.2503%" y="383.50"></text></g><g><title>kthread_is_per_cpu (470 samples, 0.02%)</title><rect x="88.0143%" y="389" width="0.0202%" height="15" fill="rgb(244,40,44)" fg:x="2043971" fg:w="470"/><text x="88.2643%" y="399.50"></text></g><g><title>_raw_spin_lock (572 samples, 0.02%)</title><rect x="88.0372%" y="373" width="0.0246%" height="15" fill="rgb(234,62,37)" fg:x="2044503" fg:w="572"/><text x="88.2872%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (570 samples, 0.02%)</title><rect x="88.0373%" y="357" width="0.0245%" height="15" fill="rgb(207,117,42)" fg:x="2044505" fg:w="570"/><text x="88.2873%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (570 samples, 0.02%)</title><rect x="88.0373%" y="341" width="0.0245%" height="15" fill="rgb(213,43,2)" fg:x="2044505" fg:w="570"/><text x="88.2873%" y="351.50"></text></g><g><title>raw_spin_rq_lock_nested (586 samples, 0.03%)</title><rect x="88.0369%" y="389" width="0.0252%" height="15" fill="rgb(244,202,51)" fg:x="2044496" fg:w="586"/><text x="88.2869%" y="399.50"></text></g><g><title>available_idle_cpu (270 samples, 0.01%)</title><rect x="88.1201%" y="357" width="0.0116%" height="15" fill="rgb(253,174,46)" fg:x="2046428" fg:w="270"/><text x="88.3701%" y="367.50"></text></g><g><title>available_idle_cpu (247 samples, 0.01%)</title><rect x="88.1650%" y="341" width="0.0106%" height="15" fill="rgb(251,23,1)" fg:x="2047469" fg:w="247"/><text x="88.4150%" y="351.50"></text></g><g><title>available_idle_cpu (426 samples, 0.02%)</title><rect x="88.2029%" y="325" width="0.0183%" height="15" fill="rgb(253,26,1)" fg:x="2048350" fg:w="426"/><text x="88.4529%" y="335.50"></text></g><g><title>select_idle_sibling (3,099 samples, 0.13%)</title><rect x="88.0883%" y="373" width="0.1334%" height="15" fill="rgb(216,89,31)" fg:x="2045688" fg:w="3099"/><text x="88.3383%" y="383.50"></text></g><g><title>select_idle_cpu (1,872 samples, 0.08%)</title><rect x="88.1411%" y="357" width="0.0806%" height="15" fill="rgb(209,109,5)" fg:x="2046915" fg:w="1872"/><text x="88.3911%" y="367.50"></text></g><g><title>select_idle_core (879 samples, 0.04%)</title><rect x="88.1839%" y="341" width="0.0379%" height="15" fill="rgb(229,63,13)" fg:x="2047908" fg:w="879"/><text x="88.4339%" y="351.50"></text></g><g><title>task_h_load (282 samples, 0.01%)</title><rect x="88.2217%" y="373" width="0.0121%" height="15" fill="rgb(238,137,54)" fg:x="2048787" fg:w="282"/><text x="88.4717%" y="383.50"></text></g><g><title>available_idle_cpu (431 samples, 0.02%)</title><rect x="88.2437%" y="357" width="0.0186%" height="15" fill="rgb(228,1,9)" fg:x="2049297" fg:w="431"/><text x="88.4937%" y="367.50"></text></g><g><title>select_task_rq_fair (4,704 samples, 0.20%)</title><rect x="88.0643%" y="389" width="0.2026%" height="15" fill="rgb(249,120,48)" fg:x="2045131" fg:w="4704"/><text x="88.3143%" y="399.50"></text></g><g><title>wake_affine (766 samples, 0.03%)</title><rect x="88.2339%" y="373" width="0.0330%" height="15" fill="rgb(209,72,36)" fg:x="2049069" fg:w="766"/><text x="88.4839%" y="383.50"></text></g><g><title>migrate_task_rq_fair (478 samples, 0.02%)</title><rect x="88.2767%" y="373" width="0.0206%" height="15" fill="rgb(247,98,49)" fg:x="2050065" fg:w="478"/><text x="88.5267%" y="383.50"></text></g><g><title>remove_entity_load_avg (335 samples, 0.01%)</title><rect x="88.2829%" y="357" width="0.0144%" height="15" fill="rgb(233,75,36)" fg:x="2050208" fg:w="335"/><text x="88.5329%" y="367.50"></text></g><g><title>set_task_cpu (763 samples, 0.03%)</title><rect x="88.2668%" y="389" width="0.0329%" height="15" fill="rgb(225,14,24)" fg:x="2049835" fg:w="763"/><text x="88.5168%" y="399.50"></text></g><g><title>enqueue_entity (604 samples, 0.03%)</title><rect x="88.3091%" y="341" width="0.0260%" height="15" fill="rgb(237,193,20)" fg:x="2050816" fg:w="604"/><text x="88.5591%" y="351.50"></text></g><g><title>enqueue_task_fair (789 samples, 0.03%)</title><rect x="88.3028%" y="357" width="0.0340%" height="15" fill="rgb(239,122,19)" fg:x="2050671" fg:w="789"/><text x="88.5528%" y="367.50"></text></g><g><title>psi_group_change (285 samples, 0.01%)</title><rect x="88.3440%" y="341" width="0.0123%" height="15" fill="rgb(231,220,10)" fg:x="2051626" fg:w="285"/><text x="88.5940%" y="351.50"></text></g><g><title>psi_task_change (454 samples, 0.02%)</title><rect x="88.3376%" y="357" width="0.0195%" height="15" fill="rgb(220,66,15)" fg:x="2051479" fg:w="454"/><text x="88.5876%" y="367.50"></text></g><g><title>enqueue_task (1,313 samples, 0.06%)</title><rect x="88.3008%" y="373" width="0.0565%" height="15" fill="rgb(215,171,52)" fg:x="2050624" fg:w="1313"/><text x="88.5508%" y="383.50"></text></g><g><title>check_preempt_wakeup (330 samples, 0.01%)</title><rect x="88.3622%" y="341" width="0.0142%" height="15" fill="rgb(241,169,50)" fg:x="2052050" fg:w="330"/><text x="88.6122%" y="351.50"></text></g><g><title>check_preempt_curr (509 samples, 0.02%)</title><rect x="88.3597%" y="357" width="0.0219%" height="15" fill="rgb(236,189,0)" fg:x="2051991" fg:w="509"/><text x="88.6097%" y="367.50"></text></g><g><title>ttwu_do_activate (1,943 samples, 0.08%)</title><rect x="88.2998%" y="389" width="0.0837%" height="15" fill="rgb(217,147,20)" fg:x="2050600" fg:w="1943"/><text x="88.5498%" y="399.50"></text></g><g><title>ttwu_do_wakeup (589 samples, 0.03%)</title><rect x="88.3581%" y="373" width="0.0254%" height="15" fill="rgb(206,188,39)" fg:x="2051954" fg:w="589"/><text x="88.6081%" y="383.50"></text></g><g><title>__smp_call_single_queue (542 samples, 0.02%)</title><rect x="88.4020%" y="373" width="0.0233%" height="15" fill="rgb(227,118,25)" fg:x="2052973" fg:w="542"/><text x="88.6520%" y="383.50"></text></g><g><title>send_call_function_single_ipi (493 samples, 0.02%)</title><rect x="88.4041%" y="357" width="0.0212%" height="15" fill="rgb(248,171,40)" fg:x="2053022" fg:w="493"/><text x="88.6541%" y="367.50"></text></g><g><title>llist_add_batch (593 samples, 0.03%)</title><rect x="88.4253%" y="373" width="0.0255%" height="15" fill="rgb(251,90,54)" fg:x="2053515" fg:w="593"/><text x="88.6753%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (1,749 samples, 0.08%)</title><rect x="88.3837%" y="389" width="0.0753%" height="15" fill="rgb(234,11,46)" fg:x="2052549" fg:w="1749"/><text x="88.6337%" y="399.50"></text></g><g><title>try_to_wake_up (12,075 samples, 0.52%)</title><rect x="87.9451%" y="405" width="0.5200%" height="15" fill="rgb(229,134,13)" fg:x="2042363" fg:w="12075"/><text x="88.1951%" y="415.50"></text></g><g><title>swake_up_locked (12,639 samples, 0.54%)</title><rect x="87.9217%" y="437" width="0.5442%" height="15" fill="rgb(223,129,3)" fg:x="2041820" fg:w="12639"/><text x="88.1717%" y="447.50"></text></g><g><title>wake_up_process (12,257 samples, 0.53%)</title><rect x="87.9382%" y="421" width="0.5278%" height="15" fill="rgb(221,124,13)" fg:x="2042202" fg:w="12257"/><text x="88.1882%" y="431.50"></text></g><g><title>complete (13,922 samples, 0.60%)</title><rect x="87.8672%" y="453" width="0.5995%" height="15" fill="rgb(234,3,18)" fg:x="2040553" fg:w="13922"/><text x="88.1172%" y="463.50"></text></g><g><title>[[falcon_kal]] (14,149 samples, 0.61%)</title><rect x="87.8585%" y="469" width="0.6093%" height="15" fill="rgb(249,199,20)" fg:x="2040352" fg:w="14149"/><text x="88.1085%" y="479.50"></text></g><g><title>[[falcon_kal]] (624 samples, 0.03%)</title><rect x="88.4754%" y="453" width="0.0269%" height="15" fill="rgb(224,134,6)" fg:x="2054679" fg:w="624"/><text x="88.7254%" y="463.50"></text></g><g><title>mutex_lock (579 samples, 0.02%)</title><rect x="88.4774%" y="437" width="0.0249%" height="15" fill="rgb(254,83,26)" fg:x="2054724" fg:w="579"/><text x="88.7274%" y="447.50"></text></g><g><title>_ZdlPv (16,901 samples, 0.73%)</title><rect x="87.7821%" y="501" width="0.7278%" height="15" fill="rgb(217,88,9)" fg:x="2038577" fg:w="16901"/><text x="88.0321%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (16,000 samples, 0.69%)</title><rect x="87.8209%" y="485" width="0.6890%" height="15" fill="rgb(225,73,2)" fg:x="2039478" fg:w="16000"/><text x="88.0709%" y="495.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (826 samples, 0.04%)</title><rect x="88.4743%" y="469" width="0.0356%" height="15" fill="rgb(226,44,39)" fg:x="2054652" fg:w="826"/><text x="88.7243%" y="479.50"></text></g><g><title>_raw_spin_lock_bh (698 samples, 0.03%)</title><rect x="88.5098%" y="501" width="0.0301%" height="15" fill="rgb(228,53,17)" fg:x="2055478" fg:w="698"/><text x="88.7598%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (782 samples, 0.03%)</title><rect x="88.5402%" y="501" width="0.0337%" height="15" fill="rgb(212,27,27)" fg:x="2056183" fg:w="782"/><text x="88.7902%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (516 samples, 0.02%)</title><rect x="88.5739%" y="501" width="0.0222%" height="15" fill="rgb(241,50,6)" fg:x="2056965" fg:w="516"/><text x="88.8239%" y="511.50"></text></g><g><title>_ZdlPv (19,831 samples, 0.85%)</title><rect x="87.7422%" y="517" width="0.8539%" height="15" fill="rgb(225,28,51)" fg:x="2037651" fg:w="19831"/><text x="87.9922%" y="527.50"></text></g><g><title>_ZdlPv (20,601 samples, 0.89%)</title><rect x="87.7174%" y="533" width="0.8871%" height="15" fill="rgb(215,33,16)" fg:x="2037075" fg:w="20601"/><text x="87.9674%" y="543.50"></text></g><g><title>put_prev_entity (259 samples, 0.01%)</title><rect x="88.6546%" y="421" width="0.0112%" height="15" fill="rgb(243,40,39)" fg:x="2058840" fg:w="259"/><text x="88.9046%" y="431.50"></text></g><g><title>pick_next_task_fair (448 samples, 0.02%)</title><rect x="88.6509%" y="437" width="0.0193%" height="15" fill="rgb(225,11,42)" fg:x="2058753" fg:w="448"/><text x="88.9009%" y="447.50"></text></g><g><title>pick_next_task (474 samples, 0.02%)</title><rect x="88.6507%" y="453" width="0.0204%" height="15" fill="rgb(241,220,38)" fg:x="2058749" fg:w="474"/><text x="88.9007%" y="463.50"></text></g><g><title>psi_task_switch (273 samples, 0.01%)</title><rect x="88.6760%" y="453" width="0.0118%" height="15" fill="rgb(244,52,35)" fg:x="2059336" fg:w="273"/><text x="88.9260%" y="463.50"></text></g><g><title>__schedule (1,085 samples, 0.05%)</title><rect x="88.6416%" y="469" width="0.0467%" height="15" fill="rgb(246,42,46)" fg:x="2058538" fg:w="1085"/><text x="88.8916%" y="479.50"></text></g><g><title>__cond_resched (1,144 samples, 0.05%)</title><rect x="88.6397%" y="485" width="0.0493%" height="15" fill="rgb(205,184,13)" fg:x="2058493" fg:w="1144"/><text x="88.8897%" y="495.50"></text></g><g><title>[[falcon_kal]] (1,657 samples, 0.07%)</title><rect x="88.6197%" y="517" width="0.0714%" height="15" fill="rgb(209,48,36)" fg:x="2058030" fg:w="1657"/><text x="88.8697%" y="527.50"></text></g><g><title>mutex_lock (1,570 samples, 0.07%)</title><rect x="88.6235%" y="501" width="0.0676%" height="15" fill="rgb(244,34,51)" fg:x="2058117" fg:w="1570"/><text x="88.8735%" y="511.50"></text></g><g><title>__slab_free (359 samples, 0.02%)</title><rect x="88.7468%" y="469" width="0.0155%" height="15" fill="rgb(221,107,33)" fg:x="2060980" fg:w="359"/><text x="88.9968%" y="479.50"></text></g><g><title>kfree (1,167 samples, 0.05%)</title><rect x="88.7216%" y="485" width="0.0503%" height="15" fill="rgb(224,203,12)" fg:x="2060397" fg:w="1167"/><text x="88.9716%" y="495.50"></text></g><g><title>[[falcon_kal]] (1,247 samples, 0.05%)</title><rect x="88.7190%" y="501" width="0.0537%" height="15" fill="rgb(230,215,18)" fg:x="2060335" fg:w="1247"/><text x="88.9690%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,967 samples, 0.08%)</title><rect x="88.6913%" y="517" width="0.0847%" height="15" fill="rgb(206,185,35)" fg:x="2059692" fg:w="1967"/><text x="88.9413%" y="527.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (4,373 samples, 0.19%)</title><rect x="88.6050%" y="533" width="0.1883%" height="15" fill="rgb(228,140,34)" fg:x="2057689" fg:w="4373"/><text x="88.8550%" y="543.50"></text></g><g><title>mutex_unlock (392 samples, 0.02%)</title><rect x="88.7765%" y="517" width="0.0169%" height="15" fill="rgb(208,93,13)" fg:x="2061670" fg:w="392"/><text x="89.0265%" y="527.50"></text></g><g><title>cshook_systemcalltable_post_unlinkat (26,890 samples, 1.16%)</title><rect x="87.6473%" y="549" width="1.1579%" height="15" fill="rgb(221,193,39)" fg:x="2035447" fg:w="26890"/><text x="87.8973%" y="559.50"></text></g><g><title>[[falcon_kal]] (615 samples, 0.03%)</title><rect x="88.8336%" y="517" width="0.0265%" height="15" fill="rgb(241,132,34)" fg:x="2062998" fg:w="615"/><text x="89.0836%" y="527.50"></text></g><g><title>_ZdlPv (575 samples, 0.02%)</title><rect x="88.8601%" y="517" width="0.0248%" height="15" fill="rgb(221,141,10)" fg:x="2063613" fg:w="575"/><text x="89.1101%" y="527.50"></text></g><g><title>[[falcon_kal]] (341 samples, 0.01%)</title><rect x="88.8931%" y="501" width="0.0147%" height="15" fill="rgb(226,90,31)" fg:x="2064379" fg:w="341"/><text x="89.1431%" y="511.50"></text></g><g><title>mutex_lock (284 samples, 0.01%)</title><rect x="88.8956%" y="485" width="0.0122%" height="15" fill="rgb(243,75,5)" fg:x="2064436" fg:w="284"/><text x="89.1456%" y="495.50"></text></g><g><title>kmalloc_slab (238 samples, 0.01%)</title><rect x="88.9548%" y="453" width="0.0102%" height="15" fill="rgb(227,156,21)" fg:x="2065812" fg:w="238"/><text x="89.2048%" y="463.50"></text></g><g><title>__kmalloc (890 samples, 0.04%)</title><rect x="88.9299%" y="469" width="0.0383%" height="15" fill="rgb(250,195,8)" fg:x="2065233" fg:w="890"/><text x="89.1799%" y="479.50"></text></g><g><title>[[falcon_kal]] (1,099 samples, 0.05%)</title><rect x="88.9285%" y="485" width="0.0473%" height="15" fill="rgb(220,134,5)" fg:x="2065201" fg:w="1099"/><text x="89.1785%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,597 samples, 0.07%)</title><rect x="88.9081%" y="501" width="0.0688%" height="15" fill="rgb(246,106,34)" fg:x="2064726" fg:w="1597"/><text x="89.1581%" y="511.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (2,497 samples, 0.11%)</title><rect x="88.8861%" y="517" width="0.1075%" height="15" fill="rgb(205,1,4)" fg:x="2064216" fg:w="2497"/><text x="89.1361%" y="527.50"></text></g><g><title>mutex_unlock (381 samples, 0.02%)</title><rect x="88.9772%" y="501" width="0.0164%" height="15" fill="rgb(224,151,29)" fg:x="2066332" fg:w="381"/><text x="89.2272%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (672 samples, 0.03%)</title><rect x="89.0208%" y="501" width="0.0289%" height="15" fill="rgb(251,196,0)" fg:x="2067344" fg:w="672"/><text x="89.2708%" y="511.50"></text></g><g><title>[[falcon_kal]] (614 samples, 0.03%)</title><rect x="89.1163%" y="453" width="0.0264%" height="15" fill="rgb(212,127,0)" fg:x="2069562" fg:w="614"/><text x="89.3663%" y="463.50"></text></g><g><title>down_read (547 samples, 0.02%)</title><rect x="89.1192%" y="437" width="0.0236%" height="15" fill="rgb(236,71,53)" fg:x="2069629" fg:w="547"/><text x="89.3692%" y="447.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (1,792 samples, 0.08%)</title><rect x="89.0807%" y="485" width="0.0772%" height="15" fill="rgb(227,99,0)" fg:x="2068736" fg:w="1792"/><text x="89.3307%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (993 samples, 0.04%)</title><rect x="89.1151%" y="469" width="0.0428%" height="15" fill="rgb(239,89,21)" fg:x="2069535" fg:w="993"/><text x="89.3651%" y="479.50"></text></g><g><title>cshook_security_file_free_security (3,800 samples, 0.16%)</title><rect x="89.0029%" y="517" width="0.1636%" height="15" fill="rgb(243,122,19)" fg:x="2066929" fg:w="3800"/><text x="89.2529%" y="527.50"></text></g><g><title>cshook_security_file_free_security (2,713 samples, 0.12%)</title><rect x="89.0497%" y="501" width="0.1168%" height="15" fill="rgb(229,192,45)" fg:x="2068016" fg:w="2713"/><text x="89.2997%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (334 samples, 0.01%)</title><rect x="89.1665%" y="517" width="0.0144%" height="15" fill="rgb(235,165,35)" fg:x="2070729" fg:w="334"/><text x="89.4165%" y="527.50"></text></g><g><title>btrfs_dentry_delete (1,254 samples, 0.05%)</title><rect x="89.3969%" y="453" width="0.0540%" height="15" fill="rgb(253,202,0)" fg:x="2076078" fg:w="1254"/><text x="89.6469%" y="463.50"></text></g><g><title>dput (1,982 samples, 0.09%)</title><rect x="89.3713%" y="469" width="0.0853%" height="15" fill="rgb(235,51,20)" fg:x="2075485" fg:w="1982"/><text x="89.6213%" y="479.50"></text></g><g><title>path_put (2,533 samples, 0.11%)</title><rect x="89.3595%" y="485" width="0.1091%" height="15" fill="rgb(218,95,46)" fg:x="2075211" fg:w="2533"/><text x="89.6095%" y="495.50"></text></g><g><title>__fdget_raw (254 samples, 0.01%)</title><rect x="89.5238%" y="437" width="0.0109%" height="15" fill="rgb(212,81,10)" fg:x="2079026" fg:w="254"/><text x="89.7738%" y="447.50"></text></g><g><title>__legitimize_mnt (312 samples, 0.01%)</title><rect x="89.5757%" y="389" width="0.0134%" height="15" fill="rgb(240,59,0)" fg:x="2080230" fg:w="312"/><text x="89.8257%" y="399.50"></text></g><g><title>__legitimize_path (558 samples, 0.02%)</title><rect x="89.5741%" y="405" width="0.0240%" height="15" fill="rgb(212,191,42)" fg:x="2080193" fg:w="558"/><text x="89.8241%" y="415.50"></text></g><g><title>complete_walk (1,574 samples, 0.07%)</title><rect x="89.5348%" y="437" width="0.0678%" height="15" fill="rgb(233,140,3)" fg:x="2079281" fg:w="1574"/><text x="89.7848%" y="447.50"></text></g><g><title>try_to_unlazy (955 samples, 0.04%)</title><rect x="89.5615%" y="421" width="0.0411%" height="15" fill="rgb(215,69,23)" fg:x="2079900" fg:w="955"/><text x="89.8115%" y="431.50"></text></g><g><title>btrfs_permission (442 samples, 0.02%)</title><rect x="89.6397%" y="421" width="0.0190%" height="15" fill="rgb(240,202,20)" fg:x="2081718" fg:w="442"/><text x="89.8897%" y="431.50"></text></g><g><title>btrfs_permission (371 samples, 0.02%)</title><rect x="89.6926%" y="405" width="0.0160%" height="15" fill="rgb(209,146,50)" fg:x="2082945" fg:w="371"/><text x="89.9426%" y="415.50"></text></g><g><title>generic_permission (367 samples, 0.02%)</title><rect x="89.6927%" y="389" width="0.0158%" height="15" fill="rgb(253,102,54)" fg:x="2082949" fg:w="367"/><text x="89.9427%" y="399.50"></text></g><g><title>inode_permission (1,434 samples, 0.06%)</title><rect x="89.6588%" y="421" width="0.0617%" height="15" fill="rgb(250,173,47)" fg:x="2082160" fg:w="1434"/><text x="89.9088%" y="431.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (2,673 samples, 0.12%)</title><rect x="89.6113%" y="437" width="0.1151%" height="15" fill="rgb(232,142,7)" fg:x="2081058" fg:w="2673"/><text x="89.8613%" y="447.50"></text></g><g><title>lookup_fast (246 samples, 0.01%)</title><rect x="89.7264%" y="437" width="0.0106%" height="15" fill="rgb(230,157,47)" fg:x="2083731" fg:w="246"/><text x="89.9764%" y="447.50"></text></g><g><title>__fget_files (1,793 samples, 0.08%)</title><rect x="89.7653%" y="389" width="0.0772%" height="15" fill="rgb(214,177,35)" fg:x="2084633" fg:w="1793"/><text x="90.0153%" y="399.50"></text></g><g><title>__fdget_raw (1,829 samples, 0.08%)</title><rect x="89.7641%" y="421" width="0.0788%" height="15" fill="rgb(234,119,46)" fg:x="2084606" fg:w="1829"/><text x="90.0141%" y="431.50"></text></g><g><title>__fget_light (1,809 samples, 0.08%)</title><rect x="89.7650%" y="405" width="0.0779%" height="15" fill="rgb(241,180,50)" fg:x="2084626" fg:w="1809"/><text x="90.0150%" y="415.50"></text></g><g><title>__fget_light (682 samples, 0.03%)</title><rect x="89.8429%" y="421" width="0.0294%" height="15" fill="rgb(221,54,25)" fg:x="2086435" fg:w="682"/><text x="90.0929%" y="431.50"></text></g><g><title>path_init (3,196 samples, 0.14%)</title><rect x="89.7421%" y="437" width="0.1376%" height="15" fill="rgb(209,157,44)" fg:x="2084096" fg:w="3196"/><text x="89.9921%" y="447.50"></text></g><g><title>terminate_walk (537 samples, 0.02%)</title><rect x="89.8807%" y="437" width="0.0231%" height="15" fill="rgb(246,115,41)" fg:x="2087313" fg:w="537"/><text x="90.1307%" y="447.50"></text></g><g><title>__d_lookup_rcu (264 samples, 0.01%)</title><rect x="89.9168%" y="421" width="0.0114%" height="15" fill="rgb(229,86,1)" fg:x="2088153" fg:w="264"/><text x="90.1668%" y="431.50"></text></g><g><title>lookup_fast (2,903 samples, 0.13%)</title><rect x="89.9283%" y="421" width="0.1250%" height="15" fill="rgb(240,108,53)" fg:x="2088419" fg:w="2903"/><text x="90.1783%" y="431.50"></text></g><g><title>__d_lookup_rcu (2,791 samples, 0.12%)</title><rect x="89.9331%" y="405" width="0.1202%" height="15" fill="rgb(227,134,2)" fg:x="2088531" fg:w="2791"/><text x="90.1831%" y="415.50"></text></g><g><title>path_lookupat (12,905 samples, 0.56%)</title><rect x="89.5080%" y="453" width="0.5557%" height="15" fill="rgb(213,129,25)" fg:x="2078659" fg:w="12905"/><text x="89.7580%" y="463.50"></text></g><g><title>walk_component (3,549 samples, 0.15%)</title><rect x="89.9109%" y="437" width="0.1528%" height="15" fill="rgb(226,35,21)" fg:x="2088015" fg:w="3549"/><text x="90.1609%" y="447.50"></text></g><g><title>step_into (242 samples, 0.01%)</title><rect x="90.0533%" y="421" width="0.0104%" height="15" fill="rgb(208,129,26)" fg:x="2091322" fg:w="242"/><text x="90.3033%" y="431.50"></text></g><g><title>filename_lookup (13,960 samples, 0.60%)</title><rect x="89.4793%" y="469" width="0.6011%" height="15" fill="rgb(224,83,6)" fg:x="2077992" fg:w="13960"/><text x="89.7293%" y="479.50"></text></g><g><title>__check_object_size (255 samples, 0.01%)</title><rect x="90.1009%" y="437" width="0.0110%" height="15" fill="rgb(227,52,39)" fg:x="2092427" fg:w="255"/><text x="90.3509%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,058 samples, 0.05%)</title><rect x="90.1136%" y="437" width="0.0456%" height="15" fill="rgb(241,30,17)" fg:x="2092722" fg:w="1058"/><text x="90.3636%" y="447.50"></text></g><g><title>memset_erms (1,783 samples, 0.08%)</title><rect x="90.1599%" y="437" width="0.0768%" height="15" fill="rgb(246,186,42)" fg:x="2093798" fg:w="1783"/><text x="90.4099%" y="447.50"></text></g><g><title>__check_heap_object (259 samples, 0.01%)</title><rect x="90.3165%" y="389" width="0.0112%" height="15" fill="rgb(221,169,15)" fg:x="2097435" fg:w="259"/><text x="90.5665%" y="399.50"></text></g><g><title>__virt_addr_valid (1,055 samples, 0.05%)</title><rect x="90.3277%" y="389" width="0.0454%" height="15" fill="rgb(235,108,21)" fg:x="2097694" fg:w="1055"/><text x="90.5777%" y="399.50"></text></g><g><title>__check_object_size.part.0 (1,676 samples, 0.07%)</title><rect x="90.3011%" y="405" width="0.0722%" height="15" fill="rgb(219,148,30)" fg:x="2097077" fg:w="1676"/><text x="90.5511%" y="415.50"></text></g><g><title>__virt_addr_valid (269 samples, 0.01%)</title><rect x="90.3733%" y="405" width="0.0116%" height="15" fill="rgb(220,109,5)" fg:x="2098753" fg:w="269"/><text x="90.6233%" y="415.50"></text></g><g><title>__check_object_size (2,195 samples, 0.09%)</title><rect x="90.2997%" y="421" width="0.0945%" height="15" fill="rgb(213,203,48)" fg:x="2097044" fg:w="2195"/><text x="90.5497%" y="431.50"></text></g><g><title>getname_flags.part.0 (7,044 samples, 0.30%)</title><rect x="90.0911%" y="453" width="0.3033%" height="15" fill="rgb(244,71,33)" fg:x="2092201" fg:w="7044"/><text x="90.3411%" y="463.50"></text></g><g><title>strncpy_from_user (3,632 samples, 0.16%)</title><rect x="90.2381%" y="437" width="0.1564%" height="15" fill="rgb(209,23,2)" fg:x="2095613" fg:w="3632"/><text x="90.4881%" y="447.50"></text></g><g><title>getname_flags (7,191 samples, 0.31%)</title><rect x="90.0911%" y="469" width="0.3096%" height="15" fill="rgb(219,97,7)" fg:x="2092200" fg:w="7191"/><text x="90.3411%" y="479.50"></text></g><g><title>kmem_cache_free (733 samples, 0.03%)</title><rect x="90.4097%" y="453" width="0.0316%" height="15" fill="rgb(216,161,23)" fg:x="2099598" fg:w="733"/><text x="90.6597%" y="463.50"></text></g><g><title>[[falcon_kal]] (28,628 samples, 1.23%)</title><rect x="89.2091%" y="501" width="1.2327%" height="15" fill="rgb(207,45,42)" fg:x="2071718" fg:w="28628"/><text x="89.4591%" y="511.50"></text></g><g><title>user_path_at_empty (22,467 samples, 0.97%)</title><rect x="89.4744%" y="485" width="0.9674%" height="15" fill="rgb(241,61,4)" fg:x="2077879" fg:w="22467"/><text x="89.7244%" y="495.50"></text></g><g><title>putname (833 samples, 0.04%)</title><rect x="90.4060%" y="469" width="0.0359%" height="15" fill="rgb(236,170,1)" fg:x="2099513" fg:w="833"/><text x="90.6560%" y="479.50"></text></g><g><title>_ZdlPv (1,640 samples, 0.07%)</title><rect x="90.4419%" y="501" width="0.0706%" height="15" fill="rgb(239,72,5)" fg:x="2100346" fg:w="1640"/><text x="90.6919%" y="511.50"></text></g><g><title>kmalloc_slab (337 samples, 0.01%)</title><rect x="90.6489%" y="453" width="0.0145%" height="15" fill="rgb(214,13,50)" fg:x="2105155" fg:w="337"/><text x="90.8989%" y="463.50"></text></g><g><title>__kmalloc (1,670 samples, 0.07%)</title><rect x="90.5953%" y="469" width="0.0719%" height="15" fill="rgb(224,88,9)" fg:x="2103910" fg:w="1670"/><text x="90.8453%" y="479.50"></text></g><g><title>prepend (267 samples, 0.01%)</title><rect x="90.6837%" y="453" width="0.0115%" height="15" fill="rgb(238,192,34)" fg:x="2105961" fg:w="267"/><text x="90.9337%" y="463.50"></text></g><g><title>copy_from_kernel_nofault (383 samples, 0.02%)</title><rect x="90.9035%" y="421" width="0.0165%" height="15" fill="rgb(217,203,50)" fg:x="2111067" fg:w="383"/><text x="91.1535%" y="431.50"></text></g><g><title>copy_from_kernel_nofault (4,157 samples, 0.18%)</title><rect x="90.9375%" y="405" width="0.1790%" height="15" fill="rgb(241,123,32)" fg:x="2111856" fg:w="4157"/><text x="91.1875%" y="415.50"></text></g><g><title>copy_from_kernel_nofault_allowed (834 samples, 0.04%)</title><rect x="91.0806%" y="389" width="0.0359%" height="15" fill="rgb(248,151,39)" fg:x="2115179" fg:w="834"/><text x="91.3306%" y="399.50"></text></g><g><title>copy_from_kernel_nofault_allowed (531 samples, 0.02%)</title><rect x="91.1165%" y="405" width="0.0229%" height="15" fill="rgb(208,89,6)" fg:x="2116013" fg:w="531"/><text x="91.3665%" y="415.50"></text></g><g><title>prepend (6,075 samples, 0.26%)</title><rect x="90.8779%" y="437" width="0.2616%" height="15" fill="rgb(254,43,26)" fg:x="2110471" fg:w="6075"/><text x="91.1279%" y="447.50"></text></g><g><title>prepend_copy (5,096 samples, 0.22%)</title><rect x="90.9200%" y="421" width="0.2194%" height="15" fill="rgb(216,158,13)" fg:x="2111450" fg:w="5096"/><text x="91.1700%" y="431.50"></text></g><g><title>prepend_copy (278 samples, 0.01%)</title><rect x="91.1394%" y="437" width="0.0120%" height="15" fill="rgb(212,47,37)" fg:x="2116546" fg:w="278"/><text x="91.3894%" y="447.50"></text></g><g><title>prepend_path (10,603 samples, 0.46%)</title><rect x="90.6952%" y="453" width="0.4566%" height="15" fill="rgb(254,16,10)" fg:x="2106228" fg:w="10603"/><text x="90.9452%" y="463.50"></text></g><g><title>d_path (11,305 samples, 0.49%)</title><rect x="90.6672%" y="469" width="0.4868%" height="15" fill="rgb(223,228,16)" fg:x="2105580" fg:w="11305"/><text x="90.9172%" y="479.50"></text></g><g><title>[[falcon_kal]] (13,708 samples, 0.59%)</title><rect x="90.5862%" y="485" width="0.5903%" height="15" fill="rgb(249,108,50)" fg:x="2103697" fg:w="13708"/><text x="90.8362%" y="495.50"></text></g><g><title>__kmalloc (247 samples, 0.01%)</title><rect x="91.1764%" y="485" width="0.0106%" height="15" fill="rgb(208,220,5)" fg:x="2117405" fg:w="247"/><text x="91.4264%" y="495.50"></text></g><g><title>___slab_alloc (1,052 samples, 0.05%)</title><rect x="91.2781%" y="437" width="0.0453%" height="15" fill="rgb(217,89,48)" fg:x="2119765" fg:w="1052"/><text x="91.5281%" y="447.50"></text></g><g><title>__kmalloc (2,326 samples, 0.10%)</title><rect x="91.2329%" y="453" width="0.1002%" height="15" fill="rgb(212,113,41)" fg:x="2118716" fg:w="2326"/><text x="91.4829%" y="463.50"></text></g><g><title>memset_erms (3,752 samples, 0.16%)</title><rect x="91.3341%" y="453" width="0.1616%" height="15" fill="rgb(231,127,5)" fg:x="2121066" fg:w="3752"/><text x="91.5841%" y="463.50"></text></g><g><title>[[falcon_kal]] (6,264 samples, 0.27%)</title><rect x="91.2268%" y="469" width="0.2697%" height="15" fill="rgb(217,141,17)" fg:x="2118574" fg:w="6264"/><text x="91.4768%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (7,185 samples, 0.31%)</title><rect x="91.1876%" y="485" width="0.3094%" height="15" fill="rgb(245,125,54)" fg:x="2117664" fg:w="7185"/><text x="91.4376%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (22,806 samples, 0.98%)</title><rect x="90.5166%" y="501" width="0.9820%" height="15" fill="rgb(248,125,3)" fg:x="2102081" fg:w="22806"/><text x="90.7666%" y="511.50"></text></g><g><title>memmove (643 samples, 0.03%)</title><rect x="91.4986%" y="501" width="0.0277%" height="15" fill="rgb(236,119,51)" fg:x="2124887" fg:w="643"/><text x="91.7486%" y="511.50"></text></g><g><title>path_put (264 samples, 0.01%)</title><rect x="91.5263%" y="501" width="0.0114%" height="15" fill="rgb(239,99,8)" fg:x="2125530" fg:w="264"/><text x="91.7763%" y="511.50"></text></g><g><title>strlen (4,793 samples, 0.21%)</title><rect x="91.5377%" y="501" width="0.2064%" height="15" fill="rgb(224,228,4)" fg:x="2125794" fg:w="4793"/><text x="91.7877%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (68,376 samples, 2.94%)</title><rect x="88.8119%" y="533" width="2.9443%" height="15" fill="rgb(220,131,45)" fg:x="2062493" fg:w="68376"/><text x="89.0619%" y="543.50">cs..</text></g><g><title>fshook_syscalltable_pre_lchown (59,806 samples, 2.58%)</title><rect x="89.1809%" y="517" width="2.5753%" height="15" fill="rgb(215,62,5)" fg:x="2071063" fg:w="59806"/><text x="89.4309%" y="527.50">fs..</text></g><g><title>user_path_at_empty (282 samples, 0.01%)</title><rect x="91.7441%" y="501" width="0.0121%" height="15" fill="rgb(253,12,24)" fg:x="2130587" fg:w="282"/><text x="91.9941%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_unlinkat (69,099 samples, 2.98%)</title><rect x="88.8052%" y="549" width="2.9754%" height="15" fill="rgb(248,120,50)" fg:x="2062337" fg:w="69099"/><text x="89.0552%" y="559.50">csh..</text></g><g><title>fshook_syscalltable_pre_lchown (457 samples, 0.02%)</title><rect x="91.7609%" y="533" width="0.0197%" height="15" fill="rgb(245,194,10)" fg:x="2130979" fg:w="457"/><text x="92.0109%" y="543.50"></text></g><g><title>do_syscall_64 (1,400,586 samples, 60.31%)</title><rect x="31.4763%" y="581" width="60.3099%" height="15" fill="rgb(241,149,38)" fg:x="730979" fg:w="1400586"/><text x="31.7263%" y="591.50">do_syscall_64</text></g><g><title>unload_network_ops_symbols (1,391,418 samples, 59.92%)</title><rect x="31.8711%" y="565" width="59.9151%" height="15" fill="rgb(219,215,7)" fg:x="740147" fg:w="1391418"/><text x="32.1211%" y="575.50">unload_network_ops_symbols</text></g><g><title>syscall_exit_to_user_mode (249 samples, 0.01%)</title><rect x="91.7935%" y="581" width="0.0107%" height="15" fill="rgb(208,120,31)" fg:x="2131736" fg:w="249"/><text x="92.0435%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,401,781 samples, 60.36%)</title><rect x="31.4592%" y="597" width="60.3613%" height="15" fill="rgb(244,30,8)" fg:x="730581" fg:w="1401781"/><text x="31.7092%" y="607.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>unload_network_ops_symbols (377 samples, 0.02%)</title><rect x="91.8043%" y="581" width="0.0162%" height="15" fill="rgb(238,35,44)" fg:x="2131985" fg:w="377"/><text x="92.0543%" y="591.50"></text></g><g><title>syscall_return_via_sysret (489 samples, 0.02%)</title><rect x="91.8293%" y="597" width="0.0211%" height="15" fill="rgb(243,218,37)" fg:x="2132567" fg:w="489"/><text x="92.0793%" y="607.50"></text></g><g><title>__GI_unlinkat (1,404,886 samples, 60.50%)</title><rect x="31.3559%" y="613" width="60.4950%" height="15" fill="rgb(218,169,10)" fg:x="728183" fg:w="1404886"/><text x="31.6059%" y="623.50">__GI_unlinkat</text></g><g><title>path_lookupat (266 samples, 0.01%)</title><rect x="91.8536%" y="485" width="0.0115%" height="15" fill="rgb(221,144,10)" fg:x="2133130" fg:w="266"/><text x="92.1036%" y="495.50"></text></g><g><title>filename_lookup (274 samples, 0.01%)</title><rect x="91.8533%" y="501" width="0.0118%" height="15" fill="rgb(226,41,38)" fg:x="2133123" fg:w="274"/><text x="92.1033%" y="511.50"></text></g><g><title>user_path_at_empty (345 samples, 0.01%)</title><rect x="91.8533%" y="517" width="0.0149%" height="15" fill="rgb(228,3,1)" fg:x="2133123" fg:w="345"/><text x="92.1033%" y="527.50"></text></g><g><title>__x64_sys_newlstat (404 samples, 0.02%)</title><rect x="91.8514%" y="565" width="0.0174%" height="15" fill="rgb(209,129,12)" fg:x="2133079" fg:w="404"/><text x="92.1014%" y="575.50"></text></g><g><title>__do_sys_newlstat (404 samples, 0.02%)</title><rect x="91.8514%" y="549" width="0.0174%" height="15" fill="rgb(213,136,33)" fg:x="2133079" fg:w="404"/><text x="92.1014%" y="559.50"></text></g><g><title>vfs_statx (378 samples, 0.02%)</title><rect x="91.8525%" y="533" width="0.0163%" height="15" fill="rgb(209,181,29)" fg:x="2133105" fg:w="378"/><text x="92.1025%" y="543.50"></text></g><g><title>do_syscall_64 (412 samples, 0.02%)</title><rect x="91.8514%" y="581" width="0.0177%" height="15" fill="rgb(234,173,18)" fg:x="2133079" fg:w="412"/><text x="92.1014%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (417 samples, 0.02%)</title><rect x="91.8512%" y="597" width="0.0180%" height="15" fill="rgb(227,73,47)" fg:x="2133076" fg:w="417"/><text x="92.1012%" y="607.50"></text></g><g><title>___lxstat64 (427 samples, 0.02%)</title><rect x="91.8509%" y="613" width="0.0184%" height="15" fill="rgb(234,9,34)" fg:x="2133069" fg:w="427"/><text x="92.1009%" y="623.50"></text></g><g><title>__do_sys_newstat (235 samples, 0.01%)</title><rect x="91.8697%" y="549" width="0.0101%" height="15" fill="rgb(235,172,15)" fg:x="2133505" fg:w="235"/><text x="92.1197%" y="559.50"></text></g><g><title>__x64_sys_newstat (236 samples, 0.01%)</title><rect x="91.8697%" y="565" width="0.0102%" height="15" fill="rgb(245,61,2)" fg:x="2133505" fg:w="236"/><text x="92.1197%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (247 samples, 0.01%)</title><rect x="91.8696%" y="597" width="0.0106%" height="15" fill="rgb(238,39,47)" fg:x="2133502" fg:w="247"/><text x="92.1196%" y="607.50"></text></g><g><title>do_syscall_64 (245 samples, 0.01%)</title><rect x="91.8697%" y="581" width="0.0105%" height="15" fill="rgb(234,37,24)" fg:x="2133504" fg:w="245"/><text x="92.1197%" y="591.50"></text></g><g><title>___xstat64 (255 samples, 0.01%)</title><rect x="91.8693%" y="613" width="0.0110%" height="15" fill="rgb(248,223,24)" fg:x="2133496" fg:w="255"/><text x="92.1193%" y="623.50"></text></g><g><title>_int_free (369 samples, 0.02%)</title><rect x="91.8884%" y="581" width="0.0159%" height="15" fill="rgb(223,12,15)" fg:x="2133940" fg:w="369"/><text x="92.1384%" y="591.50"></text></g><g><title>__closedir (559 samples, 0.02%)</title><rect x="91.8818%" y="613" width="0.0241%" height="15" fill="rgb(249,6,3)" fg:x="2133785" fg:w="559"/><text x="92.1318%" y="623.50"></text></g><g><title>__GI___libc_free (443 samples, 0.02%)</title><rect x="91.8868%" y="597" width="0.0191%" height="15" fill="rgb(237,105,33)" fg:x="2133901" fg:w="443"/><text x="92.1368%" y="607.50"></text></g><g><title>__dirfd (740 samples, 0.03%)</title><rect x="91.9058%" y="613" width="0.0319%" height="15" fill="rgb(252,208,35)" fg:x="2134344" fg:w="740"/><text x="92.1558%" y="623.50"></text></g><g><title>do_syscall_64 (250 samples, 0.01%)</title><rect x="91.9455%" y="549" width="0.0108%" height="15" fill="rgb(215,181,35)" fg:x="2135264" fg:w="250"/><text x="92.1955%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (301 samples, 0.01%)</title><rect x="91.9434%" y="565" width="0.0130%" height="15" fill="rgb(246,212,3)" fg:x="2135217" fg:w="301"/><text x="92.1934%" y="575.50"></text></g><g><title>__GI___fcntl64_nocancel (426 samples, 0.02%)</title><rect x="91.9392%" y="597" width="0.0183%" height="15" fill="rgb(247,156,24)" fg:x="2135119" fg:w="426"/><text x="92.1892%" y="607.50"></text></g><g><title>__fcntl64_nocancel_adjusted (391 samples, 0.02%)</title><rect x="91.9407%" y="581" width="0.0168%" height="15" fill="rgb(248,9,31)" fg:x="2135154" fg:w="391"/><text x="92.1907%" y="591.50"></text></g><g><title>path_lookupat (375 samples, 0.02%)</title><rect x="91.9949%" y="469" width="0.0161%" height="15" fill="rgb(234,26,45)" fg:x="2136413" fg:w="375"/><text x="92.2449%" y="479.50"></text></g><g><title>filename_lookup (472 samples, 0.02%)</title><rect x="91.9919%" y="485" width="0.0203%" height="15" fill="rgb(249,11,32)" fg:x="2136342" fg:w="472"/><text x="92.2419%" y="495.50"></text></g><g><title>getname_flags.part.0 (505 samples, 0.02%)</title><rect x="92.0137%" y="469" width="0.0217%" height="15" fill="rgb(249,162,33)" fg:x="2136850" fg:w="505"/><text x="92.2637%" y="479.50"></text></g><g><title>getname_flags (507 samples, 0.02%)</title><rect x="92.0137%" y="485" width="0.0218%" height="15" fill="rgb(232,4,32)" fg:x="2136850" fg:w="507"/><text x="92.2637%" y="495.50"></text></g><g><title>user_path_at_empty (1,141 samples, 0.05%)</title><rect x="91.9914%" y="501" width="0.0491%" height="15" fill="rgb(212,5,45)" fg:x="2136330" fg:w="1141"/><text x="92.2414%" y="511.50"></text></g><g><title>__do_sys_newfstatat (2,052 samples, 0.09%)</title><rect x="91.9647%" y="533" width="0.0884%" height="15" fill="rgb(227,95,13)" fg:x="2135712" fg:w="2052"/><text x="92.2147%" y="543.50"></text></g><g><title>vfs_statx (1,733 samples, 0.07%)</title><rect x="91.9785%" y="517" width="0.0746%" height="15" fill="rgb(223,205,10)" fg:x="2136031" fg:w="1733"/><text x="92.2285%" y="527.50"></text></g><g><title>vfs_getattr_nosec (293 samples, 0.01%)</title><rect x="92.0405%" y="501" width="0.0126%" height="15" fill="rgb(222,178,8)" fg:x="2137471" fg:w="293"/><text x="92.2905%" y="511.50"></text></g><g><title>__x64_sys_newfstatat (2,088 samples, 0.09%)</title><rect x="91.9647%" y="549" width="0.0899%" height="15" fill="rgb(216,13,22)" fg:x="2135712" fg:w="2088"/><text x="92.2147%" y="559.50"></text></g><g><title>do_syscall_64 (2,158 samples, 0.09%)</title><rect x="91.9627%" y="565" width="0.0929%" height="15" fill="rgb(240,167,12)" fg:x="2135665" fg:w="2158"/><text x="92.2127%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,201 samples, 0.09%)</title><rect x="91.9610%" y="581" width="0.0948%" height="15" fill="rgb(235,68,35)" fg:x="2135625" fg:w="2201"/><text x="92.2110%" y="591.50"></text></g><g><title>__GI___fstatat64 (2,287 samples, 0.10%)</title><rect x="91.9592%" y="597" width="0.0985%" height="15" fill="rgb(253,40,27)" fg:x="2135584" fg:w="2287"/><text x="92.2092%" y="607.50"></text></g><g><title>__GI___fcntl64_nocancel (266 samples, 0.01%)</title><rect x="92.0618%" y="581" width="0.0115%" height="15" fill="rgb(214,19,28)" fg:x="2137966" fg:w="266"/><text x="92.3118%" y="591.50"></text></g><g><title>__fcntl64_nocancel_adjusted (257 samples, 0.01%)</title><rect x="92.0622%" y="565" width="0.0111%" height="15" fill="rgb(210,167,45)" fg:x="2137975" fg:w="257"/><text x="92.3122%" y="575.50"></text></g><g><title>malloc_consolidate (253 samples, 0.01%)</title><rect x="92.1007%" y="549" width="0.0109%" height="15" fill="rgb(232,97,40)" fg:x="2138870" fg:w="253"/><text x="92.3507%" y="559.50"></text></g><g><title>_int_malloc (715 samples, 0.03%)</title><rect x="92.0820%" y="565" width="0.0308%" height="15" fill="rgb(250,35,23)" fg:x="2138435" fg:w="715"/><text x="92.3320%" y="575.50"></text></g><g><title>__alloc_dir (1,285 samples, 0.06%)</title><rect x="92.0577%" y="597" width="0.0553%" height="15" fill="rgb(248,47,53)" fg:x="2137871" fg:w="1285"/><text x="92.3077%" y="607.50"></text></g><g><title>__GI___libc_malloc (924 samples, 0.04%)</title><rect x="92.0733%" y="581" width="0.0398%" height="15" fill="rgb(226,58,50)" fg:x="2138232" fg:w="924"/><text x="92.3233%" y="591.50"></text></g><g><title>__fdopendir (4,073 samples, 0.18%)</title><rect x="91.9377%" y="613" width="0.1754%" height="15" fill="rgb(217,105,26)" fg:x="2135084" fg:w="4073"/><text x="92.1877%" y="623.50"></text></g><g><title>obj_cgroup_charge (276 samples, 0.01%)</title><rect x="92.1997%" y="437" width="0.0119%" height="15" fill="rgb(208,64,1)" fg:x="2141168" fg:w="276"/><text x="92.4497%" y="447.50"></text></g><g><title>kmem_cache_alloc (812 samples, 0.03%)</title><rect x="92.1769%" y="453" width="0.0350%" height="15" fill="rgb(214,80,1)" fg:x="2140640" fg:w="812"/><text x="92.4269%" y="463.50"></text></g><g><title>security_file_alloc (284 samples, 0.01%)</title><rect x="92.2130%" y="453" width="0.0122%" height="15" fill="rgb(206,175,26)" fg:x="2141477" fg:w="284"/><text x="92.4630%" y="463.50"></text></g><g><title>__alloc_file (1,275 samples, 0.05%)</title><rect x="92.1704%" y="469" width="0.0549%" height="15" fill="rgb(235,156,37)" fg:x="2140487" fg:w="1275"/><text x="92.4204%" y="479.50"></text></g><g><title>alloc_empty_file (1,307 samples, 0.06%)</title><rect x="92.1698%" y="485" width="0.0563%" height="15" fill="rgb(213,100,9)" fg:x="2140475" fg:w="1307"/><text x="92.4198%" y="495.50"></text></g><g><title>kmem_cache_alloc_trace (472 samples, 0.02%)</title><rect x="92.2679%" y="421" width="0.0203%" height="15" fill="rgb(241,15,13)" fg:x="2142753" fg:w="472"/><text x="92.5179%" y="431.50"></text></g><g><title>btrfs_opendir (728 samples, 0.03%)</title><rect x="92.2656%" y="437" width="0.0313%" height="15" fill="rgb(205,97,43)" fg:x="2142698" fg:w="728"/><text x="92.5156%" y="447.50"></text></g><g><title>do_dentry_open (1,765 samples, 0.08%)</title><rect x="92.2570%" y="453" width="0.0760%" height="15" fill="rgb(216,106,32)" fg:x="2142498" fg:w="1765"/><text x="92.5070%" y="463.50"></text></g><g><title>security_file_open (583 samples, 0.03%)</title><rect x="92.3079%" y="437" width="0.0251%" height="15" fill="rgb(226,200,8)" fg:x="2143680" fg:w="583"/><text x="92.5579%" y="447.50"></text></g><g><title>do_open (2,619 samples, 0.11%)</title><rect x="92.2269%" y="485" width="0.1128%" height="15" fill="rgb(244,54,29)" fg:x="2141801" fg:w="2619"/><text x="92.4769%" y="495.50"></text></g><g><title>vfs_open (1,989 samples, 0.09%)</title><rect x="92.2541%" y="469" width="0.0856%" height="15" fill="rgb(252,169,12)" fg:x="2142431" fg:w="1989"/><text x="92.5041%" y="479.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (266 samples, 0.01%)</title><rect x="92.3411%" y="485" width="0.0115%" height="15" fill="rgb(231,199,11)" fg:x="2144451" fg:w="266"/><text x="92.5911%" y="495.50"></text></g><g><title>lookup_fast (285 samples, 0.01%)</title><rect x="92.3576%" y="469" width="0.0123%" height="15" fill="rgb(233,191,18)" fg:x="2144836" fg:w="285"/><text x="92.6076%" y="479.50"></text></g><g><title>__d_lookup_rcu (271 samples, 0.01%)</title><rect x="92.3582%" y="453" width="0.0117%" height="15" fill="rgb(215,83,47)" fg:x="2144850" fg:w="271"/><text x="92.6082%" y="463.50"></text></g><g><title>open_last_lookups (345 samples, 0.01%)</title><rect x="92.3556%" y="485" width="0.0149%" height="15" fill="rgb(251,67,19)" fg:x="2144788" fg:w="345"/><text x="92.6056%" y="495.50"></text></g><g><title>path_openat (5,048 samples, 0.22%)</title><rect x="92.1666%" y="501" width="0.2174%" height="15" fill="rgb(240,7,20)" fg:x="2140399" fg:w="5048"/><text x="92.4166%" y="511.50"></text></g><g><title>do_filp_open (5,248 samples, 0.23%)</title><rect x="92.1587%" y="517" width="0.2260%" height="15" fill="rgb(210,150,26)" fg:x="2140216" fg:w="5248"/><text x="92.4087%" y="527.50"></text></g><g><title>get_unused_fd_flags (317 samples, 0.01%)</title><rect x="92.3877%" y="517" width="0.0137%" height="15" fill="rgb(228,75,42)" fg:x="2145535" fg:w="317"/><text x="92.6377%" y="527.50"></text></g><g><title>getname_flags.part.0 (654 samples, 0.03%)</title><rect x="92.4017%" y="501" width="0.0282%" height="15" fill="rgb(237,134,48)" fg:x="2145860" fg:w="654"/><text x="92.6517%" y="511.50"></text></g><g><title>strncpy_from_user (308 samples, 0.01%)</title><rect x="92.4166%" y="485" width="0.0133%" height="15" fill="rgb(205,80,50)" fg:x="2146206" fg:w="308"/><text x="92.6666%" y="495.50"></text></g><g><title>getname (672 samples, 0.03%)</title><rect x="92.4014%" y="517" width="0.0289%" height="15" fill="rgb(217,74,48)" fg:x="2145852" fg:w="672"/><text x="92.6514%" y="527.50"></text></g><g><title>do_sys_openat2 (6,466 samples, 0.28%)</title><rect x="92.1568%" y="533" width="0.2784%" height="15" fill="rgb(205,82,50)" fg:x="2140173" fg:w="6466"/><text x="92.4068%" y="543.50"></text></g><g><title>__x64_sys_openat (6,681 samples, 0.29%)</title><rect x="92.1510%" y="549" width="0.2877%" height="15" fill="rgb(228,1,33)" fg:x="2140038" fg:w="6681"/><text x="92.4010%" y="559.50"></text></g><g><title>[[falcon_kal]] (552 samples, 0.02%)</title><rect x="92.4830%" y="453" width="0.0238%" height="15" fill="rgb(214,50,23)" fg:x="2147747" fg:w="552"/><text x="92.7330%" y="463.50"></text></g><g><title>down_read (540 samples, 0.02%)</title><rect x="92.4835%" y="437" width="0.0233%" height="15" fill="rgb(210,62,9)" fg:x="2147759" fg:w="540"/><text x="92.7335%" y="447.50"></text></g><g><title>cshook_security_inode_free_security (681 samples, 0.03%)</title><rect x="92.4791%" y="469" width="0.0293%" height="15" fill="rgb(210,104,37)" fg:x="2147658" fg:w="681"/><text x="92.7291%" y="479.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (809 samples, 0.03%)</title><rect x="92.4737%" y="485" width="0.0348%" height="15" fill="rgb(232,104,43)" fg:x="2147531" fg:w="809"/><text x="92.7237%" y="495.50"></text></g><g><title>cshook_security_file_free_security (879 samples, 0.04%)</title><rect x="92.4737%" y="501" width="0.0379%" height="15" fill="rgb(244,52,6)" fg:x="2147531" fg:w="879"/><text x="92.7237%" y="511.50"></text></g><g><title>cshook_security_file_free_security (1,364 samples, 0.06%)</title><rect x="92.4547%" y="533" width="0.0587%" height="15" fill="rgb(211,174,52)" fg:x="2147090" fg:w="1364"/><text x="92.7047%" y="543.50"></text></g><g><title>cshook_security_file_free_security (1,229 samples, 0.05%)</title><rect x="92.4605%" y="517" width="0.0529%" height="15" fill="rgb(229,48,4)" fg:x="2147225" fg:w="1229"/><text x="92.7105%" y="527.50"></text></g><g><title>[[falcon_kal]] (241 samples, 0.01%)</title><rect x="92.5186%" y="517" width="0.0104%" height="15" fill="rgb(205,155,16)" fg:x="2148575" fg:w="241"/><text x="92.7686%" y="527.50"></text></g><g><title>select_task_rq_fair (362 samples, 0.02%)</title><rect x="92.5620%" y="389" width="0.0156%" height="15" fill="rgb(211,141,53)" fg:x="2149583" fg:w="362"/><text x="92.8120%" y="399.50"></text></g><g><title>try_to_wake_up (934 samples, 0.04%)</title><rect x="92.5536%" y="405" width="0.0402%" height="15" fill="rgb(240,148,11)" fg:x="2149386" fg:w="934"/><text x="92.8036%" y="415.50"></text></g><g><title>swake_up_locked (971 samples, 0.04%)</title><rect x="92.5520%" y="437" width="0.0418%" height="15" fill="rgb(214,45,23)" fg:x="2149350" fg:w="971"/><text x="92.8020%" y="447.50"></text></g><g><title>wake_up_process (953 samples, 0.04%)</title><rect x="92.5528%" y="421" width="0.0410%" height="15" fill="rgb(248,74,26)" fg:x="2149368" fg:w="953"/><text x="92.8028%" y="431.50"></text></g><g><title>complete (1,088 samples, 0.05%)</title><rect x="92.5471%" y="453" width="0.0468%" height="15" fill="rgb(218,121,16)" fg:x="2149235" fg:w="1088"/><text x="92.7971%" y="463.50"></text></g><g><title>[[falcon_kal]] (1,100 samples, 0.05%)</title><rect x="92.5466%" y="469" width="0.0474%" height="15" fill="rgb(218,10,47)" fg:x="2149224" fg:w="1100"/><text x="92.7966%" y="479.50"></text></g><g><title>_ZdlPv (1,378 samples, 0.06%)</title><rect x="92.5381%" y="501" width="0.0593%" height="15" fill="rgb(227,99,14)" fg:x="2149027" fg:w="1378"/><text x="92.7881%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (1,251 samples, 0.05%)</title><rect x="92.5436%" y="485" width="0.0539%" height="15" fill="rgb(229,83,46)" fg:x="2149154" fg:w="1251"/><text x="92.7936%" y="495.50"></text></g><g><title>_ZdlPv (1,717 samples, 0.07%)</title><rect x="92.5290%" y="517" width="0.0739%" height="15" fill="rgb(228,25,1)" fg:x="2148816" fg:w="1717"/><text x="92.7790%" y="527.50"></text></g><g><title>copy_from_kernel_nofault (402 samples, 0.02%)</title><rect x="92.6425%" y="421" width="0.0173%" height="15" fill="rgb(252,190,15)" fg:x="2151452" fg:w="402"/><text x="92.8925%" y="431.50"></text></g><g><title>prepend (561 samples, 0.02%)</title><rect x="92.6377%" y="453" width="0.0242%" height="15" fill="rgb(213,103,51)" fg:x="2151341" fg:w="561"/><text x="92.8877%" y="463.50"></text></g><g><title>prepend_copy (479 samples, 0.02%)</title><rect x="92.6413%" y="437" width="0.0206%" height="15" fill="rgb(220,38,44)" fg:x="2151423" fg:w="479"/><text x="92.8913%" y="447.50"></text></g><g><title>prepend_path (955 samples, 0.04%)</title><rect x="92.6221%" y="469" width="0.0411%" height="15" fill="rgb(210,45,26)" fg:x="2150977" fg:w="955"/><text x="92.8721%" y="479.50"></text></g><g><title>d_path (1,022 samples, 0.04%)</title><rect x="92.6194%" y="485" width="0.0440%" height="15" fill="rgb(205,95,48)" fg:x="2150915" fg:w="1022"/><text x="92.8694%" y="495.50"></text></g><g><title>[[falcon_kal]] (1,253 samples, 0.05%)</title><rect x="92.6120%" y="501" width="0.0540%" height="15" fill="rgb(225,179,37)" fg:x="2150743" fg:w="1253"/><text x="92.8620%" y="511.50"></text></g><g><title>[[falcon_kal]] (603 samples, 0.03%)</title><rect x="92.6713%" y="485" width="0.0260%" height="15" fill="rgb(230,209,3)" fg:x="2152120" fg:w="603"/><text x="92.9213%" y="495.50"></text></g><g><title>memset_erms (382 samples, 0.02%)</title><rect x="92.6808%" y="469" width="0.0164%" height="15" fill="rgb(248,12,46)" fg:x="2152341" fg:w="382"/><text x="92.9308%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (692 samples, 0.03%)</title><rect x="92.6675%" y="501" width="0.0298%" height="15" fill="rgb(234,18,0)" fg:x="2152032" fg:w="692"/><text x="92.9175%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,167 samples, 0.09%)</title><rect x="92.6043%" y="517" width="0.0933%" height="15" fill="rgb(238,197,14)" fg:x="2150565" fg:w="2167"/><text x="92.8543%" y="527.50"></text></g><g><title>cshook_systemcalltable_post_openat (6,423 samples, 0.28%)</title><rect x="92.4428%" y="549" width="0.2766%" height="15" fill="rgb(251,162,48)" fg:x="2146815" fg:w="6423"/><text x="92.6928%" y="559.50"></text></g><g><title>fshook_syscalltable_pre_lchown (4,745 samples, 0.20%)</title><rect x="92.5151%" y="533" width="0.2043%" height="15" fill="rgb(237,73,42)" fg:x="2148493" fg:w="4745"/><text x="92.7651%" y="543.50"></text></g><g><title>strlen (412 samples, 0.02%)</title><rect x="92.7017%" y="517" width="0.0177%" height="15" fill="rgb(211,108,8)" fg:x="2152826" fg:w="412"/><text x="92.9517%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_openat (237 samples, 0.01%)</title><rect x="92.7194%" y="549" width="0.0102%" height="15" fill="rgb(213,45,22)" fg:x="2153238" fg:w="237"/><text x="92.9694%" y="559.50"></text></g><g><title>do_syscall_64 (13,939 samples, 0.60%)</title><rect x="92.1331%" y="581" width="0.6002%" height="15" fill="rgb(252,154,5)" fg:x="2139622" fg:w="13939"/><text x="92.3831%" y="591.50"></text></g><g><title>unload_network_ops_symbols (13,591 samples, 0.59%)</title><rect x="92.1481%" y="565" width="0.5852%" height="15" fill="rgb(221,79,52)" fg:x="2139970" fg:w="13591"/><text x="92.3981%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (14,013 samples, 0.60%)</title><rect x="92.1323%" y="597" width="0.6034%" height="15" fill="rgb(229,220,36)" fg:x="2139602" fg:w="14013"/><text x="92.3823%" y="607.50"></text></g><g><title>__libc_openat64 (14,394 samples, 0.62%)</title><rect x="92.1172%" y="613" width="0.6198%" height="15" fill="rgb(211,17,16)" fg:x="2139252" fg:w="14394"/><text x="92.3672%" y="623.50"></text></g><g><title>ThreadStateTransition::transition_from_native (249 samples, 0.01%)</title><rect x="92.7723%" y="597" width="0.0107%" height="15" fill="rgb(222,55,31)" fg:x="2154466" fg:w="249"/><text x="93.0223%" y="607.50"></text></g><g><title>jni_ExceptionOccurred (870 samples, 0.04%)</title><rect x="92.7458%" y="613" width="0.0375%" height="15" fill="rgb(221,221,31)" fg:x="2153851" fg:w="870"/><text x="92.9958%" y="623.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (440 samples, 0.02%)</title><rect x="92.8023%" y="597" width="0.0189%" height="15" fill="rgb(227,168,26)" fg:x="2155162" fg:w="440"/><text x="93.0523%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (307 samples, 0.01%)</title><rect x="92.8212%" y="597" width="0.0132%" height="15" fill="rgb(224,139,9)" fg:x="2155602" fg:w="307"/><text x="93.0712%" y="607.50"></text></g><g><title>[libc.so.6] (553 samples, 0.02%)</title><rect x="92.8344%" y="597" width="0.0238%" height="15" fill="rgb(254,172,0)" fg:x="2155909" fg:w="553"/><text x="93.0844%" y="607.50"></text></g><g><title>check_bounds (855 samples, 0.04%)</title><rect x="92.8583%" y="597" width="0.0368%" height="15" fill="rgb(235,203,1)" fg:x="2156462" fg:w="855"/><text x="93.1083%" y="607.50"></text></g><g><title>memmove@plt (324 samples, 0.01%)</title><rect x="92.8951%" y="597" width="0.0140%" height="15" fill="rgb(216,205,24)" fg:x="2157317" fg:w="324"/><text x="93.1451%" y="607.50"></text></g><g><title>jni_GetByteArrayRegion (2,921 samples, 0.13%)</title><rect x="92.7833%" y="613" width="0.1258%" height="15" fill="rgb(233,24,6)" fg:x="2154721" fg:w="2921"/><text x="93.0333%" y="623.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (887 samples, 0.04%)</title><rect x="92.9363%" y="581" width="0.0382%" height="15" fill="rgb(244,110,9)" fg:x="2158275" fg:w="887"/><text x="93.1863%" y="591.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (822 samples, 0.04%)</title><rect x="92.9391%" y="565" width="0.0354%" height="15" fill="rgb(239,222,42)" fg:x="2158340" fg:w="822"/><text x="93.1891%" y="575.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (987 samples, 0.04%)</title><rect x="92.9322%" y="597" width="0.0425%" height="15" fill="rgb(218,145,13)" fg:x="2158179" fg:w="987"/><text x="93.1822%" y="607.50"></text></g><g><title>HandleMark::pop_and_restore (773 samples, 0.03%)</title><rect x="92.9747%" y="597" width="0.0333%" height="15" fill="rgb(207,69,11)" fg:x="2159166" fg:w="773"/><text x="93.2247%" y="607.50"></text></g><g><title>JNIHandles::make_local (709 samples, 0.03%)</title><rect x="93.0080%" y="597" width="0.0305%" height="15" fill="rgb(220,223,22)" fg:x="2159939" fg:w="709"/><text x="93.2580%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (284 samples, 0.01%)</title><rect x="93.0388%" y="597" width="0.0122%" height="15" fill="rgb(245,102,5)" fg:x="2160656" fg:w="284"/><text x="93.2888%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (382 samples, 0.02%)</title><rect x="93.0511%" y="597" width="0.0164%" height="15" fill="rgb(211,148,2)" fg:x="2160940" fg:w="382"/><text x="93.3011%" y="607.50"></text></g><g><title>jni_GetObjectField (3,682 samples, 0.16%)</title><rect x="92.9093%" y="613" width="0.1585%" height="15" fill="rgb(241,13,44)" fg:x="2157647" fg:w="3682"/><text x="93.1593%" y="623.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (341 samples, 0.01%)</title><rect x="93.1163%" y="597" width="0.0147%" height="15" fill="rgb(219,137,21)" fg:x="2162454" fg:w="341"/><text x="93.3663%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (650 samples, 0.03%)</title><rect x="93.1310%" y="597" width="0.0280%" height="15" fill="rgb(242,206,5)" fg:x="2162795" fg:w="650"/><text x="93.3810%" y="607.50"></text></g><g><title>jni_GetStringLength (2,127 samples, 0.09%)</title><rect x="93.0678%" y="613" width="0.0916%" height="15" fill="rgb(217,114,22)" fg:x="2161329" fg:w="2127"/><text x="93.3178%" y="623.50"></text></g><g><title>operator delete[] (332 samples, 0.01%)</title><rect x="93.1793%" y="613" width="0.0143%" height="15" fill="rgb(253,206,42)" fg:x="2163917" fg:w="332"/><text x="93.4293%" y="623.50"></text></g><g><title>[libstdc++.so.6.0.30] (377 samples, 0.02%)</title><rect x="93.1980%" y="597" width="0.0162%" height="15" fill="rgb(236,102,18)" fg:x="2164351" fg:w="377"/><text x="93.4480%" y="607.50"></text></g><g><title>__GI___libc_malloc (1,020 samples, 0.04%)</title><rect x="93.2142%" y="597" width="0.0439%" height="15" fill="rgb(208,59,49)" fg:x="2164728" fg:w="1020"/><text x="93.4642%" y="607.50"></text></g><g><title>tcache_get (458 samples, 0.02%)</title><rect x="93.2384%" y="581" width="0.0197%" height="15" fill="rgb(215,194,28)" fg:x="2165290" fg:w="458"/><text x="93.4884%" y="591.50"></text></g><g><title>operator new (1,501 samples, 0.06%)</title><rect x="93.1936%" y="613" width="0.0646%" height="15" fill="rgb(243,207,11)" fg:x="2164249" fg:w="1501"/><text x="93.4436%" y="623.50"></text></g><g><title>operator new[] (240 samples, 0.01%)</title><rect x="93.2582%" y="613" width="0.0103%" height="15" fill="rgb(254,179,35)" fg:x="2165750" fg:w="240"/><text x="93.5082%" y="623.50"></text></g><g><title>btrfs_rename2 (326 samples, 0.01%)</title><rect x="93.2690%" y="501" width="0.0140%" height="15" fill="rgb(235,97,3)" fg:x="2166001" fg:w="326"/><text x="93.5190%" y="511.50"></text></g><g><title>btrfs_rename (324 samples, 0.01%)</title><rect x="93.2691%" y="485" width="0.0140%" height="15" fill="rgb(215,155,33)" fg:x="2166003" fg:w="324"/><text x="93.5191%" y="495.50"></text></g><g><title>do_renameat2 (340 samples, 0.01%)</title><rect x="93.2686%" y="533" width="0.0146%" height="15" fill="rgb(223,128,12)" fg:x="2165992" fg:w="340"/><text x="93.5186%" y="543.50"></text></g><g><title>vfs_rename (332 samples, 0.01%)</title><rect x="93.2690%" y="517" width="0.0143%" height="15" fill="rgb(208,157,18)" fg:x="2166000" fg:w="332"/><text x="93.5190%" y="527.50"></text></g><g><title>__x64_sys_rename (345 samples, 0.01%)</title><rect x="93.2686%" y="549" width="0.0149%" height="15" fill="rgb(249,70,54)" fg:x="2165992" fg:w="345"/><text x="93.5186%" y="559.50"></text></g><g><title>rename (380 samples, 0.02%)</title><rect x="93.2685%" y="613" width="0.0164%" height="15" fill="rgb(244,118,24)" fg:x="2165990" fg:w="380"/><text x="93.5185%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (379 samples, 0.02%)</title><rect x="93.2686%" y="597" width="0.0163%" height="15" fill="rgb(211,54,0)" fg:x="2165991" fg:w="379"/><text x="93.5186%" y="607.50"></text></g><g><title>do_syscall_64 (379 samples, 0.02%)</title><rect x="93.2686%" y="581" width="0.0163%" height="15" fill="rgb(245,137,45)" fg:x="2165991" fg:w="379"/><text x="93.5186%" y="591.50"></text></g><g><title>unload_network_ops_symbols (378 samples, 0.02%)</title><rect x="93.2686%" y="565" width="0.0163%" height="15" fill="rgb(232,154,31)" fg:x="2165992" fg:w="378"/><text x="93.5186%" y="575.50"></text></g><g><title>_int_malloc (418 samples, 0.02%)</title><rect x="93.3240%" y="565" width="0.0180%" height="15" fill="rgb(253,6,39)" fg:x="2167279" fg:w="418"/><text x="93.5740%" y="575.50"></text></g><g><title>__GI___libc_malloc (954 samples, 0.04%)</title><rect x="93.3078%" y="581" width="0.0411%" height="15" fill="rgb(234,183,24)" fg:x="2166901" fg:w="954"/><text x="93.5578%" y="591.50"></text></g><g><title>std::string::_Rep::_S_create (1,394 samples, 0.06%)</title><rect x="93.2889%" y="613" width="0.0600%" height="15" fill="rgb(252,84,40)" fg:x="2166462" fg:w="1394"/><text x="93.5389%" y="623.50"></text></g><g><title>operator new (1,134 samples, 0.05%)</title><rect x="93.3001%" y="597" width="0.0488%" height="15" fill="rgb(224,65,2)" fg:x="2166722" fg:w="1134"/><text x="93.5501%" y="607.50"></text></g><g><title>[libunix_jni.so] (1,987,235 samples, 85.57%)</title><rect x="7.7777%" y="629" width="85.5713%" height="15" fill="rgb(229,38,24)" fg:x="180622" fg:w="1987235"/><text x="8.0277%" y="639.50">[libunix_jni.so]</text></g><g><title>InterpreterRuntime::frequency_counter_overflow (285 samples, 0.01%)</title><rect x="99.2834%" y="613" width="0.0123%" height="15" fill="rgb(218,131,50)" fg:x="2305674" fg:w="285"/><text x="99.5334%" y="623.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (283 samples, 0.01%)</title><rect x="99.2835%" y="597" width="0.0122%" height="15" fill="rgb(233,106,18)" fg:x="2305676" fg:w="283"/><text x="99.5335%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (314 samples, 0.01%)</title><rect x="99.3095%" y="597" width="0.0135%" height="15" fill="rgb(220,216,11)" fg:x="2306280" fg:w="314"/><text x="99.5595%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (457 samples, 0.02%)</title><rect x="99.3067%" y="613" width="0.0197%" height="15" fill="rgb(251,100,45)" fg:x="2306215" fg:w="457"/><text x="99.5567%" y="623.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (339 samples, 0.01%)</title><rect x="99.3596%" y="485" width="0.0146%" height="15" fill="rgb(235,143,32)" fg:x="2307444" fg:w="339"/><text x="99.6096%" y="495.50"></text></g><g><title>SymbolTable::lookup_only (308 samples, 0.01%)</title><rect x="99.3609%" y="469" width="0.0133%" height="15" fill="rgb(248,124,34)" fg:x="2307475" fg:w="308"/><text x="99.6109%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (350 samples, 0.02%)</title><rect x="99.3592%" y="501" width="0.0151%" height="15" fill="rgb(225,221,4)" fg:x="2307434" fg:w="350"/><text x="99.6092%" y="511.50"></text></g><g><title>ClassFileParser::ClassFileParser (457 samples, 0.02%)</title><rect x="99.3588%" y="533" width="0.0197%" height="15" fill="rgb(242,27,43)" fg:x="2307426" fg:w="457"/><text x="99.6088%" y="543.50"></text></g><g><title>ClassFileParser::parse_stream (456 samples, 0.02%)</title><rect x="99.3589%" y="517" width="0.0196%" height="15" fill="rgb(227,54,8)" fg:x="2307427" fg:w="456"/><text x="99.6089%" y="527.50"></text></g><g><title>KlassFactory::create_from_stream (550 samples, 0.02%)</title><rect x="99.3588%" y="549" width="0.0237%" height="15" fill="rgb(253,139,49)" fg:x="2307425" fg:w="550"/><text x="99.6088%" y="559.50"></text></g><g><title>JVM_DefineClassWithSource (576 samples, 0.02%)</title><rect x="99.3583%" y="597" width="0.0248%" height="15" fill="rgb(231,26,43)" fg:x="2307414" fg:w="576"/><text x="99.6083%" y="607.50"></text></g><g><title>jvm_define_class_common (576 samples, 0.02%)</title><rect x="99.3583%" y="581" width="0.0248%" height="15" fill="rgb(207,121,39)" fg:x="2307414" fg:w="576"/><text x="99.6083%" y="591.50"></text></g><g><title>SystemDictionary::resolve_from_stream (568 samples, 0.02%)</title><rect x="99.3587%" y="565" width="0.0245%" height="15" fill="rgb(223,101,35)" fg:x="2307422" fg:w="568"/><text x="99.6087%" y="575.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (605 samples, 0.03%)</title><rect x="99.3582%" y="613" width="0.0261%" height="15" fill="rgb(232,87,23)" fg:x="2307412" fg:w="605"/><text x="99.6082%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (569 samples, 0.02%)</title><rect x="99.4048%" y="517" width="0.0245%" height="15" fill="rgb(225,180,29)" fg:x="2308493" fg:w="569"/><text x="99.6548%" y="527.50"></text></g><g><title>x86_pmu_enable (557 samples, 0.02%)</title><rect x="99.4053%" y="501" width="0.0240%" height="15" fill="rgb(225,25,17)" fg:x="2308505" fg:w="557"/><text x="99.6553%" y="511.50"></text></g><g><title>intel_pmu_enable_all (555 samples, 0.02%)</title><rect x="99.4054%" y="485" width="0.0239%" height="15" fill="rgb(223,8,52)" fg:x="2308507" fg:w="555"/><text x="99.6554%" y="495.50"></text></g><g><title>native_write_msr (551 samples, 0.02%)</title><rect x="99.4056%" y="469" width="0.0237%" height="15" fill="rgb(246,42,21)" fg:x="2308511" fg:w="551"/><text x="99.6556%" y="479.50"></text></g><g><title>schedule_tail (597 samples, 0.03%)</title><rect x="99.4038%" y="549" width="0.0257%" height="15" fill="rgb(205,64,43)" fg:x="2308471" fg:w="597"/><text x="99.6538%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (586 samples, 0.03%)</title><rect x="99.4043%" y="533" width="0.0252%" height="15" fill="rgb(221,160,13)" fg:x="2308482" fg:w="586"/><text x="99.6543%" y="543.50"></text></g><g><title>__libc_vfork (820 samples, 0.04%)</title><rect x="99.3944%" y="581" width="0.0353%" height="15" fill="rgb(239,58,35)" fg:x="2308253" fg:w="820"/><text x="99.6444%" y="591.50"></text></g><g><title>ret_from_fork (608 samples, 0.03%)</title><rect x="99.4036%" y="565" width="0.0262%" height="15" fill="rgb(251,26,40)" fg:x="2308465" fg:w="608"/><text x="99.6536%" y="575.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (244 samples, 0.01%)</title><rect x="99.4354%" y="229" width="0.0105%" height="15" fill="rgb(247,0,4)" fg:x="2309205" fg:w="244"/><text x="99.6854%" y="239.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (254 samples, 0.01%)</title><rect x="99.4350%" y="245" width="0.0109%" height="15" fill="rgb(218,130,10)" fg:x="2309196" fg:w="254"/><text x="99.6850%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (272 samples, 0.01%)</title><rect x="99.4572%" y="197" width="0.0117%" height="15" fill="rgb(239,32,7)" fg:x="2309711" fg:w="272"/><text x="99.7072%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (323 samples, 0.01%)</title><rect x="99.4554%" y="213" width="0.0139%" height="15" fill="rgb(210,192,24)" fg:x="2309668" fg:w="323"/><text x="99.7054%" y="223.50"></text></g><g><title>_ZdlPv (828 samples, 0.04%)</title><rect x="99.4342%" y="261" width="0.0357%" height="15" fill="rgb(226,212,17)" fg:x="2309177" fg:w="828"/><text x="99.6842%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (440 samples, 0.02%)</title><rect x="99.4509%" y="245" width="0.0189%" height="15" fill="rgb(219,201,28)" fg:x="2309565" fg:w="440"/><text x="99.7009%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (371 samples, 0.02%)</title><rect x="99.4539%" y="229" width="0.0160%" height="15" fill="rgb(235,207,41)" fg:x="2309634" fg:w="371"/><text x="99.7039%" y="239.50"></text></g><g><title>_ZdlPv (836 samples, 0.04%)</title><rect x="99.4340%" y="293" width="0.0360%" height="15" fill="rgb(241,95,54)" fg:x="2309171" fg:w="836"/><text x="99.6840%" y="303.50"></text></g><g><title>_ZdlPv (835 samples, 0.04%)</title><rect x="99.4340%" y="277" width="0.0360%" height="15" fill="rgb(248,12,23)" fg:x="2309172" fg:w="835"/><text x="99.6840%" y="287.50"></text></g><g><title>_ZdlPv (475 samples, 0.02%)</title><rect x="99.4704%" y="229" width="0.0205%" height="15" fill="rgb(228,173,4)" fg:x="2310018" fg:w="475"/><text x="99.7204%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (297 samples, 0.01%)</title><rect x="99.4781%" y="213" width="0.0128%" height="15" fill="rgb(254,99,5)" fg:x="2310196" fg:w="297"/><text x="99.7281%" y="223.50"></text></g><g><title>_ZdlPv (482 samples, 0.02%)</title><rect x="99.4702%" y="245" width="0.0208%" height="15" fill="rgb(212,184,17)" fg:x="2310013" fg:w="482"/><text x="99.7202%" y="255.50"></text></g><g><title>_ZdlPv (484 samples, 0.02%)</title><rect x="99.4702%" y="277" width="0.0208%" height="15" fill="rgb(252,174,1)" fg:x="2310012" fg:w="484"/><text x="99.7202%" y="287.50"></text></g><g><title>_ZdlPv (483 samples, 0.02%)</title><rect x="99.4702%" y="261" width="0.0208%" height="15" fill="rgb(241,118,51)" fg:x="2310013" fg:w="483"/><text x="99.7202%" y="271.50"></text></g><g><title>cshook_security_sb_free_security (503 samples, 0.02%)</title><rect x="99.4701%" y="293" width="0.0217%" height="15" fill="rgb(227,94,47)" fg:x="2310010" fg:w="503"/><text x="99.7201%" y="303.50"></text></g><g><title>cshook_security_sb_free_security (1,351 samples, 0.06%)</title><rect x="99.4340%" y="325" width="0.0582%" height="15" fill="rgb(229,104,2)" fg:x="2309171" fg:w="1351"/><text x="99.6840%" y="335.50"></text></g><g><title>cshook_security_sb_free_security (1,351 samples, 0.06%)</title><rect x="99.4340%" y="309" width="0.0582%" height="15" fill="rgb(219,28,31)" fg:x="2309171" fg:w="1351"/><text x="99.6840%" y="319.50"></text></g><g><title>cshook_security_file_permission (1,353 samples, 0.06%)</title><rect x="99.4339%" y="341" width="0.0583%" height="15" fill="rgb(233,109,36)" fg:x="2309170" fg:w="1353"/><text x="99.6839%" y="351.50"></text></g><g><title>security_bprm_check (1,365 samples, 0.06%)</title><rect x="99.4335%" y="405" width="0.0588%" height="15" fill="rgb(246,88,11)" fg:x="2309159" fg:w="1365"/><text x="99.6835%" y="415.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,364 samples, 0.06%)</title><rect x="99.4335%" y="389" width="0.0587%" height="15" fill="rgb(209,212,17)" fg:x="2309160" fg:w="1364"/><text x="99.6835%" y="399.50"></text></g><g><title>cshook_security_bprm_check_security (1,364 samples, 0.06%)</title><rect x="99.4335%" y="373" width="0.0587%" height="15" fill="rgb(243,59,29)" fg:x="2309160" fg:w="1364"/><text x="99.6835%" y="383.50"></text></g><g><title>cshook_security_file_permission (1,364 samples, 0.06%)</title><rect x="99.4335%" y="357" width="0.0587%" height="15" fill="rgb(244,205,48)" fg:x="2309160" fg:w="1364"/><text x="99.6835%" y="367.50"></text></g><g><title>exec_binprm (1,440 samples, 0.06%)</title><rect x="99.4303%" y="437" width="0.0620%" height="15" fill="rgb(227,30,6)" fg:x="2309085" fg:w="1440"/><text x="99.6803%" y="447.50"></text></g><g><title>search_binary_handler (1,440 samples, 0.06%)</title><rect x="99.4303%" y="421" width="0.0620%" height="15" fill="rgb(220,205,48)" fg:x="2309085" fg:w="1440"/><text x="99.6803%" y="431.50"></text></g><g><title>bprm_execve.part.0 (1,506 samples, 0.06%)</title><rect x="99.4301%" y="453" width="0.0648%" height="15" fill="rgb(250,94,14)" fg:x="2309082" fg:w="1506"/><text x="99.6801%" y="463.50"></text></g><g><title>bprm_execve (1,509 samples, 0.06%)</title><rect x="99.4301%" y="469" width="0.0650%" height="15" fill="rgb(216,119,42)" fg:x="2309082" fg:w="1509"/><text x="99.6801%" y="479.50"></text></g><g><title>JDK_execvpe (1,536 samples, 0.07%)</title><rect x="99.4298%" y="565" width="0.0661%" height="15" fill="rgb(232,155,0)" fg:x="2309074" fg:w="1536"/><text x="99.6798%" y="575.50"></text></g><g><title>__GI_execve (1,535 samples, 0.07%)</title><rect x="99.4298%" y="549" width="0.0661%" height="15" fill="rgb(212,24,32)" fg:x="2309075" fg:w="1535"/><text x="99.6798%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,535 samples, 0.07%)</title><rect x="99.4298%" y="533" width="0.0661%" height="15" fill="rgb(216,69,20)" fg:x="2309075" fg:w="1535"/><text x="99.6798%" y="543.50"></text></g><g><title>do_syscall_64 (1,535 samples, 0.07%)</title><rect x="99.4298%" y="517" width="0.0661%" height="15" fill="rgb(229,73,31)" fg:x="2309075" fg:w="1535"/><text x="99.6798%" y="527.50"></text></g><g><title>__x64_sys_execve (1,535 samples, 0.07%)</title><rect x="99.4298%" y="501" width="0.0661%" height="15" fill="rgb(224,219,20)" fg:x="2309075" fg:w="1535"/><text x="99.6798%" y="511.50"></text></g><g><title>do_execveat_common.isra.0 (1,535 samples, 0.07%)</title><rect x="99.4298%" y="485" width="0.0661%" height="15" fill="rgb(215,146,41)" fg:x="2309075" fg:w="1535"/><text x="99.6798%" y="495.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (2,692 samples, 0.12%)</title><rect x="99.3908%" y="613" width="0.1159%" height="15" fill="rgb(244,71,31)" fg:x="2308169" fg:w="2692"/><text x="99.6408%" y="623.50"></text></g><g><title>vforkChild (2,608 samples, 0.11%)</title><rect x="99.3944%" y="597" width="0.1123%" height="15" fill="rgb(224,24,11)" fg:x="2308253" fg:w="2608"/><text x="99.6444%" y="607.50"></text></g><g><title>childProcess (1,788 samples, 0.08%)</title><rect x="99.4298%" y="581" width="0.0770%" height="15" fill="rgb(229,76,15)" fg:x="2309073" fg:w="1788"/><text x="99.6798%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (247 samples, 0.01%)</title><rect x="99.5524%" y="357" width="0.0106%" height="15" fill="rgb(209,93,2)" fg:x="2311921" fg:w="247"/><text x="99.8024%" y="367.50"></text></g><g><title>x86_pmu_enable (242 samples, 0.01%)</title><rect x="99.5526%" y="341" width="0.0104%" height="15" fill="rgb(216,200,50)" fg:x="2311926" fg:w="242"/><text x="99.8026%" y="351.50"></text></g><g><title>intel_pmu_enable_all (237 samples, 0.01%)</title><rect x="99.5528%" y="325" width="0.0102%" height="15" fill="rgb(211,67,34)" fg:x="2311931" fg:w="237"/><text x="99.8028%" y="335.50"></text></g><g><title>native_write_msr (235 samples, 0.01%)</title><rect x="99.5529%" y="309" width="0.0101%" height="15" fill="rgb(225,87,47)" fg:x="2311933" fg:w="235"/><text x="99.8029%" y="319.50"></text></g><g><title>finish_task_switch.isra.0 (254 samples, 0.01%)</title><rect x="99.5523%" y="373" width="0.0109%" height="15" fill="rgb(217,185,16)" fg:x="2311919" fg:w="254"/><text x="99.8023%" y="383.50"></text></g><g><title>__schedule (308 samples, 0.01%)</title><rect x="99.5514%" y="389" width="0.0133%" height="15" fill="rgb(205,0,0)" fg:x="2311899" fg:w="308"/><text x="99.8014%" y="399.50"></text></g><g><title>futex_wait_queue_me (310 samples, 0.01%)</title><rect x="99.5514%" y="421" width="0.0133%" height="15" fill="rgb(207,116,45)" fg:x="2311898" fg:w="310"/><text x="99.8014%" y="431.50"></text></g><g><title>schedule (310 samples, 0.01%)</title><rect x="99.5514%" y="405" width="0.0133%" height="15" fill="rgb(221,156,26)" fg:x="2311898" fg:w="310"/><text x="99.8014%" y="415.50"></text></g><g><title>__x64_sys_futex (322 samples, 0.01%)</title><rect x="99.5511%" y="469" width="0.0139%" height="15" fill="rgb(213,140,4)" fg:x="2311890" fg:w="322"/><text x="99.8011%" y="479.50"></text></g><g><title>do_futex (321 samples, 0.01%)</title><rect x="99.5511%" y="453" width="0.0138%" height="15" fill="rgb(231,224,15)" fg:x="2311891" fg:w="321"/><text x="99.8011%" y="463.50"></text></g><g><title>futex_wait (318 samples, 0.01%)</title><rect x="99.5512%" y="437" width="0.0137%" height="15" fill="rgb(244,76,20)" fg:x="2311894" fg:w="318"/><text x="99.8012%" y="447.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (345 samples, 0.01%)</title><rect x="99.5508%" y="549" width="0.0149%" height="15" fill="rgb(238,117,7)" fg:x="2311883" fg:w="345"/><text x="99.8008%" y="559.50"></text></g><g><title>__futex_abstimed_wait_common (344 samples, 0.01%)</title><rect x="99.5508%" y="533" width="0.0148%" height="15" fill="rgb(235,1,10)" fg:x="2311884" fg:w="344"/><text x="99.8008%" y="543.50"></text></g><g><title>__futex_abstimed_wait_common64 (344 samples, 0.01%)</title><rect x="99.5508%" y="517" width="0.0148%" height="15" fill="rgb(216,165,6)" fg:x="2311884" fg:w="344"/><text x="99.8008%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (340 samples, 0.01%)</title><rect x="99.5510%" y="501" width="0.0146%" height="15" fill="rgb(246,91,35)" fg:x="2311888" fg:w="340"/><text x="99.8010%" y="511.50"></text></g><g><title>do_syscall_64 (340 samples, 0.01%)</title><rect x="99.5510%" y="485" width="0.0146%" height="15" fill="rgb(228,96,24)" fg:x="2311888" fg:w="340"/><text x="99.8010%" y="495.50"></text></g><g><title>___pthread_cond_wait (351 samples, 0.02%)</title><rect x="99.5507%" y="581" width="0.0151%" height="15" fill="rgb(254,217,53)" fg:x="2311881" fg:w="351"/><text x="99.8007%" y="591.50"></text></g><g><title>__pthread_cond_wait_common (351 samples, 0.02%)</title><rect x="99.5507%" y="565" width="0.0151%" height="15" fill="rgb(209,60,0)" fg:x="2311881" fg:w="351"/><text x="99.8007%" y="575.50"></text></g><g><title>Parker::park (435 samples, 0.02%)</title><rect x="99.5476%" y="597" width="0.0187%" height="15" fill="rgb(250,93,26)" fg:x="2311811" fg:w="435"/><text x="99.7976%" y="607.50"></text></g><g><title>Unsafe_Park (443 samples, 0.02%)</title><rect x="99.5474%" y="613" width="0.0191%" height="15" fill="rgb(211,9,40)" fg:x="2311805" fg:w="443"/><text x="99.7974%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (297 samples, 0.01%)</title><rect x="99.5697%" y="565" width="0.0128%" height="15" fill="rgb(242,57,20)" fg:x="2312322" fg:w="297"/><text x="99.8197%" y="575.50"></text></g><g><title>do_syscall_64 (293 samples, 0.01%)</title><rect x="99.5698%" y="549" width="0.0126%" height="15" fill="rgb(248,85,48)" fg:x="2312326" fg:w="293"/><text x="99.8198%" y="559.50"></text></g><g><title>___pthread_cond_signal (317 samples, 0.01%)</title><rect x="99.5689%" y="597" width="0.0137%" height="15" fill="rgb(212,117,2)" fg:x="2312305" fg:w="317"/><text x="99.8189%" y="607.50"></text></g><g><title>futex_wake (308 samples, 0.01%)</title><rect x="99.5693%" y="581" width="0.0133%" height="15" fill="rgb(243,19,3)" fg:x="2312314" fg:w="308"/><text x="99.8193%" y="591.50"></text></g><g><title>Unsafe_Unpark (378 samples, 0.02%)</title><rect x="99.5666%" y="613" width="0.0163%" height="15" fill="rgb(232,217,24)" fg:x="2312250" fg:w="378"/><text x="99.8166%" y="623.50"></text></g><g><title>__alloc_pages (272 samples, 0.01%)</title><rect x="99.6223%" y="485" width="0.0117%" height="15" fill="rgb(224,175,40)" fg:x="2313545" fg:w="272"/><text x="99.8723%" y="495.50"></text></g><g><title>alloc_pages_vma (312 samples, 0.01%)</title><rect x="99.6216%" y="501" width="0.0134%" height="15" fill="rgb(212,162,32)" fg:x="2313528" fg:w="312"/><text x="99.8716%" y="511.50"></text></g><g><title>do_anonymous_page (682 samples, 0.03%)</title><rect x="99.6133%" y="517" width="0.0294%" height="15" fill="rgb(215,9,4)" fg:x="2313335" fg:w="682"/><text x="99.8633%" y="527.50"></text></g><g><title>handle_pte_fault (754 samples, 0.03%)</title><rect x="99.6111%" y="533" width="0.0325%" height="15" fill="rgb(242,42,7)" fg:x="2313284" fg:w="754"/><text x="99.8611%" y="543.50"></text></g><g><title>__handle_mm_fault (841 samples, 0.04%)</title><rect x="99.6079%" y="549" width="0.0362%" height="15" fill="rgb(242,184,45)" fg:x="2313211" fg:w="841"/><text x="99.8579%" y="559.50"></text></g><g><title>handle_mm_fault (941 samples, 0.04%)</title><rect x="99.6045%" y="565" width="0.0405%" height="15" fill="rgb(228,111,51)" fg:x="2313131" fg:w="941"/><text x="99.8545%" y="575.50"></text></g><g><title>do_user_addr_fault (1,031 samples, 0.04%)</title><rect x="99.6013%" y="581" width="0.0444%" height="15" fill="rgb(236,147,17)" fg:x="2313058" fg:w="1031"/><text x="99.8513%" y="591.50"></text></g><g><title>exc_page_fault (1,101 samples, 0.05%)</title><rect x="99.6006%" y="597" width="0.0474%" height="15" fill="rgb(210,75,22)" fg:x="2313041" fg:w="1101"/><text x="99.8506%" y="607.50"></text></g><g><title>asm_exc_page_fault (1,115 samples, 0.05%)</title><rect x="99.6001%" y="613" width="0.0480%" height="15" fill="rgb(217,159,45)" fg:x="2313029" fg:w="1115"/><text x="99.8501%" y="623.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (429 samples, 0.02%)</title><rect x="99.6481%" y="613" width="0.0185%" height="15" fill="rgb(245,165,53)" fg:x="2314144" fg:w="429"/><text x="99.8981%" y="623.50"></text></g><g><title>sysvec_apic_timer_interrupt (424 samples, 0.02%)</title><rect x="99.6483%" y="597" width="0.0183%" height="15" fill="rgb(251,190,50)" fg:x="2314149" fg:w="424"/><text x="99.8983%" y="607.50"></text></g><g><title>exit_to_user_mode_loop (239 samples, 0.01%)</title><rect x="99.6680%" y="533" width="0.0103%" height="15" fill="rgb(208,203,29)" fg:x="2314605" fg:w="239"/><text x="99.9180%" y="543.50"></text></g><g><title>asm_sysvec_reschedule_ipi (279 samples, 0.01%)</title><rect x="99.6667%" y="613" width="0.0120%" height="15" fill="rgb(207,209,35)" fg:x="2314576" fg:w="279"/><text x="99.9167%" y="623.50"></text></g><g><title>sysvec_reschedule_ipi (267 samples, 0.01%)</title><rect x="99.6672%" y="597" width="0.0115%" height="15" fill="rgb(230,144,49)" fg:x="2314588" fg:w="267"/><text x="99.9172%" y="607.50"></text></g><g><title>irqentry_exit (259 samples, 0.01%)</title><rect x="99.6676%" y="581" width="0.0112%" height="15" fill="rgb(229,31,6)" fg:x="2314596" fg:w="259"/><text x="99.9176%" y="591.50"></text></g><g><title>irqentry_exit_to_user_mode (259 samples, 0.01%)</title><rect x="99.6676%" y="565" width="0.0112%" height="15" fill="rgb(251,129,24)" fg:x="2314596" fg:w="259"/><text x="99.9176%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (257 samples, 0.01%)</title><rect x="99.6677%" y="549" width="0.0111%" height="15" fill="rgb(235,105,15)" fg:x="2314598" fg:w="257"/><text x="99.9177%" y="559.50"></text></g><g><title>__GI___close (237 samples, 0.01%)</title><rect x="99.6796%" y="597" width="0.0102%" height="15" fill="rgb(216,52,43)" fg:x="2314876" fg:w="237"/><text x="99.9296%" y="607.50"></text></g><g><title>fileDescriptorClose (265 samples, 0.01%)</title><rect x="99.6794%" y="613" width="0.0114%" height="15" fill="rgb(238,144,41)" fg:x="2314870" fg:w="265"/><text x="99.9294%" y="623.50"></text></g><g><title>do_filp_open (311 samples, 0.01%)</title><rect x="99.6970%" y="501" width="0.0134%" height="15" fill="rgb(243,63,9)" fg:x="2315280" fg:w="311"/><text x="99.9470%" y="511.50"></text></g><g><title>path_openat (304 samples, 0.01%)</title><rect x="99.6973%" y="485" width="0.0131%" height="15" fill="rgb(246,208,1)" fg:x="2315287" fg:w="304"/><text x="99.9473%" y="495.50"></text></g><g><title>__x64_sys_openat (358 samples, 0.02%)</title><rect x="99.6967%" y="533" width="0.0154%" height="15" fill="rgb(233,182,18)" fg:x="2315272" fg:w="358"/><text x="99.9467%" y="543.50"></text></g><g><title>do_sys_openat2 (354 samples, 0.02%)</title><rect x="99.6969%" y="517" width="0.0152%" height="15" fill="rgb(242,224,8)" fg:x="2315276" fg:w="354"/><text x="99.9469%" y="527.50"></text></g><g><title>cshook_systemcalltable_post_openat (402 samples, 0.02%)</title><rect x="99.7123%" y="533" width="0.0173%" height="15" fill="rgb(243,54,37)" fg:x="2315634" fg:w="402"/><text x="99.9623%" y="543.50"></text></g><g><title>fshook_syscalltable_pre_lchown (301 samples, 0.01%)</title><rect x="99.7166%" y="517" width="0.0130%" height="15" fill="rgb(233,192,12)" fg:x="2315735" fg:w="301"/><text x="99.9666%" y="527.50"></text></g><g><title>do_syscall_64 (822 samples, 0.04%)</title><rect x="99.6956%" y="565" width="0.0354%" height="15" fill="rgb(251,192,53)" fg:x="2315248" fg:w="822"/><text x="99.9456%" y="575.50"></text></g><g><title>unload_network_ops_symbols (801 samples, 0.03%)</title><rect x="99.6966%" y="549" width="0.0345%" height="15" fill="rgb(246,141,26)" fg:x="2315269" fg:w="801"/><text x="99.9466%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (827 samples, 0.04%)</title><rect x="99.6956%" y="581" width="0.0356%" height="15" fill="rgb(239,195,19)" fg:x="2315248" fg:w="827"/><text x="99.9456%" y="591.50"></text></g><g><title>__libc_open64 (844 samples, 0.04%)</title><rect x="99.6950%" y="597" width="0.0363%" height="15" fill="rgb(241,16,39)" fg:x="2315234" fg:w="844"/><text x="99.9450%" y="607.50"></text></g><g><title>fileOpen (978 samples, 0.04%)</title><rect x="99.6908%" y="613" width="0.0421%" height="15" fill="rgb(223,13,53)" fg:x="2315135" fg:w="978"/><text x="99.9408%" y="623.50"></text></g><g><title>[perf-731527.map] (148,575 samples, 6.40%)</title><rect x="93.3489%" y="629" width="6.3977%" height="15" fill="rgb(214,227,0)" fg:x="2167857" fg:w="148575"/><text x="93.5989%" y="639.50">[perf-73..</text></g><g><title>SharedRuntime::resolve_sub_helper (341 samples, 0.01%)</title><rect x="99.7534%" y="613" width="0.0147%" height="15" fill="rgb(228,103,26)" fg:x="2316589" fg:w="341"/><text x="100.0034%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (808 samples, 0.03%)</title><rect x="99.8210%" y="405" width="0.0348%" height="15" fill="rgb(254,177,53)" fg:x="2318159" fg:w="808"/><text x="100.0710%" y="415.50"></text></g><g><title>filemap_get_pages (264 samples, 0.01%)</title><rect x="99.8558%" y="405" width="0.0114%" height="15" fill="rgb(208,201,34)" fg:x="2318968" fg:w="264"/><text x="100.1058%" y="415.50"></text></g><g><title>mark_page_accessed (270 samples, 0.01%)</title><rect x="99.8672%" y="405" width="0.0116%" height="15" fill="rgb(212,39,5)" fg:x="2319232" fg:w="270"/><text x="100.1172%" y="415.50"></text></g><g><title>filemap_read (1,622 samples, 0.07%)</title><rect x="99.8123%" y="421" width="0.0698%" height="15" fill="rgb(246,117,3)" fg:x="2317956" fg:w="1622"/><text x="100.0623%" y="431.50"></text></g><g><title>btrfs_file_read_iter (1,659 samples, 0.07%)</title><rect x="99.8109%" y="437" width="0.0714%" height="15" fill="rgb(244,118,39)" fg:x="2317924" fg:w="1659"/><text x="100.0609%" y="447.50"></text></g><g><title>new_sync_read (1,691 samples, 0.07%)</title><rect x="99.8097%" y="453" width="0.0728%" height="15" fill="rgb(241,64,10)" fg:x="2317897" fg:w="1691"/><text x="100.0597%" y="463.50"></text></g><g><title>ksys_read (2,154 samples, 0.09%)</title><rect x="99.7993%" y="485" width="0.0928%" height="15" fill="rgb(229,39,44)" fg:x="2317655" fg:w="2154"/><text x="100.0493%" y="495.50"></text></g><g><title>vfs_read (1,990 samples, 0.09%)</title><rect x="99.8064%" y="469" width="0.0857%" height="15" fill="rgb(230,226,3)" fg:x="2317819" fg:w="1990"/><text x="100.0564%" y="479.50"></text></g><g><title>__x64_sys_read (2,158 samples, 0.09%)</title><rect x="99.7992%" y="501" width="0.0929%" height="15" fill="rgb(222,13,42)" fg:x="2317652" fg:w="2158"/><text x="100.0492%" y="511.50"></text></g><g><title>do_syscall_64 (2,344 samples, 0.10%)</title><rect x="99.7934%" y="533" width="0.1009%" height="15" fill="rgb(247,180,54)" fg:x="2317519" fg:w="2344"/><text x="100.0434%" y="543.50"></text></g><g><title>unload_network_ops_symbols (2,244 samples, 0.10%)</title><rect x="99.7977%" y="517" width="0.0966%" height="15" fill="rgb(205,96,16)" fg:x="2317619" fg:w="2244"/><text x="100.0477%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,358 samples, 0.10%)</title><rect x="99.7931%" y="549" width="0.1015%" height="15" fill="rgb(205,100,21)" fg:x="2317511" fg:w="2358"/><text x="100.0431%" y="559.50"></text></g><g><title>__GI___libc_read (2,460 samples, 0.11%)</title><rect x="99.7890%" y="581" width="0.1059%" height="15" fill="rgb(248,51,4)" fg:x="2317417" fg:w="2460"/><text x="100.0390%" y="591.50"></text></g><g><title>__GI___libc_read (2,453 samples, 0.11%)</title><rect x="99.7893%" y="565" width="0.1056%" height="15" fill="rgb(217,197,30)" fg:x="2317424" fg:w="2453"/><text x="100.0393%" y="575.50"></text></g><g><title>handleRead (2,476 samples, 0.11%)</title><rect x="99.7888%" y="597" width="0.1066%" height="15" fill="rgb(240,179,40)" fg:x="2317411" fg:w="2476"/><text x="100.0388%" y="607.50"></text></g><g><title>jni_GetObjectField (250 samples, 0.01%)</title><rect x="99.8992%" y="597" width="0.0108%" height="15" fill="rgb(212,185,35)" fg:x="2319974" fg:w="250"/><text x="100.1492%" y="607.50"></text></g><g><title>[libc.so.6] (306 samples, 0.01%)</title><rect x="99.9135%" y="581" width="0.0132%" height="15" fill="rgb(251,222,31)" fg:x="2320307" fg:w="306"/><text x="100.1635%" y="591.50"></text></g><g><title>readBytes (3,310 samples, 0.14%)</title><rect x="99.7861%" y="613" width="0.1425%" height="15" fill="rgb(208,140,36)" fg:x="2317349" fg:w="3310"/><text x="100.0361%" y="623.50"></text></g><g><title>jni_SetByteArrayRegion (435 samples, 0.02%)</title><rect x="99.9099%" y="597" width="0.0187%" height="15" fill="rgb(220,148,1)" fg:x="2320224" fg:w="435"/><text x="100.1599%" y="607.50"></text></g><g><title>[unknown] (4,281 samples, 0.18%)</title><rect x="99.7466%" y="629" width="0.1843%" height="15" fill="rgb(254,4,28)" fg:x="2316432" fg:w="4281"/><text x="99.9966%" y="639.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (317 samples, 0.01%)</title><rect x="99.9599%" y="629" width="0.0137%" height="15" fill="rgb(222,185,44)" fg:x="2321385" fg:w="317"/><text x="100.2099%" y="639.50"></text></g><g><title>jni_GetStringLength (338 samples, 0.01%)</title><rect x="99.9736%" y="629" width="0.0146%" height="15" fill="rgb(215,74,39)" fg:x="2321703" fg:w="338"/><text x="100.2236%" y="639.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (320 samples, 0.01%)</title><rect x="99.9744%" y="613" width="0.0138%" height="15" fill="rgb(247,86,4)" fg:x="2321721" fg:w="320"/><text x="100.2244%" y="623.50"></text></g><g><title>skyframe-evalua (2,146,829 samples, 92.44%)</title><rect x="7.5506%" y="645" width="92.4434%" height="15" fill="rgb(231,105,32)" fg:x="175349" fg:w="2146829"/><text x="7.8006%" y="655.50">skyframe-evalua</text></g><g><title>all (2,322,316 samples, 100%)</title><rect x="0.0000%" y="661" width="100.0000%" height="15" fill="rgb(222,65,35)" fg:x="0" fg:w="2322316"/><text x="0.2500%" y="671.50"></text></g></svg></svg>