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

414 lines
1.1 MiB

<?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="982" onload="init(evt)" viewBox="0 0 1200 982" 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="982" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="965.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="965.00"> </text><svg id="frames" x="10" width="1180" total_samples="955984"><g><title>__fput (118 samples, 0.01%)</title><rect x="0.0454%" y="789" width="0.0123%" height="15" fill="rgb(227,0,7)" fg:x="434" fg:w="118"/><text x="0.2954%" y="799.50"></text></g><g><title>____fput (130 samples, 0.01%)</title><rect x="0.0454%" y="805" width="0.0136%" height="15" fill="rgb(217,0,24)" fg:x="434" fg:w="130"/><text x="0.2954%" y="815.50"></text></g><g><title>exit_to_user_mode_loop (148 samples, 0.02%)</title><rect x="0.0437%" y="837" width="0.0155%" height="15" fill="rgb(221,193,54)" fg:x="418" fg:w="148"/><text x="0.2937%" y="847.50"></text></g><g><title>task_work_run (136 samples, 0.01%)</title><rect x="0.0450%" y="821" width="0.0142%" height="15" fill="rgb(248,212,6)" fg:x="430" fg:w="136"/><text x="0.2950%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (185 samples, 0.02%)</title><rect x="0.0406%" y="869" width="0.0194%" height="15" fill="rgb(208,68,35)" fg:x="388" fg:w="185"/><text x="0.2906%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (176 samples, 0.02%)</title><rect x="0.0415%" y="853" width="0.0184%" height="15" fill="rgb(232,128,0)" fg:x="397" fg:w="176"/><text x="0.2915%" y="863.50"></text></g><g><title>do_open (102 samples, 0.01%)</title><rect x="0.0740%" y="789" width="0.0107%" height="15" fill="rgb(207,160,47)" fg:x="707" fg:w="102"/><text x="0.3240%" y="799.50"></text></g><g><title>inode_permission (112 samples, 0.01%)</title><rect x="0.0976%" y="773" width="0.0117%" height="15" fill="rgb(228,23,34)" fg:x="933" fg:w="112"/><text x="0.3476%" y="783.50"></text></g><g><title>lookup_fast (265 samples, 0.03%)</title><rect x="0.1139%" y="757" width="0.0277%" height="15" fill="rgb(218,30,26)" fg:x="1089" fg:w="265"/><text x="0.3639%" y="767.50"></text></g><g><title>pick_link (105 samples, 0.01%)</title><rect x="0.1542%" y="741" width="0.0110%" height="15" fill="rgb(220,122,19)" fg:x="1474" fg:w="105"/><text x="0.4042%" y="751.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (760 samples, 0.08%)</title><rect x="0.0858%" y="789" width="0.0795%" height="15" fill="rgb(250,228,42)" fg:x="820" fg:w="760"/><text x="0.3358%" y="799.50"></text></g><g><title>walk_component (525 samples, 0.05%)</title><rect x="0.1104%" y="773" width="0.0549%" height="15" fill="rgb(240,193,28)" fg:x="1055" fg:w="525"/><text x="0.3604%" y="783.50"></text></g><g><title>step_into (222 samples, 0.02%)</title><rect x="0.1421%" y="757" width="0.0232%" height="15" fill="rgb(216,20,37)" fg:x="1358" fg:w="222"/><text x="0.3921%" y="767.50"></text></g><g><title>open_last_lookups (227 samples, 0.02%)</title><rect x="0.1655%" y="789" width="0.0237%" height="15" fill="rgb(206,188,39)" fg:x="1582" fg:w="227"/><text x="0.4155%" y="799.50"></text></g><g><title>step_into (130 samples, 0.01%)</title><rect x="0.1756%" y="773" width="0.0136%" height="15" fill="rgb(217,207,13)" fg:x="1679" fg:w="130"/><text x="0.4256%" y="783.50"></text></g><g><title>pick_link (124 samples, 0.01%)</title><rect x="0.1763%" y="757" width="0.0130%" height="15" fill="rgb(231,73,38)" fg:x="1685" fg:w="124"/><text x="0.4263%" y="767.50"></text></g><g><title>do_filp_open (1,223 samples, 0.13%)</title><rect x="0.0655%" y="821" width="0.1279%" height="15" fill="rgb(225,20,46)" fg:x="626" fg:w="1223"/><text x="0.3155%" y="831.50"></text></g><g><title>path_openat (1,215 samples, 0.13%)</title><rect x="0.0663%" y="805" width="0.1271%" height="15" fill="rgb(210,31,41)" fg:x="634" fg:w="1215"/><text x="0.3163%" y="815.50"></text></g><g><title>do_sys_openat2 (1,321 samples, 0.14%)</title><rect x="0.0651%" y="837" width="0.1382%" height="15" fill="rgb(221,200,47)" fg:x="622" fg:w="1321"/><text x="0.3151%" y="847.50"></text></g><g><title>__x64_sys_openat (1,331 samples, 0.14%)</title><rect x="0.0642%" y="853" width="0.1392%" height="15" fill="rgb(226,26,5)" fg:x="614" fg:w="1331"/><text x="0.3142%" y="863.50"></text></g><g><title>filemap_get_read_batch (101 samples, 0.01%)</title><rect x="0.2448%" y="741" width="0.0106%" height="15" fill="rgb(249,33,26)" fg:x="2340" fg:w="101"/><text x="0.4948%" y="751.50"></text></g><g><title>filemap_get_pages (128 samples, 0.01%)</title><rect x="0.2424%" y="757" width="0.0134%" height="15" fill="rgb(235,183,28)" fg:x="2317" fg:w="128"/><text x="0.4924%" y="767.50"></text></g><g><title>btrfs_file_read_iter (375 samples, 0.04%)</title><rect x="0.2197%" y="789" width="0.0392%" height="15" fill="rgb(221,5,38)" fg:x="2100" fg:w="375"/><text x="0.4697%" y="799.50"></text></g><g><title>filemap_read (358 samples, 0.04%)</title><rect x="0.2214%" y="773" width="0.0374%" height="15" fill="rgb(247,18,42)" fg:x="2117" fg:w="358"/><text x="0.4714%" y="783.50"></text></g><g><title>new_sync_read (411 samples, 0.04%)</title><rect x="0.2176%" y="805" width="0.0430%" height="15" fill="rgb(241,131,45)" fg:x="2080" fg:w="411"/><text x="0.4676%" y="815.50"></text></g><g><title>rw_verify_area (129 samples, 0.01%)</title><rect x="0.2606%" y="805" width="0.0135%" height="15" fill="rgb(249,31,29)" fg:x="2491" fg:w="129"/><text x="0.5106%" y="815.50"></text></g><g><title>security_file_permission (122 samples, 0.01%)</title><rect x="0.2613%" y="789" width="0.0128%" height="15" fill="rgb(225,111,53)" fg:x="2498" fg:w="122"/><text x="0.5113%" y="799.50"></text></g><g><title>ksys_read (677 samples, 0.07%)</title><rect x="0.2037%" y="837" width="0.0708%" height="15" fill="rgb(238,160,17)" fg:x="1947" fg:w="677"/><text x="0.4537%" y="847.50"></text></g><g><title>vfs_read (584 samples, 0.06%)</title><rect x="0.2134%" y="821" width="0.0611%" height="15" fill="rgb(214,148,48)" fg:x="2040" fg:w="584"/><text x="0.4634%" y="831.50"></text></g><g><title>__x64_sys_read (681 samples, 0.07%)</title><rect x="0.2035%" y="853" width="0.0712%" height="15" fill="rgb(232,36,49)" fg:x="1945" fg:w="681"/><text x="0.4535%" y="863.50"></text></g><g><title>[[falcon_kal]] (111 samples, 0.01%)</title><rect x="0.3013%" y="805" width="0.0116%" height="15" fill="rgb(209,103,24)" fg:x="2880" fg:w="111"/><text x="0.5513%" y="815.50"></text></g><g><title>__kmalloc (106 samples, 0.01%)</title><rect x="0.3144%" y="773" width="0.0111%" height="15" fill="rgb(229,88,8)" fg:x="3006" fg:w="106"/><text x="0.5644%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (311 samples, 0.03%)</title><rect x="0.2993%" y="821" width="0.0325%" height="15" fill="rgb(213,181,19)" fg:x="2861" fg:w="311"/><text x="0.5493%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (179 samples, 0.02%)</title><rect x="0.3131%" y="805" width="0.0187%" height="15" fill="rgb(254,191,54)" fg:x="2993" fg:w="179"/><text x="0.5631%" y="815.50"></text></g><g><title>[[falcon_kal]] (169 samples, 0.02%)</title><rect x="0.3141%" y="789" width="0.0177%" height="15" fill="rgb(241,83,37)" fg:x="3003" fg:w="169"/><text x="0.5641%" y="799.50"></text></g><g><title>cshook_systemcalltable_post_openat (566 samples, 0.06%)</title><rect x="0.2777%" y="853" width="0.0592%" height="15" fill="rgb(233,36,39)" fg:x="2655" fg:w="566"/><text x="0.5277%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (460 samples, 0.05%)</title><rect x="0.2888%" y="837" width="0.0481%" height="15" fill="rgb(226,3,54)" fg:x="2761" fg:w="460"/><text x="0.5388%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (171 samples, 0.02%)</title><rect x="0.3380%" y="837" width="0.0179%" height="15" fill="rgb(245,192,40)" fg:x="3231" fg:w="171"/><text x="0.5880%" y="847.50"></text></g><g><title>fshook_syscalltable_pre_lchown (108 samples, 0.01%)</title><rect x="0.3446%" y="821" width="0.0113%" height="15" fill="rgb(238,167,29)" fg:x="3294" fg:w="108"/><text x="0.5946%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_close (172 samples, 0.02%)</title><rect x="0.3380%" y="853" width="0.0180%" height="15" fill="rgb(232,182,51)" fg:x="3231" fg:w="172"/><text x="0.5880%" y="863.50"></text></g><g><title>do_syscall_64 (3,186 samples, 0.33%)</title><rect x="0.0258%" y="885" width="0.3333%" height="15" fill="rgb(231,60,39)" fg:x="247" fg:w="3186"/><text x="0.2758%" y="895.50"></text></g><g><title>unload_network_ops_symbols (2,860 samples, 0.30%)</title><rect x="0.0599%" y="869" width="0.2992%" height="15" fill="rgb(208,69,12)" fg:x="573" fg:w="2860"/><text x="0.3099%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,212 samples, 0.34%)</title><rect x="0.0237%" y="901" width="0.3360%" height="15" fill="rgb(235,93,37)" fg:x="227" fg:w="3212"/><text x="0.2737%" y="911.50"></text></g><g><title>:723868 (3,345 samples, 0.35%)</title><rect x="0.0138%" y="917" width="0.3499%" height="15" fill="rgb(213,116,39)" fg:x="132" fg:w="3345"/><text x="0.2638%" y="927.50"></text></g><g><title>_dl_update_slotinfo (148 samples, 0.02%)</title><rect x="0.5113%" y="885" width="0.0155%" height="15" fill="rgb(222,207,29)" fg:x="4888" fg:w="148"/><text x="0.7613%" y="895.50"></text></g><g><title>[anon] (1,613 samples, 0.17%)</title><rect x="0.3891%" y="901" width="0.1687%" height="15" fill="rgb(206,96,30)" fg:x="3720" fg:w="1613"/><text x="0.6391%" y="911.50"></text></g><g><title>[perf-722681.map] (187 samples, 0.02%)</title><rect x="0.5582%" y="901" width="0.0196%" height="15" fill="rgb(218,138,4)" fg:x="5336" fg:w="187"/><text x="0.8082%" y="911.50"></text></g><g><title>[unknown] (125 samples, 0.01%)</title><rect x="0.5777%" y="901" width="0.0131%" height="15" fill="rgb(250,191,14)" fg:x="5523" fg:w="125"/><text x="0.8277%" y="911.50"></text></g><g><title>CompileTask::print (129 samples, 0.01%)</title><rect x="0.6082%" y="789" width="0.0135%" height="15" fill="rgb(239,60,40)" fg:x="5814" fg:w="129"/><text x="0.8582%" y="799.50"></text></g><g><title>BlockBegin::iterate_preorder (136 samples, 0.01%)</title><rect x="0.6353%" y="661" width="0.0142%" height="15" fill="rgb(206,27,48)" fg:x="6073" fg:w="136"/><text x="0.8853%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (203 samples, 0.02%)</title><rect x="0.6348%" y="693" width="0.0212%" height="15" fill="rgb(225,35,8)" fg:x="6069" fg:w="203"/><text x="0.8848%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (202 samples, 0.02%)</title><rect x="0.6349%" y="677" width="0.0211%" height="15" fill="rgb(250,213,24)" fg:x="6070" fg:w="202"/><text x="0.8849%" y="687.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (411 samples, 0.04%)</title><rect x="0.6266%" y="709" width="0.0430%" height="15" fill="rgb(247,123,22)" fg:x="5990" fg:w="411"/><text x="0.8766%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (97 samples, 0.01%)</title><rect x="0.6704%" y="661" width="0.0101%" height="15" fill="rgb(231,138,38)" fg:x="6409" fg:w="97"/><text x="0.9204%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (101 samples, 0.01%)</title><rect x="0.6701%" y="677" width="0.0106%" height="15" fill="rgb(231,145,46)" fg:x="6406" fg:w="101"/><text x="0.9201%" y="687.50"></text></g><g><title>MethodLiveness::compute_liveness (118 samples, 0.01%)</title><rect x="0.6894%" y="629" width="0.0123%" height="15" fill="rgb(251,118,11)" fg:x="6591" fg:w="118"/><text x="0.9394%" y="639.50"></text></g><g><title>BlockListBuilder::set_leaders (173 samples, 0.02%)</title><rect x="0.6838%" y="661" width="0.0181%" height="15" fill="rgb(217,147,25)" fg:x="6537" fg:w="173"/><text x="0.9338%" y="671.50"></text></g><g><title>ciMethod::bci_block_start (121 samples, 0.01%)</title><rect x="0.6892%" y="645" width="0.0127%" height="15" fill="rgb(247,81,37)" fg:x="6589" fg:w="121"/><text x="0.9392%" y="655.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (191 samples, 0.02%)</title><rect x="0.6822%" y="677" width="0.0200%" height="15" fill="rgb(209,12,38)" fg:x="6522" fg:w="191"/><text x="0.9322%" y="687.50"></text></g><g><title>ciField::ciField (141 samples, 0.01%)</title><rect x="0.7265%" y="597" width="0.0147%" height="15" fill="rgb(227,1,9)" fg:x="6945" fg:w="141"/><text x="0.9765%" y="607.50"></text></g><g><title>ciEnv::get_field_by_index (148 samples, 0.02%)</title><rect x="0.7260%" y="613" width="0.0155%" height="15" fill="rgb(248,47,43)" fg:x="6940" fg:w="148"/><text x="0.9760%" y="623.50"></text></g><g><title>ciBytecodeStream::get_field (174 samples, 0.02%)</title><rect x="0.7257%" y="629" width="0.0182%" height="15" fill="rgb(221,10,30)" fg:x="6938" fg:w="174"/><text x="0.9757%" y="639.50"></text></g><g><title>GraphBuilder::access_field (236 samples, 0.02%)</title><rect x="0.7209%" y="645" width="0.0247%" height="15" fill="rgb(210,229,1)" fg:x="6892" fg:w="236"/><text x="0.9709%" y="655.50"></text></g><g><title>ciBytecodeStream::get_field (111 samples, 0.01%)</title><rect x="0.7878%" y="549" width="0.0116%" height="15" fill="rgb(222,148,37)" fg:x="7531" fg:w="111"/><text x="1.0378%" y="559.50"></text></g><g><title>GraphBuilder::access_field (153 samples, 0.02%)</title><rect x="0.7844%" y="565" width="0.0160%" height="15" fill="rgb(234,67,33)" fg:x="7499" fg:w="153"/><text x="1.0344%" y="575.50"></text></g><g><title>GraphBuilder::access_field (101 samples, 0.01%)</title><rect x="0.8166%" y="485" width="0.0106%" height="15" fill="rgb(247,98,35)" fg:x="7807" fg:w="101"/><text x="1.0666%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (125 samples, 0.01%)</title><rect x="0.8437%" y="357" width="0.0131%" height="15" fill="rgb(247,138,52)" fg:x="8066" fg:w="125"/><text x="1.0937%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (125 samples, 0.01%)</title><rect x="0.8437%" y="341" width="0.0131%" height="15" fill="rgb(213,79,30)" fg:x="8066" fg:w="125"/><text x="1.0937%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (179 samples, 0.02%)</title><rect x="0.8430%" y="373" width="0.0187%" height="15" fill="rgb(246,177,23)" fg:x="8059" fg:w="179"/><text x="1.0930%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (191 samples, 0.02%)</title><rect x="0.8425%" y="389" width="0.0200%" height="15" fill="rgb(230,62,27)" fg:x="8054" fg:w="191"/><text x="1.0925%" y="399.50"></text></g><g><title>GraphBuilder::invoke (261 samples, 0.03%)</title><rect x="0.8419%" y="405" width="0.0273%" height="15" fill="rgb(216,154,8)" fg:x="8048" fg:w="261"/><text x="1.0919%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (360 samples, 0.04%)</title><rect x="0.8344%" y="437" width="0.0377%" height="15" fill="rgb(244,35,45)" fg:x="7977" fg:w="360"/><text x="1.0844%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (356 samples, 0.04%)</title><rect x="0.8348%" y="421" width="0.0372%" height="15" fill="rgb(251,115,12)" fg:x="7981" fg:w="356"/><text x="1.0848%" y="431.50"></text></g><g><title>GraphBuilder::try_inline_full (475 samples, 0.05%)</title><rect x="0.8333%" y="453" width="0.0497%" height="15" fill="rgb(240,54,50)" fg:x="7966" fg:w="475"/><text x="1.0833%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (516 samples, 0.05%)</title><rect x="0.8330%" y="469" width="0.0540%" height="15" fill="rgb(233,84,52)" fg:x="7963" fg:w="516"/><text x="1.0830%" y="479.50"></text></g><g><title>ciBytecodeStream::get_method (112 samples, 0.01%)</title><rect x="0.8887%" y="469" width="0.0117%" height="15" fill="rgb(207,117,47)" fg:x="8496" fg:w="112"/><text x="1.1387%" y="479.50"></text></g><g><title>ciEnv::get_method_by_index_impl (105 samples, 0.01%)</title><rect x="0.8895%" y="453" width="0.0110%" height="15" fill="rgb(249,43,39)" fg:x="8503" fg:w="105"/><text x="1.1395%" y="463.50"></text></g><g><title>GraphBuilder::invoke (685 samples, 0.07%)</title><rect x="0.8305%" y="485" width="0.0717%" height="15" fill="rgb(209,38,44)" fg:x="7939" fg:w="685"/><text x="1.0805%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (900 samples, 0.09%)</title><rect x="0.8128%" y="501" width="0.0941%" height="15" fill="rgb(236,212,23)" fg:x="7770" fg:w="900"/><text x="1.0628%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (912 samples, 0.10%)</title><rect x="0.8116%" y="517" width="0.0954%" height="15" fill="rgb(242,79,21)" fg:x="7759" fg:w="912"/><text x="1.0616%" y="527.50"></text></g><g><title>GraphBuilder::push_scope (114 samples, 0.01%)</title><rect x="0.9075%" y="517" width="0.0119%" height="15" fill="rgb(211,96,35)" fg:x="8676" fg:w="114"/><text x="1.1575%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (1,136 samples, 0.12%)</title><rect x="0.8090%" y="533" width="0.1188%" height="15" fill="rgb(253,215,40)" fg:x="7734" fg:w="1136"/><text x="1.0590%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (1,191 samples, 0.12%)</title><rect x="0.8083%" y="549" width="0.1246%" height="15" fill="rgb(211,81,21)" fg:x="7727" fg:w="1191"/><text x="1.0583%" y="559.50"></text></g><g><title>ciObjectFactory::create_new_metadata (97 samples, 0.01%)</title><rect x="0.9441%" y="501" width="0.0101%" height="15" fill="rgb(208,190,38)" fg:x="9025" fg:w="97"/><text x="1.1941%" y="511.50"></text></g><g><title>ciObjectFactory::get_metadata (106 samples, 0.01%)</title><rect x="0.9432%" y="517" width="0.0111%" height="15" fill="rgb(235,213,38)" fg:x="9017" fg:w="106"/><text x="1.1932%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (169 samples, 0.02%)</title><rect x="0.9370%" y="533" width="0.0177%" height="15" fill="rgb(237,122,38)" fg:x="8958" fg:w="169"/><text x="1.1870%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (176 samples, 0.02%)</title><rect x="0.9364%" y="549" width="0.0184%" height="15" fill="rgb(244,218,35)" fg:x="8952" fg:w="176"/><text x="1.1864%" y="559.50"></text></g><g><title>GraphBuilder::invoke (1,481 samples, 0.15%)</title><rect x="0.8036%" y="565" width="0.1549%" height="15" fill="rgb(240,68,47)" fg:x="7682" fg:w="1481"/><text x="1.0536%" y="575.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,829 samples, 0.19%)</title><rect x="0.7740%" y="597" width="0.1913%" height="15" fill="rgb(210,16,53)" fg:x="7399" fg:w="1829"/><text x="1.0240%" y="607.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,821 samples, 0.19%)</title><rect x="0.7748%" y="581" width="0.1905%" height="15" fill="rgb(235,124,12)" fg:x="7407" fg:w="1821"/><text x="1.0248%" y="591.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (113 samples, 0.01%)</title><rect x="0.9678%" y="581" width="0.0118%" height="15" fill="rgb(224,169,11)" fg:x="9252" fg:w="113"/><text x="1.2178%" y="591.50"></text></g><g><title>GraphBuilder::push_scope (172 samples, 0.02%)</title><rect x="0.9672%" y="597" width="0.0180%" height="15" fill="rgb(250,166,2)" fg:x="9246" fg:w="172"/><text x="1.2172%" y="607.50"></text></g><g><title>ciMethod::ensure_method_data (154 samples, 0.02%)</title><rect x="0.9868%" y="597" width="0.0161%" height="15" fill="rgb(242,216,29)" fg:x="9434" fg:w="154"/><text x="1.2368%" y="607.50"></text></g><g><title>ciMethod::ensure_method_data (149 samples, 0.02%)</title><rect x="0.9874%" y="581" width="0.0156%" height="15" fill="rgb(230,116,27)" fg:x="9439" fg:w="149"/><text x="1.2374%" y="591.50"></text></g><g><title>GraphBuilder::try_inline_full (2,258 samples, 0.24%)</title><rect x="0.7677%" y="613" width="0.2362%" height="15" fill="rgb(228,99,48)" fg:x="7339" fg:w="2258"/><text x="1.0177%" y="623.50"></text></g><g><title>GraphBuilder::try_inline (2,283 samples, 0.24%)</title><rect x="0.7663%" y="629" width="0.2388%" height="15" fill="rgb(253,11,6)" fg:x="7326" fg:w="2283"/><text x="1.0163%" y="639.50"></text></g><g><title>ciEnv::lookup_method (115 samples, 0.01%)</title><rect x="1.0171%" y="597" width="0.0120%" height="15" fill="rgb(247,143,39)" fg:x="9723" fg:w="115"/><text x="1.2671%" y="607.50"></text></g><g><title>ciSignature::ciSignature (128 samples, 0.01%)</title><rect x="1.0352%" y="549" width="0.0134%" height="15" fill="rgb(236,97,10)" fg:x="9896" fg:w="128"/><text x="1.2852%" y="559.50"></text></g><g><title>ciMethod::ciMethod (168 samples, 0.02%)</title><rect x="1.0311%" y="565" width="0.0176%" height="15" fill="rgb(233,208,19)" fg:x="9857" fg:w="168"/><text x="1.2811%" y="575.50"></text></g><g><title>ciObjectFactory::get_metadata (193 samples, 0.02%)</title><rect x="1.0291%" y="597" width="0.0202%" height="15" fill="rgb(216,164,2)" fg:x="9838" fg:w="193"/><text x="1.2791%" y="607.50"></text></g><g><title>ciObjectFactory::create_new_metadata (180 samples, 0.02%)</title><rect x="1.0305%" y="581" width="0.0188%" height="15" fill="rgb(220,129,5)" fg:x="9851" fg:w="180"/><text x="1.2805%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (355 samples, 0.04%)</title><rect x="1.0133%" y="613" width="0.0371%" height="15" fill="rgb(242,17,10)" fg:x="9687" fg:w="355"/><text x="1.2633%" y="623.50"></text></g><g><title>ciBytecodeStream::get_method (380 samples, 0.04%)</title><rect x="1.0111%" y="629" width="0.0397%" height="15" fill="rgb(242,107,0)" fg:x="9666" fg:w="380"/><text x="1.2611%" y="639.50"></text></g><g><title>GraphBuilder::invoke (2,909 samples, 0.30%)</title><rect x="0.7552%" y="645" width="0.3043%" height="15" fill="rgb(251,28,31)" fg:x="7220" fg:w="2909"/><text x="1.0052%" y="655.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,421 samples, 0.36%)</title><rect x="0.7092%" y="661" width="0.3579%" height="15" fill="rgb(233,223,10)" fg:x="6780" fg:w="3421"/><text x="0.9592%" y="671.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,488 samples, 0.36%)</title><rect x="0.7035%" y="677" width="0.3649%" height="15" fill="rgb(215,21,27)" fg:x="6725" fg:w="3488"/><text x="0.9535%" y="687.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,874 samples, 0.41%)</title><rect x="0.6696%" y="693" width="0.4052%" height="15" fill="rgb(232,23,21)" fg:x="6401" fg:w="3874"/><text x="0.9196%" y="703.50"></text></g><g><title>IR::IR (3,891 samples, 0.41%)</title><rect x="0.6696%" y="709" width="0.4070%" height="15" fill="rgb(244,5,23)" fg:x="6401" fg:w="3891"/><text x="0.9196%" y="719.50"></text></g><g><title>IR::compute_code (99 samples, 0.01%)</title><rect x="1.0766%" y="709" width="0.0104%" height="15" fill="rgb(226,81,46)" fg:x="10292" fg:w="99"/><text x="1.3266%" y="719.50"></text></g><g><title>IR::compute_use_counts (121 samples, 0.01%)</title><rect x="1.0869%" y="709" width="0.0127%" height="15" fill="rgb(247,70,30)" fg:x="10391" fg:w="121"/><text x="1.3369%" y="719.50"></text></g><g><title>NullCheckEliminator::iterate_one (188 samples, 0.02%)</title><rect x="1.1026%" y="677" width="0.0197%" height="15" fill="rgb(212,68,19)" fg:x="10541" fg:w="188"/><text x="1.3526%" y="687.50"></text></g><g><title>IR::eliminate_null_checks (229 samples, 0.02%)</title><rect x="1.0996%" y="709" width="0.0240%" height="15" fill="rgb(240,187,13)" fg:x="10512" fg:w="229"/><text x="1.3496%" y="719.50"></text></g><g><title>Optimizer::eliminate_null_checks (229 samples, 0.02%)</title><rect x="1.0996%" y="693" width="0.0240%" height="15" fill="rgb(223,113,26)" fg:x="10512" fg:w="229"/><text x="1.3496%" y="703.50"></text></g><g><title>Compilation::build_hir (4,912 samples, 0.51%)</title><rect x="0.6257%" y="725" width="0.5138%" height="15" fill="rgb(206,192,2)" fg:x="5982" fg:w="4912"/><text x="0.8757%" y="735.50"></text></g><g><title>LIR_Assembler::call (100 samples, 0.01%)</title><rect x="1.1578%" y="677" width="0.0105%" height="15" fill="rgb(241,108,4)" fg:x="11068" fg:w="100"/><text x="1.4078%" y="687.50"></text></g><g><title>LIR_Assembler::emit_call (185 samples, 0.02%)</title><rect x="1.1531%" y="693" width="0.0194%" height="15" fill="rgb(247,173,49)" fg:x="11023" fg:w="185"/><text x="1.4031%" y="703.50"></text></g><g><title>LIR_Assembler::emit_op1 (185 samples, 0.02%)</title><rect x="1.1759%" y="693" width="0.0194%" height="15" fill="rgb(224,114,35)" fg:x="11241" fg:w="185"/><text x="1.4259%" y="703.50"></text></g><g><title>LIR_Assembler::emit_code (736 samples, 0.08%)</title><rect x="1.1430%" y="709" width="0.0770%" height="15" fill="rgb(245,159,27)" fg:x="10927" fg:w="736"/><text x="1.3930%" y="719.50"></text></g><g><title>CodeEmitInfo::record_debug_info (126 samples, 0.01%)</title><rect x="1.2289%" y="661" width="0.0132%" height="15" fill="rgb(245,172,44)" fg:x="11748" fg:w="126"/><text x="1.4789%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (127 samples, 0.01%)</title><rect x="1.2289%" y="677" width="0.0133%" height="15" fill="rgb(236,23,11)" fg:x="11748" fg:w="127"/><text x="1.4789%" y="687.50"></text></g><g><title>CounterOverflowStub::emit_code (152 samples, 0.02%)</title><rect x="1.2286%" y="693" width="0.0159%" height="15" fill="rgb(205,117,38)" fg:x="11745" fg:w="152"/><text x="1.4786%" y="703.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (378 samples, 0.04%)</title><rect x="1.2260%" y="709" width="0.0395%" height="15" fill="rgb(237,72,25)" fg:x="11720" fg:w="378"/><text x="1.4760%" y="719.50"></text></g><g><title>Compilation::emit_code_body (1,225 samples, 0.13%)</title><rect x="1.1396%" y="725" width="0.1281%" height="15" fill="rgb(244,70,9)" fg:x="10894" fg:w="1225"/><text x="1.3896%" y="735.50"></text></g><g><title>LIRGenerator::do_Base (109 samples, 0.01%)</title><rect x="1.2754%" y="677" width="0.0114%" height="15" fill="rgb(217,125,39)" fg:x="12193" fg:w="109"/><text x="1.5254%" y="687.50"></text></g><g><title>LIRGenerator::move_to_phi (273 samples, 0.03%)</title><rect x="1.2896%" y="661" width="0.0286%" height="15" fill="rgb(235,36,10)" fg:x="12328" fg:w="273"/><text x="1.5396%" y="671.50"></text></g><g><title>PhiResolverState::reset (204 samples, 0.02%)</title><rect x="1.2968%" y="645" width="0.0213%" height="15" fill="rgb(251,123,47)" fg:x="12397" fg:w="204"/><text x="1.5468%" y="655.50"></text></g><g><title>LIRGenerator::do_Goto (292 samples, 0.03%)</title><rect x="1.2881%" y="677" width="0.0305%" height="15" fill="rgb(221,13,13)" fg:x="12314" fg:w="292"/><text x="1.5381%" y="687.50"></text></g><g><title>LIRGenerator::do_Invoke (137 samples, 0.01%)</title><rect x="1.3271%" y="677" width="0.0143%" height="15" fill="rgb(238,131,9)" fg:x="12687" fg:w="137"/><text x="1.5771%" y="687.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (107 samples, 0.01%)</title><rect x="1.3540%" y="677" width="0.0112%" height="15" fill="rgb(211,50,8)" fg:x="12944" fg:w="107"/><text x="1.6040%" y="687.50"></text></g><g><title>LIRGenerator::block_do (1,008 samples, 0.11%)</title><rect x="1.2686%" y="693" width="0.1054%" height="15" fill="rgb(245,182,24)" fg:x="12128" fg:w="1008"/><text x="1.5186%" y="703.50"></text></g><g><title>BlockList::iterate_forward (1,014 samples, 0.11%)</title><rect x="1.2683%" y="709" width="0.1061%" height="15" fill="rgb(242,14,37)" fg:x="12125" fg:w="1014"/><text x="1.5183%" y="719.50"></text></g><g><title>IntervalWalker::walk_to (135 samples, 0.01%)</title><rect x="1.3903%" y="661" width="0.0141%" height="15" fill="rgb(246,228,12)" fg:x="13291" fg:w="135"/><text x="1.6403%" y="671.50"></text></g><g><title>LinearScanWalker::find_free_reg (112 samples, 0.01%)</title><rect x="1.4187%" y="629" width="0.0117%" height="15" fill="rgb(213,55,15)" fg:x="13563" fg:w="112"/><text x="1.6687%" y="639.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (168 samples, 0.02%)</title><rect x="1.4337%" y="629" width="0.0176%" height="15" fill="rgb(209,9,3)" fg:x="13706" fg:w="168"/><text x="1.6837%" y="639.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (489 samples, 0.05%)</title><rect x="1.4083%" y="645" width="0.0512%" height="15" fill="rgb(230,59,30)" fg:x="13463" fg:w="489"/><text x="1.6583%" y="655.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (169 samples, 0.02%)</title><rect x="1.4594%" y="645" width="0.0177%" height="15" fill="rgb(209,121,21)" fg:x="13952" fg:w="169"/><text x="1.7094%" y="655.50"></text></g><g><title>IntervalWalker::walk_to (969 samples, 0.10%)</title><rect x="1.3838%" y="677" width="0.1014%" height="15" fill="rgb(220,109,13)" fg:x="13229" fg:w="969"/><text x="1.6338%" y="687.50"></text></g><g><title>LinearScanWalker::activate_current (771 samples, 0.08%)</title><rect x="1.4045%" y="661" width="0.0806%" height="15" fill="rgb(232,18,1)" fg:x="13427" fg:w="771"/><text x="1.6545%" y="671.50"></text></g><g><title>LinearScan::allocate_registers (1,054 samples, 0.11%)</title><rect x="1.3823%" y="693" width="0.1103%" height="15" fill="rgb(215,41,42)" fg:x="13215" fg:w="1054"/><text x="1.6323%" y="703.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (101 samples, 0.01%)</title><rect x="1.5332%" y="645" width="0.0106%" height="15" fill="rgb(224,123,36)" fg:x="14657" fg:w="101"/><text x="1.7832%" y="655.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (185 samples, 0.02%)</title><rect x="1.5263%" y="661" width="0.0194%" height="15" fill="rgb(240,125,3)" fg:x="14591" fg:w="185"/><text x="1.7763%" y="671.50"></text></g><g><title>IntervalWalker::walk_to (100 samples, 0.01%)</title><rect x="1.5523%" y="629" width="0.0105%" height="15" fill="rgb(205,98,50)" fg:x="14840" fg:w="100"/><text x="1.8023%" y="639.50"></text></g><g><title>LinearScan::compute_oop_map (219 samples, 0.02%)</title><rect x="1.5456%" y="661" width="0.0229%" height="15" fill="rgb(205,185,37)" fg:x="14776" fg:w="219"/><text x="1.7956%" y="671.50"></text></g><g><title>LinearScan::compute_oop_map (194 samples, 0.02%)</title><rect x="1.5482%" y="645" width="0.0203%" height="15" fill="rgb(238,207,15)" fg:x="14801" fg:w="194"/><text x="1.7982%" y="655.50"></text></g><g><title>LinearScan::assign_reg_num (728 samples, 0.08%)</title><rect x="1.4929%" y="677" width="0.0762%" height="15" fill="rgb(213,199,42)" fg:x="14272" fg:w="728"/><text x="1.7429%" y="687.50"></text></g><g><title>LinearScan::assign_reg_num (766 samples, 0.08%)</title><rect x="1.4926%" y="693" width="0.0801%" height="15" fill="rgb(235,201,11)" fg:x="14269" fg:w="766"/><text x="1.7426%" y="703.50"></text></g><g><title>LinearScan::add_temp (118 samples, 0.01%)</title><rect x="1.6237%" y="677" width="0.0123%" height="15" fill="rgb(207,46,11)" fg:x="15522" fg:w="118"/><text x="1.8737%" y="687.50"></text></g><g><title>LinearScan::add_use (191 samples, 0.02%)</title><rect x="1.6360%" y="677" width="0.0200%" height="15" fill="rgb(241,35,35)" fg:x="15640" fg:w="191"/><text x="1.8860%" y="687.50"></text></g><g><title>LinearScan::build_intervals (888 samples, 0.09%)</title><rect x="1.5727%" y="693" width="0.0929%" height="15" fill="rgb(243,32,47)" fg:x="15035" fg:w="888"/><text x="1.8227%" y="703.50"></text></g><g><title>LIR_OpVisitState::visit (110 samples, 0.01%)</title><rect x="1.6922%" y="677" width="0.0115%" height="15" fill="rgb(247,202,23)" fg:x="16177" fg:w="110"/><text x="1.9422%" y="687.50"></text></g><g><title>LinearScan::compute_local_live_sets (320 samples, 0.03%)</title><rect x="1.6756%" y="693" width="0.0335%" height="15" fill="rgb(219,102,11)" fg:x="16018" fg:w="320"/><text x="1.9256%" y="703.50"></text></g><g><title>LinearScan::resolve_collect_mappings (107 samples, 0.01%)</title><rect x="1.7274%" y="677" width="0.0112%" height="15" fill="rgb(243,110,44)" fg:x="16514" fg:w="107"/><text x="1.9774%" y="687.50"></text></g><g><title>LinearScan::resolve_data_flow (157 samples, 0.02%)</title><rect x="1.7239%" y="693" width="0.0164%" height="15" fill="rgb(222,74,54)" fg:x="16480" fg:w="157"/><text x="1.9739%" y="703.50"></text></g><g><title>LinearScan::do_linear_scan (3,621 samples, 0.38%)</title><rect x="1.3787%" y="709" width="0.3788%" height="15" fill="rgb(216,99,12)" fg:x="13180" fg:w="3621"/><text x="1.6287%" y="719.50"></text></g><g><title>Compilation::emit_lir (4,687 samples, 0.49%)</title><rect x="1.2677%" y="725" width="0.4903%" height="15" fill="rgb(226,22,26)" fg:x="12119" fg:w="4687"/><text x="1.5177%" y="735.50"></text></g><g><title>ciMethod::ensure_method_data (133 samples, 0.01%)</title><rect x="1.7609%" y="709" width="0.0139%" height="15" fill="rgb(217,163,10)" fg:x="16834" fg:w="133"/><text x="2.0109%" y="719.50"></text></g><g><title>Compilation::compile_java_method (10,999 samples, 1.15%)</title><rect x="0.6246%" y="741" width="1.1505%" height="15" fill="rgb(213,25,53)" fg:x="5971" fg:w="10999"/><text x="0.8746%" y="751.50"></text></g><g><title>ciMethod::ensure_method_data (143 samples, 0.01%)</title><rect x="1.7602%" y="725" width="0.0150%" height="15" fill="rgb(252,105,26)" fg:x="16827" fg:w="143"/><text x="2.0102%" y="735.50"></text></g><g><title>CodeBuffer::relocate_code_to (155 samples, 0.02%)</title><rect x="1.8106%" y="677" width="0.0162%" height="15" fill="rgb(220,39,43)" fg:x="17309" fg:w="155"/><text x="2.0606%" y="687.50"></text></g><g><title>CodeBuffer::copy_code_to (170 samples, 0.02%)</title><rect x="1.8101%" y="693" width="0.0178%" height="15" fill="rgb(229,68,48)" fg:x="17304" fg:w="170"/><text x="2.0601%" y="703.50"></text></g><g><title>nmethod::nmethod (347 samples, 0.04%)</title><rect x="1.8093%" y="709" width="0.0363%" height="15" fill="rgb(252,8,32)" fg:x="17297" fg:w="347"/><text x="2.0593%" y="719.50"></text></g><g><title>nmethod::new_nmethod (571 samples, 0.06%)</title><rect x="1.7860%" y="725" width="0.0597%" height="15" fill="rgb(223,20,43)" fg:x="17074" fg:w="571"/><text x="2.0360%" y="735.50"></text></g><g><title>ciEnv::register_method (619 samples, 0.06%)</title><rect x="1.7811%" y="741" width="0.0648%" height="15" fill="rgb(229,81,49)" fg:x="17027" fg:w="619"/><text x="2.0311%" y="751.50"></text></g><g><title>Compilation::compile_method (11,683 samples, 1.22%)</title><rect x="0.6241%" y="757" width="1.2221%" height="15" fill="rgb(236,28,36)" fg:x="5966" fg:w="11683"/><text x="0.8741%" y="767.50"></text></g><g><title>Compilation::Compilation (11,702 samples, 1.22%)</title><rect x="0.6233%" y="773" width="1.2241%" height="15" fill="rgb(249,185,26)" fg:x="5959" fg:w="11702"/><text x="0.8733%" y="783.50"></text></g><g><title>Compiler::compile_method (11,718 samples, 1.23%)</title><rect x="0.6218%" y="789" width="1.2258%" height="15" fill="rgb(249,174,33)" fg:x="5944" fg:w="11718"/><text x="0.8718%" y="799.50"></text></g><g><title>ciEnv::ciEnv (111 samples, 0.01%)</title><rect x="1.8513%" y="789" width="0.0116%" height="15" fill="rgb(233,201,37)" fg:x="17698" fg:w="111"/><text x="2.1013%" y="799.50"></text></g><g><title>ciMethod::ciMethod (127 samples, 0.01%)</title><rect x="1.8637%" y="741" width="0.0133%" height="15" fill="rgb(221,78,26)" fg:x="17817" fg:w="127"/><text x="2.1137%" y="751.50"></text></g><g><title>ciSignature::ciSignature (115 samples, 0.01%)</title><rect x="1.8650%" y="725" width="0.0120%" height="15" fill="rgb(250,127,30)" fg:x="17829" fg:w="115"/><text x="2.1150%" y="735.50"></text></g><g><title>ciEnv::get_method_from_handle (149 samples, 0.02%)</title><rect x="1.8629%" y="789" width="0.0156%" height="15" fill="rgb(230,49,44)" fg:x="17809" fg:w="149"/><text x="2.1129%" y="799.50"></text></g><g><title>ciObjectFactory::get_metadata (144 samples, 0.02%)</title><rect x="1.8634%" y="773" width="0.0151%" height="15" fill="rgb(229,67,23)" fg:x="17814" fg:w="144"/><text x="2.1134%" y="783.50"></text></g><g><title>ciObjectFactory::create_new_metadata (143 samples, 0.01%)</title><rect x="1.8635%" y="757" width="0.0150%" height="15" fill="rgb(249,83,47)" fg:x="17815" fg:w="143"/><text x="2.1135%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (12,314 samples, 1.29%)</title><rect x="0.5952%" y="805" width="1.2881%" height="15" fill="rgb(215,43,3)" fg:x="5690" fg:w="12314"/><text x="0.8452%" y="815.50"></text></g><g><title>finish_task_switch.isra.0 (97 samples, 0.01%)</title><rect x="1.8965%" y="533" width="0.0101%" height="15" fill="rgb(238,154,13)" fg:x="18130" fg:w="97"/><text x="2.1465%" y="543.50"></text></g><g><title>futex_wait_queue_me (130 samples, 0.01%)</title><rect x="1.8944%" y="581" width="0.0136%" height="15" fill="rgb(219,56,2)" fg:x="18110" fg:w="130"/><text x="2.1444%" y="591.50"></text></g><g><title>schedule (123 samples, 0.01%)</title><rect x="1.8951%" y="565" width="0.0129%" height="15" fill="rgb(233,0,4)" fg:x="18117" fg:w="123"/><text x="2.1451%" y="575.50"></text></g><g><title>__schedule (123 samples, 0.01%)</title><rect x="1.8951%" y="549" width="0.0129%" height="15" fill="rgb(235,30,7)" fg:x="18117" fg:w="123"/><text x="2.1451%" y="559.50"></text></g><g><title>__x64_sys_futex (143 samples, 0.01%)</title><rect x="1.8941%" y="629" width="0.0150%" height="15" fill="rgb(250,79,13)" fg:x="18107" fg:w="143"/><text x="2.1441%" y="639.50"></text></g><g><title>do_futex (142 samples, 0.01%)</title><rect x="1.8942%" y="613" width="0.0149%" height="15" fill="rgb(211,146,34)" fg:x="18108" fg:w="142"/><text x="2.1442%" y="623.50"></text></g><g><title>futex_wait (142 samples, 0.01%)</title><rect x="1.8942%" y="597" width="0.0149%" height="15" fill="rgb(228,22,38)" fg:x="18108" fg:w="142"/><text x="2.1442%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (151 samples, 0.02%)</title><rect x="1.8940%" y="661" width="0.0158%" height="15" fill="rgb(235,168,5)" fg:x="18106" fg:w="151"/><text x="2.1440%" y="671.50"></text></g><g><title>do_syscall_64 (150 samples, 0.02%)</title><rect x="1.8941%" y="645" width="0.0157%" height="15" fill="rgb(221,155,16)" fg:x="18107" fg:w="150"/><text x="2.1441%" y="655.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (155 samples, 0.02%)</title><rect x="1.8937%" y="709" width="0.0162%" height="15" fill="rgb(215,215,53)" fg:x="18103" fg:w="155"/><text x="2.1437%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (155 samples, 0.02%)</title><rect x="1.8937%" y="693" width="0.0162%" height="15" fill="rgb(223,4,10)" fg:x="18103" fg:w="155"/><text x="2.1437%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (155 samples, 0.02%)</title><rect x="1.8937%" y="677" width="0.0162%" height="15" fill="rgb(234,103,6)" fg:x="18103" fg:w="155"/><text x="2.1437%" y="687.50"></text></g><g><title>___pthread_cond_timedwait64 (161 samples, 0.02%)</title><rect x="1.8933%" y="741" width="0.0168%" height="15" fill="rgb(227,97,0)" fg:x="18100" fg:w="161"/><text x="2.1433%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (159 samples, 0.02%)</title><rect x="1.8935%" y="725" width="0.0166%" height="15" fill="rgb(234,150,53)" fg:x="18102" fg:w="159"/><text x="2.1435%" y="735.50"></text></g><g><title>Monitor::wait (179 samples, 0.02%)</title><rect x="1.8924%" y="789" width="0.0187%" height="15" fill="rgb(228,201,54)" fg:x="18091" fg:w="179"/><text x="2.1424%" y="799.50"></text></g><g><title>Monitor::IWait (173 samples, 0.02%)</title><rect x="1.8930%" y="773" width="0.0181%" height="15" fill="rgb(222,22,37)" fg:x="18097" fg:w="173"/><text x="2.1430%" y="783.50"></text></g><g><title>os::PlatformEvent::park (172 samples, 0.02%)</title><rect x="1.8931%" y="757" width="0.0180%" height="15" fill="rgb(237,53,32)" fg:x="18098" fg:w="172"/><text x="2.1431%" y="767.50"></text></g><g><title>CompileQueue::get (288 samples, 0.03%)</title><rect x="1.8900%" y="805" width="0.0301%" height="15" fill="rgb(233,25,53)" fg:x="18068" fg:w="288"/><text x="2.1400%" y="815.50"></text></g><g><title>Thread::call_run (12,692 samples, 1.33%)</title><rect x="0.5942%" y="853" width="1.3276%" height="15" fill="rgb(210,40,34)" fg:x="5680" fg:w="12692"/><text x="0.8442%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (12,690 samples, 1.33%)</title><rect x="0.5944%" y="837" width="1.3274%" height="15" fill="rgb(241,220,44)" fg:x="5682" fg:w="12690"/><text x="0.8444%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (12,690 samples, 1.33%)</title><rect x="0.5944%" y="821" width="1.3274%" height="15" fill="rgb(235,28,35)" fg:x="5682" fg:w="12690"/><text x="0.8444%" y="831.50"></text></g><g><title>__clone3 (12,718 samples, 1.33%)</title><rect x="0.5915%" y="901" width="1.3304%" height="15" fill="rgb(210,56,17)" fg:x="5655" fg:w="12718"/><text x="0.8415%" y="911.50"></text></g><g><title>start_thread (12,704 samples, 1.33%)</title><rect x="0.5930%" y="885" width="1.3289%" height="15" fill="rgb(224,130,29)" fg:x="5669" fg:w="12704"/><text x="0.8430%" y="895.50"></text></g><g><title>thread_native_entry (12,703 samples, 1.33%)</title><rect x="0.5931%" y="869" width="1.3288%" height="15" fill="rgb(235,212,8)" fg:x="5670" fg:w="12703"/><text x="0.8431%" y="879.50"></text></g><g><title>C1_CompilerThre (14,798 samples, 1.55%)</title><rect x="0.3809%" y="917" width="1.5479%" height="15" fill="rgb(223,33,50)" fg:x="3641" fg:w="14798"/><text x="0.6309%" y="927.50"></text></g><g><title>ProjNode::pinned (142 samples, 0.01%)</title><rect x="1.9570%" y="885" width="0.0149%" height="15" fill="rgb(219,149,13)" fg:x="18709" fg:w="142"/><text x="2.2070%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (147 samples, 0.02%)</title><rect x="1.9566%" y="901" width="0.0154%" height="15" fill="rgb(250,156,29)" fg:x="18705" fg:w="147"/><text x="2.2066%" y="911.50"></text></g><g><title>_dl_update_slotinfo (206 samples, 0.02%)</title><rect x="2.3044%" y="885" width="0.0215%" height="15" fill="rgb(216,193,19)" fg:x="22030" fg:w="206"/><text x="2.5544%" y="895.50"></text></g><g><title>update_get_addr (99 samples, 0.01%)</title><rect x="2.3952%" y="885" width="0.0104%" height="15" fill="rgb(216,135,14)" fg:x="22898" fg:w="99"/><text x="2.6452%" y="895.50"></text></g><g><title>[anon] (4,097 samples, 0.43%)</title><rect x="1.9772%" y="901" width="0.4286%" height="15" fill="rgb(241,47,5)" fg:x="18902" fg:w="4097"/><text x="2.2272%" y="911.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (100 samples, 0.01%)</title><rect x="2.4185%" y="645" width="0.0105%" height="15" fill="rgb(233,42,35)" fg:x="23120" fg:w="100"/><text x="2.6685%" y="655.50"></text></g><g><title>ciTypeFlow::df_flow_types (116 samples, 0.01%)</title><rect x="2.4169%" y="677" width="0.0121%" height="15" fill="rgb(231,13,6)" fg:x="23105" fg:w="116"/><text x="2.6669%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (115 samples, 0.01%)</title><rect x="2.4170%" y="661" width="0.0120%" height="15" fill="rgb(207,181,40)" fg:x="23106" fg:w="115"/><text x="2.6670%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (122 samples, 0.01%)</title><rect x="2.4166%" y="741" width="0.0128%" height="15" fill="rgb(254,173,49)" fg:x="23102" fg:w="122"/><text x="2.6666%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (120 samples, 0.01%)</title><rect x="2.4168%" y="725" width="0.0126%" height="15" fill="rgb(221,1,38)" fg:x="23104" fg:w="120"/><text x="2.6668%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (120 samples, 0.01%)</title><rect x="2.4168%" y="709" width="0.0126%" height="15" fill="rgb(206,124,46)" fg:x="23104" fg:w="120"/><text x="2.6668%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (120 samples, 0.01%)</title><rect x="2.4168%" y="693" width="0.0126%" height="15" fill="rgb(249,21,11)" fg:x="23104" fg:w="120"/><text x="2.6668%" y="703.50"></text></g><g><title>Compile::call_generator (172 samples, 0.02%)</title><rect x="2.4118%" y="757" width="0.0180%" height="15" fill="rgb(222,201,40)" fg:x="23056" fg:w="172"/><text x="2.6618%" y="767.50"></text></g><g><title>ciTypeFlow::df_flow_types (102 samples, 0.01%)</title><rect x="2.4405%" y="581" width="0.0107%" height="15" fill="rgb(235,61,29)" fg:x="23331" fg:w="102"/><text x="2.6905%" y="591.50"></text></g><g><title>ciTypeFlow::do_flow (116 samples, 0.01%)</title><rect x="2.4399%" y="613" width="0.0121%" height="15" fill="rgb(219,207,3)" fg:x="23325" fg:w="116"/><text x="2.6899%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (116 samples, 0.01%)</title><rect x="2.4399%" y="597" width="0.0121%" height="15" fill="rgb(222,56,46)" fg:x="23325" fg:w="116"/><text x="2.6899%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (145 samples, 0.02%)</title><rect x="2.4372%" y="645" width="0.0152%" height="15" fill="rgb(239,76,54)" fg:x="23299" fg:w="145"/><text x="2.6872%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (124 samples, 0.01%)</title><rect x="2.4394%" y="629" width="0.0130%" height="15" fill="rgb(231,124,27)" fg:x="23320" fg:w="124"/><text x="2.6894%" y="639.50"></text></g><g><title>Compile::call_generator (169 samples, 0.02%)</title><rect x="2.4354%" y="661" width="0.0177%" height="15" fill="rgb(249,195,6)" fg:x="23282" fg:w="169"/><text x="2.6854%" y="671.50"></text></g><g><title>Parse::do_call (175 samples, 0.02%)</title><rect x="2.4930%" y="485" width="0.0183%" height="15" fill="rgb(237,174,47)" fg:x="23833" fg:w="175"/><text x="2.7430%" y="495.50"></text></g><g><title>Parse::do_one_block (340 samples, 0.04%)</title><rect x="2.4883%" y="517" width="0.0356%" height="15" fill="rgb(206,201,31)" fg:x="23788" fg:w="340"/><text x="2.7383%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (333 samples, 0.03%)</title><rect x="2.4891%" y="501" width="0.0348%" height="15" fill="rgb(231,57,52)" fg:x="23795" fg:w="333"/><text x="2.7391%" y="511.50"></text></g><g><title>Parse::do_all_blocks (352 samples, 0.04%)</title><rect x="2.4875%" y="533" width="0.0368%" height="15" fill="rgb(248,177,22)" fg:x="23780" fg:w="352"/><text x="2.7375%" y="543.50"></text></g><g><title>ParseGenerator::generate (392 samples, 0.04%)</title><rect x="2.4853%" y="565" width="0.0410%" height="15" fill="rgb(215,211,37)" fg:x="23759" fg:w="392"/><text x="2.7353%" y="575.50"></text></g><g><title>Parse::Parse (391 samples, 0.04%)</title><rect x="2.4854%" y="549" width="0.0409%" height="15" fill="rgb(241,128,51)" fg:x="23760" fg:w="391"/><text x="2.7354%" y="559.50"></text></g><g><title>Parse::do_call (611 samples, 0.06%)</title><rect x="2.4703%" y="581" width="0.0639%" height="15" fill="rgb(227,165,31)" fg:x="23616" fg:w="611"/><text x="2.7203%" y="591.50"></text></g><g><title>Parse::do_field_access (107 samples, 0.01%)</title><rect x="2.5353%" y="581" width="0.0112%" height="15" fill="rgb(228,167,24)" fg:x="24237" fg:w="107"/><text x="2.7853%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (861 samples, 0.09%)</title><rect x="2.4664%" y="597" width="0.0901%" height="15" fill="rgb(228,143,12)" fg:x="23578" fg:w="861"/><text x="2.7164%" y="607.50"></text></g><g><title>Parse::do_one_block (875 samples, 0.09%)</title><rect x="2.4650%" y="613" width="0.0915%" height="15" fill="rgb(249,149,8)" fg:x="23565" fg:w="875"/><text x="2.7150%" y="623.50"></text></g><g><title>Parse::do_all_blocks (890 samples, 0.09%)</title><rect x="2.4648%" y="629" width="0.0931%" height="15" fill="rgb(243,35,44)" fg:x="23563" fg:w="890"/><text x="2.7148%" y="639.50"></text></g><g><title>Parse::Parse (977 samples, 0.10%)</title><rect x="2.4601%" y="645" width="0.1022%" height="15" fill="rgb(246,89,9)" fg:x="23518" fg:w="977"/><text x="2.7101%" y="655.50"></text></g><g><title>ParseGenerator::generate (978 samples, 0.10%)</title><rect x="2.4601%" y="661" width="0.1023%" height="15" fill="rgb(233,213,13)" fg:x="23518" fg:w="978"/><text x="2.7101%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (124 samples, 0.01%)</title><rect x="2.5625%" y="661" width="0.0130%" height="15" fill="rgb(233,141,41)" fg:x="24497" fg:w="124"/><text x="2.8125%" y="671.50"></text></g><g><title>Parse::do_call (1,371 samples, 0.14%)</title><rect x="2.4354%" y="677" width="0.1434%" height="15" fill="rgb(239,167,4)" fg:x="23282" fg:w="1371"/><text x="2.6854%" y="687.50"></text></g><g><title>Parse::do_field_access (136 samples, 0.01%)</title><rect x="2.5799%" y="677" width="0.0142%" height="15" fill="rgb(209,217,16)" fg:x="24663" fg:w="136"/><text x="2.8299%" y="687.50"></text></g><g><title>Parse::do_one_block (1,608 samples, 0.17%)</title><rect x="2.4316%" y="709" width="0.1682%" height="15" fill="rgb(219,88,35)" fg:x="23246" fg:w="1608"/><text x="2.6816%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (1,603 samples, 0.17%)</title><rect x="2.4322%" y="693" width="0.1677%" height="15" fill="rgb(220,193,23)" fg:x="23251" fg:w="1603"/><text x="2.6822%" y="703.50"></text></g><g><title>Parse::do_all_blocks (1,609 samples, 0.17%)</title><rect x="2.4316%" y="725" width="0.1683%" height="15" fill="rgb(230,90,52)" fg:x="23246" fg:w="1609"/><text x="2.6816%" y="735.50"></text></g><g><title>ParseGenerator::generate (1,622 samples, 0.17%)</title><rect x="2.4305%" y="757" width="0.1697%" height="15" fill="rgb(252,106,19)" fg:x="23235" fg:w="1622"/><text x="2.6805%" y="767.50"></text></g><g><title>Parse::Parse (1,622 samples, 0.17%)</title><rect x="2.4305%" y="741" width="0.1697%" height="15" fill="rgb(206,74,20)" fg:x="23235" fg:w="1622"/><text x="2.6805%" y="751.50"></text></g><g><title>Parse::do_call (127 samples, 0.01%)</title><rect x="2.6124%" y="565" width="0.0133%" height="15" fill="rgb(230,138,44)" fg:x="24974" fg:w="127"/><text x="2.8624%" y="575.50"></text></g><g><title>Parse::do_one_block (189 samples, 0.02%)</title><rect x="2.6102%" y="597" width="0.0198%" height="15" fill="rgb(235,182,43)" fg:x="24953" fg:w="189"/><text x="2.8602%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (186 samples, 0.02%)</title><rect x="2.6105%" y="581" width="0.0195%" height="15" fill="rgb(242,16,51)" fg:x="24956" fg:w="186"/><text x="2.8605%" y="591.50"></text></g><g><title>Parse::do_all_blocks (192 samples, 0.02%)</title><rect x="2.6101%" y="613" width="0.0201%" height="15" fill="rgb(248,9,4)" fg:x="24952" fg:w="192"/><text x="2.8601%" y="623.50"></text></g><g><title>Parse::Parse (219 samples, 0.02%)</title><rect x="2.6081%" y="629" width="0.0229%" height="15" fill="rgb(210,31,22)" fg:x="24933" fg:w="219"/><text x="2.8581%" y="639.50"></text></g><g><title>ParseGenerator::generate (221 samples, 0.02%)</title><rect x="2.6080%" y="645" width="0.0231%" height="15" fill="rgb(239,54,39)" fg:x="24932" fg:w="221"/><text x="2.8580%" y="655.50"></text></g><g><title>Parse::do_call (326 samples, 0.03%)</title><rect x="2.6015%" y="661" width="0.0341%" height="15" fill="rgb(230,99,41)" fg:x="24870" fg:w="326"/><text x="2.8515%" y="671.50"></text></g><g><title>Parse::do_one_block (395 samples, 0.04%)</title><rect x="2.6006%" y="693" width="0.0413%" height="15" fill="rgb(253,106,12)" fg:x="24861" fg:w="395"/><text x="2.8506%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (394 samples, 0.04%)</title><rect x="2.6007%" y="677" width="0.0412%" height="15" fill="rgb(213,46,41)" fg:x="24862" fg:w="394"/><text x="2.8507%" y="687.50"></text></g><g><title>Parse::do_all_blocks (398 samples, 0.04%)</title><rect x="2.6005%" y="709" width="0.0416%" height="15" fill="rgb(215,133,35)" fg:x="24860" fg:w="398"/><text x="2.8505%" y="719.50"></text></g><g><title>ParseGenerator::generate (404 samples, 0.04%)</title><rect x="2.6003%" y="741" width="0.0423%" height="15" fill="rgb(213,28,5)" fg:x="24858" fg:w="404"/><text x="2.8503%" y="751.50"></text></g><g><title>Parse::Parse (404 samples, 0.04%)</title><rect x="2.6003%" y="725" width="0.0423%" height="15" fill="rgb(215,77,49)" fg:x="24858" fg:w="404"/><text x="2.8503%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (487 samples, 0.05%)</title><rect x="2.6001%" y="757" width="0.0509%" height="15" fill="rgb(248,100,22)" fg:x="24857" fg:w="487"/><text x="2.8501%" y="767.50"></text></g><g><title>Parse::do_call (2,304 samples, 0.24%)</title><rect x="2.4118%" y="773" width="0.2410%" height="15" fill="rgb(208,67,9)" fg:x="23056" fg:w="2304"/><text x="2.6618%" y="783.50"></text></g><g><title>Parse::do_all_blocks (2,321 samples, 0.24%)</title><rect x="2.4117%" y="821" width="0.2428%" height="15" fill="rgb(219,133,21)" fg:x="23055" fg:w="2321"/><text x="2.6617%" y="831.50"></text></g><g><title>Parse::do_one_block (2,321 samples, 0.24%)</title><rect x="2.4117%" y="805" width="0.2428%" height="15" fill="rgb(246,46,29)" fg:x="23055" fg:w="2321"/><text x="2.6617%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (2,321 samples, 0.24%)</title><rect x="2.4117%" y="789" width="0.2428%" height="15" fill="rgb(246,185,52)" fg:x="23055" fg:w="2321"/><text x="2.6617%" y="799.50"></text></g><g><title>C2Compiler::compile_method (2,353 samples, 0.25%)</title><rect x="2.4085%" y="885" width="0.2461%" height="15" fill="rgb(252,136,11)" fg:x="23025" fg:w="2353"/><text x="2.6585%" y="895.50"></text></g><g><title>Compile::Compile (2,353 samples, 0.25%)</title><rect x="2.4085%" y="869" width="0.2461%" height="15" fill="rgb(219,138,53)" fg:x="23025" fg:w="2353"/><text x="2.6585%" y="879.50"></text></g><g><title>ParseGenerator::generate (2,323 samples, 0.24%)</title><rect x="2.4117%" y="853" width="0.2430%" height="15" fill="rgb(211,51,23)" fg:x="23055" fg:w="2323"/><text x="2.6617%" y="863.50"></text></g><g><title>Parse::Parse (2,323 samples, 0.24%)</title><rect x="2.4117%" y="837" width="0.2430%" height="15" fill="rgb(247,221,28)" fg:x="23055" fg:w="2323"/><text x="2.6617%" y="847.50"></text></g><g><title>PhaseCFG::schedule_local (226 samples, 0.02%)</title><rect x="2.6741%" y="837" width="0.0236%" height="15" fill="rgb(251,222,45)" fg:x="25564" fg:w="226"/><text x="2.9241%" y="847.50"></text></g><g><title>PhaseCFG::sched_call (226 samples, 0.02%)</title><rect x="2.6741%" y="821" width="0.0236%" height="15" fill="rgb(217,162,53)" fg:x="25564" fg:w="226"/><text x="2.9241%" y="831.50"></text></g><g><title>PhaseCFG::do_global_code_motion (297 samples, 0.03%)</title><rect x="2.6676%" y="869" width="0.0311%" height="15" fill="rgb(229,93,14)" fg:x="25502" fg:w="297"/><text x="2.9176%" y="879.50"></text></g><g><title>PhaseCFG::global_code_motion (297 samples, 0.03%)</title><rect x="2.6676%" y="853" width="0.0311%" height="15" fill="rgb(209,67,49)" fg:x="25502" fg:w="297"/><text x="2.9176%" y="863.50"></text></g><g><title>Compile::Code_Gen (512 samples, 0.05%)</title><rect x="2.6549%" y="885" width="0.0536%" height="15" fill="rgb(213,87,29)" fg:x="25380" fg:w="512"/><text x="2.9049%" y="895.50"></text></g><g><title>OopFlow::build_oop_map (150 samples, 0.02%)</title><rect x="2.7803%" y="805" width="0.0157%" height="15" fill="rgb(205,151,52)" fg:x="26579" fg:w="150"/><text x="3.0303%" y="815.50"></text></g><g><title>OopFlow::compute_reach (252 samples, 0.03%)</title><rect x="2.7698%" y="821" width="0.0264%" height="15" fill="rgb(253,215,39)" fg:x="26479" fg:w="252"/><text x="3.0198%" y="831.50"></text></g><g><title>__memmove_sse2_unaligned_erms (96 samples, 0.01%)</title><rect x="2.7984%" y="821" width="0.0100%" height="15" fill="rgb(221,220,41)" fg:x="26752" fg:w="96"/><text x="3.0484%" y="831.50"></text></g><g><title>Compile::BuildOopMaps (939 samples, 0.10%)</title><rect x="2.7104%" y="837" width="0.0982%" height="15" fill="rgb(218,133,21)" fg:x="25911" fg:w="939"/><text x="2.9604%" y="847.50"></text></g><g><title>Compile::scratch_emit_size (194 samples, 0.02%)</title><rect x="2.8345%" y="805" width="0.0203%" height="15" fill="rgb(221,193,43)" fg:x="27097" fg:w="194"/><text x="3.0845%" y="815.50"></text></g><g><title>Compile::shorten_branches (402 samples, 0.04%)</title><rect x="2.8162%" y="821" width="0.0421%" height="15" fill="rgb(240,128,52)" fg:x="26922" fg:w="402"/><text x="3.0662%" y="831.50"></text></g><g><title>Compile::init_buffer (476 samples, 0.05%)</title><rect x="2.8086%" y="837" width="0.0498%" height="15" fill="rgb(253,114,12)" fg:x="26850" fg:w="476"/><text x="3.0586%" y="847.50"></text></g><g><title>Compile::Output (1,430 samples, 0.15%)</title><rect x="2.7089%" y="853" width="0.1496%" height="15" fill="rgb(215,223,47)" fg:x="25897" fg:w="1430"/><text x="2.9589%" y="863.50"></text></g><g><title>Compile::Process_OopMap_Node (289 samples, 0.03%)</title><rect x="2.8801%" y="837" width="0.0302%" height="15" fill="rgb(248,225,23)" fg:x="27533" fg:w="289"/><text x="3.1301%" y="847.50"></text></g><g><title>Compile::fill_buffer (718 samples, 0.08%)</title><rect x="2.8585%" y="853" width="0.0751%" height="15" fill="rgb(250,108,0)" fg:x="27327" fg:w="718"/><text x="3.1085%" y="863.50"></text></g><g><title>Matcher::find_shared (460 samples, 0.05%)</title><rect x="2.9448%" y="837" width="0.0481%" height="15" fill="rgb(228,208,7)" fg:x="28152" fg:w="460"/><text x="3.1948%" y="847.50"></text></g><g><title>Arena::contains (725 samples, 0.08%)</title><rect x="3.0430%" y="821" width="0.0758%" height="15" fill="rgb(244,45,10)" fg:x="29091" fg:w="725"/><text x="3.2930%" y="831.50"></text></g><g><title>Matcher::match_tree (159 samples, 0.02%)</title><rect x="3.1267%" y="805" width="0.0166%" height="15" fill="rgb(207,125,25)" fg:x="29891" fg:w="159"/><text x="3.3767%" y="815.50"></text></g><g><title>Matcher::match_sfpt (201 samples, 0.02%)</title><rect x="3.1240%" y="821" width="0.0210%" height="15" fill="rgb(210,195,18)" fg:x="29865" fg:w="201"/><text x="3.3740%" y="831.50"></text></g><g><title>Matcher::Label_Root (167 samples, 0.02%)</title><rect x="3.1942%" y="773" width="0.0175%" height="15" fill="rgb(249,80,12)" fg:x="30536" fg:w="167"/><text x="3.4442%" y="783.50"></text></g><g><title>Matcher::Label_Root (352 samples, 0.04%)</title><rect x="3.1840%" y="789" width="0.0368%" height="15" fill="rgb(221,65,9)" fg:x="30439" fg:w="352"/><text x="3.4340%" y="799.50"></text></g><g><title>Matcher::Label_Root (556 samples, 0.06%)</title><rect x="3.1731%" y="805" width="0.0582%" height="15" fill="rgb(235,49,36)" fg:x="30334" fg:w="556"/><text x="3.4231%" y="815.50"></text></g><g><title>Matcher::ReduceInst (133 samples, 0.01%)</title><rect x="3.2375%" y="773" width="0.0139%" height="15" fill="rgb(225,32,20)" fg:x="30950" fg:w="133"/><text x="3.4875%" y="783.50"></text></g><g><title>Matcher::ReduceInst_Interior (222 samples, 0.02%)</title><rect x="3.2351%" y="789" width="0.0232%" height="15" fill="rgb(215,141,46)" fg:x="30927" fg:w="222"/><text x="3.4851%" y="799.50"></text></g><g><title>Matcher::ReduceInst (390 samples, 0.04%)</title><rect x="3.2312%" y="805" width="0.0408%" height="15" fill="rgb(250,160,47)" fg:x="30890" fg:w="390"/><text x="3.4812%" y="815.50"></text></g><g><title>Matcher::match_tree (1,232 samples, 0.13%)</title><rect x="3.1450%" y="821" width="0.1289%" height="15" fill="rgb(216,222,40)" fg:x="30066" fg:w="1232"/><text x="3.3950%" y="831.50"></text></g><g><title>Node::clone (110 samples, 0.01%)</title><rect x="3.2743%" y="821" width="0.0115%" height="15" fill="rgb(234,217,39)" fg:x="31302" fg:w="110"/><text x="3.5243%" y="831.50"></text></g><g><title>Matcher::xform (2,843 samples, 0.30%)</title><rect x="2.9937%" y="837" width="0.2974%" height="15" fill="rgb(207,178,40)" fg:x="28619" fg:w="2843"/><text x="3.2437%" y="847.50"></text></g><g><title>Matcher::match (3,415 samples, 0.36%)</title><rect x="2.9345%" y="853" width="0.3572%" height="15" fill="rgb(221,136,13)" fg:x="28053" fg:w="3415"/><text x="3.1845%" y="863.50"></text></g><g><title>PhaseBlockLayout::find_edges (98 samples, 0.01%)</title><rect x="3.2920%" y="837" width="0.0103%" height="15" fill="rgb(249,199,10)" fg:x="31471" fg:w="98"/><text x="3.5420%" y="847.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (218 samples, 0.02%)</title><rect x="3.2917%" y="853" width="0.0228%" height="15" fill="rgb(249,222,13)" fg:x="31468" fg:w="218"/><text x="3.5417%" y="863.50"></text></g><g><title>PhaseCFG::PhaseCFG (169 samples, 0.02%)</title><rect x="3.3145%" y="853" width="0.0177%" height="15" fill="rgb(244,185,38)" fg:x="31686" fg:w="169"/><text x="3.5645%" y="863.50"></text></g><g><title>PhaseCFG::build_cfg (162 samples, 0.02%)</title><rect x="3.3152%" y="837" width="0.0169%" height="15" fill="rgb(236,202,9)" fg:x="31693" fg:w="162"/><text x="3.5652%" y="847.50"></text></g><g><title>PhaseCFG::build_dominator_tree (106 samples, 0.01%)</title><rect x="3.3323%" y="837" width="0.0111%" height="15" fill="rgb(250,229,37)" fg:x="31856" fg:w="106"/><text x="3.5823%" y="847.50"></text></g><g><title>Node_Backward_Iterator::next (336 samples, 0.04%)</title><rect x="3.4293%" y="805" width="0.0351%" height="15" fill="rgb(206,174,23)" fg:x="32784" fg:w="336"/><text x="3.6793%" y="815.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (157 samples, 0.02%)</title><rect x="3.4645%" y="805" width="0.0164%" height="15" fill="rgb(211,33,43)" fg:x="33120" fg:w="157"/><text x="3.7145%" y="815.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (188 samples, 0.02%)</title><rect x="3.4809%" y="805" width="0.0197%" height="15" fill="rgb(245,58,50)" fg:x="33277" fg:w="188"/><text x="3.7309%" y="815.50"></text></g><g><title>PhaseCFG::schedule_late (917 samples, 0.10%)</title><rect x="3.4144%" y="821" width="0.0959%" height="15" fill="rgb(244,68,36)" fg:x="32641" fg:w="917"/><text x="3.6644%" y="831.50"></text></g><g><title>PhaseCFG::select (131 samples, 0.01%)</title><rect x="3.5560%" y="805" width="0.0137%" height="15" fill="rgb(232,229,15)" fg:x="33995" fg:w="131"/><text x="3.8060%" y="815.50"></text></g><g><title>PhaseCFG::schedule_local (710 samples, 0.07%)</title><rect x="3.5103%" y="821" width="0.0743%" height="15" fill="rgb(254,30,23)" fg:x="33558" fg:w="710"/><text x="3.7603%" y="831.50"></text></g><g><title>RegMask::Size (128 samples, 0.01%)</title><rect x="3.6236%" y="805" width="0.0134%" height="15" fill="rgb(235,160,14)" fg:x="34641" fg:w="128"/><text x="3.8736%" y="815.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (558 samples, 0.06%)</title><rect x="3.5893%" y="821" width="0.0584%" height="15" fill="rgb(212,155,44)" fg:x="34313" fg:w="558"/><text x="3.8393%" y="831.50"></text></g><g><title>PhaseChaitin::mark_ssa (125 samples, 0.01%)</title><rect x="3.6477%" y="821" width="0.0131%" height="15" fill="rgb(226,2,50)" fg:x="34871" fg:w="125"/><text x="3.8977%" y="831.50"></text></g><g><title>IndexSet::initialize (123 samples, 0.01%)</title><rect x="3.6686%" y="805" width="0.0129%" height="15" fill="rgb(234,177,6)" fg:x="35071" fg:w="123"/><text x="3.9186%" y="815.50"></text></g><g><title>PhaseIFG::init (240 samples, 0.03%)</title><rect x="3.6607%" y="821" width="0.0251%" height="15" fill="rgb(217,24,9)" fg:x="34996" fg:w="240"/><text x="3.9107%" y="831.50"></text></g><g><title>PhaseLive::add_livein (278 samples, 0.03%)</title><rect x="3.7266%" y="805" width="0.0291%" height="15" fill="rgb(220,13,46)" fg:x="35626" fg:w="278"/><text x="3.9766%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (112 samples, 0.01%)</title><rect x="3.7440%" y="789" width="0.0117%" height="15" fill="rgb(239,221,27)" fg:x="35792" fg:w="112"/><text x="3.9940%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (144 samples, 0.02%)</title><rect x="3.7942%" y="789" width="0.0151%" height="15" fill="rgb(222,198,25)" fg:x="36272" fg:w="144"/><text x="4.0442%" y="799.50"></text></g><g><title>PhaseLive::add_liveout (521 samples, 0.05%)</title><rect x="3.7557%" y="805" width="0.0545%" height="15" fill="rgb(211,99,13)" fg:x="35904" fg:w="521"/><text x="4.0057%" y="815.50"></text></g><g><title>PhaseLive::compute (1,189 samples, 0.12%)</title><rect x="3.6859%" y="821" width="0.1244%" height="15" fill="rgb(232,111,31)" fg:x="35237" fg:w="1189"/><text x="3.9359%" y="831.50"></text></g><g><title>PhaseCFG::global_code_motion (4,401 samples, 0.46%)</title><rect x="3.3514%" y="837" width="0.4604%" height="15" fill="rgb(245,82,37)" fg:x="32039" fg:w="4401"/><text x="3.6014%" y="847.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,586 samples, 0.48%)</title><rect x="3.3322%" y="853" width="0.4797%" height="15" fill="rgb(227,149,46)" fg:x="31855" fg:w="4586"/><text x="3.5822%" y="863.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (112 samples, 0.01%)</title><rect x="3.8150%" y="853" width="0.0117%" height="15" fill="rgb(218,36,50)" fg:x="36471" fg:w="112"/><text x="4.0650%" y="863.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,416 samples, 0.15%)</title><rect x="3.8434%" y="837" width="0.1481%" height="15" fill="rgb(226,80,48)" fg:x="36742" fg:w="1416"/><text x="4.0934%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (370 samples, 0.04%)</title><rect x="4.0705%" y="821" width="0.0387%" height="15" fill="rgb(238,224,15)" fg:x="38913" fg:w="370"/><text x="4.3205%" y="831.50"></text></g><g><title>PhaseChaitin::bias_color (191 samples, 0.02%)</title><rect x="4.1092%" y="821" width="0.0200%" height="15" fill="rgb(241,136,10)" fg:x="39283" fg:w="191"/><text x="4.3592%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (434 samples, 0.05%)</title><rect x="4.1971%" y="805" width="0.0454%" height="15" fill="rgb(208,32,45)" fg:x="40124" fg:w="434"/><text x="4.4471%" y="815.50"></text></g><g><title>PhaseIFG::re_insert (1,093 samples, 0.11%)</title><rect x="4.1301%" y="821" width="0.1143%" height="15" fill="rgb(207,135,9)" fg:x="39483" fg:w="1093"/><text x="4.3801%" y="831.50"></text></g><g><title>RegMask::clear_to_sets (212 samples, 0.02%)</title><rect x="4.2444%" y="821" width="0.0222%" height="15" fill="rgb(206,86,44)" fg:x="40576" fg:w="212"/><text x="4.4944%" y="831.50"></text></g><g><title>PhaseChaitin::Select (2,639 samples, 0.28%)</title><rect x="3.9915%" y="837" width="0.2761%" height="15" fill="rgb(245,177,15)" fg:x="38158" fg:w="2639"/><text x="4.2415%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (418 samples, 0.04%)</title><rect x="4.3031%" y="821" width="0.0437%" height="15" fill="rgb(206,64,50)" fg:x="41137" fg:w="418"/><text x="4.5531%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (499 samples, 0.05%)</title><rect x="4.4131%" y="805" width="0.0522%" height="15" fill="rgb(234,36,40)" fg:x="42189" fg:w="499"/><text x="4.6631%" y="815.50"></text></g><g><title>PhaseChaitin::Simplify (1,894 samples, 0.20%)</title><rect x="4.2675%" y="837" width="0.1981%" height="15" fill="rgb(213,64,8)" fg:x="40797" fg:w="1894"/><text x="4.5175%" y="847.50"></text></g><g><title>PhaseIFG::remove_node (1,136 samples, 0.12%)</title><rect x="4.3468%" y="821" width="0.1188%" height="15" fill="rgb(210,75,36)" fg:x="41555" fg:w="1136"/><text x="4.5968%" y="831.50"></text></g><g><title>MachNode::rematerialize (214 samples, 0.02%)</title><rect x="4.8294%" y="821" width="0.0224%" height="15" fill="rgb(229,88,21)" fg:x="46168" fg:w="214"/><text x="5.0794%" y="831.50"></text></g><g><title>Node::rematerialize (208 samples, 0.02%)</title><rect x="4.8568%" y="821" width="0.0218%" height="15" fill="rgb(252,204,47)" fg:x="46430" fg:w="208"/><text x="5.1068%" y="831.50"></text></g><g><title>PhaseChaitin::split_USE (197 samples, 0.02%)</title><rect x="4.8966%" y="821" width="0.0206%" height="15" fill="rgb(208,77,27)" fg:x="46811" fg:w="197"/><text x="5.1466%" y="831.50"></text></g><g><title>PhaseChaitin::Split (4,427 samples, 0.46%)</title><rect x="4.4657%" y="837" width="0.4631%" height="15" fill="rgb(221,76,26)" fg:x="42691" fg:w="4427"/><text x="4.7157%" y="847.50"></text></g><g><title>IndexSet::IndexSet (348 samples, 0.04%)</title><rect x="5.0421%" y="821" width="0.0364%" height="15" fill="rgb(225,139,18)" fg:x="48202" fg:w="348"/><text x="5.2921%" y="831.50"></text></g><g><title>MachNode::rematerialize (128 samples, 0.01%)</title><rect x="5.1541%" y="805" width="0.0134%" height="15" fill="rgb(230,137,11)" fg:x="49272" fg:w="128"/><text x="5.4041%" y="815.50"></text></g><g><title>PhaseChaitin::raise_pressure (159 samples, 0.02%)</title><rect x="5.1688%" y="805" width="0.0166%" height="15" fill="rgb(212,28,1)" fg:x="49413" fg:w="159"/><text x="5.4188%" y="815.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (904 samples, 0.09%)</title><rect x="5.0918%" y="821" width="0.0946%" height="15" fill="rgb(248,164,17)" fg:x="48677" fg:w="904"/><text x="5.3418%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (195 samples, 0.02%)</title><rect x="5.2364%" y="805" width="0.0204%" height="15" fill="rgb(222,171,42)" fg:x="50059" fg:w="195"/><text x="5.4864%" y="815.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (646 samples, 0.07%)</title><rect x="5.1997%" y="821" width="0.0676%" height="15" fill="rgb(243,84,45)" fg:x="49708" fg:w="646"/><text x="5.4497%" y="831.50"></text></g><g><title>RegMask::is_UP (100 samples, 0.01%)</title><rect x="5.2568%" y="805" width="0.0105%" height="15" fill="rgb(252,49,23)" fg:x="50254" fg:w="100"/><text x="5.5068%" y="815.50"></text></g><g><title>IndexSet::alloc_block_containing (144 samples, 0.02%)</title><rect x="5.5212%" y="805" width="0.0151%" height="15" fill="rgb(215,19,7)" fg:x="52782" fg:w="144"/><text x="5.7712%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,079 samples, 0.11%)</title><rect x="5.5376%" y="805" width="0.1129%" height="15" fill="rgb(238,81,41)" fg:x="52939" fg:w="1079"/><text x="5.7876%" y="815.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,672 samples, 0.38%)</title><rect x="5.2672%" y="821" width="0.3841%" height="15" fill="rgb(210,199,37)" fg:x="50354" fg:w="3672"/><text x="5.5172%" y="831.50"></text></g><g><title>PhaseChaitin::lower_pressure (126 samples, 0.01%)</title><rect x="5.6513%" y="821" width="0.0132%" height="15" fill="rgb(244,192,49)" fg:x="54026" fg:w="126"/><text x="5.9013%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (249 samples, 0.03%)</title><rect x="5.7242%" y="805" width="0.0260%" height="15" fill="rgb(226,211,11)" fg:x="54722" fg:w="249"/><text x="5.9742%" y="815.50"></text></g><g><title>RegMask::Size (363 samples, 0.04%)</title><rect x="5.7502%" y="805" width="0.0380%" height="15" fill="rgb(236,162,54)" fg:x="54971" fg:w="363"/><text x="6.0002%" y="815.50"></text></g><g><title>RegMask::smear_to_sets (870 samples, 0.09%)</title><rect x="5.7882%" y="805" width="0.0910%" height="15" fill="rgb(220,229,9)" fg:x="55334" fg:w="870"/><text x="6.0382%" y="815.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,070 samples, 0.22%)</title><rect x="5.6645%" y="821" width="0.2165%" height="15" fill="rgb(250,87,22)" fg:x="54152" fg:w="2070"/><text x="5.9145%" y="831.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (9,172 samples, 0.96%)</title><rect x="4.9293%" y="837" width="0.9594%" height="15" fill="rgb(239,43,17)" fg:x="47123" fg:w="9172"/><text x="5.1793%" y="847.50"></text></g><g><title>PhaseChaitin::interfere_with_live (448 samples, 0.05%)</title><rect x="5.9089%" y="821" width="0.0469%" height="15" fill="rgb(231,177,25)" fg:x="56488" fg:w="448"/><text x="6.1589%" y="831.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (646 samples, 0.07%)</title><rect x="5.8887%" y="837" width="0.0676%" height="15" fill="rgb(219,179,1)" fg:x="56295" fg:w="646"/><text x="6.1387%" y="847.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (139 samples, 0.01%)</title><rect x="5.9563%" y="837" width="0.0145%" height="15" fill="rgb(238,219,53)" fg:x="56941" fg:w="139"/><text x="6.2063%" y="847.50"></text></g><g><title>PhaseChaitin::de_ssa (132 samples, 0.01%)</title><rect x="5.9753%" y="837" width="0.0138%" height="15" fill="rgb(232,167,36)" fg:x="57123" fg:w="132"/><text x="6.2253%" y="847.50"></text></g><g><title>MachCallJavaNode::in_RegMask (104 samples, 0.01%)</title><rect x="6.2175%" y="821" width="0.0109%" height="15" fill="rgb(244,19,51)" fg:x="59438" fg:w="104"/><text x="6.4675%" y="831.50"></text></g><g><title>RegMask::Size (1,370 samples, 0.14%)</title><rect x="6.2571%" y="821" width="0.1433%" height="15" fill="rgb(224,6,22)" fg:x="59817" fg:w="1370"/><text x="6.5071%" y="831.50"></text></g><g><title>RegMask::clear_to_sets (236 samples, 0.02%)</title><rect x="6.4004%" y="821" width="0.0247%" height="15" fill="rgb(224,145,5)" fg:x="61187" fg:w="236"/><text x="6.6504%" y="831.50"></text></g><g><title>RegMask::is_aligned_pairs (108 samples, 0.01%)</title><rect x="6.4251%" y="821" width="0.0113%" height="15" fill="rgb(234,130,49)" fg:x="61423" fg:w="108"/><text x="6.6751%" y="831.50"></text></g><g><title>RegMask::is_bound1 (183 samples, 0.02%)</title><rect x="6.4364%" y="821" width="0.0191%" height="15" fill="rgb(254,6,2)" fg:x="61531" fg:w="183"/><text x="6.6864%" y="831.50"></text></g><g><title>RegMask::is_bound_pair (105 samples, 0.01%)</title><rect x="6.4555%" y="821" width="0.0110%" height="15" fill="rgb(208,96,46)" fg:x="61714" fg:w="105"/><text x="6.7055%" y="831.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,632 samples, 0.48%)</title><rect x="5.9981%" y="837" width="0.4845%" height="15" fill="rgb(239,3,39)" fg:x="57341" fg:w="4632"/><text x="6.2481%" y="847.50"></text></g><g><title>PhaseChaitin::merge_multidefs (651 samples, 0.07%)</title><rect x="6.4827%" y="837" width="0.0681%" height="15" fill="rgb(233,210,1)" fg:x="61974" fg:w="651"/><text x="6.7327%" y="847.50"></text></g><g><title>PhaseChaitin::use_prior_register (121 samples, 0.01%)</title><rect x="7.0761%" y="805" width="0.0127%" height="15" fill="rgb(244,137,37)" fg:x="67646" fg:w="121"/><text x="7.3261%" y="815.50"></text></g><g><title>PhaseChaitin::elide_copy (2,912 samples, 0.30%)</title><rect x="6.7912%" y="821" width="0.3046%" height="15" fill="rgb(240,136,2)" fg:x="64923" fg:w="2912"/><text x="7.0412%" y="831.50"></text></g><g><title>[libc.so.6] (107 samples, 0.01%)</title><rect x="7.1032%" y="821" width="0.0112%" height="15" fill="rgb(239,18,37)" fg:x="67905" fg:w="107"/><text x="7.3532%" y="831.50"></text></g><g><title>find_lowest_bit (425 samples, 0.04%)</title><rect x="7.1148%" y="821" width="0.0445%" height="15" fill="rgb(218,185,22)" fg:x="68016" fg:w="425"/><text x="7.3648%" y="831.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,823 samples, 0.61%)</title><rect x="6.5508%" y="837" width="0.6091%" height="15" fill="rgb(225,218,4)" fg:x="62625" fg:w="5823"/><text x="6.8008%" y="847.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (260 samples, 0.03%)</title><rect x="7.1601%" y="837" width="0.0272%" height="15" fill="rgb(230,182,32)" fg:x="68449" fg:w="260"/><text x="7.4101%" y="847.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (213 samples, 0.02%)</title><rect x="7.1877%" y="821" width="0.0223%" height="15" fill="rgb(242,56,43)" fg:x="68713" fg:w="213"/><text x="7.4377%" y="831.50"></text></g><g><title>PhaseCoalesce::combine_these_two (97 samples, 0.01%)</title><rect x="7.1998%" y="805" width="0.0101%" height="15" fill="rgb(233,99,24)" fg:x="68829" fg:w="97"/><text x="7.4498%" y="815.50"></text></g><g><title>PhaseCFG::is_uncommon (163 samples, 0.02%)</title><rect x="7.2182%" y="805" width="0.0171%" height="15" fill="rgb(234,209,42)" fg:x="69005" fg:w="163"/><text x="7.4682%" y="815.50"></text></g><g><title>IndexSet::lrg_union (660 samples, 0.07%)</title><rect x="7.2415%" y="789" width="0.0690%" height="15" fill="rgb(227,7,12)" fg:x="69228" fg:w="660"/><text x="7.4915%" y="799.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (967 samples, 0.10%)</title><rect x="7.3149%" y="789" width="0.1012%" height="15" fill="rgb(245,203,43)" fg:x="69929" fg:w="967"/><text x="7.5649%" y="799.50"></text></g><g><title>PhaseIFG::effective_degree (237 samples, 0.02%)</title><rect x="7.4160%" y="789" width="0.0248%" height="15" fill="rgb(238,205,33)" fg:x="70896" fg:w="237"/><text x="7.6660%" y="799.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,989 samples, 0.21%)</title><rect x="7.2353%" y="805" width="0.2081%" height="15" fill="rgb(231,56,7)" fg:x="69168" fg:w="1989"/><text x="7.4853%" y="815.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (2,232 samples, 0.23%)</title><rect x="7.2100%" y="821" width="0.2335%" height="15" fill="rgb(244,186,29)" fg:x="68926" fg:w="2232"/><text x="7.4600%" y="831.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (2,450 samples, 0.26%)</title><rect x="7.1873%" y="837" width="0.2563%" height="15" fill="rgb(234,111,31)" fg:x="68709" fg:w="2450"/><text x="7.4373%" y="847.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,204 samples, 0.13%)</title><rect x="7.4436%" y="837" width="0.1259%" height="15" fill="rgb(241,149,10)" fg:x="71160" fg:w="1204"/><text x="7.6936%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (639 samples, 0.07%)</title><rect x="7.5027%" y="821" width="0.0668%" height="15" fill="rgb(249,206,44)" fg:x="71725" fg:w="639"/><text x="7.7527%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (502 samples, 0.05%)</title><rect x="7.6317%" y="821" width="0.0525%" height="15" fill="rgb(251,153,30)" fg:x="72958" fg:w="502"/><text x="7.8817%" y="831.50"></text></g><g><title>PhaseIFG::SquareUp (1,097 samples, 0.11%)</title><rect x="7.5696%" y="837" width="0.1148%" height="15" fill="rgb(239,152,38)" fg:x="72364" fg:w="1097"/><text x="7.8196%" y="847.50"></text></g><g><title>IndexSet::initialize (246 samples, 0.03%)</title><rect x="7.6984%" y="821" width="0.0257%" height="15" fill="rgb(249,139,47)" fg:x="73595" fg:w="246"/><text x="7.9484%" y="831.50"></text></g><g><title>PhaseIFG::init (471 samples, 0.05%)</title><rect x="7.6843%" y="837" width="0.0493%" height="15" fill="rgb(244,64,35)" fg:x="73461" fg:w="471"/><text x="7.9343%" y="847.50"></text></g><g><title>IndexSet::initialize (144 samples, 0.02%)</title><rect x="7.8966%" y="821" width="0.0151%" height="15" fill="rgb(216,46,15)" fg:x="75490" fg:w="144"/><text x="8.1466%" y="831.50"></text></g><g><title>IndexSet::alloc_block_containing (231 samples, 0.02%)</title><rect x="8.0072%" y="805" width="0.0242%" height="15" fill="rgb(250,74,19)" fg:x="76548" fg:w="231"/><text x="8.2572%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (419 samples, 0.04%)</title><rect x="8.0384%" y="805" width="0.0438%" height="15" fill="rgb(249,42,33)" fg:x="76846" fg:w="419"/><text x="8.2884%" y="815.50"></text></g><g><title>PhaseLive::add_liveout (1,664 samples, 0.17%)</title><rect x="7.9120%" y="821" width="0.1741%" height="15" fill="rgb(242,149,17)" fg:x="75637" fg:w="1664"/><text x="8.1620%" y="831.50"></text></g><g><title>PhaseLive::compute (3,391 samples, 0.35%)</title><rect x="7.7338%" y="837" width="0.3547%" height="15" fill="rgb(244,29,21)" fg:x="73934" fg:w="3391"/><text x="7.9838%" y="847.50"></text></g><g><title>PhaseChaitin::Register_Allocate (40,836 samples, 4.27%)</title><rect x="3.8291%" y="853" width="4.2716%" height="15" fill="rgb(220,130,37)" fg:x="36606" fg:w="40836"/><text x="4.0791%" y="863.50">Phase..</text></g><g><title>Compile::Code_Gen (51,622 samples, 5.40%)</title><rect x="2.7085%" y="869" width="5.3999%" height="15" fill="rgb(211,67,2)" fg:x="25893" fg:w="51622"/><text x="2.9585%" y="879.50">Compile..</text></g><g><title>Parse::do_one_block (101 samples, 0.01%)</title><rect x="8.1327%" y="245" width="0.0106%" height="15" fill="rgb(235,68,52)" fg:x="77747" fg:w="101"/><text x="8.3827%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (101 samples, 0.01%)</title><rect x="8.1327%" y="229" width="0.0106%" height="15" fill="rgb(246,142,3)" fg:x="77747" fg:w="101"/><text x="8.3827%" y="239.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.01%)</title><rect x="8.1326%" y="261" width="0.0108%" height="15" fill="rgb(241,25,7)" fg:x="77746" fg:w="103"/><text x="8.3826%" y="271.50"></text></g><g><title>Parse::Parse (125 samples, 0.01%)</title><rect x="8.1314%" y="277" width="0.0131%" height="15" fill="rgb(242,119,39)" fg:x="77735" fg:w="125"/><text x="8.3814%" y="287.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.01%)</title><rect x="8.1313%" y="293" width="0.0133%" height="15" fill="rgb(241,98,45)" fg:x="77734" fg:w="127"/><text x="8.3813%" y="303.50"></text></g><g><title>Parse::do_call (172 samples, 0.02%)</title><rect x="8.1271%" y="309" width="0.0180%" height="15" fill="rgb(254,28,30)" fg:x="77694" fg:w="172"/><text x="8.3771%" y="319.50"></text></g><g><title>Parse::do_one_block (243 samples, 0.03%)</title><rect x="8.1257%" y="341" width="0.0254%" height="15" fill="rgb(241,142,54)" fg:x="77680" fg:w="243"/><text x="8.3757%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (238 samples, 0.02%)</title><rect x="8.1262%" y="325" width="0.0249%" height="15" fill="rgb(222,85,15)" fg:x="77685" fg:w="238"/><text x="8.3762%" y="335.50"></text></g><g><title>Parse::do_all_blocks (248 samples, 0.03%)</title><rect x="8.1254%" y="357" width="0.0259%" height="15" fill="rgb(210,85,47)" fg:x="77678" fg:w="248"/><text x="8.3754%" y="367.50"></text></g><g><title>ParseGenerator::generate (272 samples, 0.03%)</title><rect x="8.1241%" y="389" width="0.0285%" height="15" fill="rgb(224,206,25)" fg:x="77665" fg:w="272"/><text x="8.3741%" y="399.50"></text></g><g><title>Parse::Parse (272 samples, 0.03%)</title><rect x="8.1241%" y="373" width="0.0285%" height="15" fill="rgb(243,201,19)" fg:x="77665" fg:w="272"/><text x="8.3741%" y="383.50"></text></g><g><title>Parse::do_call (370 samples, 0.04%)</title><rect x="8.1173%" y="405" width="0.0387%" height="15" fill="rgb(236,59,4)" fg:x="77600" fg:w="370"/><text x="8.3673%" y="415.50"></text></g><g><title>Parse::do_one_block (435 samples, 0.05%)</title><rect x="8.1167%" y="437" width="0.0455%" height="15" fill="rgb(254,179,45)" fg:x="77594" fg:w="435"/><text x="8.3667%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (434 samples, 0.05%)</title><rect x="8.1168%" y="421" width="0.0454%" height="15" fill="rgb(226,14,10)" fg:x="77595" fg:w="434"/><text x="8.3668%" y="431.50"></text></g><g><title>ParseGenerator::generate (443 samples, 0.05%)</title><rect x="8.1159%" y="485" width="0.0463%" height="15" fill="rgb(244,27,41)" fg:x="77587" fg:w="443"/><text x="8.3659%" y="495.50"></text></g><g><title>Parse::Parse (443 samples, 0.05%)</title><rect x="8.1159%" y="469" width="0.0463%" height="15" fill="rgb(235,35,32)" fg:x="77587" fg:w="443"/><text x="8.3659%" y="479.50"></text></g><g><title>Parse::do_all_blocks (436 samples, 0.05%)</title><rect x="8.1167%" y="453" width="0.0456%" height="15" fill="rgb(218,68,31)" fg:x="77594" fg:w="436"/><text x="8.3667%" y="463.50"></text></g><g><title>Parse::do_call (556 samples, 0.06%)</title><rect x="8.1129%" y="501" width="0.0582%" height="15" fill="rgb(207,120,37)" fg:x="77558" fg:w="556"/><text x="8.3629%" y="511.50"></text></g><g><title>ParseGenerator::generate (564 samples, 0.06%)</title><rect x="8.1128%" y="581" width="0.0590%" height="15" fill="rgb(227,98,0)" fg:x="77557" fg:w="564"/><text x="8.3628%" y="591.50"></text></g><g><title>Parse::Parse (564 samples, 0.06%)</title><rect x="8.1128%" y="565" width="0.0590%" height="15" fill="rgb(207,7,3)" fg:x="77557" fg:w="564"/><text x="8.3628%" y="575.50"></text></g><g><title>Parse::do_all_blocks (563 samples, 0.06%)</title><rect x="8.1129%" y="549" width="0.0589%" height="15" fill="rgb(206,98,19)" fg:x="77558" fg:w="563"/><text x="8.3629%" y="559.50"></text></g><g><title>Parse::do_one_block (563 samples, 0.06%)</title><rect x="8.1129%" y="533" width="0.0589%" height="15" fill="rgb(217,5,26)" fg:x="77558" fg:w="563"/><text x="8.3629%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (563 samples, 0.06%)</title><rect x="8.1129%" y="517" width="0.0589%" height="15" fill="rgb(235,190,38)" fg:x="77558" fg:w="563"/><text x="8.3629%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (116 samples, 0.01%)</title><rect x="8.1799%" y="469" width="0.0121%" height="15" fill="rgb(247,86,24)" fg:x="78199" fg:w="116"/><text x="8.4299%" y="479.50"></text></g><g><title>Parse::do_call (195 samples, 0.02%)</title><rect x="8.1718%" y="485" width="0.0204%" height="15" fill="rgb(205,101,16)" fg:x="78121" fg:w="195"/><text x="8.4218%" y="495.50"></text></g><g><title>ParseGenerator::generate (196 samples, 0.02%)</title><rect x="8.1718%" y="565" width="0.0205%" height="15" fill="rgb(246,168,33)" fg:x="78121" fg:w="196"/><text x="8.4218%" y="575.50"></text></g><g><title>Parse::Parse (196 samples, 0.02%)</title><rect x="8.1718%" y="549" width="0.0205%" height="15" fill="rgb(231,114,1)" fg:x="78121" fg:w="196"/><text x="8.4218%" y="559.50"></text></g><g><title>Parse::do_all_blocks (196 samples, 0.02%)</title><rect x="8.1718%" y="533" width="0.0205%" height="15" fill="rgb(207,184,53)" fg:x="78121" fg:w="196"/><text x="8.4218%" y="543.50"></text></g><g><title>Parse::do_one_block (196 samples, 0.02%)</title><rect x="8.1718%" y="517" width="0.0205%" height="15" fill="rgb(224,95,51)" fg:x="78121" fg:w="196"/><text x="8.4218%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (196 samples, 0.02%)</title><rect x="8.1718%" y="501" width="0.0205%" height="15" fill="rgb(212,188,45)" fg:x="78121" fg:w="196"/><text x="8.4218%" y="511.50"></text></g><g><title>Parse::do_call (802 samples, 0.08%)</title><rect x="8.1103%" y="597" width="0.0839%" height="15" fill="rgb(223,154,38)" fg:x="77533" fg:w="802"/><text x="8.3603%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (214 samples, 0.02%)</title><rect x="8.1718%" y="581" width="0.0224%" height="15" fill="rgb(251,22,52)" fg:x="78121" fg:w="214"/><text x="8.4218%" y="591.50"></text></g><g><title>Parse::do_all_blocks (803 samples, 0.08%)</title><rect x="8.1103%" y="645" width="0.0840%" height="15" fill="rgb(229,209,22)" fg:x="77533" fg:w="803"/><text x="8.3603%" y="655.50"></text></g><g><title>Parse::do_one_block (803 samples, 0.08%)</title><rect x="8.1103%" y="629" width="0.0840%" height="15" fill="rgb(234,138,34)" fg:x="77533" fg:w="803"/><text x="8.3603%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (803 samples, 0.08%)</title><rect x="8.1103%" y="613" width="0.0840%" height="15" fill="rgb(212,95,11)" fg:x="77533" fg:w="803"/><text x="8.3603%" y="623.50"></text></g><g><title>ParseGenerator::generate (804 samples, 0.08%)</title><rect x="8.1103%" y="677" width="0.0841%" height="15" fill="rgb(240,179,47)" fg:x="77533" fg:w="804"/><text x="8.3603%" y="687.50"></text></g><g><title>Parse::Parse (804 samples, 0.08%)</title><rect x="8.1103%" y="661" width="0.0841%" height="15" fill="rgb(240,163,11)" fg:x="77533" fg:w="804"/><text x="8.3603%" y="671.50"></text></g><g><title>ParseGenerator::generate (923 samples, 0.10%)</title><rect x="8.1094%" y="773" width="0.0965%" height="15" fill="rgb(236,37,12)" fg:x="77525" fg:w="923"/><text x="8.3594%" y="783.50"></text></g><g><title>Parse::Parse (923 samples, 0.10%)</title><rect x="8.1094%" y="757" width="0.0965%" height="15" fill="rgb(232,164,16)" fg:x="77525" fg:w="923"/><text x="8.3594%" y="767.50"></text></g><g><title>Parse::do_all_blocks (916 samples, 0.10%)</title><rect x="8.1102%" y="741" width="0.0958%" height="15" fill="rgb(244,205,15)" fg:x="77532" fg:w="916"/><text x="8.3602%" y="751.50"></text></g><g><title>Parse::do_one_block (916 samples, 0.10%)</title><rect x="8.1102%" y="725" width="0.0958%" height="15" fill="rgb(223,117,47)" fg:x="77532" fg:w="916"/><text x="8.3602%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (916 samples, 0.10%)</title><rect x="8.1102%" y="709" width="0.0958%" height="15" fill="rgb(244,107,35)" fg:x="77532" fg:w="916"/><text x="8.3602%" y="719.50"></text></g><g><title>Parse::do_call (916 samples, 0.10%)</title><rect x="8.1102%" y="693" width="0.0958%" height="15" fill="rgb(205,140,8)" fg:x="77532" fg:w="916"/><text x="8.3602%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (111 samples, 0.01%)</title><rect x="8.1944%" y="677" width="0.0116%" height="15" fill="rgb(228,84,46)" fg:x="78337" fg:w="111"/><text x="8.4444%" y="687.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.01%)</title><rect x="8.2087%" y="437" width="0.0130%" height="15" fill="rgb(254,188,9)" fg:x="78474" fg:w="124"/><text x="8.4587%" y="447.50"></text></g><g><title>Parse::do_one_block (124 samples, 0.01%)</title><rect x="8.2087%" y="421" width="0.0130%" height="15" fill="rgb(206,112,54)" fg:x="78474" fg:w="124"/><text x="8.4587%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (123 samples, 0.01%)</title><rect x="8.2088%" y="405" width="0.0129%" height="15" fill="rgb(216,84,49)" fg:x="78475" fg:w="123"/><text x="8.4588%" y="415.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.01%)</title><rect x="8.2086%" y="469" width="0.0133%" height="15" fill="rgb(214,194,35)" fg:x="78473" fg:w="127"/><text x="8.4586%" y="479.50"></text></g><g><title>Parse::Parse (127 samples, 0.01%)</title><rect x="8.2086%" y="453" width="0.0133%" height="15" fill="rgb(249,28,3)" fg:x="78473" fg:w="127"/><text x="8.4586%" y="463.50"></text></g><g><title>Parse::do_call (152 samples, 0.02%)</title><rect x="8.2073%" y="485" width="0.0159%" height="15" fill="rgb(222,56,52)" fg:x="78460" fg:w="152"/><text x="8.4573%" y="495.50"></text></g><g><title>ParseGenerator::generate (160 samples, 0.02%)</title><rect x="8.2071%" y="565" width="0.0167%" height="15" fill="rgb(245,217,50)" fg:x="78459" fg:w="160"/><text x="8.4571%" y="575.50"></text></g><g><title>Parse::Parse (160 samples, 0.02%)</title><rect x="8.2071%" y="549" width="0.0167%" height="15" fill="rgb(213,201,24)" fg:x="78459" fg:w="160"/><text x="8.4571%" y="559.50"></text></g><g><title>Parse::do_all_blocks (160 samples, 0.02%)</title><rect x="8.2071%" y="533" width="0.0167%" height="15" fill="rgb(248,116,28)" fg:x="78459" fg:w="160"/><text x="8.4571%" y="543.50"></text></g><g><title>Parse::do_one_block (160 samples, 0.02%)</title><rect x="8.2071%" y="517" width="0.0167%" height="15" fill="rgb(219,72,43)" fg:x="78459" fg:w="160"/><text x="8.4571%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (160 samples, 0.02%)</title><rect x="8.2071%" y="501" width="0.0167%" height="15" fill="rgb(209,138,14)" fg:x="78459" fg:w="160"/><text x="8.4571%" y="511.50"></text></g><g><title>Parse::do_call (218 samples, 0.02%)</title><rect x="8.2061%" y="581" width="0.0228%" height="15" fill="rgb(222,18,33)" fg:x="78449" fg:w="218"/><text x="8.4561%" y="591.50"></text></g><g><title>ParseGenerator::generate (219 samples, 0.02%)</title><rect x="8.2061%" y="661" width="0.0229%" height="15" fill="rgb(213,199,7)" fg:x="78449" fg:w="219"/><text x="8.4561%" y="671.50"></text></g><g><title>Parse::Parse (219 samples, 0.02%)</title><rect x="8.2061%" y="645" width="0.0229%" height="15" fill="rgb(250,110,10)" fg:x="78449" fg:w="219"/><text x="8.4561%" y="655.50"></text></g><g><title>Parse::do_all_blocks (219 samples, 0.02%)</title><rect x="8.2061%" y="629" width="0.0229%" height="15" fill="rgb(248,123,6)" fg:x="78449" fg:w="219"/><text x="8.4561%" y="639.50"></text></g><g><title>Parse::do_one_block (219 samples, 0.02%)</title><rect x="8.2061%" y="613" width="0.0229%" height="15" fill="rgb(206,91,31)" fg:x="78449" fg:w="219"/><text x="8.4561%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (219 samples, 0.02%)</title><rect x="8.2061%" y="597" width="0.0229%" height="15" fill="rgb(211,154,13)" fg:x="78449" fg:w="219"/><text x="8.4561%" y="607.50"></text></g><g><title>ParseGenerator::generate (267 samples, 0.03%)</title><rect x="8.2060%" y="757" width="0.0279%" height="15" fill="rgb(225,148,7)" fg:x="78448" fg:w="267"/><text x="8.4560%" y="767.50"></text></g><g><title>Parse::Parse (267 samples, 0.03%)</title><rect x="8.2060%" y="741" width="0.0279%" height="15" fill="rgb(220,160,43)" fg:x="78448" fg:w="267"/><text x="8.4560%" y="751.50"></text></g><g><title>Parse::do_all_blocks (267 samples, 0.03%)</title><rect x="8.2060%" y="725" width="0.0279%" height="15" fill="rgb(213,52,39)" fg:x="78448" fg:w="267"/><text x="8.4560%" y="735.50"></text></g><g><title>Parse::do_one_block (267 samples, 0.03%)</title><rect x="8.2060%" y="709" width="0.0279%" height="15" fill="rgb(243,137,7)" fg:x="78448" fg:w="267"/><text x="8.4560%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (267 samples, 0.03%)</title><rect x="8.2060%" y="693" width="0.0279%" height="15" fill="rgb(230,79,13)" fg:x="78448" fg:w="267"/><text x="8.4560%" y="703.50"></text></g><g><title>Parse::do_call (267 samples, 0.03%)</title><rect x="8.2060%" y="677" width="0.0279%" height="15" fill="rgb(247,105,23)" fg:x="78448" fg:w="267"/><text x="8.4560%" y="687.50"></text></g><g><title>ParseGenerator::generate (1,245 samples, 0.13%)</title><rect x="8.1094%" y="869" width="0.1302%" height="15" fill="rgb(223,179,41)" fg:x="77525" fg:w="1245"/><text x="8.3594%" y="879.50"></text></g><g><title>Parse::Parse (1,245 samples, 0.13%)</title><rect x="8.1094%" y="853" width="0.1302%" height="15" fill="rgb(218,9,34)" fg:x="77525" fg:w="1245"/><text x="8.3594%" y="863.50"></text></g><g><title>Parse::do_all_blocks (1,245 samples, 0.13%)</title><rect x="8.1094%" y="837" width="0.1302%" height="15" fill="rgb(222,106,8)" fg:x="77525" fg:w="1245"/><text x="8.3594%" y="847.50"></text></g><g><title>Parse::do_one_block (1,245 samples, 0.13%)</title><rect x="8.1094%" y="821" width="0.1302%" height="15" fill="rgb(211,220,0)" fg:x="77525" fg:w="1245"/><text x="8.3594%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (1,245 samples, 0.13%)</title><rect x="8.1094%" y="805" width="0.1302%" height="15" fill="rgb(229,52,16)" fg:x="77525" fg:w="1245"/><text x="8.3594%" y="815.50"></text></g><g><title>Parse::do_call (1,245 samples, 0.13%)</title><rect x="8.1094%" y="789" width="0.1302%" height="15" fill="rgb(212,155,18)" fg:x="77525" fg:w="1245"/><text x="8.3594%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (322 samples, 0.03%)</title><rect x="8.2060%" y="773" width="0.0337%" height="15" fill="rgb(242,21,14)" fg:x="78448" fg:w="322"/><text x="8.4560%" y="783.50"></text></g><g><title>Compile::Compile (52,879 samples, 5.53%)</title><rect x="2.7084%" y="885" width="5.5314%" height="15" fill="rgb(222,19,48)" fg:x="25892" fg:w="52879"/><text x="2.9584%" y="895.50">Compile..</text></g><g><title>Compile::final_graph_reshaping_impl (136 samples, 0.01%)</title><rect x="8.2629%" y="837" width="0.0142%" height="15" fill="rgb(232,45,27)" fg:x="78992" fg:w="136"/><text x="8.5129%" y="847.50"></text></g><g><title>Compile::final_graph_reshaping (377 samples, 0.04%)</title><rect x="8.2400%" y="869" width="0.0394%" height="15" fill="rgb(249,103,42)" fg:x="78773" fg:w="377"/><text x="8.4900%" y="879.50"></text></g><g><title>Compile::final_graph_reshaping_walk (372 samples, 0.04%)</title><rect x="8.2405%" y="853" width="0.0389%" height="15" fill="rgb(246,81,33)" fg:x="78778" fg:w="372"/><text x="8.4905%" y="863.50"></text></g><g><title>Compile::remove_speculative_types (313 samples, 0.03%)</title><rect x="8.2883%" y="869" width="0.0327%" height="15" fill="rgb(252,33,42)" fg:x="79235" fg:w="313"/><text x="8.5383%" y="879.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (103 samples, 0.01%)</title><rect x="8.3428%" y="837" width="0.0108%" height="15" fill="rgb(209,212,41)" fg:x="79756" fg:w="103"/><text x="8.5928%" y="847.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (154 samples, 0.02%)</title><rect x="8.3541%" y="837" width="0.0161%" height="15" fill="rgb(207,154,6)" fg:x="79864" fg:w="154"/><text x="8.6041%" y="847.50"></text></g><g><title>ConnectionGraph::do_analysis (547 samples, 0.06%)</title><rect x="8.3211%" y="869" width="0.0572%" height="15" fill="rgb(223,64,47)" fg:x="79548" fg:w="547"/><text x="8.5711%" y="879.50"></text></g><g><title>ConnectionGraph::compute_escape (543 samples, 0.06%)</title><rect x="8.3215%" y="853" width="0.0568%" height="15" fill="rgb(211,161,38)" fg:x="79552" fg:w="543"/><text x="8.5715%" y="863.50"></text></g><g><title>PhaseCCP::analyze (891 samples, 0.09%)</title><rect x="8.3791%" y="869" width="0.0932%" height="15" fill="rgb(219,138,40)" fg:x="80103" fg:w="891"/><text x="8.6291%" y="879.50"></text></g><g><title>PhaseCCP::transform_once (117 samples, 0.01%)</title><rect x="8.4853%" y="837" width="0.0122%" height="15" fill="rgb(241,228,46)" fg:x="81118" fg:w="117"/><text x="8.7353%" y="847.50"></text></g><g><title>PhaseCCP::do_transform (244 samples, 0.03%)</title><rect x="8.4723%" y="869" width="0.0255%" height="15" fill="rgb(223,209,38)" fg:x="80994" fg:w="244"/><text x="8.7223%" y="879.50"></text></g><g><title>PhaseCCP::transform (243 samples, 0.03%)</title><rect x="8.4724%" y="853" width="0.0254%" height="15" fill="rgb(236,164,45)" fg:x="80995" fg:w="243"/><text x="8.7224%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (146 samples, 0.02%)</title><rect x="8.5135%" y="821" width="0.0153%" height="15" fill="rgb(231,15,5)" fg:x="81388" fg:w="146"/><text x="8.7635%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (201 samples, 0.02%)</title><rect x="8.5131%" y="837" width="0.0210%" height="15" fill="rgb(252,35,15)" fg:x="81384" fg:w="201"/><text x="8.7631%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (262 samples, 0.03%)</title><rect x="8.5124%" y="853" width="0.0274%" height="15" fill="rgb(248,181,18)" fg:x="81377" fg:w="262"/><text x="8.7624%" y="863.50"></text></g><g><title>IdealLoopTree::loop_predication (133 samples, 0.01%)</title><rect x="8.5400%" y="837" width="0.0139%" height="15" fill="rgb(233,39,42)" fg:x="81641" fg:w="133"/><text x="8.7900%" y="847.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (108 samples, 0.01%)</title><rect x="8.5604%" y="821" width="0.0113%" height="15" fill="rgb(238,110,33)" fg:x="81836" fg:w="108"/><text x="8.8104%" y="831.50"></text></g><g><title>IdealLoopTree::loop_predication (376 samples, 0.04%)</title><rect x="8.5398%" y="853" width="0.0393%" height="15" fill="rgb(233,195,10)" fg:x="81639" fg:w="376"/><text x="8.7898%" y="863.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (241 samples, 0.03%)</title><rect x="8.5539%" y="837" width="0.0252%" height="15" fill="rgb(254,105,3)" fg:x="81774" fg:w="241"/><text x="8.8039%" y="847.50"></text></g><g><title>NTarjan::DFS (417 samples, 0.04%)</title><rect x="8.6800%" y="837" width="0.0436%" height="15" fill="rgb(221,225,9)" fg:x="82979" fg:w="417"/><text x="8.9300%" y="847.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,401 samples, 0.15%)</title><rect x="8.5841%" y="853" width="0.1466%" height="15" fill="rgb(224,227,45)" fg:x="82063" fg:w="1401"/><text x="8.8341%" y="863.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (435 samples, 0.05%)</title><rect x="8.8863%" y="821" width="0.0455%" height="15" fill="rgb(229,198,43)" fg:x="84952" fg:w="435"/><text x="9.1363%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (203 samples, 0.02%)</title><rect x="8.9106%" y="805" width="0.0212%" height="15" fill="rgb(206,209,35)" fg:x="85184" fg:w="203"/><text x="9.1606%" y="815.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (475 samples, 0.05%)</title><rect x="8.8823%" y="837" width="0.0497%" height="15" fill="rgb(245,195,53)" fg:x="84913" fg:w="475"/><text x="9.1323%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,038 samples, 0.21%)</title><rect x="8.7307%" y="853" width="0.2132%" height="15" fill="rgb(240,92,26)" fg:x="83464" fg:w="2038"/><text x="8.9807%" y="863.50"></text></g><g><title>Node::unique_ctrl_out (96 samples, 0.01%)</title><rect x="9.1814%" y="821" width="0.0100%" height="15" fill="rgb(207,40,23)" fg:x="87773" fg:w="96"/><text x="9.4314%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (113 samples, 0.01%)</title><rect x="9.1915%" y="821" width="0.0118%" height="15" fill="rgb(223,111,35)" fg:x="87869" fg:w="113"/><text x="9.4415%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (359 samples, 0.04%)</title><rect x="9.2621%" y="789" width="0.0376%" height="15" fill="rgb(229,147,28)" fg:x="88544" fg:w="359"/><text x="9.5121%" y="799.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (173 samples, 0.02%)</title><rect x="9.2815%" y="773" width="0.0181%" height="15" fill="rgb(211,29,28)" fg:x="88730" fg:w="173"/><text x="9.5315%" y="783.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (510 samples, 0.05%)</title><rect x="9.2499%" y="805" width="0.0533%" height="15" fill="rgb(228,72,33)" fg:x="88428" fg:w="510"/><text x="9.4999%" y="815.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (133 samples, 0.01%)</title><rect x="9.3035%" y="805" width="0.0139%" height="15" fill="rgb(205,214,31)" fg:x="88940" fg:w="133"/><text x="9.5535%" y="815.50"></text></g><g><title>PhaseIdealLoop::dom_depth (400 samples, 0.04%)</title><rect x="9.4677%" y="789" width="0.0418%" height="15" fill="rgb(224,111,15)" fg:x="90510" fg:w="400"/><text x="9.7177%" y="799.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,809 samples, 0.19%)</title><rect x="9.3207%" y="805" width="0.1892%" height="15" fill="rgb(253,21,26)" fg:x="89104" fg:w="1809"/><text x="9.5707%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,957 samples, 0.31%)</title><rect x="9.2033%" y="821" width="0.3093%" height="15" fill="rgb(245,139,43)" fg:x="87982" fg:w="2957"/><text x="9.4533%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,980 samples, 0.42%)</title><rect x="9.1076%" y="837" width="0.4163%" height="15" fill="rgb(252,170,7)" fg:x="87067" fg:w="3980"/><text x="9.3576%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (5,566 samples, 0.58%)</title><rect x="8.9439%" y="853" width="0.5822%" height="15" fill="rgb(231,118,14)" fg:x="85502" fg:w="5566"/><text x="9.1939%" y="863.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (273 samples, 0.03%)</title><rect x="9.6139%" y="837" width="0.0286%" height="15" fill="rgb(238,83,0)" fg:x="91907" fg:w="273"/><text x="9.8639%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,128 samples, 0.12%)</title><rect x="9.5265%" y="853" width="0.1180%" height="15" fill="rgb(221,39,39)" fg:x="91072" fg:w="1128"/><text x="9.7765%" y="863.50"></text></g><g><title>PhaseIdealLoop::do_split_if (112 samples, 0.01%)</title><rect x="9.7123%" y="837" width="0.0117%" height="15" fill="rgb(222,119,46)" fg:x="92848" fg:w="112"/><text x="9.9623%" y="847.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (332 samples, 0.03%)</title><rect x="9.7248%" y="837" width="0.0347%" height="15" fill="rgb(222,165,49)" fg:x="92968" fg:w="332"/><text x="9.9748%" y="847.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (206 samples, 0.02%)</title><rect x="9.8000%" y="821" width="0.0215%" height="15" fill="rgb(219,113,52)" fg:x="93686" fg:w="206"/><text x="10.0500%" y="831.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (217 samples, 0.02%)</title><rect x="9.8215%" y="821" width="0.0227%" height="15" fill="rgb(214,7,15)" fg:x="93892" fg:w="217"/><text x="10.0715%" y="831.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (887 samples, 0.09%)</title><rect x="9.7596%" y="837" width="0.0928%" height="15" fill="rgb(235,32,4)" fg:x="93300" fg:w="887"/><text x="10.0096%" y="847.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,937 samples, 0.20%)</title><rect x="9.6502%" y="853" width="0.2026%" height="15" fill="rgb(238,90,54)" fg:x="92254" fg:w="1937"/><text x="9.9002%" y="863.50"></text></g><g><title>NodeHash::hash_find_insert (140 samples, 0.01%)</title><rect x="9.9184%" y="821" width="0.0146%" height="15" fill="rgb(213,208,19)" fg:x="94818" fg:w="140"/><text x="10.1684%" y="831.50"></text></g><g><title>PhaseIterGVN::subsume_node (107 samples, 0.01%)</title><rect x="9.9406%" y="821" width="0.0112%" height="15" fill="rgb(233,156,4)" fg:x="95031" fg:w="107"/><text x="10.1906%" y="831.50"></text></g><g><title>RegionNode::is_unreachable_region (110 samples, 0.01%)</title><rect x="9.9745%" y="805" width="0.0115%" height="15" fill="rgb(207,194,5)" fg:x="95355" fg:w="110"/><text x="10.2245%" y="815.50"></text></g><g><title>RegionNode::Ideal (204 samples, 0.02%)</title><rect x="9.9648%" y="821" width="0.0213%" height="15" fill="rgb(206,111,30)" fg:x="95262" fg:w="204"/><text x="10.2148%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (96 samples, 0.01%)</title><rect x="9.9871%" y="741" width="0.0100%" height="15" fill="rgb(243,70,54)" fg:x="95475" fg:w="96"/><text x="10.2371%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (100 samples, 0.01%)</title><rect x="9.9871%" y="757" width="0.0105%" height="15" fill="rgb(242,28,8)" fg:x="95475" fg:w="100"/><text x="10.2371%" y="767.50"></text></g><g><title>InitializeNode::can_capture_store (102 samples, 0.01%)</title><rect x="9.9871%" y="805" width="0.0107%" height="15" fill="rgb(219,106,18)" fg:x="95475" fg:w="102"/><text x="10.2371%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (102 samples, 0.01%)</title><rect x="9.9871%" y="789" width="0.0107%" height="15" fill="rgb(244,222,10)" fg:x="95475" fg:w="102"/><text x="10.2371%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (102 samples, 0.01%)</title><rect x="9.9871%" y="773" width="0.0107%" height="15" fill="rgb(236,179,52)" fg:x="95475" fg:w="102"/><text x="10.2371%" y="783.50"></text></g><g><title>StoreNode::Ideal (118 samples, 0.01%)</title><rect x="9.9871%" y="821" width="0.0123%" height="15" fill="rgb(213,23,39)" fg:x="95475" fg:w="118"/><text x="10.2371%" y="831.50"></text></g><g><title>PhaseIterGVN::transform_old (1,385 samples, 0.14%)</title><rect x="9.8599%" y="837" width="0.1449%" height="15" fill="rgb(238,48,10)" fg:x="94259" fg:w="1385"/><text x="10.1099%" y="847.50"></text></g><g><title>PhaseIterGVN::optimize (1,456 samples, 0.15%)</title><rect x="9.8529%" y="853" width="0.1523%" height="15" fill="rgb(251,196,23)" fg:x="94192" fg:w="1456"/><text x="10.1029%" y="863.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (14,518 samples, 1.52%)</title><rect x="8.5009%" y="869" width="1.5186%" height="15" fill="rgb(250,152,24)" fg:x="81267" fg:w="14518"/><text x="8.7509%" y="879.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (140 samples, 0.01%)</title><rect x="10.0195%" y="869" width="0.0146%" height="15" fill="rgb(209,150,17)" fg:x="95785" fg:w="140"/><text x="10.2695%" y="879.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (134 samples, 0.01%)</title><rect x="10.0939%" y="805" width="0.0140%" height="15" fill="rgb(234,202,34)" fg:x="96496" fg:w="134"/><text x="10.3439%" y="815.50"></text></g><g><title>Unique_Node_List::remove (117 samples, 0.01%)</title><rect x="10.0957%" y="789" width="0.0122%" height="15" fill="rgb(253,148,53)" fg:x="96513" fg:w="117"/><text x="10.3457%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (148 samples, 0.02%)</title><rect x="10.0931%" y="821" width="0.0155%" height="15" fill="rgb(218,129,16)" fg:x="96488" fg:w="148"/><text x="10.3431%" y="831.50"></text></g><g><title>IfNode::Ideal (365 samples, 0.04%)</title><rect x="10.0783%" y="837" width="0.0382%" height="15" fill="rgb(216,85,19)" fg:x="96347" fg:w="365"/><text x="10.3283%" y="847.50"></text></g><g><title>LoadNode::Ideal (185 samples, 0.02%)</title><rect x="10.1207%" y="837" width="0.0194%" height="15" fill="rgb(235,228,7)" fg:x="96752" fg:w="185"/><text x="10.3707%" y="847.50"></text></g><g><title>NodeHash::hash_find_insert (204 samples, 0.02%)</title><rect x="10.1542%" y="837" width="0.0213%" height="15" fill="rgb(245,175,0)" fg:x="97073" fg:w="204"/><text x="10.4042%" y="847.50"></text></g><g><title>PhaseIterGVN::subsume_node (188 samples, 0.02%)</title><rect x="10.1834%" y="837" width="0.0197%" height="15" fill="rgb(208,168,36)" fg:x="97352" fg:w="188"/><text x="10.4334%" y="847.50"></text></g><g><title>PhiNode::Ideal (130 samples, 0.01%)</title><rect x="10.2034%" y="837" width="0.0136%" height="15" fill="rgb(246,171,24)" fg:x="97543" fg:w="130"/><text x="10.4534%" y="847.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (160 samples, 0.02%)</title><rect x="10.2408%" y="805" width="0.0167%" height="15" fill="rgb(215,142,24)" fg:x="97900" fg:w="160"/><text x="10.4908%" y="815.50"></text></g><g><title>Unique_Node_List::remove (138 samples, 0.01%)</title><rect x="10.2431%" y="789" width="0.0144%" height="15" fill="rgb(250,187,7)" fg:x="97922" fg:w="138"/><text x="10.4931%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (187 samples, 0.02%)</title><rect x="10.2394%" y="821" width="0.0196%" height="15" fill="rgb(228,66,33)" fg:x="97887" fg:w="187"/><text x="10.4894%" y="831.50"></text></g><g><title>RegionNode::is_unreachable_region (114 samples, 0.01%)</title><rect x="10.2612%" y="821" width="0.0119%" height="15" fill="rgb(234,215,21)" fg:x="98095" fg:w="114"/><text x="10.5112%" y="831.50"></text></g><g><title>RegionNode::Ideal (433 samples, 0.05%)</title><rect x="10.2286%" y="837" width="0.0453%" height="15" fill="rgb(222,191,20)" fg:x="97784" fg:w="433"/><text x="10.4786%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (113 samples, 0.01%)</title><rect x="10.2766%" y="581" width="0.0118%" height="15" fill="rgb(245,79,54)" fg:x="98243" fg:w="113"/><text x="10.5266%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (124 samples, 0.01%)</title><rect x="10.2766%" y="597" width="0.0130%" height="15" fill="rgb(240,10,37)" fg:x="98243" fg:w="124"/><text x="10.5266%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (138 samples, 0.01%)</title><rect x="10.2766%" y="613" width="0.0144%" height="15" fill="rgb(214,192,32)" fg:x="98243" fg:w="138"/><text x="10.5266%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (148 samples, 0.02%)</title><rect x="10.2766%" y="629" width="0.0155%" height="15" fill="rgb(209,36,54)" fg:x="98243" fg:w="148"/><text x="10.5266%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (166 samples, 0.02%)</title><rect x="10.2766%" y="645" width="0.0174%" height="15" fill="rgb(220,10,11)" fg:x="98243" fg:w="166"/><text x="10.5266%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (190 samples, 0.02%)</title><rect x="10.2766%" y="661" width="0.0199%" height="15" fill="rgb(221,106,17)" fg:x="98243" fg:w="190"/><text x="10.5266%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (200 samples, 0.02%)</title><rect x="10.2766%" y="677" width="0.0209%" height="15" fill="rgb(251,142,44)" fg:x="98243" fg:w="200"/><text x="10.5266%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (223 samples, 0.02%)</title><rect x="10.2766%" y="693" width="0.0233%" height="15" fill="rgb(238,13,15)" fg:x="98243" fg:w="223"/><text x="10.5266%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (237 samples, 0.02%)</title><rect x="10.2766%" y="709" width="0.0248%" height="15" fill="rgb(208,107,27)" fg:x="98243" fg:w="237"/><text x="10.5266%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (256 samples, 0.03%)</title><rect x="10.2766%" y="725" width="0.0268%" height="15" fill="rgb(205,136,37)" fg:x="98243" fg:w="256"/><text x="10.5266%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (280 samples, 0.03%)</title><rect x="10.2766%" y="741" width="0.0293%" height="15" fill="rgb(250,205,27)" fg:x="98243" fg:w="280"/><text x="10.5266%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (298 samples, 0.03%)</title><rect x="10.2766%" y="757" width="0.0312%" height="15" fill="rgb(210,80,43)" fg:x="98243" fg:w="298"/><text x="10.5266%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (334 samples, 0.03%)</title><rect x="10.2765%" y="773" width="0.0349%" height="15" fill="rgb(247,160,36)" fg:x="98242" fg:w="334"/><text x="10.5265%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (370 samples, 0.04%)</title><rect x="10.2765%" y="789" width="0.0387%" height="15" fill="rgb(234,13,49)" fg:x="98242" fg:w="370"/><text x="10.5265%" y="799.50"></text></g><g><title>InitializeNode::can_capture_store (374 samples, 0.04%)</title><rect x="10.2762%" y="821" width="0.0391%" height="15" fill="rgb(234,122,0)" fg:x="98239" fg:w="374"/><text x="10.5262%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (372 samples, 0.04%)</title><rect x="10.2764%" y="805" width="0.0389%" height="15" fill="rgb(207,146,38)" fg:x="98241" fg:w="372"/><text x="10.5264%" y="815.50"></text></g><g><title>StoreNode::Ideal (410 samples, 0.04%)</title><rect x="10.2757%" y="837" width="0.0429%" height="15" fill="rgb(207,177,25)" fg:x="98234" fg:w="410"/><text x="10.5257%" y="847.50"></text></g><g><title>PhaseIterGVN::transform_old (2,682 samples, 0.28%)</title><rect x="10.0454%" y="853" width="0.2805%" height="15" fill="rgb(211,178,42)" fg:x="96032" fg:w="2682"/><text x="10.2954%" y="863.50"></text></g><g><title>PhaseIterGVN::optimize (2,810 samples, 0.29%)</title><rect x="10.0342%" y="869" width="0.2939%" height="15" fill="rgb(230,69,54)" fg:x="95925" fg:w="2810"/><text x="10.2842%" y="879.50"></text></g><g><title>PhaseIterGVN::transform_old (276 samples, 0.03%)</title><rect x="10.3333%" y="837" width="0.0289%" height="15" fill="rgb(214,135,41)" fg:x="98785" fg:w="276"/><text x="10.5833%" y="847.50"></text></g><g><title>PhaseIterGVN::optimize (298 samples, 0.03%)</title><rect x="10.3314%" y="853" width="0.0312%" height="15" fill="rgb(237,67,25)" fg:x="98767" fg:w="298"/><text x="10.5814%" y="863.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (451 samples, 0.05%)</title><rect x="10.3306%" y="869" width="0.0472%" height="15" fill="rgb(222,189,50)" fg:x="98759" fg:w="451"/><text x="10.5806%" y="879.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (183 samples, 0.02%)</title><rect x="10.3801%" y="853" width="0.0191%" height="15" fill="rgb(245,148,34)" fg:x="99232" fg:w="183"/><text x="10.6301%" y="863.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (206 samples, 0.02%)</title><rect x="10.3778%" y="869" width="0.0215%" height="15" fill="rgb(222,29,6)" fg:x="99210" fg:w="206"/><text x="10.6278%" y="879.50"></text></g><g><title>Compile::Optimize (20,658 samples, 2.16%)</title><rect x="8.2398%" y="885" width="2.1609%" height="15" fill="rgb(221,189,43)" fg:x="78771" fg:w="20658"/><text x="8.4898%" y="895.50">C..</text></g><g><title>Parse::do_one_block (182 samples, 0.02%)</title><rect x="10.4037%" y="773" width="0.0190%" height="15" fill="rgb(207,36,27)" fg:x="99458" fg:w="182"/><text x="10.6537%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.02%)</title><rect x="10.4049%" y="757" width="0.0179%" height="15" fill="rgb(217,90,24)" fg:x="99469" fg:w="171"/><text x="10.6549%" y="767.50"></text></g><g><title>Parse::do_all_blocks (188 samples, 0.02%)</title><rect x="10.4036%" y="789" width="0.0197%" height="15" fill="rgb(224,66,35)" fg:x="99457" fg:w="188"/><text x="10.6536%" y="799.50"></text></g><g><title>ParseGenerator::generate (203 samples, 0.02%)</title><rect x="10.4036%" y="821" width="0.0212%" height="15" fill="rgb(221,13,50)" fg:x="99457" fg:w="203"/><text x="10.6536%" y="831.50"></text></g><g><title>Parse::Parse (203 samples, 0.02%)</title><rect x="10.4036%" y="805" width="0.0212%" height="15" fill="rgb(236,68,49)" fg:x="99457" fg:w="203"/><text x="10.6536%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (240 samples, 0.03%)</title><rect x="10.4017%" y="885" width="0.0251%" height="15" fill="rgb(229,146,28)" fg:x="99439" fg:w="240"/><text x="10.6517%" y="895.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (240 samples, 0.03%)</title><rect x="10.4017%" y="869" width="0.0251%" height="15" fill="rgb(225,31,38)" fg:x="99439" fg:w="240"/><text x="10.6517%" y="879.50"></text></g><g><title>C2Compiler::compile_method (240 samples, 0.03%)</title><rect x="10.4017%" y="853" width="0.0251%" height="15" fill="rgb(250,208,3)" fg:x="99439" fg:w="240"/><text x="10.6517%" y="863.50"></text></g><g><title>Compile::Compile (240 samples, 0.03%)</title><rect x="10.4017%" y="837" width="0.0251%" height="15" fill="rgb(246,54,23)" fg:x="99439" fg:w="240"/><text x="10.6517%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (106 samples, 0.01%)</title><rect x="10.4674%" y="677" width="0.0111%" height="15" fill="rgb(243,76,11)" fg:x="100067" fg:w="106"/><text x="10.7174%" y="687.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.01%)</title><rect x="10.4671%" y="693" width="0.0115%" height="15" fill="rgb(245,21,50)" fg:x="100064" fg:w="110"/><text x="10.7171%" y="703.50"></text></g><g><title>Parse::do_all_blocks (122 samples, 0.01%)</title><rect x="10.4668%" y="709" width="0.0128%" height="15" fill="rgb(228,9,43)" fg:x="100061" fg:w="122"/><text x="10.7168%" y="719.50"></text></g><g><title>ParseGenerator::generate (214 samples, 0.02%)</title><rect x="10.4617%" y="741" width="0.0224%" height="15" fill="rgb(208,100,47)" fg:x="100012" fg:w="214"/><text x="10.7117%" y="751.50"></text></g><g><title>Parse::Parse (214 samples, 0.02%)</title><rect x="10.4617%" y="725" width="0.0224%" height="15" fill="rgb(232,26,8)" fg:x="100012" fg:w="214"/><text x="10.7117%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (105 samples, 0.01%)</title><rect x="10.4841%" y="741" width="0.0110%" height="15" fill="rgb(216,166,38)" fg:x="100226" fg:w="105"/><text x="10.7341%" y="751.50"></text></g><g><title>Parse::do_call (515 samples, 0.05%)</title><rect x="10.4442%" y="757" width="0.0539%" height="15" fill="rgb(251,202,51)" fg:x="99845" fg:w="515"/><text x="10.6942%" y="767.50"></text></g><g><title>Parse::do_one_block (775 samples, 0.08%)</title><rect x="10.4368%" y="789" width="0.0811%" height="15" fill="rgb(254,216,34)" fg:x="99774" fg:w="775"/><text x="10.6868%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (771 samples, 0.08%)</title><rect x="10.4372%" y="773" width="0.0806%" height="15" fill="rgb(251,32,27)" fg:x="99778" fg:w="771"/><text x="10.6872%" y="783.50"></text></g><g><title>Parse::do_all_blocks (778 samples, 0.08%)</title><rect x="10.4366%" y="805" width="0.0814%" height="15" fill="rgb(208,127,28)" fg:x="99772" fg:w="778"/><text x="10.6866%" y="815.50"></text></g><g><title>ParseGenerator::generate (799 samples, 0.08%)</title><rect x="10.4366%" y="837" width="0.0836%" height="15" fill="rgb(224,137,22)" fg:x="99772" fg:w="799"/><text x="10.6866%" y="847.50"></text></g><g><title>Parse::Parse (799 samples, 0.08%)</title><rect x="10.4366%" y="821" width="0.0836%" height="15" fill="rgb(254,70,32)" fg:x="99772" fg:w="799"/><text x="10.6866%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (923 samples, 0.10%)</title><rect x="10.4268%" y="885" width="0.0965%" height="15" fill="rgb(229,75,37)" fg:x="99679" fg:w="923"/><text x="10.6768%" y="895.50"></text></g><g><title>C2Compiler::compile_method (923 samples, 0.10%)</title><rect x="10.4268%" y="869" width="0.0965%" height="15" fill="rgb(252,64,23)" fg:x="99679" fg:w="923"/><text x="10.6768%" y="879.50"></text></g><g><title>Compile::Compile (923 samples, 0.10%)</title><rect x="10.4268%" y="853" width="0.0965%" height="15" fill="rgb(232,162,48)" fg:x="99679" fg:w="923"/><text x="10.6768%" y="863.50"></text></g><g><title>Parse::do_call (127 samples, 0.01%)</title><rect x="10.5527%" y="885" width="0.0133%" height="15" fill="rgb(246,160,12)" fg:x="100882" fg:w="127"/><text x="10.8027%" y="895.50"></text></g><g><title>ParseGenerator::generate (111 samples, 0.01%)</title><rect x="10.5804%" y="597" width="0.0116%" height="15" fill="rgb(247,166,0)" fg:x="101147" fg:w="111"/><text x="10.8304%" y="607.50"></text></g><g><title>Parse::Parse (111 samples, 0.01%)</title><rect x="10.5804%" y="581" width="0.0116%" height="15" fill="rgb(249,219,21)" fg:x="101147" fg:w="111"/><text x="10.8304%" y="591.50"></text></g><g><title>Parse::do_all_blocks (111 samples, 0.01%)</title><rect x="10.5804%" y="565" width="0.0116%" height="15" fill="rgb(205,209,3)" fg:x="101147" fg:w="111"/><text x="10.8304%" y="575.50"></text></g><g><title>Parse::do_one_block (111 samples, 0.01%)</title><rect x="10.5804%" y="549" width="0.0116%" height="15" fill="rgb(243,44,1)" fg:x="101147" fg:w="111"/><text x="10.8304%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (111 samples, 0.01%)</title><rect x="10.5804%" y="533" width="0.0116%" height="15" fill="rgb(206,159,16)" fg:x="101147" fg:w="111"/><text x="10.8304%" y="543.50"></text></g><g><title>Parse::do_call (111 samples, 0.01%)</title><rect x="10.5804%" y="517" width="0.0116%" height="15" fill="rgb(244,77,30)" fg:x="101147" fg:w="111"/><text x="10.8304%" y="527.50"></text></g><g><title>ParseGenerator::generate (147 samples, 0.02%)</title><rect x="10.5804%" y="693" width="0.0154%" height="15" fill="rgb(218,69,12)" fg:x="101147" fg:w="147"/><text x="10.8304%" y="703.50"></text></g><g><title>Parse::Parse (147 samples, 0.02%)</title><rect x="10.5804%" y="677" width="0.0154%" height="15" fill="rgb(212,87,7)" fg:x="101147" fg:w="147"/><text x="10.8304%" y="687.50"></text></g><g><title>Parse::do_all_blocks (147 samples, 0.02%)</title><rect x="10.5804%" y="661" width="0.0154%" height="15" fill="rgb(245,114,25)" fg:x="101147" fg:w="147"/><text x="10.8304%" y="671.50"></text></g><g><title>Parse::do_one_block (147 samples, 0.02%)</title><rect x="10.5804%" y="645" width="0.0154%" height="15" fill="rgb(210,61,42)" fg:x="101147" fg:w="147"/><text x="10.8304%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (147 samples, 0.02%)</title><rect x="10.5804%" y="629" width="0.0154%" height="15" fill="rgb(211,52,33)" fg:x="101147" fg:w="147"/><text x="10.8304%" y="639.50"></text></g><g><title>Parse::do_call (147 samples, 0.02%)</title><rect x="10.5804%" y="613" width="0.0154%" height="15" fill="rgb(234,58,33)" fg:x="101147" fg:w="147"/><text x="10.8304%" y="623.50"></text></g><g><title>ParseGenerator::generate (228 samples, 0.02%)</title><rect x="10.5804%" y="789" width="0.0238%" height="15" fill="rgb(220,115,36)" fg:x="101147" fg:w="228"/><text x="10.8304%" y="799.50"></text></g><g><title>Parse::Parse (228 samples, 0.02%)</title><rect x="10.5804%" y="773" width="0.0238%" height="15" fill="rgb(243,153,54)" fg:x="101147" fg:w="228"/><text x="10.8304%" y="783.50"></text></g><g><title>Parse::do_all_blocks (228 samples, 0.02%)</title><rect x="10.5804%" y="757" width="0.0238%" height="15" fill="rgb(251,47,18)" fg:x="101147" fg:w="228"/><text x="10.8304%" y="767.50"></text></g><g><title>Parse::do_one_block (228 samples, 0.02%)</title><rect x="10.5804%" y="741" width="0.0238%" height="15" fill="rgb(242,102,42)" fg:x="101147" fg:w="228"/><text x="10.8304%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (228 samples, 0.02%)</title><rect x="10.5804%" y="725" width="0.0238%" height="15" fill="rgb(234,31,38)" fg:x="101147" fg:w="228"/><text x="10.8304%" y="735.50"></text></g><g><title>Parse::do_call (228 samples, 0.02%)</title><rect x="10.5804%" y="709" width="0.0238%" height="15" fill="rgb(221,117,51)" fg:x="101147" fg:w="228"/><text x="10.8304%" y="719.50"></text></g><g><title>ParseGenerator::generate (313 samples, 0.03%)</title><rect x="10.5804%" y="885" width="0.0327%" height="15" fill="rgb(212,20,18)" fg:x="101147" fg:w="313"/><text x="10.8304%" y="895.50"></text></g><g><title>Parse::Parse (313 samples, 0.03%)</title><rect x="10.5804%" y="869" width="0.0327%" height="15" fill="rgb(245,133,36)" fg:x="101147" fg:w="313"/><text x="10.8304%" y="879.50"></text></g><g><title>Parse::do_all_blocks (313 samples, 0.03%)</title><rect x="10.5804%" y="853" width="0.0327%" height="15" fill="rgb(212,6,19)" fg:x="101147" fg:w="313"/><text x="10.8304%" y="863.50"></text></g><g><title>Parse::do_one_block (313 samples, 0.03%)</title><rect x="10.5804%" y="837" width="0.0327%" height="15" fill="rgb(218,1,36)" fg:x="101147" fg:w="313"/><text x="10.8304%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (313 samples, 0.03%)</title><rect x="10.5804%" y="821" width="0.0327%" height="15" fill="rgb(246,84,54)" fg:x="101147" fg:w="313"/><text x="10.8304%" y="831.50"></text></g><g><title>Parse::do_call (313 samples, 0.03%)</title><rect x="10.5804%" y="805" width="0.0327%" height="15" fill="rgb(242,110,6)" fg:x="101147" fg:w="313"/><text x="10.8304%" y="815.50"></text></g><g><title>[unknown] (78,787 samples, 8.24%)</title><rect x="2.4081%" y="901" width="8.2415%" height="15" fill="rgb(214,47,5)" fg:x="23021" fg:w="78787"/><text x="2.6581%" y="911.50">[unknown]</text></g><g><title>Type::Initialize (99 samples, 0.01%)</title><rect x="10.6651%" y="741" width="0.0104%" height="15" fill="rgb(218,159,25)" fg:x="101957" fg:w="99"/><text x="10.9151%" y="751.50"></text></g><g><title>CompileWrapper::CompileWrapper (103 samples, 0.01%)</title><rect x="10.6649%" y="757" width="0.0108%" height="15" fill="rgb(215,211,28)" fg:x="101955" fg:w="103"/><text x="10.9149%" y="767.50"></text></g><g><title>Compile::identify_useful_nodes (202 samples, 0.02%)</title><rect x="10.6824%" y="741" width="0.0211%" height="15" fill="rgb(238,59,32)" fg:x="102122" fg:w="202"/><text x="10.9324%" y="751.50"></text></g><g><title>Compile::remove_useless_nodes (219 samples, 0.02%)</title><rect x="10.7035%" y="741" width="0.0229%" height="15" fill="rgb(226,82,3)" fg:x="102324" fg:w="219"/><text x="10.9535%" y="751.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (525 samples, 0.05%)</title><rect x="10.6777%" y="757" width="0.0549%" height="15" fill="rgb(240,164,32)" fg:x="102077" fg:w="525"/><text x="10.9277%" y="767.50"></text></g><g><title>Compile::Compile (821 samples, 0.09%)</title><rect x="10.6536%" y="773" width="0.0859%" height="15" fill="rgb(232,46,7)" fg:x="101847" fg:w="821"/><text x="10.9036%" y="783.50"></text></g><g><title>C2Compiler::compile_method (832 samples, 0.09%)</title><rect x="10.6526%" y="789" width="0.0870%" height="15" fill="rgb(229,129,53)" fg:x="101837" fg:w="832"/><text x="10.9026%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,000 samples, 0.10%)</title><rect x="10.6514%" y="805" width="0.1046%" height="15" fill="rgb(234,188,29)" fg:x="101826" fg:w="1000"/><text x="10.9014%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (123 samples, 0.01%)</title><rect x="10.7638%" y="517" width="0.0129%" height="15" fill="rgb(246,141,4)" fg:x="102900" fg:w="123"/><text x="11.0138%" y="527.50"></text></g><g><title>x86_pmu_enable (120 samples, 0.01%)</title><rect x="10.7641%" y="501" width="0.0126%" height="15" fill="rgb(229,23,39)" fg:x="102903" fg:w="120"/><text x="11.0141%" y="511.50"></text></g><g><title>intel_pmu_enable_all (119 samples, 0.01%)</title><rect x="10.7642%" y="485" width="0.0124%" height="15" fill="rgb(206,12,3)" fg:x="102904" fg:w="119"/><text x="11.0142%" y="495.50"></text></g><g><title>native_write_msr (119 samples, 0.01%)</title><rect x="10.7642%" y="469" width="0.0124%" height="15" fill="rgb(252,226,20)" fg:x="102904" fg:w="119"/><text x="11.0142%" y="479.50"></text></g><g><title>finish_task_switch.isra.0 (124 samples, 0.01%)</title><rect x="10.7638%" y="533" width="0.0130%" height="15" fill="rgb(216,123,35)" fg:x="102900" fg:w="124"/><text x="11.0138%" y="543.50"></text></g><g><title>futex_wait_queue_me (167 samples, 0.02%)</title><rect x="10.7612%" y="581" width="0.0175%" height="15" fill="rgb(212,68,40)" fg:x="102875" fg:w="167"/><text x="11.0112%" y="591.50"></text></g><g><title>schedule (157 samples, 0.02%)</title><rect x="10.7622%" y="565" width="0.0164%" height="15" fill="rgb(254,125,32)" fg:x="102885" fg:w="157"/><text x="11.0122%" y="575.50"></text></g><g><title>__schedule (156 samples, 0.02%)</title><rect x="10.7623%" y="549" width="0.0163%" height="15" fill="rgb(253,97,22)" fg:x="102886" fg:w="156"/><text x="11.0123%" y="559.50"></text></g><g><title>futex_wait (172 samples, 0.02%)</title><rect x="10.7612%" y="597" width="0.0180%" height="15" fill="rgb(241,101,14)" fg:x="102875" fg:w="172"/><text x="11.0112%" y="607.50"></text></g><g><title>__x64_sys_futex (176 samples, 0.02%)</title><rect x="10.7612%" y="629" width="0.0184%" height="15" fill="rgb(238,103,29)" fg:x="102875" fg:w="176"/><text x="11.0112%" y="639.50"></text></g><g><title>do_futex (176 samples, 0.02%)</title><rect x="10.7612%" y="613" width="0.0184%" height="15" fill="rgb(233,195,47)" fg:x="102875" fg:w="176"/><text x="11.0112%" y="623.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (185 samples, 0.02%)</title><rect x="10.7608%" y="709" width="0.0194%" height="15" fill="rgb(246,218,30)" fg:x="102872" fg:w="185"/><text x="11.0108%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common (185 samples, 0.02%)</title><rect x="10.7608%" y="693" width="0.0194%" height="15" fill="rgb(219,145,47)" fg:x="102872" fg:w="185"/><text x="11.0108%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common64 (185 samples, 0.02%)</title><rect x="10.7608%" y="677" width="0.0194%" height="15" fill="rgb(243,12,26)" fg:x="102872" fg:w="185"/><text x="11.0108%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (184 samples, 0.02%)</title><rect x="10.7610%" y="661" width="0.0192%" height="15" fill="rgb(214,87,16)" fg:x="102873" fg:w="184"/><text x="11.0110%" y="671.50"></text></g><g><title>do_syscall_64 (184 samples, 0.02%)</title><rect x="10.7610%" y="645" width="0.0192%" height="15" fill="rgb(208,99,42)" fg:x="102873" fg:w="184"/><text x="11.0110%" y="655.50"></text></g><g><title>___pthread_cond_timedwait64 (191 samples, 0.02%)</title><rect x="10.7604%" y="741" width="0.0200%" height="15" fill="rgb(253,99,2)" fg:x="102868" fg:w="191"/><text x="11.0104%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (189 samples, 0.02%)</title><rect x="10.7606%" y="725" width="0.0198%" height="15" fill="rgb(220,168,23)" fg:x="102870" fg:w="189"/><text x="11.0106%" y="735.50"></text></g><g><title>os::PlatformEvent::park (205 samples, 0.02%)</title><rect x="10.7603%" y="757" width="0.0214%" height="15" fill="rgb(242,38,24)" fg:x="102867" fg:w="205"/><text x="11.0103%" y="767.50"></text></g><g><title>Monitor::wait (227 samples, 0.02%)</title><rect x="10.7581%" y="789" width="0.0237%" height="15" fill="rgb(225,182,9)" fg:x="102846" fg:w="227"/><text x="11.0081%" y="799.50"></text></g><g><title>Monitor::IWait (225 samples, 0.02%)</title><rect x="10.7583%" y="773" width="0.0235%" height="15" fill="rgb(243,178,37)" fg:x="102848" fg:w="225"/><text x="11.0083%" y="783.50"></text></g><g><title>CompileQueue::get (271 samples, 0.03%)</title><rect x="10.7573%" y="805" width="0.0283%" height="15" fill="rgb(232,139,19)" fg:x="102838" fg:w="271"/><text x="11.0073%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,295 samples, 0.14%)</title><rect x="10.6511%" y="821" width="0.1355%" height="15" fill="rgb(225,201,24)" fg:x="101823" fg:w="1295"/><text x="10.9011%" y="831.50"></text></g><g><title>__clone3 (1,299 samples, 0.14%)</title><rect x="10.6510%" y="901" width="0.1359%" height="15" fill="rgb(221,47,46)" fg:x="101822" fg:w="1299"/><text x="10.9010%" y="911.50"></text></g><g><title>start_thread (1,299 samples, 0.14%)</title><rect x="10.6510%" y="885" width="0.1359%" height="15" fill="rgb(249,23,13)" fg:x="101822" fg:w="1299"/><text x="10.9010%" y="895.50"></text></g><g><title>thread_native_entry (1,298 samples, 0.14%)</title><rect x="10.6511%" y="869" width="0.1358%" height="15" fill="rgb(219,9,5)" fg:x="101823" fg:w="1298"/><text x="10.9011%" y="879.50"></text></g><g><title>Thread::call_run (1,298 samples, 0.14%)</title><rect x="10.6511%" y="853" width="0.1358%" height="15" fill="rgb(254,171,16)" fg:x="101823" fg:w="1298"/><text x="10.9011%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (1,298 samples, 0.14%)</title><rect x="10.6511%" y="837" width="0.1358%" height="15" fill="rgb(230,171,20)" fg:x="101823" fg:w="1298"/><text x="10.9011%" y="847.50"></text></g><g><title>C2_CompilerThre (84,811 samples, 8.87%)</title><rect x="1.9288%" y="917" width="8.8716%" height="15" fill="rgb(210,71,41)" fg:x="18439" fg:w="84811"/><text x="2.1788%" y="927.50">C2_CompilerTh..</text></g><g><title>Command-Accumul (125 samples, 0.01%)</title><rect x="10.8004%" y="917" width="0.0131%" height="15" fill="rgb(206,173,20)" fg:x="103250" fg:w="125"/><text x="11.0504%" y="927.50"></text></g><g><title>futex_wait_queue_me (121 samples, 0.01%)</title><rect x="10.8720%" y="693" width="0.0127%" height="15" fill="rgb(233,88,34)" fg:x="103935" fg:w="121"/><text x="11.1220%" y="703.50"></text></g><g><title>schedule (114 samples, 0.01%)</title><rect x="10.8728%" y="677" width="0.0119%" height="15" fill="rgb(223,209,46)" fg:x="103942" fg:w="114"/><text x="11.1228%" y="687.50"></text></g><g><title>__schedule (114 samples, 0.01%)</title><rect x="10.8728%" y="661" width="0.0119%" height="15" fill="rgb(250,43,18)" fg:x="103942" fg:w="114"/><text x="11.1228%" y="671.50"></text></g><g><title>futex_wait (132 samples, 0.01%)</title><rect x="10.8719%" y="709" width="0.0138%" height="15" fill="rgb(208,13,10)" fg:x="103934" fg:w="132"/><text x="11.1219%" y="719.50"></text></g><g><title>__x64_sys_futex (136 samples, 0.01%)</title><rect x="10.8716%" y="741" width="0.0142%" height="15" fill="rgb(212,200,36)" fg:x="103931" fg:w="136"/><text x="11.1216%" y="751.50"></text></g><g><title>do_futex (133 samples, 0.01%)</title><rect x="10.8719%" y="725" width="0.0139%" height="15" fill="rgb(225,90,30)" fg:x="103934" fg:w="133"/><text x="11.1219%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (148 samples, 0.02%)</title><rect x="10.8713%" y="773" width="0.0155%" height="15" fill="rgb(236,182,39)" fg:x="103928" fg:w="148"/><text x="11.1213%" y="783.50"></text></g><g><title>do_syscall_64 (145 samples, 0.02%)</title><rect x="10.8716%" y="757" width="0.0152%" height="15" fill="rgb(212,144,35)" fg:x="103931" fg:w="145"/><text x="11.1216%" y="767.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (153 samples, 0.02%)</title><rect x="10.8709%" y="821" width="0.0160%" height="15" fill="rgb(228,63,44)" fg:x="103924" fg:w="153"/><text x="11.1209%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (153 samples, 0.02%)</title><rect x="10.8709%" y="805" width="0.0160%" height="15" fill="rgb(228,109,6)" fg:x="103924" fg:w="153"/><text x="11.1209%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (153 samples, 0.02%)</title><rect x="10.8709%" y="789" width="0.0160%" height="15" fill="rgb(238,117,24)" fg:x="103924" fg:w="153"/><text x="11.1209%" y="799.50"></text></g><g><title>___pthread_cond_timedwait64 (164 samples, 0.02%)</title><rect x="10.8705%" y="853" width="0.0172%" height="15" fill="rgb(242,26,26)" fg:x="103920" fg:w="164"/><text x="11.1205%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (163 samples, 0.02%)</title><rect x="10.8706%" y="837" width="0.0171%" height="15" fill="rgb(221,92,48)" fg:x="103921" fg:w="163"/><text x="11.1206%" y="847.50"></text></g><g><title>Parker::park (291 samples, 0.03%)</title><rect x="10.8688%" y="869" width="0.0304%" height="15" fill="rgb(209,209,32)" fg:x="103904" fg:w="291"/><text x="11.1188%" y="879.50"></text></g><g><title>Unsafe_Park (301 samples, 0.03%)</title><rect x="10.8679%" y="885" width="0.0315%" height="15" fill="rgb(221,70,22)" fg:x="103895" fg:w="301"/><text x="11.1179%" y="895.50"></text></g><g><title>[perf-722681.map] (771 samples, 0.08%)</title><rect x="10.8198%" y="901" width="0.0806%" height="15" fill="rgb(248,145,5)" fg:x="103436" fg:w="771"/><text x="11.0698%" y="911.50"></text></g><g><title>ForkJoinPool.co (797 samples, 0.08%)</title><rect x="10.8178%" y="917" width="0.0834%" height="15" fill="rgb(226,116,26)" fg:x="103416" fg:w="797"/><text x="11.0678%" y="927.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (104 samples, 0.01%)</title><rect x="10.9118%" y="805" width="0.0109%" height="15" fill="rgb(244,5,17)" fg:x="104315" fg:w="104"/><text x="11.1618%" y="815.50"></text></g><g><title>G1RemSet::refine_card_concurrently (104 samples, 0.01%)</title><rect x="10.9118%" y="789" width="0.0109%" height="15" fill="rgb(252,159,33)" fg:x="104315" fg:w="104"/><text x="11.1618%" y="799.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (130 samples, 0.01%)</title><rect x="10.9118%" y="821" width="0.0136%" height="15" fill="rgb(206,71,0)" fg:x="104315" fg:w="130"/><text x="11.1618%" y="831.50"></text></g><g><title>G1_Refine#0 (143 samples, 0.01%)</title><rect x="10.9112%" y="917" width="0.0150%" height="15" fill="rgb(233,118,54)" fg:x="104309" fg:w="143"/><text x="11.1612%" y="927.50"></text></g><g><title>__clone3 (137 samples, 0.01%)</title><rect x="10.9118%" y="901" width="0.0143%" height="15" fill="rgb(234,83,48)" fg:x="104315" fg:w="137"/><text x="11.1618%" y="911.50"></text></g><g><title>start_thread (137 samples, 0.01%)</title><rect x="10.9118%" y="885" width="0.0143%" height="15" fill="rgb(228,3,54)" fg:x="104315" fg:w="137"/><text x="11.1618%" y="895.50"></text></g><g><title>thread_native_entry (137 samples, 0.01%)</title><rect x="10.9118%" y="869" width="0.0143%" height="15" fill="rgb(226,155,13)" fg:x="104315" fg:w="137"/><text x="11.1618%" y="879.50"></text></g><g><title>Thread::call_run (137 samples, 0.01%)</title><rect x="10.9118%" y="853" width="0.0143%" height="15" fill="rgb(241,28,37)" fg:x="104315" fg:w="137"/><text x="11.1618%" y="863.50"></text></g><g><title>ConcurrentGCThread::run (137 samples, 0.01%)</title><rect x="10.9118%" y="837" width="0.0143%" height="15" fill="rgb(233,93,10)" fg:x="104315" fg:w="137"/><text x="11.1618%" y="847.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (102 samples, 0.01%)</title><rect x="10.9342%" y="821" width="0.0107%" height="15" fill="rgb(225,113,19)" fg:x="104529" fg:w="102"/><text x="11.1842%" y="831.50"></text></g><g><title>G1_Young_RemSet (113 samples, 0.01%)</title><rect x="10.9340%" y="917" width="0.0118%" height="15" fill="rgb(241,2,18)" fg:x="104527" fg:w="113"/><text x="11.1840%" y="927.50"></text></g><g><title>__clone3 (111 samples, 0.01%)</title><rect x="10.9342%" y="901" width="0.0116%" height="15" fill="rgb(228,207,21)" fg:x="104529" fg:w="111"/><text x="11.1842%" y="911.50"></text></g><g><title>start_thread (111 samples, 0.01%)</title><rect x="10.9342%" y="885" width="0.0116%" height="15" fill="rgb(213,211,35)" fg:x="104529" fg:w="111"/><text x="11.1842%" y="895.50"></text></g><g><title>thread_native_entry (111 samples, 0.01%)</title><rect x="10.9342%" y="869" width="0.0116%" height="15" fill="rgb(209,83,10)" fg:x="104529" fg:w="111"/><text x="11.1842%" y="879.50"></text></g><g><title>Thread::call_run (111 samples, 0.01%)</title><rect x="10.9342%" y="853" width="0.0116%" height="15" fill="rgb(209,164,1)" fg:x="104529" fg:w="111"/><text x="11.1842%" y="863.50"></text></g><g><title>ConcurrentGCThread::run (111 samples, 0.01%)</title><rect x="10.9342%" y="837" width="0.0116%" height="15" fill="rgb(213,184,43)" fg:x="104529" fg:w="111"/><text x="11.1842%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (111 samples, 0.01%)</title><rect x="10.9491%" y="789" width="0.0116%" height="15" fill="rgb(231,61,34)" fg:x="104672" fg:w="111"/><text x="11.1991%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (162 samples, 0.02%)</title><rect x="10.9486%" y="805" width="0.0169%" height="15" fill="rgb(235,75,3)" fg:x="104667" fg:w="162"/><text x="11.1986%" y="815.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (102 samples, 0.01%)</title><rect x="10.9656%" y="805" width="0.0107%" height="15" fill="rgb(220,106,47)" fg:x="104829" fg:w="102"/><text x="11.2156%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (102 samples, 0.01%)</title><rect x="10.9656%" y="789" width="0.0107%" height="15" fill="rgb(210,196,33)" fg:x="104829" fg:w="102"/><text x="11.2156%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (102 samples, 0.01%)</title><rect x="10.9656%" y="773" width="0.0107%" height="15" fill="rgb(229,154,42)" fg:x="104829" fg:w="102"/><text x="11.2156%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (102 samples, 0.01%)</title><rect x="10.9656%" y="757" width="0.0107%" height="15" fill="rgb(228,114,26)" fg:x="104829" fg:w="102"/><text x="11.2156%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (102 samples, 0.01%)</title><rect x="10.9656%" y="741" width="0.0107%" height="15" fill="rgb(208,144,1)" fg:x="104829" fg:w="102"/><text x="11.2156%" y="751.50"></text></g><g><title>G1ParTask::work (412 samples, 0.04%)</title><rect x="10.9486%" y="821" width="0.0431%" height="15" fill="rgb(239,112,37)" fg:x="104667" fg:w="412"/><text x="11.1986%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (105 samples, 0.01%)</title><rect x="10.9807%" y="805" width="0.0110%" height="15" fill="rgb(210,96,50)" fg:x="104974" fg:w="105"/><text x="11.2307%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (145 samples, 0.02%)</title><rect x="10.9929%" y="821" width="0.0152%" height="15" fill="rgb(222,178,2)" fg:x="105090" fg:w="145"/><text x="11.2429%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (113 samples, 0.01%)</title><rect x="10.9962%" y="805" width="0.0118%" height="15" fill="rgb(226,74,18)" fg:x="105122" fg:w="113"/><text x="11.2462%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (113 samples, 0.01%)</title><rect x="10.9962%" y="789" width="0.0118%" height="15" fill="rgb(225,67,54)" fg:x="105122" fg:w="113"/><text x="11.2462%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (113 samples, 0.01%)</title><rect x="10.9962%" y="773" width="0.0118%" height="15" fill="rgb(251,92,32)" fg:x="105122" fg:w="113"/><text x="11.2462%" y="783.50"></text></g><g><title>SpinPause (111 samples, 0.01%)</title><rect x="10.9964%" y="757" width="0.0116%" height="15" fill="rgb(228,149,22)" fg:x="105124" fg:w="111"/><text x="11.2464%" y="767.50"></text></g><g><title>__clone3 (689 samples, 0.07%)</title><rect x="10.9486%" y="901" width="0.0721%" height="15" fill="rgb(243,54,13)" fg:x="104667" fg:w="689"/><text x="11.1986%" y="911.50"></text></g><g><title>start_thread (689 samples, 0.07%)</title><rect x="10.9486%" y="885" width="0.0721%" height="15" fill="rgb(243,180,28)" fg:x="104667" fg:w="689"/><text x="11.1986%" y="895.50"></text></g><g><title>thread_native_entry (689 samples, 0.07%)</title><rect x="10.9486%" y="869" width="0.0721%" height="15" fill="rgb(208,167,24)" fg:x="104667" fg:w="689"/><text x="11.1986%" y="879.50"></text></g><g><title>Thread::call_run (689 samples, 0.07%)</title><rect x="10.9486%" y="853" width="0.0721%" height="15" fill="rgb(245,73,45)" fg:x="104667" fg:w="689"/><text x="11.1986%" y="863.50"></text></g><g><title>GangWorker::loop (689 samples, 0.07%)</title><rect x="10.9486%" y="837" width="0.0721%" height="15" fill="rgb(237,203,48)" fg:x="104667" fg:w="689"/><text x="11.1986%" y="847.50"></text></g><g><title>GC_Thread#0 (724 samples, 0.08%)</title><rect x="10.9458%" y="917" width="0.0757%" height="15" fill="rgb(211,197,16)" fg:x="104640" fg:w="724"/><text x="11.1958%" y="927.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (101 samples, 0.01%)</title><rect x="11.0242%" y="805" width="0.0106%" height="15" fill="rgb(243,99,51)" fg:x="105390" fg:w="101"/><text x="11.2742%" y="815.50"></text></g><g><title>G1RootProcessor::process_java_roots (111 samples, 0.01%)</title><rect x="11.0456%" y="789" width="0.0116%" height="15" fill="rgb(215,123,29)" fg:x="105594" fg:w="111"/><text x="11.2956%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (111 samples, 0.01%)</title><rect x="11.0456%" y="773" width="0.0116%" height="15" fill="rgb(239,186,37)" fg:x="105594" fg:w="111"/><text x="11.2956%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (111 samples, 0.01%)</title><rect x="11.0456%" y="757" width="0.0116%" height="15" fill="rgb(252,136,39)" fg:x="105594" fg:w="111"/><text x="11.2956%" y="767.50"></text></g><g><title>JavaThread::oops_do (110 samples, 0.01%)</title><rect x="11.0457%" y="741" width="0.0115%" height="15" fill="rgb(223,213,32)" fg:x="105595" fg:w="110"/><text x="11.2957%" y="751.50"></text></g><g><title>G1ParTask::work (330 samples, 0.03%)</title><rect x="11.0242%" y="821" width="0.0345%" height="15" fill="rgb(233,115,5)" fg:x="105390" fg:w="330"/><text x="11.2742%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (127 samples, 0.01%)</title><rect x="11.0455%" y="805" width="0.0133%" height="15" fill="rgb(207,226,44)" fg:x="105593" fg:w="127"/><text x="11.2955%" y="815.50"></text></g><g><title>__clone3 (536 samples, 0.06%)</title><rect x="11.0232%" y="901" width="0.0561%" height="15" fill="rgb(208,126,0)" fg:x="105380" fg:w="536"/><text x="11.2732%" y="911.50"></text></g><g><title>start_thread (536 samples, 0.06%)</title><rect x="11.0232%" y="885" width="0.0561%" height="15" fill="rgb(244,66,21)" fg:x="105380" fg:w="536"/><text x="11.2732%" y="895.50"></text></g><g><title>thread_native_entry (536 samples, 0.06%)</title><rect x="11.0232%" y="869" width="0.0561%" height="15" fill="rgb(222,97,12)" fg:x="105380" fg:w="536"/><text x="11.2732%" y="879.50"></text></g><g><title>Thread::call_run (536 samples, 0.06%)</title><rect x="11.0232%" y="853" width="0.0561%" height="15" fill="rgb(219,213,19)" fg:x="105380" fg:w="536"/><text x="11.2732%" y="863.50"></text></g><g><title>GangWorker::loop (536 samples, 0.06%)</title><rect x="11.0232%" y="837" width="0.0561%" height="15" fill="rgb(252,169,30)" fg:x="105380" fg:w="536"/><text x="11.2732%" y="847.50"></text></g><g><title>GC_Thread#1 (555 samples, 0.06%)</title><rect x="11.0215%" y="917" width="0.0581%" height="15" fill="rgb(206,32,51)" fg:x="105364" fg:w="555"/><text x="11.2715%" y="927.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (149 samples, 0.02%)</title><rect x="11.0823%" y="805" width="0.0156%" height="15" fill="rgb(250,172,42)" fg:x="105945" fg:w="149"/><text x="11.3323%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (112 samples, 0.01%)</title><rect x="11.0979%" y="725" width="0.0117%" height="15" fill="rgb(209,34,43)" fg:x="106094" fg:w="112"/><text x="11.3479%" y="735.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (120 samples, 0.01%)</title><rect x="11.0979%" y="805" width="0.0126%" height="15" fill="rgb(223,11,35)" fg:x="106094" fg:w="120"/><text x="11.3479%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (120 samples, 0.01%)</title><rect x="11.0979%" y="789" width="0.0126%" height="15" fill="rgb(251,219,26)" fg:x="106094" fg:w="120"/><text x="11.3479%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (120 samples, 0.01%)</title><rect x="11.0979%" y="773" width="0.0126%" height="15" fill="rgb(231,119,3)" fg:x="106094" fg:w="120"/><text x="11.3479%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (120 samples, 0.01%)</title><rect x="11.0979%" y="757" width="0.0126%" height="15" fill="rgb(216,97,11)" fg:x="106094" fg:w="120"/><text x="11.3479%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (120 samples, 0.01%)</title><rect x="11.0979%" y="741" width="0.0126%" height="15" fill="rgb(223,59,9)" fg:x="106094" fg:w="120"/><text x="11.3479%" y="751.50"></text></g><g><title>G1ParTask::work (403 samples, 0.04%)</title><rect x="11.0823%" y="821" width="0.0422%" height="15" fill="rgb(233,93,31)" fg:x="105945" fg:w="403"/><text x="11.3323%" y="831.50"></text></g><g><title>G1STWRefProcTaskProxy::work (109 samples, 0.01%)</title><rect x="11.1255%" y="821" width="0.0114%" height="15" fill="rgb(239,81,33)" fg:x="106358" fg:w="109"/><text x="11.3755%" y="831.50"></text></g><g><title>__clone3 (620 samples, 0.06%)</title><rect x="11.0806%" y="901" width="0.0649%" height="15" fill="rgb(213,120,34)" fg:x="105929" fg:w="620"/><text x="11.3306%" y="911.50"></text></g><g><title>start_thread (620 samples, 0.06%)</title><rect x="11.0806%" y="885" width="0.0649%" height="15" fill="rgb(243,49,53)" fg:x="105929" fg:w="620"/><text x="11.3306%" y="895.50"></text></g><g><title>thread_native_entry (620 samples, 0.06%)</title><rect x="11.0806%" y="869" width="0.0649%" height="15" fill="rgb(247,216,33)" fg:x="105929" fg:w="620"/><text x="11.3306%" y="879.50"></text></g><g><title>Thread::call_run (620 samples, 0.06%)</title><rect x="11.0806%" y="853" width="0.0649%" height="15" fill="rgb(226,26,14)" fg:x="105929" fg:w="620"/><text x="11.3306%" y="863.50"></text></g><g><title>GangWorker::loop (620 samples, 0.06%)</title><rect x="11.0806%" y="837" width="0.0649%" height="15" fill="rgb(215,49,53)" fg:x="105929" fg:w="620"/><text x="11.3306%" y="847.50"></text></g><g><title>GC_Thread#2 (634 samples, 0.07%)</title><rect x="11.0796%" y="917" width="0.0663%" height="15" fill="rgb(245,162,40)" fg:x="105919" fg:w="634"/><text x="11.3296%" y="927.50"></text></g><g><title>G1ParScanThreadState::trim_queue (111 samples, 0.01%)</title><rect x="11.1483%" y="789" width="0.0116%" height="15" fill="rgb(229,68,17)" fg:x="106576" fg:w="111"/><text x="11.3983%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (140 samples, 0.01%)</title><rect x="11.1483%" y="805" width="0.0146%" height="15" fill="rgb(213,182,10)" fg:x="106576" fg:w="140"/><text x="11.3983%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (97 samples, 0.01%)</title><rect x="11.1631%" y="725" width="0.0101%" height="15" fill="rgb(245,125,30)" fg:x="106717" fg:w="97"/><text x="11.4131%" y="735.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (107 samples, 0.01%)</title><rect x="11.1631%" y="805" width="0.0112%" height="15" fill="rgb(232,202,2)" fg:x="106717" fg:w="107"/><text x="11.4131%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (107 samples, 0.01%)</title><rect x="11.1631%" y="789" width="0.0112%" height="15" fill="rgb(237,140,51)" fg:x="106717" fg:w="107"/><text x="11.4131%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (107 samples, 0.01%)</title><rect x="11.1631%" y="773" width="0.0112%" height="15" fill="rgb(236,157,25)" fg:x="106717" fg:w="107"/><text x="11.4131%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (107 samples, 0.01%)</title><rect x="11.1631%" y="757" width="0.0112%" height="15" fill="rgb(219,209,0)" fg:x="106717" fg:w="107"/><text x="11.4131%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (107 samples, 0.01%)</title><rect x="11.1631%" y="741" width="0.0112%" height="15" fill="rgb(240,116,54)" fg:x="106717" fg:w="107"/><text x="11.4131%" y="751.50"></text></g><g><title>G1ParTask::work (391 samples, 0.04%)</title><rect x="11.1483%" y="821" width="0.0409%" height="15" fill="rgb(216,10,36)" fg:x="106576" fg:w="391"/><text x="11.3983%" y="831.50"></text></g><g><title>G1STWRefProcTaskProxy::work (135 samples, 0.01%)</title><rect x="11.1909%" y="821" width="0.0141%" height="15" fill="rgb(222,72,44)" fg:x="106983" fg:w="135"/><text x="11.4409%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (105 samples, 0.01%)</title><rect x="11.1940%" y="805" width="0.0110%" height="15" fill="rgb(232,159,9)" fg:x="107013" fg:w="105"/><text x="11.4440%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (105 samples, 0.01%)</title><rect x="11.1940%" y="789" width="0.0110%" height="15" fill="rgb(210,39,32)" fg:x="107013" fg:w="105"/><text x="11.4440%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (105 samples, 0.01%)</title><rect x="11.1940%" y="773" width="0.0110%" height="15" fill="rgb(216,194,45)" fg:x="107013" fg:w="105"/><text x="11.4440%" y="783.50"></text></g><g><title>SpinPause (103 samples, 0.01%)</title><rect x="11.1942%" y="757" width="0.0108%" height="15" fill="rgb(218,18,35)" fg:x="107015" fg:w="103"/><text x="11.4442%" y="767.50"></text></g><g><title>__clone3 (646 samples, 0.07%)</title><rect x="11.1474%" y="901" width="0.0676%" height="15" fill="rgb(207,83,51)" fg:x="106567" fg:w="646"/><text x="11.3974%" y="911.50"></text></g><g><title>start_thread (646 samples, 0.07%)</title><rect x="11.1474%" y="885" width="0.0676%" height="15" fill="rgb(225,63,43)" fg:x="106567" fg:w="646"/><text x="11.3974%" y="895.50"></text></g><g><title>thread_native_entry (646 samples, 0.07%)</title><rect x="11.1474%" y="869" width="0.0676%" height="15" fill="rgb(207,57,36)" fg:x="106567" fg:w="646"/><text x="11.3974%" y="879.50"></text></g><g><title>Thread::call_run (646 samples, 0.07%)</title><rect x="11.1474%" y="853" width="0.0676%" height="15" fill="rgb(216,99,33)" fg:x="106567" fg:w="646"/><text x="11.3974%" y="863.50"></text></g><g><title>GangWorker::loop (646 samples, 0.07%)</title><rect x="11.1474%" y="837" width="0.0676%" height="15" fill="rgb(225,42,16)" fg:x="106567" fg:w="646"/><text x="11.3974%" y="847.50"></text></g><g><title>GC_Thread#3 (664 samples, 0.07%)</title><rect x="11.1459%" y="917" width="0.0695%" height="15" fill="rgb(220,201,45)" fg:x="106553" fg:w="664"/><text x="11.3959%" y="927.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (115 samples, 0.01%)</title><rect x="11.2182%" y="805" width="0.0120%" height="15" fill="rgb(225,33,4)" fg:x="107244" fg:w="115"/><text x="11.4682%" y="815.50"></text></g><g><title>G1ParTask::work (339 samples, 0.04%)</title><rect x="11.2182%" y="821" width="0.0355%" height="15" fill="rgb(224,33,50)" fg:x="107244" fg:w="339"/><text x="11.4682%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (100 samples, 0.01%)</title><rect x="11.2432%" y="805" width="0.0105%" height="15" fill="rgb(246,198,51)" fg:x="107483" fg:w="100"/><text x="11.4932%" y="815.50"></text></g><g><title>futex_wait_queue_me (102 samples, 0.01%)</title><rect x="11.2707%" y="645" width="0.0107%" height="15" fill="rgb(205,22,4)" fg:x="107746" fg:w="102"/><text x="11.5207%" y="655.50"></text></g><g><title>schedule (100 samples, 0.01%)</title><rect x="11.2709%" y="629" width="0.0105%" height="15" fill="rgb(206,3,8)" fg:x="107748" fg:w="100"/><text x="11.5209%" y="639.50"></text></g><g><title>__schedule (100 samples, 0.01%)</title><rect x="11.2709%" y="613" width="0.0105%" height="15" fill="rgb(251,23,15)" fg:x="107748" fg:w="100"/><text x="11.5209%" y="623.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.01%)</title><rect x="11.2706%" y="693" width="0.0110%" height="15" fill="rgb(252,88,28)" fg:x="107745" fg:w="105"/><text x="11.5206%" y="703.50"></text></g><g><title>do_futex (105 samples, 0.01%)</title><rect x="11.2706%" y="677" width="0.0110%" height="15" fill="rgb(212,127,14)" fg:x="107745" fg:w="105"/><text x="11.5206%" y="687.50"></text></g><g><title>futex_wait (105 samples, 0.01%)</title><rect x="11.2706%" y="661" width="0.0110%" height="15" fill="rgb(247,145,37)" fg:x="107745" fg:w="105"/><text x="11.5206%" y="671.50"></text></g><g><title>__clone3 (620 samples, 0.06%)</title><rect x="11.2169%" y="901" width="0.0649%" height="15" fill="rgb(209,117,53)" fg:x="107232" fg:w="620"/><text x="11.4669%" y="911.50"></text></g><g><title>start_thread (620 samples, 0.06%)</title><rect x="11.2169%" y="885" width="0.0649%" height="15" fill="rgb(212,90,42)" fg:x="107232" fg:w="620"/><text x="11.4669%" y="895.50"></text></g><g><title>thread_native_entry (620 samples, 0.06%)</title><rect x="11.2169%" y="869" width="0.0649%" height="15" fill="rgb(218,164,37)" fg:x="107232" fg:w="620"/><text x="11.4669%" y="879.50"></text></g><g><title>Thread::call_run (620 samples, 0.06%)</title><rect x="11.2169%" y="853" width="0.0649%" height="15" fill="rgb(246,65,34)" fg:x="107232" fg:w="620"/><text x="11.4669%" y="863.50"></text></g><g><title>GangWorker::loop (620 samples, 0.06%)</title><rect x="11.2169%" y="837" width="0.0649%" height="15" fill="rgb(231,100,33)" fg:x="107232" fg:w="620"/><text x="11.4669%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (113 samples, 0.01%)</title><rect x="11.2700%" y="821" width="0.0118%" height="15" fill="rgb(228,126,14)" fg:x="107739" fg:w="113"/><text x="11.5200%" y="831.50"></text></g><g><title>PosixSemaphore::wait (113 samples, 0.01%)</title><rect x="11.2700%" y="805" width="0.0118%" height="15" fill="rgb(215,173,21)" fg:x="107739" fg:w="113"/><text x="11.5200%" y="815.50"></text></g><g><title>__new_sem_wait_slow64 (110 samples, 0.01%)</title><rect x="11.2703%" y="789" width="0.0115%" height="15" fill="rgb(210,6,40)" fg:x="107742" fg:w="110"/><text x="11.5203%" y="799.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (107 samples, 0.01%)</title><rect x="11.2706%" y="773" width="0.0112%" height="15" fill="rgb(212,48,18)" fg:x="107745" fg:w="107"/><text x="11.5206%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common (107 samples, 0.01%)</title><rect x="11.2706%" y="757" width="0.0112%" height="15" fill="rgb(230,214,11)" fg:x="107745" fg:w="107"/><text x="11.5206%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common64 (107 samples, 0.01%)</title><rect x="11.2706%" y="741" width="0.0112%" height="15" fill="rgb(254,105,39)" fg:x="107745" fg:w="107"/><text x="11.5206%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.01%)</title><rect x="11.2706%" y="725" width="0.0112%" height="15" fill="rgb(245,158,5)" fg:x="107745" fg:w="107"/><text x="11.5206%" y="735.50"></text></g><g><title>do_syscall_64 (107 samples, 0.01%)</title><rect x="11.2706%" y="709" width="0.0112%" height="15" fill="rgb(249,208,11)" fg:x="107745" fg:w="107"/><text x="11.5206%" y="719.50"></text></g><g><title>GC_Thread#4 (640 samples, 0.07%)</title><rect x="11.2154%" y="917" width="0.0669%" height="15" fill="rgb(210,39,28)" fg:x="107217" fg:w="640"/><text x="11.4654%" y="927.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (119 samples, 0.01%)</title><rect x="11.2851%" y="805" width="0.0124%" height="15" fill="rgb(211,56,53)" fg:x="107884" fg:w="119"/><text x="11.5351%" y="815.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (104 samples, 0.01%)</title><rect x="11.2977%" y="805" width="0.0109%" height="15" fill="rgb(226,201,30)" fg:x="108004" fg:w="104"/><text x="11.5477%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (104 samples, 0.01%)</title><rect x="11.2977%" y="789" width="0.0109%" height="15" fill="rgb(239,101,34)" fg:x="108004" fg:w="104"/><text x="11.5477%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (104 samples, 0.01%)</title><rect x="11.2977%" y="773" width="0.0109%" height="15" fill="rgb(226,209,5)" fg:x="108004" fg:w="104"/><text x="11.5477%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (104 samples, 0.01%)</title><rect x="11.2977%" y="757" width="0.0109%" height="15" fill="rgb(250,105,47)" fg:x="108004" fg:w="104"/><text x="11.5477%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (103 samples, 0.01%)</title><rect x="11.2978%" y="741" width="0.0108%" height="15" fill="rgb(230,72,3)" fg:x="108005" fg:w="103"/><text x="11.5478%" y="751.50"></text></g><g><title>G1ParTask::work (376 samples, 0.04%)</title><rect x="11.2851%" y="821" width="0.0393%" height="15" fill="rgb(232,218,39)" fg:x="107884" fg:w="376"/><text x="11.5351%" y="831.50"></text></g><g><title>G1STWRefProcTaskProxy::work (113 samples, 0.01%)</title><rect x="11.3252%" y="821" width="0.0118%" height="15" fill="rgb(248,166,6)" fg:x="108267" fg:w="113"/><text x="11.5752%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (100 samples, 0.01%)</title><rect x="11.3265%" y="805" width="0.0105%" height="15" fill="rgb(247,89,20)" fg:x="108280" fg:w="100"/><text x="11.5765%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (100 samples, 0.01%)</title><rect x="11.3265%" y="789" width="0.0105%" height="15" fill="rgb(248,130,54)" fg:x="108280" fg:w="100"/><text x="11.5765%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (100 samples, 0.01%)</title><rect x="11.3265%" y="773" width="0.0105%" height="15" fill="rgb(234,196,4)" fg:x="108280" fg:w="100"/><text x="11.5765%" y="783.50"></text></g><g><title>SpinPause (96 samples, 0.01%)</title><rect x="11.3270%" y="757" width="0.0100%" height="15" fill="rgb(250,143,31)" fg:x="108284" fg:w="96"/><text x="11.5770%" y="767.50"></text></g><g><title>__clone3 (595 samples, 0.06%)</title><rect x="11.2839%" y="901" width="0.0622%" height="15" fill="rgb(211,110,34)" fg:x="107872" fg:w="595"/><text x="11.5339%" y="911.50"></text></g><g><title>start_thread (595 samples, 0.06%)</title><rect x="11.2839%" y="885" width="0.0622%" height="15" fill="rgb(215,124,48)" fg:x="107872" fg:w="595"/><text x="11.5339%" y="895.50"></text></g><g><title>thread_native_entry (595 samples, 0.06%)</title><rect x="11.2839%" y="869" width="0.0622%" height="15" fill="rgb(216,46,13)" fg:x="107872" fg:w="595"/><text x="11.5339%" y="879.50"></text></g><g><title>Thread::call_run (595 samples, 0.06%)</title><rect x="11.2839%" y="853" width="0.0622%" height="15" fill="rgb(205,184,25)" fg:x="107872" fg:w="595"/><text x="11.5339%" y="863.50"></text></g><g><title>GangWorker::loop (595 samples, 0.06%)</title><rect x="11.2839%" y="837" width="0.0622%" height="15" fill="rgb(228,1,10)" fg:x="107872" fg:w="595"/><text x="11.5339%" y="847.50"></text></g><g><title>GC_Thread#5 (613 samples, 0.06%)</title><rect x="11.2823%" y="917" width="0.0641%" height="15" fill="rgb(213,116,27)" fg:x="107857" fg:w="613"/><text x="11.5323%" y="927.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (97 samples, 0.01%)</title><rect x="11.3477%" y="805" width="0.0101%" height="15" fill="rgb(241,95,50)" fg:x="108482" fg:w="97"/><text x="11.5977%" y="815.50"></text></g><g><title>ClassLoaderData::oops_do (110 samples, 0.01%)</title><rect x="11.3704%" y="741" width="0.0115%" height="15" fill="rgb(238,48,32)" fg:x="108699" fg:w="110"/><text x="11.6204%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (97 samples, 0.01%)</title><rect x="11.3717%" y="725" width="0.0101%" height="15" fill="rgb(235,113,49)" fg:x="108712" fg:w="97"/><text x="11.6217%" y="735.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (112 samples, 0.01%)</title><rect x="11.3703%" y="773" width="0.0117%" height="15" fill="rgb(205,127,43)" fg:x="108698" fg:w="112"/><text x="11.6203%" y="783.50"></text></g><g><title>G1CLDScanClosure::do_cld (111 samples, 0.01%)</title><rect x="11.3704%" y="757" width="0.0116%" height="15" fill="rgb(250,162,2)" fg:x="108699" fg:w="111"/><text x="11.6204%" y="767.50"></text></g><g><title>G1RootProcessor::process_java_roots (150 samples, 0.02%)</title><rect x="11.3703%" y="789" width="0.0157%" height="15" fill="rgb(220,13,41)" fg:x="108698" fg:w="150"/><text x="11.6203%" y="799.50"></text></g><g><title>G1ParTask::work (370 samples, 0.04%)</title><rect x="11.3477%" y="821" width="0.0387%" height="15" fill="rgb(249,221,25)" fg:x="108482" fg:w="370"/><text x="11.5977%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (155 samples, 0.02%)</title><rect x="11.3702%" y="805" width="0.0162%" height="15" fill="rgb(215,208,19)" fg:x="108697" fg:w="155"/><text x="11.6202%" y="815.50"></text></g><g><title>__clone3 (567 samples, 0.06%)</title><rect x="11.3473%" y="901" width="0.0593%" height="15" fill="rgb(236,175,2)" fg:x="108478" fg:w="567"/><text x="11.5973%" y="911.50"></text></g><g><title>start_thread (567 samples, 0.06%)</title><rect x="11.3473%" y="885" width="0.0593%" height="15" fill="rgb(241,52,2)" fg:x="108478" fg:w="567"/><text x="11.5973%" y="895.50"></text></g><g><title>thread_native_entry (567 samples, 0.06%)</title><rect x="11.3473%" y="869" width="0.0593%" height="15" fill="rgb(248,140,14)" fg:x="108478" fg:w="567"/><text x="11.5973%" y="879.50"></text></g><g><title>Thread::call_run (567 samples, 0.06%)</title><rect x="11.3473%" y="853" width="0.0593%" height="15" fill="rgb(253,22,42)" fg:x="108478" fg:w="567"/><text x="11.5973%" y="863.50"></text></g><g><title>GangWorker::loop (567 samples, 0.06%)</title><rect x="11.3473%" y="837" width="0.0593%" height="15" fill="rgb(234,61,47)" fg:x="108478" fg:w="567"/><text x="11.5973%" y="847.50"></text></g><g><title>GC_Thread#6 (578 samples, 0.06%)</title><rect x="11.3464%" y="917" width="0.0605%" height="15" fill="rgb(208,226,15)" fg:x="108470" fg:w="578"/><text x="11.5964%" y="927.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (142 samples, 0.01%)</title><rect x="11.4102%" y="805" width="0.0149%" height="15" fill="rgb(217,221,4)" fg:x="109080" fg:w="142"/><text x="11.6602%" y="815.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (109 samples, 0.01%)</title><rect x="11.4251%" y="805" width="0.0114%" height="15" fill="rgb(212,174,34)" fg:x="109222" fg:w="109"/><text x="11.6751%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (109 samples, 0.01%)</title><rect x="11.4251%" y="789" width="0.0114%" height="15" fill="rgb(253,83,4)" fg:x="109222" fg:w="109"/><text x="11.6751%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (109 samples, 0.01%)</title><rect x="11.4251%" y="773" width="0.0114%" height="15" fill="rgb(250,195,49)" fg:x="109222" fg:w="109"/><text x="11.6751%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (109 samples, 0.01%)</title><rect x="11.4251%" y="757" width="0.0114%" height="15" fill="rgb(241,192,25)" fg:x="109222" fg:w="109"/><text x="11.6751%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (109 samples, 0.01%)</title><rect x="11.4251%" y="741" width="0.0114%" height="15" fill="rgb(208,124,10)" fg:x="109222" fg:w="109"/><text x="11.6751%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (121 samples, 0.01%)</title><rect x="11.4440%" y="789" width="0.0127%" height="15" fill="rgb(222,33,0)" fg:x="109403" fg:w="121"/><text x="11.6940%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (104 samples, 0.01%)</title><rect x="11.4458%" y="773" width="0.0109%" height="15" fill="rgb(234,209,28)" fg:x="109420" fg:w="104"/><text x="11.6958%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (104 samples, 0.01%)</title><rect x="11.4458%" y="757" width="0.0109%" height="15" fill="rgb(224,11,23)" fg:x="109420" fg:w="104"/><text x="11.6958%" y="767.50"></text></g><g><title>JavaThread::oops_do (102 samples, 0.01%)</title><rect x="11.4460%" y="741" width="0.0107%" height="15" fill="rgb(232,99,1)" fg:x="109422" fg:w="102"/><text x="11.6960%" y="751.50"></text></g><g><title>G1ParTask::work (445 samples, 0.05%)</title><rect x="11.4102%" y="821" width="0.0465%" height="15" fill="rgb(237,95,45)" fg:x="109080" fg:w="445"/><text x="11.6602%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (123 samples, 0.01%)</title><rect x="11.4439%" y="805" width="0.0129%" height="15" fill="rgb(208,109,11)" fg:x="109402" fg:w="123"/><text x="11.6939%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (104 samples, 0.01%)</title><rect x="11.4586%" y="821" width="0.0109%" height="15" fill="rgb(216,190,48)" fg:x="109542" fg:w="104"/><text x="11.7086%" y="831.50"></text></g><g><title>__x64_sys_futex (106 samples, 0.01%)</title><rect x="11.4743%" y="693" width="0.0111%" height="15" fill="rgb(251,171,36)" fg:x="109692" fg:w="106"/><text x="11.7243%" y="703.50"></text></g><g><title>do_futex (106 samples, 0.01%)</title><rect x="11.4743%" y="677" width="0.0111%" height="15" fill="rgb(230,62,22)" fg:x="109692" fg:w="106"/><text x="11.7243%" y="687.50"></text></g><g><title>futex_wait (106 samples, 0.01%)</title><rect x="11.4743%" y="661" width="0.0111%" height="15" fill="rgb(225,114,35)" fg:x="109692" fg:w="106"/><text x="11.7243%" y="671.50"></text></g><g><title>futex_wait_queue_me (104 samples, 0.01%)</title><rect x="11.4745%" y="645" width="0.0109%" height="15" fill="rgb(215,118,42)" fg:x="109694" fg:w="104"/><text x="11.7245%" y="655.50"></text></g><g><title>schedule (103 samples, 0.01%)</title><rect x="11.4746%" y="629" width="0.0108%" height="15" fill="rgb(243,119,21)" fg:x="109695" fg:w="103"/><text x="11.7246%" y="639.50"></text></g><g><title>__schedule (100 samples, 0.01%)</title><rect x="11.4749%" y="613" width="0.0105%" height="15" fill="rgb(252,177,53)" fg:x="109698" fg:w="100"/><text x="11.7249%" y="623.50"></text></g><g><title>__clone3 (736 samples, 0.08%)</title><rect x="11.4085%" y="901" width="0.0770%" height="15" fill="rgb(237,209,29)" fg:x="109063" fg:w="736"/><text x="11.6585%" y="911.50"></text></g><g><title>start_thread (736 samples, 0.08%)</title><rect x="11.4085%" y="885" width="0.0770%" height="15" fill="rgb(212,65,23)" fg:x="109063" fg:w="736"/><text x="11.6585%" y="895.50"></text></g><g><title>thread_native_entry (736 samples, 0.08%)</title><rect x="11.4085%" y="869" width="0.0770%" height="15" fill="rgb(230,222,46)" fg:x="109063" fg:w="736"/><text x="11.6585%" y="879.50"></text></g><g><title>Thread::call_run (736 samples, 0.08%)</title><rect x="11.4085%" y="853" width="0.0770%" height="15" fill="rgb(215,135,32)" fg:x="109063" fg:w="736"/><text x="11.6585%" y="863.50"></text></g><g><title>GangWorker::loop (736 samples, 0.08%)</title><rect x="11.4085%" y="837" width="0.0770%" height="15" fill="rgb(246,101,22)" fg:x="109063" fg:w="736"/><text x="11.6585%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (112 samples, 0.01%)</title><rect x="11.4737%" y="821" width="0.0117%" height="15" fill="rgb(206,107,13)" fg:x="109687" fg:w="112"/><text x="11.7237%" y="831.50"></text></g><g><title>PosixSemaphore::wait (112 samples, 0.01%)</title><rect x="11.4737%" y="805" width="0.0117%" height="15" fill="rgb(250,100,44)" fg:x="109687" fg:w="112"/><text x="11.7237%" y="815.50"></text></g><g><title>__new_sem_wait_slow64 (112 samples, 0.01%)</title><rect x="11.4737%" y="789" width="0.0117%" height="15" fill="rgb(231,147,38)" fg:x="109687" fg:w="112"/><text x="11.7237%" y="799.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (111 samples, 0.01%)</title><rect x="11.4738%" y="773" width="0.0116%" height="15" fill="rgb(229,8,40)" fg:x="109688" fg:w="111"/><text x="11.7238%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common (111 samples, 0.01%)</title><rect x="11.4738%" y="757" width="0.0116%" height="15" fill="rgb(221,135,30)" fg:x="109688" fg:w="111"/><text x="11.7238%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common64 (111 samples, 0.01%)</title><rect x="11.4738%" y="741" width="0.0116%" height="15" fill="rgb(249,193,18)" fg:x="109688" fg:w="111"/><text x="11.7238%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.01%)</title><rect x="11.4743%" y="725" width="0.0112%" height="15" fill="rgb(209,133,39)" fg:x="109692" fg:w="107"/><text x="11.7243%" y="735.50"></text></g><g><title>do_syscall_64 (107 samples, 0.01%)</title><rect x="11.4743%" y="709" width="0.0112%" height="15" fill="rgb(232,100,14)" fg:x="109692" fg:w="107"/><text x="11.7243%" y="719.50"></text></g><g><title>GC_Thread#7 (758 samples, 0.08%)</title><rect x="11.4069%" y="917" width="0.0793%" height="15" fill="rgb(224,185,1)" fg:x="109048" fg:w="758"/><text x="11.6569%" y="927.50"></text></g><g><title>[perf-722681.map] (129 samples, 0.01%)</title><rect x="11.4903%" y="901" width="0.0135%" height="15" fill="rgb(223,139,8)" fg:x="109845" fg:w="129"/><text x="11.7403%" y="911.50"></text></g><g><title>Service_Thread (139 samples, 0.01%)</title><rect x="11.4895%" y="917" width="0.0145%" height="15" fill="rgb(232,213,38)" fg:x="109838" fg:w="139"/><text x="11.7395%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (131 samples, 0.01%)</title><rect x="11.5167%" y="533" width="0.0137%" height="15" fill="rgb(207,94,22)" fg:x="110098" fg:w="131"/><text x="11.7667%" y="543.50"></text></g><g><title>x86_pmu_enable (129 samples, 0.01%)</title><rect x="11.5169%" y="517" width="0.0135%" height="15" fill="rgb(219,183,54)" fg:x="110100" fg:w="129"/><text x="11.7669%" y="527.50"></text></g><g><title>intel_pmu_enable_all (129 samples, 0.01%)</title><rect x="11.5169%" y="501" width="0.0135%" height="15" fill="rgb(216,185,54)" fg:x="110100" fg:w="129"/><text x="11.7669%" y="511.50"></text></g><g><title>native_write_msr (128 samples, 0.01%)</title><rect x="11.5170%" y="485" width="0.0134%" height="15" fill="rgb(254,217,39)" fg:x="110101" fg:w="128"/><text x="11.7670%" y="495.50"></text></g><g><title>finish_task_switch.isra.0 (136 samples, 0.01%)</title><rect x="11.5165%" y="549" width="0.0142%" height="15" fill="rgb(240,178,23)" fg:x="110096" fg:w="136"/><text x="11.7665%" y="559.50"></text></g><g><title>futex_wait_queue_me (207 samples, 0.02%)</title><rect x="11.5115%" y="597" width="0.0217%" height="15" fill="rgb(218,11,47)" fg:x="110048" fg:w="207"/><text x="11.7615%" y="607.50"></text></g><g><title>schedule (187 samples, 0.02%)</title><rect x="11.5136%" y="581" width="0.0196%" height="15" fill="rgb(218,51,51)" fg:x="110068" fg:w="187"/><text x="11.7636%" y="591.50"></text></g><g><title>__schedule (184 samples, 0.02%)</title><rect x="11.5139%" y="565" width="0.0192%" height="15" fill="rgb(238,126,27)" fg:x="110071" fg:w="184"/><text x="11.7639%" y="575.50"></text></g><g><title>futex_wait (224 samples, 0.02%)</title><rect x="11.5109%" y="613" width="0.0234%" height="15" fill="rgb(249,202,22)" fg:x="110042" fg:w="224"/><text x="11.7609%" y="623.50"></text></g><g><title>do_futex (225 samples, 0.02%)</title><rect x="11.5109%" y="629" width="0.0235%" height="15" fill="rgb(254,195,49)" fg:x="110042" fg:w="225"/><text x="11.7609%" y="639.50"></text></g><g><title>__x64_sys_futex (233 samples, 0.02%)</title><rect x="11.5105%" y="645" width="0.0244%" height="15" fill="rgb(208,123,14)" fg:x="110039" fg:w="233"/><text x="11.7605%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (254 samples, 0.03%)</title><rect x="11.5104%" y="677" width="0.0266%" height="15" fill="rgb(224,200,8)" fg:x="110038" fg:w="254"/><text x="11.7604%" y="687.50"></text></g><g><title>do_syscall_64 (253 samples, 0.03%)</title><rect x="11.5105%" y="661" width="0.0265%" height="15" fill="rgb(217,61,36)" fg:x="110039" fg:w="253"/><text x="11.7605%" y="671.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (258 samples, 0.03%)</title><rect x="11.5101%" y="725" width="0.0270%" height="15" fill="rgb(206,35,45)" fg:x="110035" fg:w="258"/><text x="11.7601%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common (258 samples, 0.03%)</title><rect x="11.5101%" y="709" width="0.0270%" height="15" fill="rgb(217,65,33)" fg:x="110035" fg:w="258"/><text x="11.7601%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common64 (258 samples, 0.03%)</title><rect x="11.5101%" y="693" width="0.0270%" height="15" fill="rgb(222,158,48)" fg:x="110035" fg:w="258"/><text x="11.7601%" y="703.50"></text></g><g><title>___pthread_cond_timedwait64 (267 samples, 0.03%)</title><rect x="11.5098%" y="757" width="0.0279%" height="15" fill="rgb(254,2,54)" fg:x="110032" fg:w="267"/><text x="11.7598%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (266 samples, 0.03%)</title><rect x="11.5099%" y="741" width="0.0278%" height="15" fill="rgb(250,143,38)" fg:x="110033" fg:w="266"/><text x="11.7599%" y="751.50"></text></g><g><title>Monitor::IWait (316 samples, 0.03%)</title><rect x="11.5088%" y="789" width="0.0331%" height="15" fill="rgb(248,25,0)" fg:x="110022" fg:w="316"/><text x="11.7588%" y="799.50"></text></g><g><title>os::PlatformEvent::park (309 samples, 0.03%)</title><rect x="11.5095%" y="773" width="0.0323%" height="15" fill="rgb(206,152,27)" fg:x="110029" fg:w="309"/><text x="11.7595%" y="783.50"></text></g><g><title>Monitor::wait (318 samples, 0.03%)</title><rect x="11.5087%" y="805" width="0.0333%" height="15" fill="rgb(240,77,30)" fg:x="110021" fg:w="318"/><text x="11.7587%" y="815.50"></text></g><g><title>NMethodSweeper::process_compiled_method (96 samples, 0.01%)</title><rect x="11.5453%" y="773" width="0.0100%" height="15" fill="rgb(231,5,3)" fg:x="110371" fg:w="96"/><text x="11.7953%" y="783.50"></text></g><g><title>NMethodSweeper::possibly_sweep (130 samples, 0.01%)</title><rect x="11.5419%" y="805" width="0.0136%" height="15" fill="rgb(207,226,32)" fg:x="110339" fg:w="130"/><text x="11.7919%" y="815.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (120 samples, 0.01%)</title><rect x="11.5430%" y="789" width="0.0126%" height="15" fill="rgb(222,207,47)" fg:x="110349" fg:w="120"/><text x="11.7930%" y="799.50"></text></g><g><title>__clone3 (472 samples, 0.05%)</title><rect x="11.5070%" y="901" width="0.0494%" height="15" fill="rgb(229,115,45)" fg:x="110005" fg:w="472"/><text x="11.7570%" y="911.50"></text></g><g><title>start_thread (472 samples, 0.05%)</title><rect x="11.5070%" y="885" width="0.0494%" height="15" fill="rgb(224,191,6)" fg:x="110005" fg:w="472"/><text x="11.7570%" y="895.50"></text></g><g><title>thread_native_entry (472 samples, 0.05%)</title><rect x="11.5070%" y="869" width="0.0494%" height="15" fill="rgb(230,227,24)" fg:x="110005" fg:w="472"/><text x="11.7570%" y="879.50"></text></g><g><title>Thread::call_run (472 samples, 0.05%)</title><rect x="11.5070%" y="853" width="0.0494%" height="15" fill="rgb(228,80,19)" fg:x="110005" fg:w="472"/><text x="11.7570%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (472 samples, 0.05%)</title><rect x="11.5070%" y="837" width="0.0494%" height="15" fill="rgb(247,229,0)" fg:x="110005" fg:w="472"/><text x="11.7570%" y="847.50"></text></g><g><title>NMethodSweeper::sweeper_loop (472 samples, 0.05%)</title><rect x="11.5070%" y="821" width="0.0494%" height="15" fill="rgb(237,194,15)" fg:x="110005" fg:w="472"/><text x="11.7570%" y="831.50"></text></g><g><title>Sweeper_thread (491 samples, 0.05%)</title><rect x="11.5051%" y="917" width="0.0514%" height="15" fill="rgb(219,203,20)" fg:x="109987" fg:w="491"/><text x="11.7551%" y="927.50"></text></g><g><title>get_totalticks (125 samples, 0.01%)</title><rect x="11.6247%" y="853" width="0.0131%" height="15" fill="rgb(234,128,8)" fg:x="111130" fg:w="125"/><text x="11.8747%" y="863.50"></text></g><g><title>get_cpu_load (128 samples, 0.01%)</title><rect x="11.6245%" y="885" width="0.0134%" height="15" fill="rgb(248,202,8)" fg:x="111128" fg:w="128"/><text x="11.8745%" y="895.50"></text></g><g><title>get_cpuload_internal (128 samples, 0.01%)</title><rect x="11.6245%" y="869" width="0.0134%" height="15" fill="rgb(206,104,37)" fg:x="111128" fg:w="128"/><text x="11.8745%" y="879.50"></text></g><g><title>[perf-722681.map] (766 samples, 0.08%)</title><rect x="11.5594%" y="901" width="0.0801%" height="15" fill="rgb(223,8,27)" fg:x="110506" fg:w="766"/><text x="11.8094%" y="911.50"></text></g><g><title>Thread-0 (854 samples, 0.09%)</title><rect x="11.5565%" y="917" width="0.0893%" height="15" fill="rgb(216,217,28)" fg:x="110478" fg:w="854"/><text x="11.8065%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (193 samples, 0.02%)</title><rect x="11.6597%" y="533" width="0.0202%" height="15" fill="rgb(249,199,1)" fg:x="111465" fg:w="193"/><text x="11.9097%" y="543.50"></text></g><g><title>x86_pmu_enable (189 samples, 0.02%)</title><rect x="11.6601%" y="517" width="0.0198%" height="15" fill="rgb(240,85,17)" fg:x="111469" fg:w="189"/><text x="11.9101%" y="527.50"></text></g><g><title>intel_pmu_enable_all (188 samples, 0.02%)</title><rect x="11.6602%" y="501" width="0.0197%" height="15" fill="rgb(206,108,45)" fg:x="111470" fg:w="188"/><text x="11.9102%" y="511.50"></text></g><g><title>native_write_msr (186 samples, 0.02%)</title><rect x="11.6604%" y="485" width="0.0195%" height="15" fill="rgb(245,210,41)" fg:x="111472" fg:w="186"/><text x="11.9104%" y="495.50"></text></g><g><title>finish_task_switch.isra.0 (195 samples, 0.02%)</title><rect x="11.6596%" y="549" width="0.0204%" height="15" fill="rgb(206,13,37)" fg:x="111464" fg:w="195"/><text x="11.9096%" y="559.50"></text></g><g><title>futex_wait_queue_me (230 samples, 0.02%)</title><rect x="11.6571%" y="597" width="0.0241%" height="15" fill="rgb(250,61,18)" fg:x="111440" fg:w="230"/><text x="11.9071%" y="607.50"></text></g><g><title>schedule (219 samples, 0.02%)</title><rect x="11.6582%" y="581" width="0.0229%" height="15" fill="rgb(235,172,48)" fg:x="111451" fg:w="219"/><text x="11.9082%" y="591.50"></text></g><g><title>__schedule (218 samples, 0.02%)</title><rect x="11.6584%" y="565" width="0.0228%" height="15" fill="rgb(249,201,17)" fg:x="111452" fg:w="218"/><text x="11.9084%" y="575.50"></text></g><g><title>__x64_sys_futex (243 samples, 0.03%)</title><rect x="11.6561%" y="645" width="0.0254%" height="15" fill="rgb(219,208,6)" fg:x="111430" fg:w="243"/><text x="11.9061%" y="655.50"></text></g><g><title>do_futex (241 samples, 0.03%)</title><rect x="11.6563%" y="629" width="0.0252%" height="15" fill="rgb(248,31,23)" fg:x="111432" fg:w="241"/><text x="11.9063%" y="639.50"></text></g><g><title>futex_wait (237 samples, 0.02%)</title><rect x="11.6567%" y="613" width="0.0248%" height="15" fill="rgb(245,15,42)" fg:x="111436" fg:w="237"/><text x="11.9067%" y="623.50"></text></g><g><title>do_syscall_64 (248 samples, 0.03%)</title><rect x="11.6561%" y="661" width="0.0259%" height="15" fill="rgb(222,217,39)" fg:x="111430" fg:w="248"/><text x="11.9061%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (249 samples, 0.03%)</title><rect x="11.6561%" y="677" width="0.0260%" height="15" fill="rgb(210,219,27)" fg:x="111430" fg:w="249"/><text x="11.9061%" y="687.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (254 samples, 0.03%)</title><rect x="11.6556%" y="725" width="0.0266%" height="15" fill="rgb(252,166,36)" fg:x="111426" fg:w="254"/><text x="11.9056%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common (254 samples, 0.03%)</title><rect x="11.6556%" y="709" width="0.0266%" height="15" fill="rgb(245,132,34)" fg:x="111426" fg:w="254"/><text x="11.9056%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common64 (254 samples, 0.03%)</title><rect x="11.6556%" y="693" width="0.0266%" height="15" fill="rgb(236,54,3)" fg:x="111426" fg:w="254"/><text x="11.9056%" y="703.50"></text></g><g><title>___pthread_cond_timedwait64 (264 samples, 0.03%)</title><rect x="11.6552%" y="757" width="0.0276%" height="15" fill="rgb(241,173,43)" fg:x="111422" fg:w="264"/><text x="11.9052%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (263 samples, 0.03%)</title><rect x="11.6553%" y="741" width="0.0275%" height="15" fill="rgb(215,190,9)" fg:x="111423" fg:w="263"/><text x="11.9053%" y="751.50"></text></g><g><title>Monitor::wait (296 samples, 0.03%)</title><rect x="11.6536%" y="805" width="0.0310%" height="15" fill="rgb(242,101,16)" fg:x="111407" fg:w="296"/><text x="11.9036%" y="815.50"></text></g><g><title>Monitor::IWait (293 samples, 0.03%)</title><rect x="11.6540%" y="789" width="0.0306%" height="15" fill="rgb(223,190,21)" fg:x="111410" fg:w="293"/><text x="11.9040%" y="799.50"></text></g><g><title>os::PlatformEvent::park (283 samples, 0.03%)</title><rect x="11.6550%" y="773" width="0.0296%" height="15" fill="rgb(215,228,25)" fg:x="111420" fg:w="283"/><text x="11.9050%" y="783.50"></text></g><g><title>VM_Periodic_Tas (381 samples, 0.04%)</title><rect x="11.6458%" y="917" width="0.0399%" height="15" fill="rgb(225,36,22)" fg:x="111332" fg:w="381"/><text x="11.8958%" y="927.50"></text></g><g><title>__clone3 (362 samples, 0.04%)</title><rect x="11.6478%" y="901" width="0.0379%" height="15" fill="rgb(251,106,46)" fg:x="111351" fg:w="362"/><text x="11.8978%" y="911.50"></text></g><g><title>start_thread (362 samples, 0.04%)</title><rect x="11.6478%" y="885" width="0.0379%" height="15" fill="rgb(208,90,1)" fg:x="111351" fg:w="362"/><text x="11.8978%" y="895.50"></text></g><g><title>thread_native_entry (352 samples, 0.04%)</title><rect x="11.6488%" y="869" width="0.0368%" height="15" fill="rgb(243,10,4)" fg:x="111361" fg:w="352"/><text x="11.8988%" y="879.50"></text></g><g><title>Thread::call_run (352 samples, 0.04%)</title><rect x="11.6488%" y="853" width="0.0368%" height="15" fill="rgb(212,137,27)" fg:x="111361" fg:w="352"/><text x="11.8988%" y="863.50"></text></g><g><title>WatcherThread::run (352 samples, 0.04%)</title><rect x="11.6488%" y="837" width="0.0368%" height="15" fill="rgb(231,220,49)" fg:x="111361" fg:w="352"/><text x="11.8988%" y="847.50"></text></g><g><title>WatcherThread::sleep (312 samples, 0.03%)</title><rect x="11.6530%" y="821" width="0.0326%" height="15" fill="rgb(237,96,20)" fg:x="111401" fg:w="312"/><text x="11.9030%" y="831.50"></text></g><g><title>WorkGang::run_task (117 samples, 0.01%)</title><rect x="11.7255%" y="773" width="0.0122%" height="15" fill="rgb(239,229,30)" fg:x="112094" fg:w="117"/><text x="11.9755%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (115 samples, 0.01%)</title><rect x="11.7257%" y="757" width="0.0120%" height="15" fill="rgb(219,65,33)" fg:x="112096" fg:w="115"/><text x="11.9757%" y="767.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (123 samples, 0.01%)</title><rect x="11.7250%" y="789" width="0.0129%" height="15" fill="rgb(243,134,7)" fg:x="112089" fg:w="123"/><text x="11.9750%" y="799.50"></text></g><g><title>SafepointSynchronize::begin (362 samples, 0.04%)</title><rect x="11.7054%" y="805" width="0.0379%" height="15" fill="rgb(216,177,54)" fg:x="111902" fg:w="362"/><text x="11.9554%" y="815.50"></text></g><g><title>VM_Operation::evaluate (142 samples, 0.01%)</title><rect x="11.7465%" y="789" width="0.0149%" height="15" fill="rgb(211,160,20)" fg:x="112295" fg:w="142"/><text x="11.9965%" y="799.50"></text></g><g><title>VMThread::evaluate_operation (145 samples, 0.02%)</title><rect x="11.7464%" y="805" width="0.0152%" height="15" fill="rgb(239,85,39)" fg:x="112294" fg:w="145"/><text x="11.9964%" y="815.50"></text></g><g><title>__clone3 (613 samples, 0.06%)</title><rect x="11.6977%" y="901" width="0.0641%" height="15" fill="rgb(232,125,22)" fg:x="111828" fg:w="613"/><text x="11.9477%" y="911.50"></text></g><g><title>start_thread (612 samples, 0.06%)</title><rect x="11.6978%" y="885" width="0.0640%" height="15" fill="rgb(244,57,34)" fg:x="111829" fg:w="612"/><text x="11.9478%" y="895.50"></text></g><g><title>thread_native_entry (610 samples, 0.06%)</title><rect x="11.6980%" y="869" width="0.0638%" height="15" fill="rgb(214,203,32)" fg:x="111831" fg:w="610"/><text x="11.9480%" y="879.50"></text></g><g><title>Thread::call_run (610 samples, 0.06%)</title><rect x="11.6980%" y="853" width="0.0638%" height="15" fill="rgb(207,58,43)" fg:x="111831" fg:w="610"/><text x="11.9480%" y="863.50"></text></g><g><title>VMThread::run (610 samples, 0.06%)</title><rect x="11.6980%" y="837" width="0.0638%" height="15" fill="rgb(215,193,15)" fg:x="111831" fg:w="610"/><text x="11.9480%" y="847.50"></text></g><g><title>VMThread::loop (610 samples, 0.06%)</title><rect x="11.6980%" y="821" width="0.0638%" height="15" fill="rgb(232,15,44)" fg:x="111831" fg:w="610"/><text x="11.9480%" y="831.50"></text></g><g><title>VM_Thread (744 samples, 0.08%)</title><rect x="11.6857%" y="917" width="0.0778%" height="15" fill="rgb(212,3,48)" fg:x="111713" fg:w="744"/><text x="11.9357%" y="927.50"></text></g><g><title>futex_wait (98 samples, 0.01%)</title><rect x="11.7982%" y="821" width="0.0103%" height="15" fill="rgb(218,128,7)" fg:x="112789" fg:w="98"/><text x="12.0482%" y="831.50"></text></g><g><title>__x64_sys_futex (108 samples, 0.01%)</title><rect x="11.7980%" y="853" width="0.0113%" height="15" fill="rgb(226,216,39)" fg:x="112787" fg:w="108"/><text x="12.0480%" y="863.50"></text></g><g><title>do_futex (107 samples, 0.01%)</title><rect x="11.7981%" y="837" width="0.0112%" height="15" fill="rgb(243,47,51)" fg:x="112788" fg:w="107"/><text x="12.0481%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (296 samples, 0.03%)</title><rect x="11.7894%" y="885" width="0.0310%" height="15" fill="rgb(241,183,40)" fg:x="112705" fg:w="296"/><text x="12.0394%" y="895.50"></text></g><g><title>do_syscall_64 (295 samples, 0.03%)</title><rect x="11.7895%" y="869" width="0.0309%" height="15" fill="rgb(231,217,32)" fg:x="112706" fg:w="295"/><text x="12.0395%" y="879.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (548 samples, 0.06%)</title><rect x="11.7671%" y="901" width="0.0573%" height="15" fill="rgb(229,61,38)" fg:x="112492" fg:w="548"/><text x="12.0171%" y="911.50"></text></g><g><title>bazel (598 samples, 0.06%)</title><rect x="11.7668%" y="917" width="0.0626%" height="15" fill="rgb(225,210,5)" fg:x="112489" fg:w="598"/><text x="12.0168%" y="927.50"></text></g><g><title>__libc_start_call_main (111 samples, 0.01%)</title><rect x="11.8396%" y="869" width="0.0116%" height="15" fill="rgb(231,79,45)" fg:x="113185" fg:w="111"/><text x="12.0896%" y="879.50"></text></g><g><title>main (103 samples, 0.01%)</title><rect x="11.8405%" y="853" width="0.0108%" height="15" fill="rgb(224,100,7)" fg:x="113193" fg:w="103"/><text x="12.0905%" y="863.50"></text></g><g><title>__libc_start_main_impl (112 samples, 0.01%)</title><rect x="11.8396%" y="885" width="0.0117%" height="15" fill="rgb(241,198,18)" fg:x="113185" fg:w="112"/><text x="12.0896%" y="895.50"></text></g><g><title>_dl_map_object_deps (100 samples, 0.01%)</title><rect x="11.8531%" y="821" width="0.0105%" height="15" fill="rgb(252,97,53)" fg:x="113314" fg:w="100"/><text x="12.1031%" y="831.50"></text></g><g><title>_dl_catch_exception (99 samples, 0.01%)</title><rect x="11.8532%" y="805" width="0.0104%" height="15" fill="rgb(220,88,7)" fg:x="113315" fg:w="99"/><text x="12.1032%" y="815.50"></text></g><g><title>openaux (98 samples, 0.01%)</title><rect x="11.8533%" y="789" width="0.0103%" height="15" fill="rgb(213,176,14)" fg:x="113316" fg:w="98"/><text x="12.1033%" y="799.50"></text></g><g><title>_dl_map_object (98 samples, 0.01%)</title><rect x="11.8533%" y="773" width="0.0103%" height="15" fill="rgb(246,73,7)" fg:x="113316" fg:w="98"/><text x="12.1033%" y="783.50"></text></g><g><title>_dl_lookup_symbol_x (139 samples, 0.01%)</title><rect x="11.8709%" y="773" width="0.0145%" height="15" fill="rgb(245,64,36)" fg:x="113484" fg:w="139"/><text x="12.1209%" y="783.50"></text></g><g><title>elf_machine_rela (174 samples, 0.02%)</title><rect x="11.8679%" y="789" width="0.0182%" height="15" fill="rgb(245,80,10)" fg:x="113455" fg:w="174"/><text x="12.1179%" y="799.50"></text></g><g><title>_dl_relocate_object (219 samples, 0.02%)</title><rect x="11.8641%" y="821" width="0.0229%" height="15" fill="rgb(232,107,50)" fg:x="113419" fg:w="219"/><text x="12.1141%" y="831.50"></text></g><g><title>elf_dynamic_do_Rela (206 samples, 0.02%)</title><rect x="11.8655%" y="805" width="0.0215%" height="15" fill="rgb(253,3,0)" fg:x="113432" fg:w="206"/><text x="12.1155%" y="815.50"></text></g><g><title>dl_main (350 samples, 0.04%)</title><rect x="11.8516%" y="837" width="0.0366%" height="15" fill="rgb(212,99,53)" fg:x="113299" fg:w="350"/><text x="12.1016%" y="847.50"></text></g><g><title>_dl_start_final (356 samples, 0.04%)</title><rect x="11.8513%" y="869" width="0.0372%" height="15" fill="rgb(249,111,54)" fg:x="113297" fg:w="356"/><text x="12.1013%" y="879.50"></text></g><g><title>_dl_sysdep_start (355 samples, 0.04%)</title><rect x="11.8515%" y="853" width="0.0371%" height="15" fill="rgb(249,55,30)" fg:x="113298" fg:w="355"/><text x="12.1015%" y="863.50"></text></g><g><title>_dl_start (362 samples, 0.04%)</title><rect x="11.8513%" y="885" width="0.0379%" height="15" fill="rgb(237,47,42)" fg:x="113297" fg:w="362"/><text x="12.1013%" y="895.50"></text></g><g><title>_start (478 samples, 0.05%)</title><rect x="11.8396%" y="901" width="0.0500%" height="15" fill="rgb(211,20,18)" fg:x="113185" fg:w="478"/><text x="12.0896%" y="911.50"></text></g><g><title>build-runfiles (671 samples, 0.07%)</title><rect x="11.8295%" y="917" width="0.0702%" height="15" fill="rgb(231,203,46)" fg:x="113088" fg:w="671"/><text x="12.0795%" y="927.50"></text></g><g><title>filemap_map_pages (118 samples, 0.01%)</title><rect x="11.9547%" y="421" width="0.0123%" height="15" fill="rgb(237,142,3)" fg:x="114285" fg:w="118"/><text x="12.2047%" y="431.50"></text></g><g><title>do_fault (149 samples, 0.02%)</title><rect x="11.9538%" y="469" width="0.0156%" height="15" fill="rgb(241,107,1)" fg:x="114276" fg:w="149"/><text x="12.2038%" y="479.50"></text></g><g><title>do_read_fault (148 samples, 0.02%)</title><rect x="11.9539%" y="453" width="0.0155%" height="15" fill="rgb(229,83,13)" fg:x="114277" fg:w="148"/><text x="12.2039%" y="463.50"></text></g><g><title>xfs_filemap_map_pages (146 samples, 0.02%)</title><rect x="11.9541%" y="437" width="0.0153%" height="15" fill="rgb(241,91,40)" fg:x="114279" fg:w="146"/><text x="12.2041%" y="447.50"></text></g><g><title>handle_pte_fault (158 samples, 0.02%)</title><rect x="11.9535%" y="485" width="0.0165%" height="15" fill="rgb(225,3,45)" fg:x="114274" fg:w="158"/><text x="12.2035%" y="495.50"></text></g><g><title>__handle_mm_fault (167 samples, 0.02%)</title><rect x="11.9529%" y="501" width="0.0175%" height="15" fill="rgb(244,223,14)" fg:x="114268" fg:w="167"/><text x="12.2029%" y="511.50"></text></g><g><title>handle_mm_fault (174 samples, 0.02%)</title><rect x="11.9523%" y="517" width="0.0182%" height="15" fill="rgb(224,124,37)" fg:x="114262" fg:w="174"/><text x="12.2023%" y="527.50"></text></g><g><title>do_user_addr_fault (188 samples, 0.02%)</title><rect x="11.9509%" y="533" width="0.0197%" height="15" fill="rgb(251,171,30)" fg:x="114249" fg:w="188"/><text x="12.2009%" y="543.50"></text></g><g><title>asm_exc_page_fault (195 samples, 0.02%)</title><rect x="11.9506%" y="565" width="0.0204%" height="15" fill="rgb(236,46,54)" fg:x="114246" fg:w="195"/><text x="12.2006%" y="575.50"></text></g><g><title>exc_page_fault (194 samples, 0.02%)</title><rect x="11.9507%" y="549" width="0.0203%" height="15" fill="rgb(245,213,5)" fg:x="114247" fg:w="194"/><text x="12.2007%" y="559.50"></text></g><g><title>[libc.so.6] (238 samples, 0.02%)</title><rect x="11.9467%" y="581" width="0.0249%" height="15" fill="rgb(230,144,27)" fg:x="114209" fg:w="238"/><text x="12.1967%" y="591.50"></text></g><g><title>load_elf_binary (109 samples, 0.01%)</title><rect x="11.9806%" y="437" width="0.0114%" height="15" fill="rgb(220,86,6)" fg:x="114533" fg:w="109"/><text x="12.2306%" y="447.50"></text></g><g><title>_ZdlPv (210 samples, 0.02%)</title><rect x="12.0521%" y="213" width="0.0220%" height="15" fill="rgb(240,20,13)" fg:x="115216" fg:w="210"/><text x="12.3021%" y="223.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (199 samples, 0.02%)</title><rect x="12.0532%" y="197" width="0.0208%" height="15" fill="rgb(217,89,34)" fg:x="115227" fg:w="199"/><text x="12.3032%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (166 samples, 0.02%)</title><rect x="12.0567%" y="181" width="0.0174%" height="15" fill="rgb(229,13,5)" fg:x="115260" fg:w="166"/><text x="12.3067%" y="191.50"></text></g><g><title>_ZdlPv (227 samples, 0.02%)</title><rect x="12.0505%" y="229" width="0.0237%" height="15" fill="rgb(244,67,35)" fg:x="115201" fg:w="227"/><text x="12.3005%" y="239.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (237 samples, 0.02%)</title><rect x="12.0496%" y="245" width="0.0248%" height="15" fill="rgb(221,40,2)" fg:x="115192" fg:w="237"/><text x="12.2996%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (182 samples, 0.02%)</title><rect x="12.0842%" y="181" width="0.0190%" height="15" fill="rgb(237,157,21)" fg:x="115523" fg:w="182"/><text x="12.3342%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (139 samples, 0.01%)</title><rect x="12.0887%" y="165" width="0.0145%" height="15" fill="rgb(222,94,11)" fg:x="115566" fg:w="139"/><text x="12.3387%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (100 samples, 0.01%)</title><rect x="12.0928%" y="149" width="0.0105%" height="15" fill="rgb(249,113,6)" fg:x="115605" fg:w="100"/><text x="12.3428%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (99 samples, 0.01%)</title><rect x="12.0929%" y="133" width="0.0104%" height="15" fill="rgb(238,137,36)" fg:x="115606" fg:w="99"/><text x="12.3429%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (96 samples, 0.01%)</title><rect x="12.0932%" y="117" width="0.0100%" height="15" fill="rgb(210,102,26)" fg:x="115609" fg:w="96"/><text x="12.3432%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (218 samples, 0.02%)</title><rect x="12.0814%" y="197" width="0.0228%" height="15" fill="rgb(218,30,30)" fg:x="115496" fg:w="218"/><text x="12.3314%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (244 samples, 0.03%)</title><rect x="12.0798%" y="213" width="0.0255%" height="15" fill="rgb(214,67,26)" fg:x="115481" fg:w="244"/><text x="12.3298%" y="223.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (597 samples, 0.06%)</title><rect x="12.0437%" y="261" width="0.0624%" height="15" fill="rgb(251,9,53)" fg:x="115136" fg:w="597"/><text x="12.2937%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (268 samples, 0.03%)</title><rect x="12.0781%" y="245" width="0.0280%" height="15" fill="rgb(228,204,25)" fg:x="115465" fg:w="268"/><text x="12.3281%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (267 samples, 0.03%)</title><rect x="12.0782%" y="229" width="0.0279%" height="15" fill="rgb(207,153,8)" fg:x="115466" fg:w="267"/><text x="12.3282%" y="239.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (714 samples, 0.07%)</title><rect x="12.0321%" y="277" width="0.0747%" height="15" fill="rgb(242,9,16)" fg:x="115025" fg:w="714"/><text x="12.2821%" y="287.50"></text></g><g><title>_ZdlPv (133 samples, 0.01%)</title><rect x="12.1328%" y="149" width="0.0139%" height="15" fill="rgb(217,211,10)" fg:x="115988" fg:w="133"/><text x="12.3828%" y="159.50"></text></g><g><title>_ZdlPv (177 samples, 0.02%)</title><rect x="12.1307%" y="165" width="0.0185%" height="15" fill="rgb(219,228,52)" fg:x="115968" fg:w="177"/><text x="12.3807%" y="175.50"></text></g><g><title>_ZdlPv (246 samples, 0.03%)</title><rect x="12.1279%" y="181" width="0.0257%" height="15" fill="rgb(231,92,29)" fg:x="115941" fg:w="246"/><text x="12.3779%" y="191.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (174 samples, 0.02%)</title><rect x="12.1559%" y="165" width="0.0182%" height="15" fill="rgb(232,8,23)" fg:x="116208" fg:w="174"/><text x="12.4059%" y="175.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (202 samples, 0.02%)</title><rect x="12.1537%" y="181" width="0.0211%" height="15" fill="rgb(216,211,34)" fg:x="116187" fg:w="202"/><text x="12.4037%" y="191.50"></text></g><g><title>_ZdlPv (490 samples, 0.05%)</title><rect x="12.1239%" y="197" width="0.0513%" height="15" fill="rgb(236,151,0)" fg:x="115903" fg:w="490"/><text x="12.3739%" y="207.50"></text></g><g><title>_ZdlPv (582 samples, 0.06%)</title><rect x="12.1216%" y="213" width="0.0609%" height="15" fill="rgb(209,168,3)" fg:x="115881" fg:w="582"/><text x="12.3716%" y="223.50"></text></g><g><title>_ZdlPv (729 samples, 0.08%)</title><rect x="12.1170%" y="229" width="0.0763%" height="15" fill="rgb(208,129,28)" fg:x="115837" fg:w="729"/><text x="12.3670%" y="239.50"></text></g><g><title>_ZdlPv (791 samples, 0.08%)</title><rect x="12.1134%" y="245" width="0.0827%" height="15" fill="rgb(229,78,22)" fg:x="115802" fg:w="791"/><text x="12.3634%" y="255.50"></text></g><g><title>_ZdlPv (876 samples, 0.09%)</title><rect x="12.1091%" y="261" width="0.0916%" height="15" fill="rgb(228,187,13)" fg:x="115761" fg:w="876"/><text x="12.3591%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (102 samples, 0.01%)</title><rect x="12.2009%" y="261" width="0.0107%" height="15" fill="rgb(240,119,24)" fg:x="116639" fg:w="102"/><text x="12.4509%" y="271.50"></text></g><g><title>_ZdlPv (1,036 samples, 0.11%)</title><rect x="12.1072%" y="277" width="0.1084%" height="15" fill="rgb(209,194,42)" fg:x="115743" fg:w="1036"/><text x="12.3572%" y="287.50"></text></g><g><title>_ZdlPv (108 samples, 0.01%)</title><rect x="12.2253%" y="261" width="0.0113%" height="15" fill="rgb(247,200,46)" fg:x="116872" fg:w="108"/><text x="12.4753%" y="271.50"></text></g><g><title>_ZdlPv (109 samples, 0.01%)</title><rect x="12.2474%" y="245" width="0.0114%" height="15" fill="rgb(218,76,16)" fg:x="117083" fg:w="109"/><text x="12.4974%" y="255.50"></text></g><g><title>_ZdlPv (115 samples, 0.01%)</title><rect x="12.2754%" y="229" width="0.0120%" height="15" fill="rgb(225,21,48)" fg:x="117351" fg:w="115"/><text x="12.5254%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (126 samples, 0.01%)</title><rect x="12.2905%" y="213" width="0.0132%" height="15" fill="rgb(239,223,50)" fg:x="117495" fg:w="126"/><text x="12.5405%" y="223.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (162 samples, 0.02%)</title><rect x="12.2875%" y="229" width="0.0169%" height="15" fill="rgb(244,45,21)" fg:x="117467" fg:w="162"/><text x="12.5375%" y="239.50"></text></g><g><title>[[falcon_kal]] (105 samples, 0.01%)</title><rect x="12.3132%" y="213" width="0.0110%" height="15" fill="rgb(232,33,43)" fg:x="117712" fg:w="105"/><text x="12.5632%" y="223.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (267 samples, 0.03%)</title><rect x="12.4304%" y="85" width="0.0279%" height="15" fill="rgb(209,8,3)" fg:x="118833" fg:w="267"/><text x="12.6804%" y="95.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (262 samples, 0.03%)</title><rect x="12.4310%" y="69" width="0.0274%" height="15" fill="rgb(214,25,53)" fg:x="118838" fg:w="262"/><text x="12.6810%" y="79.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (256 samples, 0.03%)</title><rect x="12.4676%" y="53" width="0.0268%" height="15" fill="rgb(254,186,54)" fg:x="119188" fg:w="256"/><text x="12.7176%" y="63.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (248 samples, 0.03%)</title><rect x="12.4684%" y="37" width="0.0259%" height="15" fill="rgb(208,174,49)" fg:x="119196" fg:w="248"/><text x="12.7184%" y="47.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (425 samples, 0.04%)</title><rect x="12.4584%" y="85" width="0.0445%" height="15" fill="rgb(233,191,51)" fg:x="119100" fg:w="425"/><text x="12.7084%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (365 samples, 0.04%)</title><rect x="12.4646%" y="69" width="0.0382%" height="15" fill="rgb(222,134,10)" fg:x="119160" fg:w="365"/><text x="12.7146%" y="79.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (897 samples, 0.09%)</title><rect x="12.4094%" y="117" width="0.0938%" height="15" fill="rgb(230,226,20)" fg:x="118632" fg:w="897"/><text x="12.6594%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (731 samples, 0.08%)</title><rect x="12.4268%" y="101" width="0.0765%" height="15" fill="rgb(251,111,25)" fg:x="118798" fg:w="731"/><text x="12.6768%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (960 samples, 0.10%)</title><rect x="12.4038%" y="133" width="0.1004%" height="15" fill="rgb(224,40,46)" fg:x="118578" fg:w="960"/><text x="12.6538%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,071 samples, 0.11%)</title><rect x="12.3940%" y="149" width="0.1120%" height="15" fill="rgb(236,108,47)" fg:x="118485" fg:w="1071"/><text x="12.6440%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,268 samples, 0.13%)</title><rect x="12.3738%" y="165" width="0.1326%" height="15" fill="rgb(234,93,0)" fg:x="118292" fg:w="1268"/><text x="12.6238%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,454 samples, 0.15%)</title><rect x="12.3558%" y="181" width="0.1521%" height="15" fill="rgb(224,213,32)" fg:x="118119" fg:w="1454"/><text x="12.6058%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,646 samples, 0.17%)</title><rect x="12.3400%" y="197" width="0.1722%" height="15" fill="rgb(251,11,48)" fg:x="117968" fg:w="1646"/><text x="12.5900%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,782 samples, 0.19%)</title><rect x="12.3293%" y="213" width="0.1864%" height="15" fill="rgb(236,173,5)" fg:x="117866" fg:w="1782"/><text x="12.5793%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,029 samples, 0.21%)</title><rect x="12.3045%" y="229" width="0.2122%" height="15" fill="rgb(230,95,12)" fg:x="117629" fg:w="2029"/><text x="12.5545%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,442 samples, 0.26%)</title><rect x="12.2674%" y="245" width="0.2554%" height="15" fill="rgb(232,209,1)" fg:x="117274" fg:w="2442"/><text x="12.5174%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,787 samples, 0.29%)</title><rect x="12.2379%" y="261" width="0.2915%" height="15" fill="rgb(232,6,1)" fg:x="116992" fg:w="2787"/><text x="12.4879%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,960 samples, 0.31%)</title><rect x="12.2201%" y="277" width="0.3096%" height="15" fill="rgb(210,224,50)" fg:x="116822" fg:w="2960"/><text x="12.4701%" y="287.50"></text></g><g><title>_ZdlPv (4,974 samples, 0.52%)</title><rect x="12.0096%" y="293" width="0.5203%" height="15" fill="rgb(228,127,35)" fg:x="114810" fg:w="4974"/><text x="12.2596%" y="303.50"></text></g><g><title>_ZdlPv (5,034 samples, 0.53%)</title><rect x="12.0057%" y="309" width="0.5266%" height="15" fill="rgb(245,102,45)" fg:x="114773" fg:w="5034"/><text x="12.2557%" y="319.50"></text></g><g><title>_ZdlPv (5,038 samples, 0.53%)</title><rect x="12.0054%" y="325" width="0.5270%" height="15" fill="rgb(214,1,49)" fg:x="114770" fg:w="5038"/><text x="12.2554%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (176 samples, 0.02%)</title><rect x="12.5727%" y="149" width="0.0184%" height="15" fill="rgb(226,163,40)" fg:x="120193" fg:w="176"/><text x="12.8227%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (131 samples, 0.01%)</title><rect x="12.5774%" y="133" width="0.0137%" height="15" fill="rgb(239,212,28)" fg:x="120238" fg:w="131"/><text x="12.8274%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (200 samples, 0.02%)</title><rect x="12.5709%" y="165" width="0.0209%" height="15" fill="rgb(220,20,13)" fg:x="120176" fg:w="200"/><text x="12.8209%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (239 samples, 0.03%)</title><rect x="12.5677%" y="181" width="0.0250%" height="15" fill="rgb(210,164,35)" fg:x="120145" fg:w="239"/><text x="12.8177%" y="191.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (374 samples, 0.04%)</title><rect x="12.5542%" y="229" width="0.0391%" height="15" fill="rgb(248,109,41)" fg:x="120016" fg:w="374"/><text x="12.8042%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (265 samples, 0.03%)</title><rect x="12.5656%" y="213" width="0.0277%" height="15" fill="rgb(238,23,50)" fg:x="120125" fg:w="265"/><text x="12.8156%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (259 samples, 0.03%)</title><rect x="12.5662%" y="197" width="0.0271%" height="15" fill="rgb(211,48,49)" fg:x="120131" fg:w="259"/><text x="12.8162%" y="207.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (404 samples, 0.04%)</title><rect x="12.5514%" y="245" width="0.0423%" height="15" fill="rgb(223,36,21)" fg:x="119989" fg:w="404"/><text x="12.8014%" y="255.50"></text></g><g><title>_ZdlPv (98 samples, 0.01%)</title><rect x="12.6032%" y="165" width="0.0103%" height="15" fill="rgb(207,123,46)" fg:x="120485" fg:w="98"/><text x="12.8532%" y="175.50"></text></g><g><title>_ZdlPv (144 samples, 0.02%)</title><rect x="12.6023%" y="181" width="0.0151%" height="15" fill="rgb(240,218,32)" fg:x="120476" fg:w="144"/><text x="12.8523%" y="191.50"></text></g><g><title>_ZdlPv (249 samples, 0.03%)</title><rect x="12.5991%" y="197" width="0.0260%" height="15" fill="rgb(252,5,43)" fg:x="120445" fg:w="249"/><text x="12.8491%" y="207.50"></text></g><g><title>_ZdlPv (314 samples, 0.03%)</title><rect x="12.5969%" y="213" width="0.0328%" height="15" fill="rgb(252,84,19)" fg:x="120424" fg:w="314"/><text x="12.8469%" y="223.50"></text></g><g><title>_ZdlPv (357 samples, 0.04%)</title><rect x="12.5949%" y="229" width="0.0373%" height="15" fill="rgb(243,152,39)" fg:x="120405" fg:w="357"/><text x="12.8449%" y="239.50"></text></g><g><title>_ZdlPv (451 samples, 0.05%)</title><rect x="12.5937%" y="245" width="0.0472%" height="15" fill="rgb(234,160,15)" fg:x="120394" fg:w="451"/><text x="12.8437%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (145 samples, 0.02%)</title><rect x="12.7803%" y="37" width="0.0152%" height="15" fill="rgb(237,34,20)" fg:x="122178" fg:w="145"/><text x="13.0303%" y="47.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (313 samples, 0.03%)</title><rect x="12.7629%" y="85" width="0.0327%" height="15" fill="rgb(229,97,13)" fg:x="122011" fg:w="313"/><text x="13.0129%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (203 samples, 0.02%)</title><rect x="12.7744%" y="69" width="0.0212%" height="15" fill="rgb(234,71,50)" fg:x="122121" fg:w="203"/><text x="13.0244%" y="79.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (166 samples, 0.02%)</title><rect x="12.7782%" y="53" width="0.0174%" height="15" fill="rgb(253,155,4)" fg:x="122158" fg:w="166"/><text x="13.0282%" y="63.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (396 samples, 0.04%)</title><rect x="12.7559%" y="101" width="0.0414%" height="15" fill="rgb(222,185,37)" fg:x="121944" fg:w="396"/><text x="13.0059%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (566 samples, 0.06%)</title><rect x="12.7384%" y="117" width="0.0592%" height="15" fill="rgb(251,177,13)" fg:x="121777" fg:w="566"/><text x="12.9884%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (705 samples, 0.07%)</title><rect x="12.7242%" y="133" width="0.0737%" height="15" fill="rgb(250,179,40)" fg:x="121641" fg:w="705"/><text x="12.9742%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (830 samples, 0.09%)</title><rect x="12.7133%" y="149" width="0.0868%" height="15" fill="rgb(242,44,2)" fg:x="121537" fg:w="830"/><text x="12.9633%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (952 samples, 0.10%)</title><rect x="12.7043%" y="165" width="0.0996%" height="15" fill="rgb(216,177,13)" fg:x="121451" fg:w="952"/><text x="12.9543%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,036 samples, 0.11%)</title><rect x="12.6961%" y="181" width="0.1084%" height="15" fill="rgb(216,106,43)" fg:x="121373" fg:w="1036"/><text x="12.9461%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,127 samples, 0.12%)</title><rect x="12.6867%" y="197" width="0.1179%" height="15" fill="rgb(216,183,2)" fg:x="121283" fg:w="1127"/><text x="12.9367%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,336 samples, 0.14%)</title><rect x="12.6653%" y="213" width="0.1398%" height="15" fill="rgb(249,75,3)" fg:x="121078" fg:w="1336"/><text x="12.9153%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,472 samples, 0.15%)</title><rect x="12.6523%" y="229" width="0.1540%" height="15" fill="rgb(219,67,39)" fg:x="120954" fg:w="1472"/><text x="12.9023%" y="239.50"></text></g><g><title>_ZdlPv (2,501 samples, 0.26%)</title><rect x="12.5450%" y="261" width="0.2616%" height="15" fill="rgb(253,228,2)" fg:x="119928" fg:w="2501"/><text x="12.7950%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,545 samples, 0.16%)</title><rect x="12.6450%" y="245" width="0.1616%" height="15" fill="rgb(235,138,27)" fg:x="120884" fg:w="1545"/><text x="12.8950%" y="255.50"></text></g><g><title>_ZdlPv (2,540 samples, 0.27%)</title><rect x="12.5426%" y="277" width="0.2657%" height="15" fill="rgb(236,97,51)" fg:x="119905" fg:w="2540"/><text x="12.7926%" y="287.50"></text></g><g><title>_ZdlPv (2,548 samples, 0.27%)</title><rect x="12.5426%" y="293" width="0.2665%" height="15" fill="rgb(240,80,30)" fg:x="119905" fg:w="2548"/><text x="12.7926%" y="303.50"></text></g><g><title>_ZdlPv (2,554 samples, 0.27%)</title><rect x="12.5424%" y="309" width="0.2672%" height="15" fill="rgb(230,178,19)" fg:x="119903" fg:w="2554"/><text x="12.7924%" y="319.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (112 samples, 0.01%)</title><rect x="12.8095%" y="309" width="0.0117%" height="15" fill="rgb(210,190,27)" fg:x="122457" fg:w="112"/><text x="13.0595%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (101 samples, 0.01%)</title><rect x="12.8212%" y="309" width="0.0106%" height="15" fill="rgb(222,107,31)" fg:x="122569" fg:w="101"/><text x="13.0712%" y="319.50"></text></g><g><title>cshook_security_sb_free_security (2,786 samples, 0.29%)</title><rect x="12.5413%" y="325" width="0.2914%" height="15" fill="rgb(216,127,34)" fg:x="119893" fg:w="2786"/><text x="12.7913%" y="335.50"></text></g><g><title>cshook_security_sb_free_security (7,927 samples, 0.83%)</title><rect x="12.0048%" y="341" width="0.8292%" height="15" fill="rgb(234,116,52)" fg:x="114764" fg:w="7927"/><text x="12.2548%" y="351.50"></text></g><g><title>cshook_security_sb_free_security (7,940 samples, 0.83%)</title><rect x="12.0035%" y="357" width="0.8306%" height="15" fill="rgb(222,124,15)" fg:x="114752" fg:w="7940"/><text x="12.2535%" y="367.50"></text></g><g><title>cshook_security_file_permission (7,954 samples, 0.83%)</title><rect x="12.0023%" y="373" width="0.8320%" height="15" fill="rgb(231,179,28)" fg:x="114740" fg:w="7954"/><text x="12.2523%" y="383.50"></text></g><g><title>cshook_security_file_permission (8,044 samples, 0.84%)</title><rect x="11.9954%" y="389" width="0.8414%" height="15" fill="rgb(226,93,45)" fg:x="114674" fg:w="8044"/><text x="12.2454%" y="399.50"></text></g><g><title>pinnedhook_security_bprm_check_security (8,052 samples, 0.84%)</title><rect x="11.9947%" y="421" width="0.8423%" height="15" fill="rgb(215,8,51)" fg:x="114667" fg:w="8052"/><text x="12.2447%" y="431.50"></text></g><g><title>cshook_security_bprm_check_security (8,050 samples, 0.84%)</title><rect x="11.9949%" y="405" width="0.8421%" height="15" fill="rgb(223,106,5)" fg:x="114669" fg:w="8050"/><text x="12.2449%" y="415.50"></text></g><g><title>security_bprm_check (8,055 samples, 0.84%)</title><rect x="11.9946%" y="437" width="0.8426%" height="15" fill="rgb(250,191,5)" fg:x="114666" fg:w="8055"/><text x="12.2446%" y="447.50"></text></g><g><title>exec_binprm (8,216 samples, 0.86%)</title><rect x="11.9778%" y="469" width="0.8594%" height="15" fill="rgb(242,132,44)" fg:x="114506" fg:w="8216"/><text x="12.2278%" y="479.50"></text></g><g><title>search_binary_handler (8,215 samples, 0.86%)</title><rect x="11.9779%" y="453" width="0.8593%" height="15" fill="rgb(251,152,29)" fg:x="114507" fg:w="8215"/><text x="12.2279%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (685 samples, 0.07%)</title><rect x="12.8438%" y="389" width="0.0717%" height="15" fill="rgb(218,179,5)" fg:x="122785" fg:w="685"/><text x="13.0938%" y="399.50"></text></g><g><title>x86_pmu_enable (676 samples, 0.07%)</title><rect x="12.8448%" y="373" width="0.0707%" height="15" fill="rgb(227,67,19)" fg:x="122794" fg:w="676"/><text x="13.0948%" y="383.50"></text></g><g><title>intel_pmu_enable_all (675 samples, 0.07%)</title><rect x="12.8449%" y="357" width="0.0706%" height="15" fill="rgb(233,119,31)" fg:x="122795" fg:w="675"/><text x="13.0949%" y="367.50"></text></g><g><title>native_write_msr (672 samples, 0.07%)</title><rect x="12.8452%" y="341" width="0.0703%" height="15" fill="rgb(241,120,22)" fg:x="122798" fg:w="672"/><text x="13.0952%" y="351.50"></text></g><g><title>finish_task_switch.isra.0 (712 samples, 0.07%)</title><rect x="12.8420%" y="405" width="0.0745%" height="15" fill="rgb(224,102,30)" fg:x="122767" fg:w="712"/><text x="13.0920%" y="415.50"></text></g><g><title>__cond_resched (731 samples, 0.08%)</title><rect x="12.8407%" y="437" width="0.0765%" height="15" fill="rgb(210,164,37)" fg:x="122755" fg:w="731"/><text x="13.0907%" y="447.50"></text></g><g><title>__schedule (726 samples, 0.08%)</title><rect x="12.8412%" y="421" width="0.0759%" height="15" fill="rgb(226,191,16)" fg:x="122760" fg:w="726"/><text x="13.0912%" y="431.50"></text></g><g><title>stop_one_cpu (746 samples, 0.08%)</title><rect x="12.8404%" y="453" width="0.0780%" height="15" fill="rgb(214,40,45)" fg:x="122752" fg:w="746"/><text x="13.0904%" y="463.50"></text></g><g><title>sched_exec (777 samples, 0.08%)</title><rect x="12.8372%" y="469" width="0.0813%" height="15" fill="rgb(244,29,26)" fg:x="122722" fg:w="777"/><text x="13.0872%" y="479.50"></text></g><g><title>apparmor_bprm_creds_for_exec (144 samples, 0.02%)</title><rect x="12.9185%" y="453" width="0.0151%" height="15" fill="rgb(216,16,5)" fg:x="123499" fg:w="144"/><text x="13.1685%" y="463.50"></text></g><g><title>profile_transition (129 samples, 0.01%)</title><rect x="12.9201%" y="437" width="0.0135%" height="15" fill="rgb(249,76,35)" fg:x="123514" fg:w="129"/><text x="13.1701%" y="447.50"></text></g><g><title>security_bprm_creds_for_exec (145 samples, 0.02%)</title><rect x="12.9185%" y="469" width="0.0152%" height="15" fill="rgb(207,11,44)" fg:x="123499" fg:w="145"/><text x="13.1685%" y="479.50"></text></g><g><title>bprm_execve.part.0 (9,175 samples, 0.96%)</title><rect x="11.9740%" y="485" width="0.9597%" height="15" fill="rgb(228,190,49)" fg:x="114470" fg:w="9175"/><text x="12.2240%" y="495.50"></text></g><g><title>bprm_execve (9,182 samples, 0.96%)</title><rect x="11.9739%" y="501" width="0.9605%" height="15" fill="rgb(214,173,12)" fg:x="114469" fg:w="9182"/><text x="12.2239%" y="511.50"></text></g><g><title>do_execveat_common.isra.0 (9,263 samples, 0.97%)</title><rect x="11.9717%" y="517" width="0.9689%" height="15" fill="rgb(218,26,35)" fg:x="114448" fg:w="9263"/><text x="12.2217%" y="527.50"></text></g><g><title>__GI_execve (9,269 samples, 0.97%)</title><rect x="11.9716%" y="581" width="0.9696%" height="15" fill="rgb(220,200,19)" fg:x="114447" fg:w="9269"/><text x="12.2216%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (9,269 samples, 0.97%)</title><rect x="11.9716%" y="565" width="0.9696%" height="15" fill="rgb(239,95,49)" fg:x="114447" fg:w="9269"/><text x="12.2216%" y="575.50"></text></g><g><title>do_syscall_64 (9,269 samples, 0.97%)</title><rect x="11.9716%" y="549" width="0.9696%" height="15" fill="rgb(235,85,53)" fg:x="114447" fg:w="9269"/><text x="12.2216%" y="559.50"></text></g><g><title>__x64_sys_execve (9,269 samples, 0.97%)</title><rect x="11.9716%" y="533" width="0.9696%" height="15" fill="rgb(233,133,31)" fg:x="114447" fg:w="9269"/><text x="12.2216%" y="543.50"></text></g><g><title>[dash] (9,615 samples, 1.01%)</title><rect x="11.9357%" y="597" width="1.0058%" height="15" fill="rgb(218,25,20)" fg:x="114103" fg:w="9615"/><text x="12.1857%" y="607.50"></text></g><g><title>[dash] (9,699 samples, 1.01%)</title><rect x="11.9335%" y="613" width="1.0146%" height="15" fill="rgb(252,210,38)" fg:x="114082" fg:w="9699"/><text x="12.1835%" y="623.50"></text></g><g><title>_int_free (139 samples, 0.01%)</title><rect x="12.9526%" y="597" width="0.0145%" height="15" fill="rgb(242,134,21)" fg:x="123825" fg:w="139"/><text x="13.2026%" y="607.50"></text></g><g><title>tcache_put (113 samples, 0.01%)</title><rect x="12.9553%" y="581" width="0.0118%" height="15" fill="rgb(213,28,48)" fg:x="123851" fg:w="113"/><text x="13.2053%" y="591.50"></text></g><g><title>__GI___libc_free (236 samples, 0.02%)</title><rect x="12.9509%" y="613" width="0.0247%" height="15" fill="rgb(250,196,2)" fg:x="123809" fg:w="236"/><text x="13.2009%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (3,364 samples, 0.35%)</title><rect x="13.0106%" y="453" width="0.3519%" height="15" fill="rgb(227,5,17)" fg:x="124379" fg:w="3364"/><text x="13.2606%" y="463.50"></text></g><g><title>x86_pmu_enable (3,313 samples, 0.35%)</title><rect x="13.0159%" y="437" width="0.3466%" height="15" fill="rgb(221,226,24)" fg:x="124430" fg:w="3313"/><text x="13.2659%" y="447.50"></text></g><g><title>intel_pmu_enable_all (3,291 samples, 0.34%)</title><rect x="13.0182%" y="421" width="0.3443%" height="15" fill="rgb(211,5,48)" fg:x="124452" fg:w="3291"/><text x="13.2682%" y="431.50"></text></g><g><title>native_write_msr (3,282 samples, 0.34%)</title><rect x="13.0192%" y="405" width="0.3433%" height="15" fill="rgb(219,150,6)" fg:x="124461" fg:w="3282"/><text x="13.2692%" y="415.50"></text></g><g><title>finish_task_switch.isra.0 (3,593 samples, 0.38%)</title><rect x="12.9990%" y="469" width="0.3758%" height="15" fill="rgb(251,46,16)" fg:x="124268" fg:w="3593"/><text x="13.2490%" y="479.50"></text></g><g><title>__schedule (3,704 samples, 0.39%)</title><rect x="12.9934%" y="485" width="0.3875%" height="15" fill="rgb(220,204,40)" fg:x="124215" fg:w="3704"/><text x="13.2434%" y="495.50"></text></g><g><title>schedule (3,711 samples, 0.39%)</title><rect x="12.9928%" y="501" width="0.3882%" height="15" fill="rgb(211,85,2)" fg:x="124209" fg:w="3711"/><text x="13.2428%" y="511.50"></text></g><g><title>__exit_signal (159 samples, 0.02%)</title><rect x="13.3869%" y="453" width="0.0166%" height="15" fill="rgb(229,17,7)" fg:x="127977" fg:w="159"/><text x="13.6369%" y="463.50"></text></g><g><title>release_task (230 samples, 0.02%)</title><rect x="13.3862%" y="469" width="0.0241%" height="15" fill="rgb(239,72,28)" fg:x="127970" fg:w="230"/><text x="13.6362%" y="479.50"></text></g><g><title>do_wait (4,048 samples, 0.42%)</title><rect x="12.9880%" y="517" width="0.4234%" height="15" fill="rgb(230,47,54)" fg:x="124163" fg:w="4048"/><text x="13.2380%" y="527.50"></text></g><g><title>wait_consider_task (291 samples, 0.03%)</title><rect x="13.3810%" y="501" width="0.0304%" height="15" fill="rgb(214,50,8)" fg:x="127920" fg:w="291"/><text x="13.6310%" y="511.50"></text></g><g><title>wait_task_zombie (274 samples, 0.03%)</title><rect x="13.3828%" y="485" width="0.0287%" height="15" fill="rgb(216,198,43)" fg:x="127937" fg:w="274"/><text x="13.6328%" y="495.50"></text></g><g><title>__x64_sys_wait4 (4,070 samples, 0.43%)</title><rect x="12.9861%" y="565" width="0.4257%" height="15" fill="rgb(234,20,35)" fg:x="124145" fg:w="4070"/><text x="13.2361%" y="575.50"></text></g><g><title>__do_sys_wait4 (4,070 samples, 0.43%)</title><rect x="12.9861%" y="549" width="0.4257%" height="15" fill="rgb(254,45,19)" fg:x="124145" fg:w="4070"/><text x="13.2361%" y="559.50"></text></g><g><title>kernel_wait4 (4,062 samples, 0.42%)</title><rect x="12.9869%" y="533" width="0.4249%" height="15" fill="rgb(219,14,44)" fg:x="124153" fg:w="4062"/><text x="13.2369%" y="543.50"></text></g><g><title>arch_do_signal_or_restart (107 samples, 0.01%)</title><rect x="13.4126%" y="517" width="0.0112%" height="15" fill="rgb(217,220,26)" fg:x="128222" fg:w="107"/><text x="13.6626%" y="527.50"></text></g><g><title>do_syscall_64 (4,200 samples, 0.44%)</title><rect x="12.9849%" y="581" width="0.4393%" height="15" fill="rgb(213,158,28)" fg:x="124134" fg:w="4200"/><text x="13.2349%" y="591.50"></text></g><g><title>syscall_exit_to_user_mode (119 samples, 0.01%)</title><rect x="13.4118%" y="565" width="0.0124%" height="15" fill="rgb(252,51,52)" fg:x="128215" fg:w="119"/><text x="13.6618%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (115 samples, 0.01%)</title><rect x="13.4123%" y="549" width="0.0120%" height="15" fill="rgb(246,89,16)" fg:x="128219" fg:w="115"/><text x="13.6623%" y="559.50"></text></g><g><title>exit_to_user_mode_loop (113 samples, 0.01%)</title><rect x="13.4125%" y="533" width="0.0118%" height="15" fill="rgb(216,158,49)" fg:x="128221" fg:w="113"/><text x="13.6625%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,201 samples, 0.44%)</title><rect x="12.9849%" y="597" width="0.4394%" height="15" fill="rgb(236,107,19)" fg:x="124134" fg:w="4201"/><text x="13.2349%" y="607.50"></text></g><g><title>__GI___wait4 (4,227 samples, 0.44%)</title><rect x="12.9823%" y="613" width="0.4422%" height="15" fill="rgb(228,185,30)" fg:x="124109" fg:w="4227"/><text x="13.2323%" y="623.50"></text></g><g><title>[dash] (14,398 samples, 1.51%)</title><rect x="11.9295%" y="629" width="1.5061%" height="15" fill="rgb(246,134,8)" fg:x="114044" fg:w="14398"/><text x="12.1795%" y="639.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (118 samples, 0.01%)</title><rect x="13.4407%" y="485" width="0.0123%" height="15" fill="rgb(214,143,50)" fg:x="128491" fg:w="118"/><text x="13.6907%" y="495.50"></text></g><g><title>path_lookupat (138 samples, 0.01%)</title><rect x="13.4402%" y="501" width="0.0144%" height="15" fill="rgb(228,75,8)" fg:x="128486" fg:w="138"/><text x="13.6902%" y="511.50"></text></g><g><title>filename_lookup (144 samples, 0.02%)</title><rect x="13.4397%" y="517" width="0.0151%" height="15" fill="rgb(207,175,4)" fg:x="128481" fg:w="144"/><text x="13.6897%" y="527.50"></text></g><g><title>user_path_at_empty (202 samples, 0.02%)</title><rect x="13.4396%" y="533" width="0.0211%" height="15" fill="rgb(205,108,24)" fg:x="128480" fg:w="202"/><text x="13.6896%" y="543.50"></text></g><g><title>__x64_sys_newfstatat (216 samples, 0.02%)</title><rect x="13.4388%" y="581" width="0.0226%" height="15" fill="rgb(244,120,49)" fg:x="128473" fg:w="216"/><text x="13.6888%" y="591.50"></text></g><g><title>__do_sys_newfstatat (216 samples, 0.02%)</title><rect x="13.4388%" y="565" width="0.0226%" height="15" fill="rgb(223,47,38)" fg:x="128473" fg:w="216"/><text x="13.6888%" y="575.50"></text></g><g><title>vfs_statx (211 samples, 0.02%)</title><rect x="13.4393%" y="549" width="0.0221%" height="15" fill="rgb(229,179,11)" fg:x="128478" fg:w="211"/><text x="13.6893%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (227 samples, 0.02%)</title><rect x="13.4385%" y="613" width="0.0237%" height="15" fill="rgb(231,122,1)" fg:x="128470" fg:w="227"/><text x="13.6885%" y="623.50"></text></g><g><title>do_syscall_64 (225 samples, 0.02%)</title><rect x="13.4387%" y="597" width="0.0235%" height="15" fill="rgb(245,119,9)" fg:x="128472" fg:w="225"/><text x="13.6887%" y="607.50"></text></g><g><title>__GI___fstatat64 (259 samples, 0.03%)</title><rect x="13.4358%" y="629" width="0.0271%" height="15" fill="rgb(241,163,25)" fg:x="128444" fg:w="259"/><text x="13.6858%" y="639.50"></text></g><g><title>do_user_addr_fault (107 samples, 0.01%)</title><rect x="13.4653%" y="597" width="0.0112%" height="15" fill="rgb(217,214,3)" fg:x="128726" fg:w="107"/><text x="13.7153%" y="607.50"></text></g><g><title>asm_exc_page_fault (113 samples, 0.01%)</title><rect x="13.4652%" y="629" width="0.0118%" height="15" fill="rgb(240,86,28)" fg:x="128725" fg:w="113"/><text x="13.7152%" y="639.50"></text></g><g><title>exc_page_fault (112 samples, 0.01%)</title><rect x="13.4653%" y="613" width="0.0117%" height="15" fill="rgb(215,47,9)" fg:x="128726" fg:w="112"/><text x="13.7153%" y="623.50"></text></g><g><title>[dash] (14,864 samples, 1.55%)</title><rect x="11.9238%" y="645" width="1.5548%" height="15" fill="rgb(252,25,45)" fg:x="113990" fg:w="14864"/><text x="12.1738%" y="655.50"></text></g><g><title>__GI___close (117 samples, 0.01%)</title><rect x="13.4788%" y="645" width="0.0122%" height="15" fill="rgb(251,164,9)" fg:x="128855" fg:w="117"/><text x="13.7288%" y="655.50"></text></g><g><title>do_read_fault (97 samples, 0.01%)</title><rect x="13.5085%" y="485" width="0.0101%" height="15" fill="rgb(233,194,0)" fg:x="129139" fg:w="97"/><text x="13.7585%" y="495.50"></text></g><g><title>do_user_addr_fault (132 samples, 0.01%)</title><rect x="13.5054%" y="565" width="0.0138%" height="15" fill="rgb(249,111,24)" fg:x="129109" fg:w="132"/><text x="13.7554%" y="575.50"></text></g><g><title>handle_mm_fault (119 samples, 0.01%)</title><rect x="13.5067%" y="549" width="0.0124%" height="15" fill="rgb(250,223,3)" fg:x="129122" fg:w="119"/><text x="13.7567%" y="559.50"></text></g><g><title>__handle_mm_fault (115 samples, 0.01%)</title><rect x="13.5071%" y="533" width="0.0120%" height="15" fill="rgb(236,178,37)" fg:x="129126" fg:w="115"/><text x="13.7571%" y="543.50"></text></g><g><title>handle_pte_fault (109 samples, 0.01%)</title><rect x="13.5078%" y="517" width="0.0114%" height="15" fill="rgb(241,158,50)" fg:x="129132" fg:w="109"/><text x="13.7578%" y="527.50"></text></g><g><title>do_fault (108 samples, 0.01%)</title><rect x="13.5079%" y="501" width="0.0113%" height="15" fill="rgb(213,121,41)" fg:x="129133" fg:w="108"/><text x="13.7579%" y="511.50"></text></g><g><title>asm_exc_page_fault (134 samples, 0.01%)</title><rect x="13.5052%" y="597" width="0.0140%" height="15" fill="rgb(240,92,3)" fg:x="129108" fg:w="134"/><text x="13.7552%" y="607.50"></text></g><g><title>exc_page_fault (133 samples, 0.01%)</title><rect x="13.5054%" y="581" width="0.0139%" height="15" fill="rgb(205,123,3)" fg:x="129109" fg:w="133"/><text x="13.7554%" y="591.50"></text></g><g><title>anon_vma_fork (158 samples, 0.02%)</title><rect x="13.5389%" y="469" width="0.0165%" height="15" fill="rgb(205,97,47)" fg:x="129430" fg:w="158"/><text x="13.7889%" y="479.50"></text></g><g><title>copy_pmd_range (108 samples, 0.01%)</title><rect x="13.5593%" y="437" width="0.0113%" height="15" fill="rgb(247,152,14)" fg:x="129625" fg:w="108"/><text x="13.8093%" y="447.50"></text></g><g><title>copy_p4d_range (133 samples, 0.01%)</title><rect x="13.5569%" y="453" width="0.0139%" height="15" fill="rgb(248,195,53)" fg:x="129602" fg:w="133"/><text x="13.8069%" y="463.50"></text></g><g><title>copy_page_range (150 samples, 0.02%)</title><rect x="13.5555%" y="469" width="0.0157%" height="15" fill="rgb(226,201,16)" fg:x="129588" fg:w="150"/><text x="13.8055%" y="479.50"></text></g><g><title>dup_mmap (486 samples, 0.05%)</title><rect x="13.5341%" y="485" width="0.0508%" height="15" fill="rgb(205,98,0)" fg:x="129384" fg:w="486"/><text x="13.7841%" y="495.50"></text></g><g><title>dup_mm (541 samples, 0.06%)</title><rect x="13.5332%" y="501" width="0.0566%" height="15" fill="rgb(214,191,48)" fg:x="129375" fg:w="541"/><text x="13.7832%" y="511.50"></text></g><g><title>dup_task_struct (96 samples, 0.01%)</title><rect x="13.5898%" y="501" width="0.0100%" height="15" fill="rgb(237,112,39)" fg:x="129916" fg:w="96"/><text x="13.8398%" y="511.50"></text></g><g><title>inherit_event.constprop.0 (166 samples, 0.02%)</title><rect x="13.6025%" y="453" width="0.0174%" height="15" fill="rgb(247,203,27)" fg:x="130038" fg:w="166"/><text x="13.8525%" y="463.50"></text></g><g><title>perf_event_alloc (145 samples, 0.02%)</title><rect x="13.6047%" y="437" width="0.0152%" height="15" fill="rgb(235,124,28)" fg:x="130059" fg:w="145"/><text x="13.8547%" y="447.50"></text></g><g><title>inherit_task_group.isra.0 (177 samples, 0.02%)</title><rect x="13.6019%" y="469" width="0.0185%" height="15" fill="rgb(208,207,46)" fg:x="130032" fg:w="177"/><text x="13.8519%" y="479.50"></text></g><g><title>perf_event_init_context (182 samples, 0.02%)</title><rect x="13.6017%" y="485" width="0.0190%" height="15" fill="rgb(234,176,4)" fg:x="130030" fg:w="182"/><text x="13.8517%" y="495.50"></text></g><g><title>perf_event_init_task (186 samples, 0.02%)</title><rect x="13.6017%" y="501" width="0.0195%" height="15" fill="rgb(230,133,28)" fg:x="130030" fg:w="186"/><text x="13.8517%" y="511.50"></text></g><g><title>copy_process (988 samples, 0.10%)</title><rect x="13.5199%" y="517" width="0.1033%" height="15" fill="rgb(211,137,40)" fg:x="129248" fg:w="988"/><text x="13.7699%" y="527.50"></text></g><g><title>__x64_sys_clone (1,040 samples, 0.11%)</title><rect x="13.5195%" y="565" width="0.1088%" height="15" fill="rgb(254,35,13)" fg:x="129244" fg:w="1040"/><text x="13.7695%" y="575.50"></text></g><g><title>__do_sys_clone (1,040 samples, 0.11%)</title><rect x="13.5195%" y="549" width="0.1088%" height="15" fill="rgb(225,49,51)" fg:x="129244" fg:w="1040"/><text x="13.7695%" y="559.50"></text></g><g><title>kernel_clone (1,040 samples, 0.11%)</title><rect x="13.5195%" y="533" width="0.1088%" height="15" fill="rgb(251,10,15)" fg:x="129244" fg:w="1040"/><text x="13.7695%" y="543.50"></text></g><g><title>do_syscall_64 (1,049 samples, 0.11%)</title><rect x="13.5194%" y="581" width="0.1097%" height="15" fill="rgb(228,207,15)" fg:x="129243" fg:w="1049"/><text x="13.7694%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,051 samples, 0.11%)</title><rect x="13.5193%" y="597" width="0.1099%" height="15" fill="rgb(241,99,19)" fg:x="129242" fg:w="1051"/><text x="13.7693%" y="607.50"></text></g><g><title>__handle_mm_fault (122 samples, 0.01%)</title><rect x="13.6396%" y="501" width="0.0128%" height="15" fill="rgb(207,104,49)" fg:x="130392" fg:w="122"/><text x="13.8896%" y="511.50"></text></g><g><title>handle_mm_fault (141 samples, 0.01%)</title><rect x="13.6379%" y="517" width="0.0147%" height="15" fill="rgb(234,99,18)" fg:x="130376" fg:w="141"/><text x="13.8879%" y="527.50"></text></g><g><title>do_user_addr_fault (206 samples, 0.02%)</title><rect x="13.6315%" y="533" width="0.0215%" height="15" fill="rgb(213,191,49)" fg:x="130315" fg:w="206"/><text x="13.8815%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (228 samples, 0.02%)</title><rect x="13.6295%" y="581" width="0.0238%" height="15" fill="rgb(210,226,19)" fg:x="130296" fg:w="228"/><text x="13.8795%" y="591.50"></text></g><g><title>asm_exc_page_fault (211 samples, 0.02%)</title><rect x="13.6313%" y="565" width="0.0221%" height="15" fill="rgb(229,97,18)" fg:x="130313" fg:w="211"/><text x="13.8813%" y="575.50"></text></g><g><title>exc_page_fault (211 samples, 0.02%)</title><rect x="13.6313%" y="549" width="0.0221%" height="15" fill="rgb(211,167,15)" fg:x="130313" fg:w="211"/><text x="13.8813%" y="559.50"></text></g><g><title>asm_exc_page_fault (102 samples, 0.01%)</title><rect x="13.6535%" y="581" width="0.0107%" height="15" fill="rgb(210,169,34)" fg:x="130525" fg:w="102"/><text x="13.9035%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (5,529 samples, 0.58%)</title><rect x="13.6943%" y="549" width="0.5784%" height="15" fill="rgb(241,121,31)" fg:x="130915" fg:w="5529"/><text x="13.9443%" y="559.50"></text></g><g><title>x86_pmu_enable (5,469 samples, 0.57%)</title><rect x="13.7005%" y="533" width="0.5721%" height="15" fill="rgb(232,40,11)" fg:x="130975" fg:w="5469"/><text x="13.9505%" y="543.50"></text></g><g><title>intel_pmu_enable_all (5,447 samples, 0.57%)</title><rect x="13.7028%" y="517" width="0.5698%" height="15" fill="rgb(205,86,26)" fg:x="130997" fg:w="5447"/><text x="13.9528%" y="527.50"></text></g><g><title>native_write_msr (5,429 samples, 0.57%)</title><rect x="13.7047%" y="501" width="0.5679%" height="15" fill="rgb(231,126,28)" fg:x="131015" fg:w="5429"/><text x="13.9547%" y="511.50"></text></g><g><title>finish_task_switch.isra.0 (5,739 samples, 0.60%)</title><rect x="13.6796%" y="565" width="0.6003%" height="15" fill="rgb(219,221,18)" fg:x="130775" fg:w="5739"/><text x="13.9296%" y="575.50"></text></g><g><title>schedule_tail (5,895 samples, 0.62%)</title><rect x="13.6646%" y="581" width="0.6166%" height="15" fill="rgb(211,40,0)" fg:x="130631" fg:w="5895"/><text x="13.9146%" y="591.50"></text></g><g><title>wp_page_copy (153 samples, 0.02%)</title><rect x="14.2899%" y="389" width="0.0160%" height="15" fill="rgb(239,85,43)" fg:x="136609" fg:w="153"/><text x="14.5399%" y="399.50"></text></g><g><title>do_wp_page (171 samples, 0.02%)</title><rect x="14.2881%" y="405" width="0.0179%" height="15" fill="rgb(231,55,21)" fg:x="136592" fg:w="171"/><text x="14.5381%" y="415.50"></text></g><g><title>handle_pte_fault (179 samples, 0.02%)</title><rect x="14.2875%" y="421" width="0.0187%" height="15" fill="rgb(225,184,43)" fg:x="136586" fg:w="179"/><text x="14.5375%" y="431.50"></text></g><g><title>__handle_mm_fault (189 samples, 0.02%)</title><rect x="14.2865%" y="437" width="0.0198%" height="15" fill="rgb(251,158,41)" fg:x="136577" fg:w="189"/><text x="14.5365%" y="447.50"></text></g><g><title>handle_mm_fault (198 samples, 0.02%)</title><rect x="14.2859%" y="453" width="0.0207%" height="15" fill="rgb(234,159,37)" fg:x="136571" fg:w="198"/><text x="14.5359%" y="463.50"></text></g><g><title>do_user_addr_fault (213 samples, 0.02%)</title><rect x="14.2845%" y="469" width="0.0223%" height="15" fill="rgb(216,204,22)" fg:x="136558" fg:w="213"/><text x="14.5345%" y="479.50"></text></g><g><title>__put_user_nocheck_8 (230 samples, 0.02%)</title><rect x="14.2832%" y="517" width="0.0241%" height="15" fill="rgb(214,17,3)" fg:x="136545" fg:w="230"/><text x="14.5332%" y="527.50"></text></g><g><title>asm_exc_page_fault (219 samples, 0.02%)</title><rect x="14.2843%" y="501" width="0.0229%" height="15" fill="rgb(212,111,17)" fg:x="136556" fg:w="219"/><text x="14.5343%" y="511.50"></text></g><g><title>exc_page_fault (219 samples, 0.02%)</title><rect x="14.2843%" y="485" width="0.0229%" height="15" fill="rgb(221,157,24)" fg:x="136556" fg:w="219"/><text x="14.5343%" y="495.50"></text></g><g><title>__rseq_handle_notify_resume (302 samples, 0.03%)</title><rect x="14.2831%" y="533" width="0.0316%" height="15" fill="rgb(252,16,13)" fg:x="136544" fg:w="302"/><text x="14.5331%" y="543.50"></text></g><g><title>exit_to_user_mode_loop (338 samples, 0.04%)</title><rect x="14.2821%" y="549" width="0.0354%" height="15" fill="rgb(221,62,2)" fg:x="136535" fg:w="338"/><text x="14.5321%" y="559.50"></text></g><g><title>exit_to_user_mode_prepare (357 samples, 0.04%)</title><rect x="14.2813%" y="565" width="0.0373%" height="15" fill="rgb(247,87,22)" fg:x="136527" fg:w="357"/><text x="14.5313%" y="575.50"></text></g><g><title>ret_from_fork (6,591 samples, 0.69%)</title><rect x="13.6293%" y="597" width="0.6894%" height="15" fill="rgb(215,73,9)" fg:x="130294" fg:w="6591"/><text x="13.8793%" y="607.50"></text></g><g><title>syscall_exit_to_user_mode (359 samples, 0.04%)</title><rect x="14.2812%" y="581" width="0.0376%" height="15" fill="rgb(207,175,33)" fg:x="136526" fg:w="359"/><text x="14.5312%" y="591.50"></text></g><g><title>arch_fork (7,816 samples, 0.82%)</title><rect x="13.5020%" y="613" width="0.8176%" height="15" fill="rgb(243,129,54)" fg:x="129077" fg:w="7816"/><text x="13.7520%" y="623.50"></text></g><g><title>__GI__Fork (7,824 samples, 0.82%)</title><rect x="13.5018%" y="629" width="0.8184%" height="15" fill="rgb(227,119,45)" fg:x="129075" fg:w="7824"/><text x="13.7518%" y="639.50"></text></g><g><title>__libc_fork (7,991 samples, 0.84%)</title><rect x="13.5004%" y="645" width="0.8359%" height="15" fill="rgb(205,109,36)" fg:x="129062" fg:w="7991"/><text x="13.7504%" y="655.50"></text></g><g><title>[dash] (23,133 samples, 2.42%)</title><rect x="11.9226%" y="661" width="2.4198%" height="15" fill="rgb(205,6,39)" fg:x="113978" fg:w="23133"/><text x="12.1726%" y="671.50">[d..</text></g><g><title>do_user_addr_fault (104 samples, 0.01%)</title><rect x="14.3443%" y="613" width="0.0109%" height="15" fill="rgb(221,32,16)" fg:x="137129" fg:w="104"/><text x="14.5943%" y="623.50"></text></g><g><title>asm_exc_page_fault (106 samples, 0.01%)</title><rect x="14.3442%" y="645" width="0.0111%" height="15" fill="rgb(228,144,50)" fg:x="137128" fg:w="106"/><text x="14.5942%" y="655.50"></text></g><g><title>exc_page_fault (105 samples, 0.01%)</title><rect x="14.3443%" y="629" width="0.0110%" height="15" fill="rgb(229,201,53)" fg:x="137129" fg:w="105"/><text x="14.5943%" y="639.50"></text></g><g><title>[libc.so.6] (136 samples, 0.01%)</title><rect x="14.3424%" y="661" width="0.0142%" height="15" fill="rgb(249,153,27)" fg:x="137111" fg:w="136"/><text x="14.5924%" y="671.50"></text></g><g><title>[dash] (23,302 samples, 2.44%)</title><rect x="11.9201%" y="677" width="2.4375%" height="15" fill="rgb(227,106,25)" fg:x="113954" fg:w="23302"/><text x="12.1701%" y="687.50">[d..</text></g><g><title>[dash] (23,374 samples, 2.45%)</title><rect x="11.9188%" y="693" width="2.4450%" height="15" fill="rgb(230,65,29)" fg:x="113942" fg:w="23374"/><text x="12.1688%" y="703.50">[d..</text></g><g><title>__perf_event_task_sched_in (175 samples, 0.02%)</title><rect x="14.3809%" y="533" width="0.0183%" height="15" fill="rgb(221,57,46)" fg:x="137479" fg:w="175"/><text x="14.6309%" y="543.50"></text></g><g><title>x86_pmu_enable (172 samples, 0.02%)</title><rect x="14.3812%" y="517" width="0.0180%" height="15" fill="rgb(229,161,17)" fg:x="137482" fg:w="172"/><text x="14.6312%" y="527.50"></text></g><g><title>intel_pmu_enable_all (170 samples, 0.02%)</title><rect x="14.3814%" y="501" width="0.0178%" height="15" fill="rgb(222,213,11)" fg:x="137484" fg:w="170"/><text x="14.6314%" y="511.50"></text></g><g><title>native_write_msr (168 samples, 0.02%)</title><rect x="14.3816%" y="485" width="0.0176%" height="15" fill="rgb(235,35,13)" fg:x="137486" fg:w="168"/><text x="14.6316%" y="495.50"></text></g><g><title>finish_task_switch.isra.0 (188 samples, 0.02%)</title><rect x="14.3806%" y="549" width="0.0197%" height="15" fill="rgb(233,158,34)" fg:x="137476" fg:w="188"/><text x="14.6306%" y="559.50"></text></g><g><title>schedule (195 samples, 0.02%)</title><rect x="14.3802%" y="581" width="0.0204%" height="15" fill="rgb(215,151,48)" fg:x="137472" fg:w="195"/><text x="14.6302%" y="591.50"></text></g><g><title>__schedule (195 samples, 0.02%)</title><rect x="14.3802%" y="565" width="0.0204%" height="15" fill="rgb(229,84,14)" fg:x="137472" fg:w="195"/><text x="14.6302%" y="575.50"></text></g><g><title>kernel_wait4 (267 samples, 0.03%)</title><rect x="14.3794%" y="613" width="0.0279%" height="15" fill="rgb(229,68,14)" fg:x="137465" fg:w="267"/><text x="14.6294%" y="623.50"></text></g><g><title>do_wait (264 samples, 0.03%)</title><rect x="14.3797%" y="597" width="0.0276%" height="15" fill="rgb(243,106,26)" fg:x="137468" fg:w="264"/><text x="14.6297%" y="607.50"></text></g><g><title>__x64_sys_wait4 (268 samples, 0.03%)</title><rect x="14.3794%" y="645" width="0.0280%" height="15" fill="rgb(206,45,38)" fg:x="137465" fg:w="268"/><text x="14.6294%" y="655.50"></text></g><g><title>__do_sys_wait4 (268 samples, 0.03%)</title><rect x="14.3794%" y="629" width="0.0280%" height="15" fill="rgb(226,6,15)" fg:x="137465" fg:w="268"/><text x="14.6294%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (280 samples, 0.03%)</title><rect x="14.3792%" y="677" width="0.0293%" height="15" fill="rgb(232,22,54)" fg:x="137463" fg:w="280"/><text x="14.6292%" y="687.50"></text></g><g><title>do_syscall_64 (279 samples, 0.03%)</title><rect x="14.3793%" y="661" width="0.0292%" height="15" fill="rgb(229,222,32)" fg:x="137464" fg:w="279"/><text x="14.6293%" y="671.50"></text></g><g><title>__GI___wait4 (303 samples, 0.03%)</title><rect x="14.3771%" y="693" width="0.0317%" height="15" fill="rgb(228,62,29)" fg:x="137443" fg:w="303"/><text x="14.6271%" y="703.50"></text></g><g><title>[dash] (23,951 samples, 2.51%)</title><rect x="11.9146%" y="709" width="2.5054%" height="15" fill="rgb(251,103,34)" fg:x="113902" fg:w="23951"/><text x="12.1646%" y="719.50">[d..</text></g><g><title>[dash] (24,084 samples, 2.52%)</title><rect x="11.9112%" y="725" width="2.5193%" height="15" fill="rgb(233,12,30)" fg:x="113869" fg:w="24084"/><text x="12.1612%" y="735.50">[d..</text></g><g><title>do_syscall_64 (103 samples, 0.01%)</title><rect x="14.4319%" y="693" width="0.0108%" height="15" fill="rgb(238,52,0)" fg:x="137967" fg:w="103"/><text x="14.6819%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.01%)</title><rect x="14.4319%" y="709" width="0.0109%" height="15" fill="rgb(223,98,5)" fg:x="137967" fg:w="104"/><text x="14.6819%" y="719.50"></text></g><g><title>__GI___close (113 samples, 0.01%)</title><rect x="14.4311%" y="725" width="0.0118%" height="15" fill="rgb(228,75,37)" fg:x="137959" fg:w="113"/><text x="14.6811%" y="735.50"></text></g><g><title>exit_to_user_mode_loop (121 samples, 0.01%)</title><rect x="14.4478%" y="645" width="0.0127%" height="15" fill="rgb(205,115,49)" fg:x="138119" fg:w="121"/><text x="14.6978%" y="655.50"></text></g><g><title>syscall_exit_to_user_mode (131 samples, 0.01%)</title><rect x="14.4474%" y="677" width="0.0137%" height="15" fill="rgb(250,154,43)" fg:x="138115" fg:w="131"/><text x="14.6974%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (128 samples, 0.01%)</title><rect x="14.4477%" y="661" width="0.0134%" height="15" fill="rgb(226,43,29)" fg:x="138118" fg:w="128"/><text x="14.6977%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (1,955 samples, 0.20%)</title><rect x="14.4818%" y="533" width="0.2045%" height="15" fill="rgb(249,228,39)" fg:x="138444" fg:w="1955"/><text x="14.7318%" y="543.50"></text></g><g><title>x86_pmu_enable (1,920 samples, 0.20%)</title><rect x="14.4855%" y="517" width="0.2008%" height="15" fill="rgb(216,79,43)" fg:x="138479" fg:w="1920"/><text x="14.7355%" y="527.50"></text></g><g><title>intel_pmu_enable_all (1,901 samples, 0.20%)</title><rect x="14.4875%" y="501" width="0.1989%" height="15" fill="rgb(228,95,12)" fg:x="138498" fg:w="1901"/><text x="14.7375%" y="511.50"></text></g><g><title>native_write_msr (1,895 samples, 0.20%)</title><rect x="14.4881%" y="485" width="0.1982%" height="15" fill="rgb(249,221,15)" fg:x="138504" fg:w="1895"/><text x="14.7381%" y="495.50"></text></g><g><title>finish_task_switch.isra.0 (2,096 samples, 0.22%)</title><rect x="14.4748%" y="549" width="0.2193%" height="15" fill="rgb(233,34,13)" fg:x="138377" fg:w="2096"/><text x="14.7248%" y="559.50"></text></g><g><title>__schedule (2,198 samples, 0.23%)</title><rect x="14.4692%" y="565" width="0.2299%" height="15" fill="rgb(214,103,39)" fg:x="138323" fg:w="2198"/><text x="14.7192%" y="575.50"></text></g><g><title>schedule (2,204 samples, 0.23%)</title><rect x="14.4687%" y="581" width="0.2305%" height="15" fill="rgb(251,126,39)" fg:x="138318" fg:w="2204"/><text x="14.7187%" y="591.50"></text></g><g><title>pipe_read (2,255 samples, 0.24%)</title><rect x="14.4639%" y="597" width="0.2359%" height="15" fill="rgb(214,216,36)" fg:x="138273" fg:w="2255"/><text x="14.7139%" y="607.50"></text></g><g><title>new_sync_read (2,270 samples, 0.24%)</title><rect x="14.4626%" y="613" width="0.2375%" height="15" fill="rgb(220,221,8)" fg:x="138260" fg:w="2270"/><text x="14.7126%" y="623.50"></text></g><g><title>ksys_read (2,285 samples, 0.24%)</title><rect x="14.4615%" y="645" width="0.2390%" height="15" fill="rgb(240,216,3)" fg:x="138250" fg:w="2285"/><text x="14.7115%" y="655.50"></text></g><g><title>vfs_read (2,280 samples, 0.24%)</title><rect x="14.4621%" y="629" width="0.2385%" height="15" fill="rgb(232,218,17)" fg:x="138255" fg:w="2280"/><text x="14.7121%" y="639.50"></text></g><g><title>__x64_sys_read (2,288 samples, 0.24%)</title><rect x="14.4615%" y="661" width="0.2393%" height="15" fill="rgb(229,163,45)" fg:x="138250" fg:w="2288"/><text x="14.7115%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,447 samples, 0.26%)</title><rect x="14.4452%" y="709" width="0.2560%" height="15" fill="rgb(231,110,42)" fg:x="138094" fg:w="2447"/><text x="14.6952%" y="719.50"></text></g><g><title>do_syscall_64 (2,447 samples, 0.26%)</title><rect x="14.4452%" y="693" width="0.2560%" height="15" fill="rgb(208,170,48)" fg:x="138094" fg:w="2447"/><text x="14.6952%" y="703.50"></text></g><g><title>unload_network_ops_symbols (2,295 samples, 0.24%)</title><rect x="14.4611%" y="677" width="0.2401%" height="15" fill="rgb(239,116,25)" fg:x="138246" fg:w="2295"/><text x="14.7111%" y="687.50"></text></g><g><title>__GI___libc_read (2,465 samples, 0.26%)</title><rect x="14.4434%" y="725" width="0.2578%" height="15" fill="rgb(219,200,50)" fg:x="138077" fg:w="2465"/><text x="14.6934%" y="735.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (104 samples, 0.01%)</title><rect x="14.7134%" y="405" width="0.0109%" height="15" fill="rgb(245,200,0)" fg:x="140658" fg:w="104"/><text x="14.9634%" y="415.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (113 samples, 0.01%)</title><rect x="14.7127%" y="421" width="0.0118%" height="15" fill="rgb(245,119,33)" fg:x="140651" fg:w="113"/><text x="14.9627%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (109 samples, 0.01%)</title><rect x="14.7447%" y="325" width="0.0114%" height="15" fill="rgb(231,125,12)" fg:x="140957" fg:w="109"/><text x="14.9947%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (123 samples, 0.01%)</title><rect x="14.7438%" y="341" width="0.0129%" height="15" fill="rgb(216,96,41)" fg:x="140948" fg:w="123"/><text x="14.9938%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (161 samples, 0.02%)</title><rect x="14.7400%" y="373" width="0.0168%" height="15" fill="rgb(248,43,45)" fg:x="140912" fg:w="161"/><text x="14.9900%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (141 samples, 0.01%)</title><rect x="14.7421%" y="357" width="0.0147%" height="15" fill="rgb(217,222,7)" fg:x="140932" fg:w="141"/><text x="14.9921%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (192 samples, 0.02%)</title><rect x="14.7375%" y="389" width="0.0201%" height="15" fill="rgb(233,28,6)" fg:x="140888" fg:w="192"/><text x="14.9875%" y="399.50"></text></g><g><title>_ZdlPv (445 samples, 0.05%)</title><rect x="14.7118%" y="437" width="0.0465%" height="15" fill="rgb(231,218,15)" fg:x="140642" fg:w="445"/><text x="14.9618%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (256 samples, 0.03%)</title><rect x="14.7315%" y="421" width="0.0268%" height="15" fill="rgb(226,171,48)" fg:x="140831" fg:w="256"/><text x="14.9815%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (215 samples, 0.02%)</title><rect x="14.7358%" y="405" width="0.0225%" height="15" fill="rgb(235,201,9)" fg:x="140872" fg:w="215"/><text x="14.9858%" y="415.50"></text></g><g><title>_ZdlPv (453 samples, 0.05%)</title><rect x="14.7112%" y="469" width="0.0474%" height="15" fill="rgb(217,80,15)" fg:x="140637" fg:w="453"/><text x="14.9612%" y="479.50"></text></g><g><title>_ZdlPv (452 samples, 0.05%)</title><rect x="14.7113%" y="453" width="0.0473%" height="15" fill="rgb(219,152,8)" fg:x="140638" fg:w="452"/><text x="14.9613%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (189 samples, 0.02%)</title><rect x="14.7678%" y="389" width="0.0198%" height="15" fill="rgb(243,107,38)" fg:x="141178" fg:w="189"/><text x="15.0178%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (136 samples, 0.01%)</title><rect x="14.7734%" y="373" width="0.0142%" height="15" fill="rgb(231,17,5)" fg:x="141231" fg:w="136"/><text x="15.0234%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (117 samples, 0.01%)</title><rect x="14.7754%" y="357" width="0.0122%" height="15" fill="rgb(209,25,54)" fg:x="141250" fg:w="117"/><text x="15.0254%" y="367.50"></text></g><g><title>_ZdlPv (273 samples, 0.03%)</title><rect x="14.7591%" y="437" width="0.0286%" height="15" fill="rgb(219,0,2)" fg:x="141095" fg:w="273"/><text x="15.0091%" y="447.50"></text></g><g><title>_ZdlPv (273 samples, 0.03%)</title><rect x="14.7591%" y="421" width="0.0286%" height="15" fill="rgb(246,9,5)" fg:x="141095" fg:w="273"/><text x="15.0091%" y="431.50"></text></g><g><title>_ZdlPv (271 samples, 0.03%)</title><rect x="14.7593%" y="405" width="0.0283%" height="15" fill="rgb(226,159,4)" fg:x="141097" fg:w="271"/><text x="15.0093%" y="415.50"></text></g><g><title>_ZdlPv (274 samples, 0.03%)</title><rect x="14.7591%" y="453" width="0.0287%" height="15" fill="rgb(219,175,34)" fg:x="141095" fg:w="274"/><text x="15.0091%" y="463.50"></text></g><g><title>cshook_security_sb_free_security (287 samples, 0.03%)</title><rect x="14.7588%" y="469" width="0.0300%" height="15" fill="rgb(236,10,46)" fg:x="141092" fg:w="287"/><text x="15.0088%" y="479.50"></text></g><g><title>cshook_security_file_permission (747 samples, 0.08%)</title><rect x="14.7110%" y="517" width="0.0781%" height="15" fill="rgb(240,211,16)" fg:x="140635" fg:w="747"/><text x="14.9610%" y="527.50"></text></g><g><title>cshook_security_sb_free_security (747 samples, 0.08%)</title><rect x="14.7110%" y="501" width="0.0781%" height="15" fill="rgb(205,3,43)" fg:x="140635" fg:w="747"/><text x="14.9610%" y="511.50"></text></g><g><title>cshook_security_sb_free_security (746 samples, 0.08%)</title><rect x="14.7111%" y="485" width="0.0780%" height="15" fill="rgb(245,7,22)" fg:x="140636" fg:w="746"/><text x="14.9611%" y="495.50"></text></g><g><title>search_binary_handler (767 samples, 0.08%)</title><rect x="14.7096%" y="597" width="0.0802%" height="15" fill="rgb(239,132,32)" fg:x="140621" fg:w="767"/><text x="14.9596%" y="607.50"></text></g><g><title>security_bprm_check (759 samples, 0.08%)</title><rect x="14.7104%" y="581" width="0.0794%" height="15" fill="rgb(228,202,34)" fg:x="140629" fg:w="759"/><text x="14.9604%" y="591.50"></text></g><g><title>pinnedhook_security_bprm_check_security (758 samples, 0.08%)</title><rect x="14.7105%" y="565" width="0.0793%" height="15" fill="rgb(254,200,22)" fg:x="140630" fg:w="758"/><text x="14.9605%" y="575.50"></text></g><g><title>cshook_security_bprm_check_security (758 samples, 0.08%)</title><rect x="14.7105%" y="549" width="0.0793%" height="15" fill="rgb(219,10,39)" fg:x="140630" fg:w="758"/><text x="14.9605%" y="559.50"></text></g><g><title>cshook_security_file_permission (758 samples, 0.08%)</title><rect x="14.7105%" y="533" width="0.0793%" height="15" fill="rgb(226,210,39)" fg:x="140630" fg:w="758"/><text x="14.9605%" y="543.50"></text></g><g><title>exec_binprm (768 samples, 0.08%)</title><rect x="14.7096%" y="613" width="0.0803%" height="15" fill="rgb(208,219,16)" fg:x="140621" fg:w="768"/><text x="14.9596%" y="623.50"></text></g><g><title>bprm_execve.part.0 (829 samples, 0.09%)</title><rect x="14.7068%" y="629" width="0.0867%" height="15" fill="rgb(216,158,51)" fg:x="140595" fg:w="829"/><text x="14.9568%" y="639.50"></text></g><g><title>bprm_execve (831 samples, 0.09%)</title><rect x="14.7067%" y="645" width="0.0869%" height="15" fill="rgb(233,14,44)" fg:x="140594" fg:w="831"/><text x="14.9567%" y="655.50"></text></g><g><title>__GI_execve (838 samples, 0.09%)</title><rect x="14.7065%" y="725" width="0.0877%" height="15" fill="rgb(237,97,39)" fg:x="140592" fg:w="838"/><text x="14.9565%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (838 samples, 0.09%)</title><rect x="14.7065%" y="709" width="0.0877%" height="15" fill="rgb(218,198,43)" fg:x="140592" fg:w="838"/><text x="14.9565%" y="719.50"></text></g><g><title>do_syscall_64 (838 samples, 0.09%)</title><rect x="14.7065%" y="693" width="0.0877%" height="15" fill="rgb(231,104,20)" fg:x="140592" fg:w="838"/><text x="14.9565%" y="703.50"></text></g><g><title>__x64_sys_execve (838 samples, 0.09%)</title><rect x="14.7065%" y="677" width="0.0877%" height="15" fill="rgb(254,36,13)" fg:x="140592" fg:w="838"/><text x="14.9565%" y="687.50"></text></g><g><title>do_execveat_common.isra.0 (838 samples, 0.09%)</title><rect x="14.7065%" y="661" width="0.0877%" height="15" fill="rgb(248,14,50)" fg:x="140592" fg:w="838"/><text x="14.9565%" y="671.50"></text></g><g><title>copy_pmd_range (107 samples, 0.01%)</title><rect x="14.8224%" y="517" width="0.0112%" height="15" fill="rgb(217,107,29)" fg:x="141700" fg:w="107"/><text x="15.0724%" y="527.50"></text></g><g><title>copy_p4d_range (130 samples, 0.01%)</title><rect x="14.8204%" y="533" width="0.0136%" height="15" fill="rgb(251,169,33)" fg:x="141681" fg:w="130"/><text x="15.0704%" y="543.50"></text></g><g><title>copy_page_range (136 samples, 0.01%)</title><rect x="14.8200%" y="549" width="0.0142%" height="15" fill="rgb(217,108,32)" fg:x="141677" fg:w="136"/><text x="15.0700%" y="559.50"></text></g><g><title>dup_mmap (328 samples, 0.03%)</title><rect x="14.8085%" y="565" width="0.0343%" height="15" fill="rgb(219,66,42)" fg:x="141567" fg:w="328"/><text x="15.0585%" y="575.50"></text></g><g><title>dup_mm (360 samples, 0.04%)</title><rect x="14.8085%" y="581" width="0.0377%" height="15" fill="rgb(206,180,7)" fg:x="141567" fg:w="360"/><text x="15.0585%" y="591.50"></text></g><g><title>inherit_event.constprop.0 (107 samples, 0.01%)</title><rect x="14.8542%" y="533" width="0.0112%" height="15" fill="rgb(208,226,31)" fg:x="142004" fg:w="107"/><text x="15.1042%" y="543.50"></text></g><g><title>perf_event_init_context (119 samples, 0.01%)</title><rect x="14.8532%" y="565" width="0.0124%" height="15" fill="rgb(218,26,49)" fg:x="141994" fg:w="119"/><text x="15.1032%" y="575.50"></text></g><g><title>inherit_task_group.isra.0 (113 samples, 0.01%)</title><rect x="14.8538%" y="549" width="0.0118%" height="15" fill="rgb(233,197,48)" fg:x="142000" fg:w="113"/><text x="15.1038%" y="559.50"></text></g><g><title>perf_event_init_task (127 samples, 0.01%)</title><rect x="14.8529%" y="581" width="0.0133%" height="15" fill="rgb(252,181,51)" fg:x="141991" fg:w="127"/><text x="15.1029%" y="591.50"></text></g><g><title>copy_process (637 samples, 0.07%)</title><rect x="14.8009%" y="597" width="0.0666%" height="15" fill="rgb(253,90,19)" fg:x="141494" fg:w="637"/><text x="15.0509%" y="607.50"></text></g><g><title>__x64_sys_clone (696 samples, 0.07%)</title><rect x="14.8001%" y="645" width="0.0728%" height="15" fill="rgb(215,171,30)" fg:x="141487" fg:w="696"/><text x="15.0501%" y="655.50"></text></g><g><title>__do_sys_clone (696 samples, 0.07%)</title><rect x="14.8001%" y="629" width="0.0728%" height="15" fill="rgb(214,222,9)" fg:x="141487" fg:w="696"/><text x="15.0501%" y="639.50"></text></g><g><title>kernel_clone (696 samples, 0.07%)</title><rect x="14.8001%" y="613" width="0.0728%" height="15" fill="rgb(223,3,22)" fg:x="141487" fg:w="696"/><text x="15.0501%" y="623.50"></text></g><g><title>do_syscall_64 (699 samples, 0.07%)</title><rect x="14.8000%" y="661" width="0.0731%" height="15" fill="rgb(225,196,46)" fg:x="141486" fg:w="699"/><text x="15.0500%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (700 samples, 0.07%)</title><rect x="14.8000%" y="677" width="0.0732%" height="15" fill="rgb(209,110,37)" fg:x="141486" fg:w="700"/><text x="15.0500%" y="687.50"></text></g><g><title>do_wp_page (167 samples, 0.02%)</title><rect x="14.8801%" y="549" width="0.0175%" height="15" fill="rgb(249,89,12)" fg:x="142251" fg:w="167"/><text x="15.1301%" y="559.50"></text></g><g><title>wp_page_copy (150 samples, 0.02%)</title><rect x="14.8818%" y="533" width="0.0157%" height="15" fill="rgb(226,27,33)" fg:x="142268" fg:w="150"/><text x="15.1318%" y="543.50"></text></g><g><title>handle_pte_fault (177 samples, 0.02%)</title><rect x="14.8791%" y="565" width="0.0185%" height="15" fill="rgb(213,82,22)" fg:x="142242" fg:w="177"/><text x="15.1291%" y="575.50"></text></g><g><title>__handle_mm_fault (190 samples, 0.02%)</title><rect x="14.8779%" y="581" width="0.0199%" height="15" fill="rgb(248,140,0)" fg:x="142230" fg:w="190"/><text x="15.1279%" y="591.50"></text></g><g><title>handle_mm_fault (199 samples, 0.02%)</title><rect x="14.8772%" y="597" width="0.0208%" height="15" fill="rgb(228,106,3)" fg:x="142224" fg:w="199"/><text x="15.1272%" y="607.50"></text></g><g><title>do_user_addr_fault (228 samples, 0.02%)</title><rect x="14.8745%" y="613" width="0.0238%" height="15" fill="rgb(209,23,37)" fg:x="142198" fg:w="228"/><text x="15.1245%" y="623.50"></text></g><g><title>__put_user_nocheck_4 (243 samples, 0.03%)</title><rect x="14.8733%" y="661" width="0.0254%" height="15" fill="rgb(241,93,50)" fg:x="142186" fg:w="243"/><text x="15.1233%" y="671.50"></text></g><g><title>asm_exc_page_fault (232 samples, 0.02%)</title><rect x="14.8744%" y="645" width="0.0243%" height="15" fill="rgb(253,46,43)" fg:x="142197" fg:w="232"/><text x="15.1244%" y="655.50"></text></g><g><title>exc_page_fault (232 samples, 0.02%)</title><rect x="14.8744%" y="629" width="0.0243%" height="15" fill="rgb(226,206,43)" fg:x="142197" fg:w="232"/><text x="15.1244%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (2,827 samples, 0.30%)</title><rect x="14.9186%" y="629" width="0.2957%" height="15" fill="rgb(217,54,7)" fg:x="142619" fg:w="2827"/><text x="15.1686%" y="639.50"></text></g><g><title>x86_pmu_enable (2,781 samples, 0.29%)</title><rect x="14.9234%" y="613" width="0.2909%" height="15" fill="rgb(223,5,52)" fg:x="142665" fg:w="2781"/><text x="15.1734%" y="623.50"></text></g><g><title>intel_pmu_enable_all (2,769 samples, 0.29%)</title><rect x="14.9246%" y="597" width="0.2896%" height="15" fill="rgb(206,52,46)" fg:x="142677" fg:w="2769"/><text x="15.1746%" y="607.50"></text></g><g><title>native_write_msr (2,762 samples, 0.29%)</title><rect x="14.9254%" y="581" width="0.2889%" height="15" fill="rgb(253,136,11)" fg:x="142684" fg:w="2762"/><text x="15.1754%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (2,955 samples, 0.31%)</title><rect x="14.9083%" y="645" width="0.3091%" height="15" fill="rgb(208,106,33)" fg:x="142521" fg:w="2955"/><text x="15.1583%" y="655.50"></text></g><g><title>schedule_tail (3,012 samples, 0.32%)</title><rect x="14.9029%" y="661" width="0.3151%" height="15" fill="rgb(206,54,4)" fg:x="142469" fg:w="3012"/><text x="15.1529%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (98 samples, 0.01%)</title><rect x="15.2182%" y="645" width="0.0103%" height="15" fill="rgb(213,3,15)" fg:x="145484" fg:w="98"/><text x="15.4682%" y="655.50"></text></g><g><title>ret_from_fork (3,397 samples, 0.36%)</title><rect x="14.8733%" y="677" width="0.3553%" height="15" fill="rgb(252,211,39)" fg:x="142186" fg:w="3397"/><text x="15.1233%" y="687.50"></text></g><g><title>syscall_exit_to_user_mode (102 samples, 0.01%)</title><rect x="15.2179%" y="661" width="0.0107%" height="15" fill="rgb(223,6,36)" fg:x="145481" fg:w="102"/><text x="15.4679%" y="671.50"></text></g><g><title>__GI__Fork (4,145 samples, 0.43%)</title><rect x="14.7952%" y="709" width="0.4336%" height="15" fill="rgb(252,169,45)" fg:x="141440" fg:w="4145"/><text x="15.0452%" y="719.50"></text></g><g><title>arch_fork (4,144 samples, 0.43%)</title><rect x="14.7953%" y="693" width="0.4335%" height="15" fill="rgb(212,48,26)" fg:x="141441" fg:w="4144"/><text x="15.0453%" y="703.50"></text></g><g><title>__libc_fork (4,252 samples, 0.44%)</title><rect x="14.7942%" y="725" width="0.4448%" height="15" fill="rgb(251,102,48)" fg:x="141430" fg:w="4252"/><text x="15.0442%" y="735.50"></text></g><g><title>[dash] (31,873 samples, 3.33%)</title><rect x="11.9083%" y="741" width="3.3341%" height="15" fill="rgb(243,208,16)" fg:x="113841" fg:w="31873"/><text x="12.1583%" y="751.50">[da..</text></g><g><title>[dash] (31,932 samples, 3.34%)</title><rect x="11.9069%" y="757" width="3.3402%" height="15" fill="rgb(219,96,24)" fg:x="113828" fg:w="31932"/><text x="12.1569%" y="767.50">[da..</text></g><g><title>[dash] (31,962 samples, 3.34%)</title><rect x="11.9052%" y="773" width="3.3434%" height="15" fill="rgb(219,33,29)" fg:x="113812" fg:w="31962"/><text x="12.1552%" y="783.50">[da..</text></g><g><title>[dash] (31,973 samples, 3.34%)</title><rect x="11.9044%" y="789" width="3.3445%" height="15" fill="rgb(223,176,5)" fg:x="113804" fg:w="31973"/><text x="12.1544%" y="799.50">[da..</text></g><g><title>[dash] (31,987 samples, 3.35%)</title><rect x="11.9043%" y="805" width="3.3460%" height="15" fill="rgb(228,140,14)" fg:x="113803" fg:w="31987"/><text x="12.1543%" y="815.50">[da..</text></g><g><title>[dash] (32,014 samples, 3.35%)</title><rect x="11.9040%" y="821" width="3.3488%" height="15" fill="rgb(217,179,31)" fg:x="113800" fg:w="32014"/><text x="12.1540%" y="831.50">[da..</text></g><g><title>do_exit (124 samples, 0.01%)</title><rect x="15.2540%" y="741" width="0.0130%" height="15" fill="rgb(230,9,30)" fg:x="145826" fg:w="124"/><text x="15.5040%" y="751.50"></text></g><g><title>__GI__exit (130 samples, 0.01%)</title><rect x="15.2538%" y="821" width="0.0136%" height="15" fill="rgb(230,136,20)" fg:x="145824" fg:w="130"/><text x="15.5038%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (130 samples, 0.01%)</title><rect x="15.2538%" y="805" width="0.0136%" height="15" fill="rgb(215,210,22)" fg:x="145824" fg:w="130"/><text x="15.5038%" y="815.50"></text></g><g><title>do_syscall_64 (129 samples, 0.01%)</title><rect x="15.2539%" y="789" width="0.0135%" height="15" fill="rgb(218,43,5)" fg:x="145825" fg:w="129"/><text x="15.5039%" y="799.50"></text></g><g><title>__x64_sys_exit_group (129 samples, 0.01%)</title><rect x="15.2539%" y="773" width="0.0135%" height="15" fill="rgb(216,11,5)" fg:x="145825" fg:w="129"/><text x="15.5039%" y="783.50"></text></g><g><title>do_group_exit (129 samples, 0.01%)</title><rect x="15.2539%" y="757" width="0.0135%" height="15" fill="rgb(209,82,29)" fg:x="145825" fg:w="129"/><text x="15.5039%" y="767.50"></text></g><g><title>[dash] (32,160 samples, 3.36%)</title><rect x="11.9037%" y="837" width="3.3641%" height="15" fill="rgb(244,115,12)" fg:x="113797" fg:w="32160"/><text x="12.1537%" y="847.50">[da..</text></g><g><title>[dash] (32,186 samples, 3.37%)</title><rect x="11.9025%" y="901" width="3.3668%" height="15" fill="rgb(222,82,18)" fg:x="113786" fg:w="32186"/><text x="12.1525%" y="911.50">[da..</text></g><g><title>__libc_start_main_impl (32,178 samples, 3.37%)</title><rect x="11.9033%" y="885" width="3.3660%" height="15" fill="rgb(249,227,8)" fg:x="113794" fg:w="32178"/><text x="12.1533%" y="895.50">__l..</text></g><g><title>__libc_start_call_main (32,177 samples, 3.37%)</title><rect x="11.9034%" y="869" width="3.3659%" height="15" fill="rgb(253,141,45)" fg:x="113795" fg:w="32177"/><text x="12.1534%" y="879.50">__l..</text></g><g><title>[dash] (32,177 samples, 3.37%)</title><rect x="11.9034%" y="853" width="3.3659%" height="15" fill="rgb(234,184,4)" fg:x="113795" fg:w="32177"/><text x="12.1534%" y="863.50">[da..</text></g><g><title>do_user_addr_fault (102 samples, 0.01%)</title><rect x="15.4457%" y="853" width="0.0107%" height="15" fill="rgb(218,194,23)" fg:x="147658" fg:w="102"/><text x="15.6957%" y="863.50"></text></g><g><title>asm_exc_page_fault (108 samples, 0.01%)</title><rect x="15.4452%" y="885" width="0.0113%" height="15" fill="rgb(235,66,41)" fg:x="147654" fg:w="108"/><text x="15.6952%" y="895.50"></text></g><g><title>exc_page_fault (104 samples, 0.01%)</title><rect x="15.4457%" y="869" width="0.0109%" height="15" fill="rgb(245,217,1)" fg:x="147658" fg:w="104"/><text x="15.6957%" y="879.50"></text></g><g><title>cshook_security_file_permission (144 samples, 0.02%)</title><rect x="15.4704%" y="693" width="0.0151%" height="15" fill="rgb(229,91,1)" fg:x="147895" fg:w="144"/><text x="15.7204%" y="703.50"></text></g><g><title>cshook_security_sb_free_security (144 samples, 0.02%)</title><rect x="15.4704%" y="677" width="0.0151%" height="15" fill="rgb(207,101,30)" fg:x="147895" fg:w="144"/><text x="15.7204%" y="687.50"></text></g><g><title>cshook_security_sb_free_security (144 samples, 0.02%)</title><rect x="15.4704%" y="661" width="0.0151%" height="15" fill="rgb(223,82,49)" fg:x="147895" fg:w="144"/><text x="15.7204%" y="671.50"></text></g><g><title>exec_binprm (157 samples, 0.02%)</title><rect x="15.4694%" y="789" width="0.0164%" height="15" fill="rgb(218,167,17)" fg:x="147885" fg:w="157"/><text x="15.7194%" y="799.50"></text></g><g><title>search_binary_handler (157 samples, 0.02%)</title><rect x="15.4694%" y="773" width="0.0164%" height="15" fill="rgb(208,103,14)" fg:x="147885" fg:w="157"/><text x="15.7194%" y="783.50"></text></g><g><title>security_bprm_check (150 samples, 0.02%)</title><rect x="15.4701%" y="757" width="0.0157%" height="15" fill="rgb(238,20,8)" fg:x="147892" fg:w="150"/><text x="15.7201%" y="767.50"></text></g><g><title>pinnedhook_security_bprm_check_security (150 samples, 0.02%)</title><rect x="15.4701%" y="741" width="0.0157%" height="15" fill="rgb(218,80,54)" fg:x="147892" fg:w="150"/><text x="15.7201%" y="751.50"></text></g><g><title>cshook_security_bprm_check_security (150 samples, 0.02%)</title><rect x="15.4701%" y="725" width="0.0157%" height="15" fill="rgb(240,144,17)" fg:x="147892" fg:w="150"/><text x="15.7201%" y="735.50"></text></g><g><title>cshook_security_file_permission (150 samples, 0.02%)</title><rect x="15.4701%" y="709" width="0.0157%" height="15" fill="rgb(245,27,50)" fg:x="147892" fg:w="150"/><text x="15.7201%" y="719.50"></text></g><g><title>bprm_execve.part.0 (174 samples, 0.02%)</title><rect x="15.4693%" y="805" width="0.0182%" height="15" fill="rgb(251,51,7)" fg:x="147884" fg:w="174"/><text x="15.7193%" y="815.50"></text></g><g><title>__x64_sys_execve (178 samples, 0.02%)</title><rect x="15.4693%" y="853" width="0.0186%" height="15" fill="rgb(245,217,29)" fg:x="147884" fg:w="178"/><text x="15.7193%" y="863.50"></text></g><g><title>do_execveat_common.isra.0 (178 samples, 0.02%)</title><rect x="15.4693%" y="837" width="0.0186%" height="15" fill="rgb(221,176,29)" fg:x="147884" fg:w="178"/><text x="15.7193%" y="847.50"></text></g><g><title>bprm_execve (178 samples, 0.02%)</title><rect x="15.4693%" y="821" width="0.0186%" height="15" fill="rgb(212,180,24)" fg:x="147884" fg:w="178"/><text x="15.7193%" y="831.50"></text></g><g><title>__x64_sys_newfstat (116 samples, 0.01%)</title><rect x="15.4909%" y="853" width="0.0121%" height="15" fill="rgb(254,24,2)" fg:x="148091" fg:w="116"/><text x="15.7409%" y="863.50"></text></g><g><title>__do_sys_newfstat (116 samples, 0.01%)</title><rect x="15.4909%" y="837" width="0.0121%" height="15" fill="rgb(230,100,2)" fg:x="148091" fg:w="116"/><text x="15.7409%" y="847.50"></text></g><g><title>__fput (178 samples, 0.02%)</title><rect x="15.5196%" y="773" width="0.0186%" height="15" fill="rgb(219,142,25)" fg:x="148365" fg:w="178"/><text x="15.7696%" y="783.50"></text></g><g><title>____fput (198 samples, 0.02%)</title><rect x="15.5196%" y="789" width="0.0207%" height="15" fill="rgb(240,73,43)" fg:x="148365" fg:w="198"/><text x="15.7696%" y="799.50"></text></g><g><title>exit_to_user_mode_loop (225 samples, 0.02%)</title><rect x="15.5170%" y="821" width="0.0235%" height="15" fill="rgb(214,114,15)" fg:x="148340" fg:w="225"/><text x="15.7670%" y="831.50"></text></g><g><title>task_work_run (206 samples, 0.02%)</title><rect x="15.5190%" y="805" width="0.0215%" height="15" fill="rgb(207,130,4)" fg:x="148359" fg:w="206"/><text x="15.7690%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (267 samples, 0.03%)</title><rect x="15.5141%" y="837" width="0.0279%" height="15" fill="rgb(221,25,40)" fg:x="148312" fg:w="267"/><text x="15.7641%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (286 samples, 0.03%)</title><rect x="15.5123%" y="853" width="0.0299%" height="15" fill="rgb(241,184,7)" fg:x="148295" fg:w="286"/><text x="15.7623%" y="863.50"></text></g><g><title>__alloc_file (123 samples, 0.01%)</title><rect x="15.5550%" y="757" width="0.0129%" height="15" fill="rgb(235,159,4)" fg:x="148703" fg:w="123"/><text x="15.8050%" y="767.50"></text></g><g><title>alloc_empty_file (125 samples, 0.01%)</title><rect x="15.5550%" y="773" width="0.0131%" height="15" fill="rgb(214,87,48)" fg:x="148703" fg:w="125"/><text x="15.8050%" y="783.50"></text></g><g><title>do_open (167 samples, 0.02%)</title><rect x="15.5680%" y="773" width="0.0175%" height="15" fill="rgb(246,198,24)" fg:x="148828" fg:w="167"/><text x="15.8180%" y="783.50"></text></g><g><title>vfs_open (101 samples, 0.01%)</title><rect x="15.5749%" y="757" width="0.0106%" height="15" fill="rgb(209,66,40)" fg:x="148894" fg:w="101"/><text x="15.8249%" y="767.50"></text></g><g><title>inode_permission (174 samples, 0.02%)</title><rect x="15.6088%" y="757" width="0.0182%" height="15" fill="rgb(233,147,39)" fg:x="149218" fg:w="174"/><text x="15.8588%" y="767.50"></text></g><g><title>__d_lookup (106 samples, 0.01%)</title><rect x="15.6374%" y="725" width="0.0111%" height="15" fill="rgb(231,145,52)" fg:x="149491" fg:w="106"/><text x="15.8874%" y="735.50"></text></g><g><title>__d_lookup_rcu (150 samples, 0.02%)</title><rect x="15.6485%" y="725" width="0.0157%" height="15" fill="rgb(206,20,26)" fg:x="149597" fg:w="150"/><text x="15.8985%" y="735.50"></text></g><g><title>lookup_fast (382 samples, 0.04%)</title><rect x="15.6344%" y="741" width="0.0400%" height="15" fill="rgb(238,220,4)" fg:x="149462" fg:w="382"/><text x="15.8844%" y="751.50"></text></g><g><title>pick_link (152 samples, 0.02%)</title><rect x="15.6955%" y="725" width="0.0159%" height="15" fill="rgb(252,195,42)" fg:x="150046" fg:w="152"/><text x="15.9455%" y="735.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (1,196 samples, 0.13%)</title><rect x="15.5867%" y="773" width="0.1251%" height="15" fill="rgb(209,10,6)" fg:x="149006" fg:w="1196"/><text x="15.8367%" y="783.50"></text></g><g><title>walk_component (801 samples, 0.08%)</title><rect x="15.6280%" y="757" width="0.0838%" height="15" fill="rgb(229,3,52)" fg:x="149401" fg:w="801"/><text x="15.8780%" y="767.50"></text></g><g><title>step_into (352 samples, 0.04%)</title><rect x="15.6749%" y="741" width="0.0368%" height="15" fill="rgb(253,49,37)" fg:x="149850" fg:w="352"/><text x="15.9249%" y="751.50"></text></g><g><title>lookup_fast (98 samples, 0.01%)</title><rect x="15.7156%" y="757" width="0.0103%" height="15" fill="rgb(240,103,49)" fg:x="150239" fg:w="98"/><text x="15.9656%" y="767.50"></text></g><g><title>page_get_link (120 samples, 0.01%)</title><rect x="15.7348%" y="725" width="0.0126%" height="15" fill="rgb(250,182,30)" fg:x="150422" fg:w="120"/><text x="15.9848%" y="735.50"></text></g><g><title>pick_link (200 samples, 0.02%)</title><rect x="15.7277%" y="741" width="0.0209%" height="15" fill="rgb(248,8,30)" fg:x="150354" fg:w="200"/><text x="15.9777%" y="751.50"></text></g><g><title>open_last_lookups (350 samples, 0.04%)</title><rect x="15.7123%" y="773" width="0.0366%" height="15" fill="rgb(237,120,30)" fg:x="150207" fg:w="350"/><text x="15.9623%" y="783.50"></text></g><g><title>step_into (216 samples, 0.02%)</title><rect x="15.7263%" y="757" width="0.0226%" height="15" fill="rgb(221,146,34)" fg:x="150341" fg:w="216"/><text x="15.9763%" y="767.50"></text></g><g><title>do_filp_open (1,934 samples, 0.20%)</title><rect x="15.5528%" y="805" width="0.2023%" height="15" fill="rgb(242,55,13)" fg:x="148682" fg:w="1934"/><text x="15.8028%" y="815.50"></text></g><g><title>path_openat (1,918 samples, 0.20%)</title><rect x="15.5544%" y="789" width="0.2006%" height="15" fill="rgb(242,112,31)" fg:x="148698" fg:w="1918"/><text x="15.8044%" y="799.50"></text></g><g><title>getname (117 samples, 0.01%)</title><rect x="15.7581%" y="805" width="0.0122%" height="15" fill="rgb(249,192,27)" fg:x="150645" fg:w="117"/><text x="16.0081%" y="815.50"></text></g><g><title>getname_flags.part.0 (116 samples, 0.01%)</title><rect x="15.7582%" y="789" width="0.0121%" height="15" fill="rgb(208,204,44)" fg:x="150646" fg:w="116"/><text x="16.0082%" y="799.50"></text></g><g><title>do_sys_openat2 (2,106 samples, 0.22%)</title><rect x="15.5518%" y="821" width="0.2203%" height="15" fill="rgb(208,93,54)" fg:x="148673" fg:w="2106"/><text x="15.8018%" y="831.50"></text></g><g><title>__x64_sys_openat (2,128 samples, 0.22%)</title><rect x="15.5506%" y="837" width="0.2226%" height="15" fill="rgb(242,1,31)" fg:x="148661" fg:w="2128"/><text x="15.8006%" y="847.50"></text></g><g><title>copy_user_enhanced_fast_string (228 samples, 0.02%)</title><rect x="15.8226%" y="741" width="0.0238%" height="15" fill="rgb(241,83,25)" fg:x="151262" fg:w="228"/><text x="16.0726%" y="751.50"></text></g><g><title>filemap_get_read_batch (169 samples, 0.02%)</title><rect x="15.8507%" y="725" width="0.0177%" height="15" fill="rgb(205,169,50)" fg:x="151530" fg:w="169"/><text x="16.1007%" y="735.50"></text></g><g><title>filemap_get_pages (212 samples, 0.02%)</title><rect x="15.8468%" y="741" width="0.0222%" height="15" fill="rgb(239,186,37)" fg:x="151493" fg:w="212"/><text x="16.0968%" y="751.50"></text></g><g><title>filemap_read (712 samples, 0.07%)</title><rect x="15.8028%" y="757" width="0.0745%" height="15" fill="rgb(205,221,10)" fg:x="151072" fg:w="712"/><text x="16.0528%" y="767.50"></text></g><g><title>btrfs_file_read_iter (723 samples, 0.08%)</title><rect x="15.8018%" y="773" width="0.0756%" height="15" fill="rgb(218,196,15)" fg:x="151063" fg:w="723"/><text x="16.0518%" y="783.50"></text></g><g><title>new_sync_read (797 samples, 0.08%)</title><rect x="15.7978%" y="789" width="0.0834%" height="15" fill="rgb(218,196,35)" fg:x="151024" fg:w="797"/><text x="16.0478%" y="799.50"></text></g><g><title>rw_verify_area (205 samples, 0.02%)</title><rect x="15.8811%" y="789" width="0.0214%" height="15" fill="rgb(233,63,24)" fg:x="151821" fg:w="205"/><text x="16.1311%" y="799.50"></text></g><g><title>security_file_permission (195 samples, 0.02%)</title><rect x="15.8822%" y="773" width="0.0204%" height="15" fill="rgb(225,8,4)" fg:x="151831" fg:w="195"/><text x="16.1322%" y="783.50"></text></g><g><title>ksys_read (1,232 samples, 0.13%)</title><rect x="15.7740%" y="821" width="0.1289%" height="15" fill="rgb(234,105,35)" fg:x="150797" fg:w="1232"/><text x="16.0240%" y="831.50"></text></g><g><title>vfs_read (1,070 samples, 0.11%)</title><rect x="15.7910%" y="805" width="0.1119%" height="15" fill="rgb(236,21,32)" fg:x="150959" fg:w="1070"/><text x="16.0410%" y="815.50"></text></g><g><title>__x64_sys_read (1,241 samples, 0.13%)</title><rect x="15.7732%" y="837" width="0.1298%" height="15" fill="rgb(228,109,6)" fg:x="150789" fg:w="1241"/><text x="16.0232%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (100 samples, 0.01%)</title><rect x="15.9106%" y="773" width="0.0105%" height="15" fill="rgb(229,215,31)" fg:x="152103" fg:w="100"/><text x="16.1606%" y="783.50"></text></g><g><title>cshook_security_file_free_security (110 samples, 0.01%)</title><rect x="15.9106%" y="789" width="0.0115%" height="15" fill="rgb(221,52,54)" fg:x="152103" fg:w="110"/><text x="16.1606%" y="799.50"></text></g><g><title>cshook_security_file_free_security (146 samples, 0.02%)</title><rect x="15.9070%" y="821" width="0.0153%" height="15" fill="rgb(252,129,43)" fg:x="152068" fg:w="146"/><text x="16.1570%" y="831.50"></text></g><g><title>cshook_security_file_free_security (141 samples, 0.01%)</title><rect x="15.9075%" y="805" width="0.0147%" height="15" fill="rgb(248,183,27)" fg:x="152073" fg:w="141"/><text x="16.1575%" y="815.50"></text></g><g><title>_ZdlPv (103 samples, 0.01%)</title><rect x="15.9268%" y="805" width="0.0108%" height="15" fill="rgb(250,0,22)" fg:x="152258" fg:w="103"/><text x="16.1768%" y="815.50"></text></g><g><title>d_path (142 samples, 0.01%)</title><rect x="15.9422%" y="773" width="0.0149%" height="15" fill="rgb(213,166,10)" fg:x="152405" fg:w="142"/><text x="16.1922%" y="783.50"></text></g><g><title>prepend_path (139 samples, 0.01%)</title><rect x="15.9425%" y="757" width="0.0145%" height="15" fill="rgb(207,163,36)" fg:x="152408" fg:w="139"/><text x="16.1925%" y="767.50"></text></g><g><title>[[falcon_kal]] (163 samples, 0.02%)</title><rect x="15.9407%" y="789" width="0.0171%" height="15" fill="rgb(208,122,22)" fg:x="152391" fg:w="163"/><text x="16.1907%" y="799.50"></text></g><g><title>___slab_alloc (106 samples, 0.01%)</title><rect x="15.9633%" y="741" width="0.0111%" height="15" fill="rgb(207,104,49)" fg:x="152607" fg:w="106"/><text x="16.2133%" y="751.50"></text></g><g><title>__kmalloc (141 samples, 0.01%)</title><rect x="15.9609%" y="757" width="0.0147%" height="15" fill="rgb(248,211,50)" fg:x="152584" fg:w="141"/><text x="16.2109%" y="767.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (249 samples, 0.03%)</title><rect x="15.9580%" y="789" width="0.0260%" height="15" fill="rgb(217,13,45)" fg:x="152556" fg:w="249"/><text x="16.2080%" y="799.50"></text></g><g><title>[[falcon_kal]] (221 samples, 0.02%)</title><rect x="15.9609%" y="773" width="0.0231%" height="15" fill="rgb(211,216,49)" fg:x="152584" fg:w="221"/><text x="16.2109%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (443 samples, 0.05%)</title><rect x="15.9378%" y="805" width="0.0463%" height="15" fill="rgb(221,58,53)" fg:x="152363" fg:w="443"/><text x="16.1878%" y="815.50"></text></g><g><title>cshook_systemcalltable_post_openat (832 samples, 0.09%)</title><rect x="15.9055%" y="837" width="0.0870%" height="15" fill="rgb(220,112,41)" fg:x="152054" fg:w="832"/><text x="16.1555%" y="847.50"></text></g><g><title>fshook_syscalltable_pre_lchown (666 samples, 0.07%)</title><rect x="15.9229%" y="821" width="0.0697%" height="15" fill="rgb(236,38,28)" fg:x="152220" fg:w="666"/><text x="16.1729%" y="831.50"></text></g><g><title>cshook_security_file_free_security (101 samples, 0.01%)</title><rect x="15.9986%" y="789" width="0.0106%" height="15" fill="rgb(227,195,22)" fg:x="152944" fg:w="101"/><text x="16.2486%" y="799.50"></text></g><g><title>cshook_security_file_free_security (125 samples, 0.01%)</title><rect x="15.9962%" y="805" width="0.0131%" height="15" fill="rgb(214,55,33)" fg:x="152921" fg:w="125"/><text x="16.2462%" y="815.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (299 samples, 0.03%)</title><rect x="15.9949%" y="821" width="0.0313%" height="15" fill="rgb(248,80,13)" fg:x="152909" fg:w="299"/><text x="16.2449%" y="831.50"></text></g><g><title>fshook_syscalltable_pre_lchown (162 samples, 0.02%)</title><rect x="16.0093%" y="805" width="0.0169%" height="15" fill="rgb(238,52,6)" fg:x="153046" fg:w="162"/><text x="16.2593%" y="815.50"></text></g><g><title>cshook_systemcalltable_pre_close (300 samples, 0.03%)</title><rect x="15.9949%" y="837" width="0.0314%" height="15" fill="rgb(224,198,47)" fg:x="152909" fg:w="300"/><text x="16.2449%" y="847.50"></text></g><g><title>do_syscall_64 (5,424 samples, 0.57%)</title><rect x="15.4626%" y="869" width="0.5674%" height="15" fill="rgb(233,171,20)" fg:x="147820" fg:w="5424"/><text x="15.7126%" y="879.50"></text></g><g><title>unload_network_ops_symbols (4,663 samples, 0.49%)</title><rect x="15.5422%" y="853" width="0.4878%" height="15" fill="rgb(241,30,25)" fg:x="148581" fg:w="4663"/><text x="15.7922%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5,467 samples, 0.57%)</title><rect x="15.4590%" y="885" width="0.5719%" height="15" fill="rgb(207,171,38)" fg:x="147786" fg:w="5467"/><text x="15.7090%" y="895.50"></text></g><g><title>ret_from_fork (98 samples, 0.01%)</title><rect x="16.0311%" y="885" width="0.0103%" height="15" fill="rgb(234,70,1)" fg:x="153255" fg:w="98"/><text x="16.2811%" y="895.50"></text></g><g><title>[unknown] (7,413 samples, 0.78%)</title><rect x="15.2699%" y="901" width="0.7754%" height="15" fill="rgb(232,178,18)" fg:x="145978" fg:w="7413"/><text x="15.5199%" y="911.50"></text></g><g><title>dl_main (140 samples, 0.01%)</title><rect x="16.0468%" y="837" width="0.0146%" height="15" fill="rgb(241,78,40)" fg:x="153405" fg:w="140"/><text x="16.2968%" y="847.50"></text></g><g><title>_dl_start_final (152 samples, 0.02%)</title><rect x="16.0462%" y="869" width="0.0159%" height="15" fill="rgb(222,35,25)" fg:x="153399" fg:w="152"/><text x="16.2962%" y="879.50"></text></g><g><title>_dl_sysdep_start (150 samples, 0.02%)</title><rect x="16.0464%" y="853" width="0.0157%" height="15" fill="rgb(207,92,16)" fg:x="153401" fg:w="150"/><text x="16.2964%" y="863.50"></text></g><g><title>_dl_start (155 samples, 0.02%)</title><rect x="16.0462%" y="885" width="0.0162%" height="15" fill="rgb(216,59,51)" fg:x="153399" fg:w="155"/><text x="16.2962%" y="895.50"></text></g><g><title>_start (159 samples, 0.02%)</title><rect x="16.0462%" y="901" width="0.0166%" height="15" fill="rgb(213,80,28)" fg:x="153399" fg:w="159"/><text x="16.2962%" y="911.50"></text></g><g><title>asm_exc_page_fault (358 samples, 0.04%)</title><rect x="16.0628%" y="901" width="0.0374%" height="15" fill="rgb(220,93,7)" fg:x="153558" fg:w="358"/><text x="16.3128%" y="911.50"></text></g><g><title>free_pgtables (132 samples, 0.01%)</title><rect x="16.1035%" y="693" width="0.0138%" height="15" fill="rgb(225,24,44)" fg:x="153947" fg:w="132"/><text x="16.3535%" y="703.50"></text></g><g><title>unmap_page_range (154 samples, 0.02%)</title><rect x="16.1321%" y="661" width="0.0161%" height="15" fill="rgb(243,74,40)" fg:x="154220" fg:w="154"/><text x="16.3821%" y="671.50"></text></g><g><title>zap_pmd_range.isra.0 (146 samples, 0.02%)</title><rect x="16.1329%" y="645" width="0.0153%" height="15" fill="rgb(228,39,7)" fg:x="154228" fg:w="146"/><text x="16.3829%" y="655.50"></text></g><g><title>zap_pte_range (135 samples, 0.01%)</title><rect x="16.1341%" y="629" width="0.0141%" height="15" fill="rgb(227,79,8)" fg:x="154239" fg:w="135"/><text x="16.3841%" y="639.50"></text></g><g><title>unmap_single_vma (162 samples, 0.02%)</title><rect x="16.1313%" y="677" width="0.0169%" height="15" fill="rgb(236,58,11)" fg:x="154213" fg:w="162"/><text x="16.3813%" y="687.50"></text></g><g><title>unmap_vmas (170 samples, 0.02%)</title><rect x="16.1306%" y="693" width="0.0178%" height="15" fill="rgb(249,63,35)" fg:x="154206" fg:w="170"/><text x="16.3806%" y="703.50"></text></g><g><title>exit_mmap (435 samples, 0.05%)</title><rect x="16.1030%" y="709" width="0.0455%" height="15" fill="rgb(252,114,16)" fg:x="153942" fg:w="435"/><text x="16.3530%" y="719.50"></text></g><g><title>mmput (443 samples, 0.05%)</title><rect x="16.1025%" y="725" width="0.0463%" height="15" fill="rgb(254,151,24)" fg:x="153937" fg:w="443"/><text x="16.3525%" y="735.50"></text></g><g><title>exec_mmap (445 samples, 0.05%)</title><rect x="16.1024%" y="741" width="0.0465%" height="15" fill="rgb(253,54,39)" fg:x="153936" fg:w="445"/><text x="16.3524%" y="751.50"></text></g><g><title>begin_new_exec (478 samples, 0.05%)</title><rect x="16.1015%" y="757" width="0.0500%" height="15" fill="rgb(243,25,45)" fg:x="153928" fg:w="478"/><text x="16.3515%" y="767.50"></text></g><g><title>load_elf_binary (520 samples, 0.05%)</title><rect x="16.1012%" y="773" width="0.0544%" height="15" fill="rgb(234,134,9)" fg:x="153925" fg:w="520"/><text x="16.3512%" y="783.50"></text></g><g><title>__x64_sys_execve (525 samples, 0.05%)</title><rect x="16.1012%" y="869" width="0.0549%" height="15" fill="rgb(227,166,31)" fg:x="153925" fg:w="525"/><text x="16.3512%" y="879.50"></text></g><g><title>do_execveat_common.isra.0 (525 samples, 0.05%)</title><rect x="16.1012%" y="853" width="0.0549%" height="15" fill="rgb(245,143,41)" fg:x="153925" fg:w="525"/><text x="16.3512%" y="863.50"></text></g><g><title>bprm_execve (525 samples, 0.05%)</title><rect x="16.1012%" y="837" width="0.0549%" height="15" fill="rgb(238,181,32)" fg:x="153925" fg:w="525"/><text x="16.3512%" y="847.50"></text></g><g><title>bprm_execve.part.0 (525 samples, 0.05%)</title><rect x="16.1012%" y="821" width="0.0549%" height="15" fill="rgb(224,113,18)" fg:x="153925" fg:w="525"/><text x="16.3512%" y="831.50"></text></g><g><title>exec_binprm (525 samples, 0.05%)</title><rect x="16.1012%" y="805" width="0.0549%" height="15" fill="rgb(240,229,28)" fg:x="153925" fg:w="525"/><text x="16.3512%" y="815.50"></text></g><g><title>search_binary_handler (525 samples, 0.05%)</title><rect x="16.1012%" y="789" width="0.0549%" height="15" fill="rgb(250,185,3)" fg:x="153925" fg:w="525"/><text x="16.3512%" y="799.50"></text></g><g><title>unlink_anon_vmas (111 samples, 0.01%)</title><rect x="16.1716%" y="757" width="0.0116%" height="15" fill="rgb(212,59,25)" fg:x="154598" fg:w="111"/><text x="16.4216%" y="767.50"></text></g><g><title>free_pgtables (172 samples, 0.02%)</title><rect x="16.1679%" y="773" width="0.0180%" height="15" fill="rgb(221,87,20)" fg:x="154563" fg:w="172"/><text x="16.4179%" y="783.50"></text></g><g><title>free_pages_and_swap_cache (132 samples, 0.01%)</title><rect x="16.1968%" y="757" width="0.0138%" height="15" fill="rgb(213,74,28)" fg:x="154839" fg:w="132"/><text x="16.4468%" y="767.50"></text></g><g><title>release_pages (125 samples, 0.01%)</title><rect x="16.1976%" y="741" width="0.0131%" height="15" fill="rgb(224,132,34)" fg:x="154846" fg:w="125"/><text x="16.4476%" y="751.50"></text></g><g><title>tlb_finish_mmu (156 samples, 0.02%)</title><rect x="16.1959%" y="773" width="0.0163%" height="15" fill="rgb(222,101,24)" fg:x="154830" fg:w="156"/><text x="16.4459%" y="783.50"></text></g><g><title>page_remove_rmap (105 samples, 0.01%)</title><rect x="16.2482%" y="693" width="0.0110%" height="15" fill="rgb(254,142,4)" fg:x="155330" fg:w="105"/><text x="16.4982%" y="703.50"></text></g><g><title>unmap_page_range (440 samples, 0.05%)</title><rect x="16.2149%" y="741" width="0.0460%" height="15" fill="rgb(230,229,49)" fg:x="155012" fg:w="440"/><text x="16.4649%" y="751.50"></text></g><g><title>zap_pmd_range.isra.0 (419 samples, 0.04%)</title><rect x="16.2171%" y="725" width="0.0438%" height="15" fill="rgb(238,70,47)" fg:x="155033" fg:w="419"/><text x="16.4671%" y="735.50"></text></g><g><title>zap_pte_range (381 samples, 0.04%)</title><rect x="16.2211%" y="709" width="0.0399%" height="15" fill="rgb(231,160,17)" fg:x="155071" fg:w="381"/><text x="16.4711%" y="719.50"></text></g><g><title>unmap_vmas (462 samples, 0.05%)</title><rect x="16.2127%" y="773" width="0.0483%" height="15" fill="rgb(218,68,53)" fg:x="154991" fg:w="462"/><text x="16.4627%" y="783.50"></text></g><g><title>unmap_single_vma (455 samples, 0.05%)</title><rect x="16.2135%" y="757" width="0.0476%" height="15" fill="rgb(236,111,10)" fg:x="154998" fg:w="455"/><text x="16.4635%" y="767.50"></text></g><g><title>exit_mmap (898 samples, 0.09%)</title><rect x="16.1672%" y="789" width="0.0939%" height="15" fill="rgb(224,34,41)" fg:x="154556" fg:w="898"/><text x="16.4172%" y="799.50"></text></g><g><title>exit_mm (904 samples, 0.09%)</title><rect x="16.1670%" y="821" width="0.0946%" height="15" fill="rgb(241,118,19)" fg:x="154554" fg:w="904"/><text x="16.4170%" y="831.50"></text></g><g><title>mmput (903 samples, 0.09%)</title><rect x="16.1671%" y="805" width="0.0945%" height="15" fill="rgb(238,129,25)" fg:x="154555" fg:w="903"/><text x="16.4171%" y="815.50"></text></g><g><title>do_exit (1,117 samples, 0.12%)</title><rect x="16.1561%" y="837" width="0.1168%" height="15" fill="rgb(238,22,31)" fg:x="154450" fg:w="1117"/><text x="16.4061%" y="847.50"></text></g><g><title>__x64_sys_exit_group (1,120 samples, 0.12%)</title><rect x="16.1561%" y="869" width="0.1172%" height="15" fill="rgb(222,174,48)" fg:x="154450" fg:w="1120"/><text x="16.4061%" y="879.50"></text></g><g><title>do_group_exit (1,120 samples, 0.12%)</title><rect x="16.1561%" y="853" width="0.1172%" height="15" fill="rgb(206,152,40)" fg:x="154450" fg:w="1120"/><text x="16.4061%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,659 samples, 0.17%)</title><rect x="16.1004%" y="901" width="0.1735%" height="15" fill="rgb(218,99,54)" fg:x="153917" fg:w="1659"/><text x="16.3504%" y="911.50"></text></g><g><title>do_syscall_64 (1,651 samples, 0.17%)</title><rect x="16.1012%" y="885" width="0.1727%" height="15" fill="rgb(220,174,26)" fg:x="153925" fg:w="1651"/><text x="16.3512%" y="895.50"></text></g><g><title>c++ (41,837 samples, 4.38%)</title><rect x="11.8997%" y="917" width="4.3763%" height="15" fill="rgb(245,116,9)" fg:x="113759" fg:w="41837"/><text x="12.1497%" y="927.50">c++</text></g><g><title>[perf-722681.map] (184 samples, 0.02%)</title><rect x="16.2778%" y="901" width="0.0192%" height="15" fill="rgb(209,72,35)" fg:x="155613" fg:w="184"/><text x="16.5278%" y="911.50"></text></g><g><title>find-action-loo (222 samples, 0.02%)</title><rect x="16.2776%" y="917" width="0.0232%" height="15" fill="rgb(226,126,21)" fg:x="155611" fg:w="222"/><text x="16.5276%" y="927.50"></text></g><g><title>[perf-722681.map] (151 samples, 0.02%)</title><rect x="16.3087%" y="901" width="0.0158%" height="15" fill="rgb(227,192,1)" fg:x="155909" fg:w="151"/><text x="16.5587%" y="911.50"></text></g><g><title>globbing_pool-1 (215 samples, 0.02%)</title><rect x="16.3075%" y="917" width="0.0225%" height="15" fill="rgb(237,180,29)" fg:x="155897" fg:w="215"/><text x="16.5575%" y="927.50"></text></g><g><title>[perf-722681.map] (242 samples, 0.03%)</title><rect x="16.3323%" y="901" width="0.0253%" height="15" fill="rgb(230,197,35)" fg:x="156134" fg:w="242"/><text x="16.5823%" y="911.50"></text></g><g><title>globbing_pool-2 (294 samples, 0.03%)</title><rect x="16.3300%" y="917" width="0.0308%" height="15" fill="rgb(246,193,31)" fg:x="156112" fg:w="294"/><text x="16.5800%" y="927.50"></text></g><g><title>[perf-722681.map] (270 samples, 0.03%)</title><rect x="16.3629%" y="901" width="0.0282%" height="15" fill="rgb(241,36,4)" fg:x="156427" fg:w="270"/><text x="16.6129%" y="911.50"></text></g><g><title>globbing_pool-3 (337 samples, 0.04%)</title><rect x="16.3607%" y="917" width="0.0353%" height="15" fill="rgb(241,130,17)" fg:x="156406" fg:w="337"/><text x="16.6107%" y="927.50"></text></g><g><title>[perf-722681.map] (162 samples, 0.02%)</title><rect x="16.3990%" y="901" width="0.0169%" height="15" fill="rgb(206,137,32)" fg:x="156772" fg:w="162"/><text x="16.6490%" y="911.50"></text></g><g><title>globbing_pool-4 (215 samples, 0.02%)</title><rect x="16.3960%" y="917" width="0.0225%" height="15" fill="rgb(237,228,51)" fg:x="156743" fg:w="215"/><text x="16.6460%" y="927.50"></text></g><g><title>[perf-722681.map] (186 samples, 0.02%)</title><rect x="16.4229%" y="901" width="0.0195%" height="15" fill="rgb(243,6,42)" fg:x="157000" fg:w="186"/><text x="16.6729%" y="911.50"></text></g><g><title>globbing_pool-5 (259 samples, 0.03%)</title><rect x="16.4185%" y="917" width="0.0271%" height="15" fill="rgb(251,74,28)" fg:x="156958" fg:w="259"/><text x="16.6685%" y="927.50"></text></g><g><title>[perf-722681.map] (197 samples, 0.02%)</title><rect x="16.4492%" y="901" width="0.0206%" height="15" fill="rgb(218,20,49)" fg:x="157252" fg:w="197"/><text x="16.6992%" y="911.50"></text></g><g><title>globbing_pool-6 (259 samples, 0.03%)</title><rect x="16.4456%" y="917" width="0.0271%" height="15" fill="rgb(238,28,14)" fg:x="157217" fg:w="259"/><text x="16.6956%" y="927.50"></text></g><g><title>[perf-722681.map] (250 samples, 0.03%)</title><rect x="16.4775%" y="901" width="0.0262%" height="15" fill="rgb(229,40,46)" fg:x="157522" fg:w="250"/><text x="16.7275%" y="911.50"></text></g><g><title>globbing_pool-7 (302 samples, 0.03%)</title><rect x="16.4727%" y="917" width="0.0316%" height="15" fill="rgb(244,195,20)" fg:x="157476" fg:w="302"/><text x="16.7227%" y="927.50"></text></g><g><title>[perf-722681.map] (256 samples, 0.03%)</title><rect x="16.5071%" y="901" width="0.0268%" height="15" fill="rgb(253,56,35)" fg:x="157805" fg:w="256"/><text x="16.7571%" y="911.50"></text></g><g><title>globbing_pool-8 (345 samples, 0.04%)</title><rect x="16.5043%" y="917" width="0.0361%" height="15" fill="rgb(210,149,44)" fg:x="157778" fg:w="345"/><text x="16.7543%" y="927.50"></text></g><g><title>[perf-722681.map] (188 samples, 0.02%)</title><rect x="16.5417%" y="901" width="0.0197%" height="15" fill="rgb(240,135,12)" fg:x="158136" fg:w="188"/><text x="16.7917%" y="911.50"></text></g><g><title>free_pages_and_swap_cache (154 samples, 0.02%)</title><rect x="16.5711%" y="613" width="0.0161%" height="15" fill="rgb(251,24,50)" fg:x="158417" fg:w="154"/><text x="16.8211%" y="623.50"></text></g><g><title>release_pages (153 samples, 0.02%)</title><rect x="16.5712%" y="597" width="0.0160%" height="15" fill="rgb(243,200,47)" fg:x="158418" fg:w="153"/><text x="16.8212%" y="607.50"></text></g><g><title>tlb_flush_mmu (167 samples, 0.02%)</title><rect x="16.5711%" y="629" width="0.0175%" height="15" fill="rgb(224,166,26)" fg:x="158417" fg:w="167"/><text x="16.8211%" y="639.50"></text></g><g><title>exit_mm (260 samples, 0.03%)</title><rect x="16.5617%" y="757" width="0.0272%" height="15" fill="rgb(233,0,47)" fg:x="158327" fg:w="260"/><text x="16.8117%" y="767.50"></text></g><g><title>mmput (260 samples, 0.03%)</title><rect x="16.5617%" y="741" width="0.0272%" height="15" fill="rgb(253,80,5)" fg:x="158327" fg:w="260"/><text x="16.8117%" y="751.50"></text></g><g><title>exit_mmap (260 samples, 0.03%)</title><rect x="16.5617%" y="725" width="0.0272%" height="15" fill="rgb(214,133,25)" fg:x="158327" fg:w="260"/><text x="16.8117%" y="735.50"></text></g><g><title>unmap_vmas (258 samples, 0.03%)</title><rect x="16.5619%" y="709" width="0.0270%" height="15" fill="rgb(209,27,14)" fg:x="158329" fg:w="258"/><text x="16.8119%" y="719.50"></text></g><g><title>unmap_single_vma (258 samples, 0.03%)</title><rect x="16.5619%" y="693" width="0.0270%" height="15" fill="rgb(219,102,51)" fg:x="158329" fg:w="258"/><text x="16.8119%" y="703.50"></text></g><g><title>unmap_page_range (258 samples, 0.03%)</title><rect x="16.5619%" y="677" width="0.0270%" height="15" fill="rgb(237,18,16)" fg:x="158329" fg:w="258"/><text x="16.8119%" y="687.50"></text></g><g><title>zap_pmd_range.isra.0 (258 samples, 0.03%)</title><rect x="16.5619%" y="661" width="0.0270%" height="15" fill="rgb(241,85,17)" fg:x="158329" fg:w="258"/><text x="16.8119%" y="671.50"></text></g><g><title>zap_pte_range (255 samples, 0.03%)</title><rect x="16.5622%" y="645" width="0.0267%" height="15" fill="rgb(236,90,42)" fg:x="158332" fg:w="255"/><text x="16.8122%" y="655.50"></text></g><g><title>globbing_pool-9 (465 samples, 0.05%)</title><rect x="16.5403%" y="917" width="0.0486%" height="15" fill="rgb(249,57,21)" fg:x="158123" fg:w="465"/><text x="16.7903%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (261 samples, 0.03%)</title><rect x="16.5617%" y="901" width="0.0273%" height="15" fill="rgb(243,12,36)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="911.50"></text></g><g><title>do_syscall_64 (261 samples, 0.03%)</title><rect x="16.5617%" y="885" width="0.0273%" height="15" fill="rgb(253,128,47)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="895.50"></text></g><g><title>syscall_exit_to_user_mode (261 samples, 0.03%)</title><rect x="16.5617%" y="869" width="0.0273%" height="15" fill="rgb(207,33,20)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (261 samples, 0.03%)</title><rect x="16.5617%" y="853" width="0.0273%" height="15" fill="rgb(233,215,35)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="863.50"></text></g><g><title>exit_to_user_mode_loop (261 samples, 0.03%)</title><rect x="16.5617%" y="837" width="0.0273%" height="15" fill="rgb(249,188,52)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="847.50"></text></g><g><title>arch_do_signal_or_restart (261 samples, 0.03%)</title><rect x="16.5617%" y="821" width="0.0273%" height="15" fill="rgb(225,12,32)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="831.50"></text></g><g><title>get_signal (261 samples, 0.03%)</title><rect x="16.5617%" y="805" width="0.0273%" height="15" fill="rgb(247,98,14)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="815.50"></text></g><g><title>do_group_exit (261 samples, 0.03%)</title><rect x="16.5617%" y="789" width="0.0273%" height="15" fill="rgb(247,219,48)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="799.50"></text></g><g><title>do_exit (261 samples, 0.03%)</title><rect x="16.5617%" y="773" width="0.0273%" height="15" fill="rgb(253,60,48)" fg:x="158327" fg:w="261"/><text x="16.8117%" y="783.50"></text></g><g><title>[anon] (203 samples, 0.02%)</title><rect x="16.5907%" y="901" width="0.0212%" height="15" fill="rgb(245,15,52)" fg:x="158604" fg:w="203"/><text x="16.8407%" y="911.50"></text></g><g><title>ClassLoader::load_class (111 samples, 0.01%)</title><rect x="16.8176%" y="805" width="0.0116%" height="15" fill="rgb(220,133,28)" fg:x="160774" fg:w="111"/><text x="17.0676%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (132 samples, 0.01%)</title><rect x="16.8175%" y="821" width="0.0138%" height="15" fill="rgb(217,180,4)" fg:x="160773" fg:w="132"/><text x="17.0675%" y="831.50"></text></g><g><title>ConstantPool::klass_at_impl (147 samples, 0.02%)</title><rect x="16.8162%" y="869" width="0.0154%" height="15" fill="rgb(251,24,1)" fg:x="160760" fg:w="147"/><text x="17.0662%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_fail (145 samples, 0.02%)</title><rect x="16.8164%" y="853" width="0.0152%" height="15" fill="rgb(212,185,49)" fg:x="160762" fg:w="145"/><text x="17.0664%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (143 samples, 0.01%)</title><rect x="16.8166%" y="837" width="0.0150%" height="15" fill="rgb(215,175,22)" fg:x="160764" fg:w="143"/><text x="17.0666%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (142 samples, 0.01%)</title><rect x="16.8320%" y="853" width="0.0149%" height="15" fill="rgb(250,205,14)" fg:x="160911" fg:w="142"/><text x="17.0820%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (149 samples, 0.02%)</title><rect x="16.8318%" y="869" width="0.0156%" height="15" fill="rgb(225,211,22)" fg:x="160909" fg:w="149"/><text x="17.0818%" y="879.50"></text></g><g><title>InterpreterRuntime::_new (300 samples, 0.03%)</title><rect x="16.8161%" y="885" width="0.0314%" height="15" fill="rgb(251,179,42)" fg:x="160759" fg:w="300"/><text x="17.0661%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (246 samples, 0.03%)</title><rect x="16.8728%" y="853" width="0.0257%" height="15" fill="rgb(208,216,51)" fg:x="161301" fg:w="246"/><text x="17.1228%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (287 samples, 0.03%)</title><rect x="16.8697%" y="869" width="0.0300%" height="15" fill="rgb(235,36,11)" fg:x="161272" fg:w="287"/><text x="17.1197%" y="879.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (411 samples, 0.04%)</title><rect x="16.8611%" y="885" width="0.0430%" height="15" fill="rgb(213,189,28)" fg:x="161189" fg:w="411"/><text x="17.1111%" y="895.50"></text></g><g><title>SymbolTable::lookup_only (439 samples, 0.05%)</title><rect x="16.9457%" y="741" width="0.0459%" height="15" fill="rgb(227,203,42)" fg:x="161998" fg:w="439"/><text x="17.1957%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (521 samples, 0.05%)</title><rect x="16.9374%" y="757" width="0.0545%" height="15" fill="rgb(244,72,36)" fg:x="161919" fg:w="521"/><text x="17.1874%" y="767.50"></text></g><g><title>ClassFileParser::parse_constant_pool (540 samples, 0.06%)</title><rect x="16.9358%" y="773" width="0.0565%" height="15" fill="rgb(213,53,17)" fg:x="161904" fg:w="540"/><text x="17.1858%" y="783.50"></text></g><g><title>ClassFileParser::parse_methods (139 samples, 0.01%)</title><rect x="16.9938%" y="773" width="0.0145%" height="15" fill="rgb(207,167,3)" fg:x="162458" fg:w="139"/><text x="17.2438%" y="783.50"></text></g><g><title>ClassFileParser::parse_method (139 samples, 0.01%)</title><rect x="16.9938%" y="757" width="0.0145%" height="15" fill="rgb(216,98,30)" fg:x="162458" fg:w="139"/><text x="17.2438%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (713 samples, 0.07%)</title><rect x="16.9352%" y="805" width="0.0746%" height="15" fill="rgb(236,123,15)" fg:x="161898" fg:w="713"/><text x="17.1852%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (709 samples, 0.07%)</title><rect x="16.9356%" y="789" width="0.0742%" height="15" fill="rgb(248,81,50)" fg:x="161902" fg:w="709"/><text x="17.1856%" y="799.50"></text></g><g><title>DefaultMethods::generate_default_methods (110 samples, 0.01%)</title><rect x="17.0105%" y="773" width="0.0115%" height="15" fill="rgb(214,120,4)" fg:x="162618" fg:w="110"/><text x="17.2605%" y="783.50"></text></g><g><title>ClassFileParser::fill_instance_klass (151 samples, 0.02%)</title><rect x="17.0098%" y="789" width="0.0158%" height="15" fill="rgb(208,179,34)" fg:x="162611" fg:w="151"/><text x="17.2598%" y="799.50"></text></g><g><title>ClassFileParser::create_instance_klass (161 samples, 0.02%)</title><rect x="17.0098%" y="805" width="0.0168%" height="15" fill="rgb(227,140,7)" fg:x="162611" fg:w="161"/><text x="17.2598%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (910 samples, 0.10%)</title><rect x="16.9352%" y="821" width="0.0952%" height="15" fill="rgb(214,22,6)" fg:x="161898" fg:w="910"/><text x="17.1852%" y="831.50"></text></g><g><title>JVM_DefineClassWithSource (944 samples, 0.10%)</title><rect x="16.9344%" y="869" width="0.0987%" height="15" fill="rgb(207,137,27)" fg:x="161890" fg:w="944"/><text x="17.1844%" y="879.50"></text></g><g><title>jvm_define_class_common (944 samples, 0.10%)</title><rect x="16.9344%" y="853" width="0.0987%" height="15" fill="rgb(210,8,46)" fg:x="161890" fg:w="944"/><text x="17.1844%" y="863.50"></text></g><g><title>SystemDictionary::resolve_from_stream (936 samples, 0.10%)</title><rect x="16.9352%" y="837" width="0.0979%" height="15" fill="rgb(240,16,54)" fg:x="161898" fg:w="936"/><text x="17.1852%" y="847.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (983 samples, 0.10%)</title><rect x="16.9340%" y="885" width="0.1028%" height="15" fill="rgb(211,209,29)" fg:x="161886" fg:w="983"/><text x="17.1840%" y="895.50"></text></g><g><title>[perf-722681.map] (4,409 samples, 0.46%)</title><rect x="16.6153%" y="901" width="0.4612%" height="15" fill="rgb(226,228,24)" fg:x="158840" fg:w="4409"/><text x="16.8653%" y="911.50"></text></g><g><title>[unknown] (164 samples, 0.02%)</title><rect x="17.0765%" y="901" width="0.0172%" height="15" fill="rgb(222,84,9)" fg:x="163249" fg:w="164"/><text x="17.3265%" y="911.50"></text></g><g><title>__clone3 (217 samples, 0.02%)</title><rect x="17.0937%" y="901" width="0.0227%" height="15" fill="rgb(234,203,30)" fg:x="163413" fg:w="217"/><text x="17.3437%" y="911.50"></text></g><g><title>start_thread (109 samples, 0.01%)</title><rect x="17.1050%" y="885" width="0.0114%" height="15" fill="rgb(238,109,14)" fg:x="163521" fg:w="109"/><text x="17.3550%" y="895.50"></text></g><g><title>java (5,157 samples, 0.54%)</title><rect x="16.5890%" y="917" width="0.5394%" height="15" fill="rgb(233,206,34)" fg:x="158588" fg:w="5157"/><text x="16.8390%" y="927.50"></text></g><g><title>[bash] (113 samples, 0.01%)</title><rect x="17.1328%" y="885" width="0.0118%" height="15" fill="rgb(220,167,47)" fg:x="163787" fg:w="113"/><text x="17.3828%" y="895.50"></text></g><g><title>execute_command_internal (138 samples, 0.01%)</title><rect x="17.1482%" y="885" width="0.0144%" height="15" fill="rgb(238,105,10)" fg:x="163934" fg:w="138"/><text x="17.3982%" y="895.50"></text></g><g><title>execute_command_internal (104 samples, 0.01%)</title><rect x="17.1518%" y="869" width="0.0109%" height="15" fill="rgb(213,227,17)" fg:x="163968" fg:w="104"/><text x="17.4018%" y="879.50"></text></g><g><title>[unknown] (300 samples, 0.03%)</title><rect x="17.1328%" y="901" width="0.0314%" height="15" fill="rgb(217,132,38)" fg:x="163787" fg:w="300"/><text x="17.3828%" y="911.50"></text></g><g><title>__GI__Fork (110 samples, 0.01%)</title><rect x="17.1820%" y="565" width="0.0115%" height="15" fill="rgb(242,146,4)" fg:x="164257" fg:w="110"/><text x="17.4320%" y="575.50"></text></g><g><title>arch_fork (110 samples, 0.01%)</title><rect x="17.1820%" y="549" width="0.0115%" height="15" fill="rgb(212,61,9)" fg:x="164257" fg:w="110"/><text x="17.4320%" y="559.50"></text></g><g><title>ret_from_fork (105 samples, 0.01%)</title><rect x="17.1825%" y="533" width="0.0110%" height="15" fill="rgb(247,126,22)" fg:x="164262" fg:w="105"/><text x="17.4325%" y="543.50"></text></g><g><title>__libc_fork (113 samples, 0.01%)</title><rect x="17.1820%" y="581" width="0.0118%" height="15" fill="rgb(220,196,2)" fg:x="164257" fg:w="113"/><text x="17.4320%" y="591.50"></text></g><g><title>[bash] (177 samples, 0.02%)</title><rect x="17.1756%" y="613" width="0.0185%" height="15" fill="rgb(208,46,4)" fg:x="164196" fg:w="177"/><text x="17.4256%" y="623.50"></text></g><g><title>make_child (117 samples, 0.01%)</title><rect x="17.1819%" y="597" width="0.0122%" height="15" fill="rgb(252,104,46)" fg:x="164256" fg:w="117"/><text x="17.4319%" y="607.50"></text></g><g><title>execute_command_internal (212 samples, 0.02%)</title><rect x="17.1755%" y="661" width="0.0222%" height="15" fill="rgb(237,152,48)" fg:x="164195" fg:w="212"/><text x="17.4255%" y="671.50"></text></g><g><title>[bash] (212 samples, 0.02%)</title><rect x="17.1755%" y="645" width="0.0222%" height="15" fill="rgb(221,59,37)" fg:x="164195" fg:w="212"/><text x="17.4255%" y="655.50"></text></g><g><title>execute_command_internal (211 samples, 0.02%)</title><rect x="17.1756%" y="629" width="0.0221%" height="15" fill="rgb(209,202,51)" fg:x="164196" fg:w="211"/><text x="17.4256%" y="639.50"></text></g><g><title>parse_and_execute (213 samples, 0.02%)</title><rect x="17.1755%" y="677" width="0.0223%" height="15" fill="rgb(228,81,30)" fg:x="164195" fg:w="213"/><text x="17.4255%" y="687.50"></text></g><g><title>[bash] (314 samples, 0.03%)</title><rect x="17.1677%" y="741" width="0.0328%" height="15" fill="rgb(227,42,39)" fg:x="164120" fg:w="314"/><text x="17.4177%" y="751.50"></text></g><g><title>expand_string_assignment (311 samples, 0.03%)</title><rect x="17.1680%" y="725" width="0.0325%" height="15" fill="rgb(221,26,2)" fg:x="164123" fg:w="311"/><text x="17.4180%" y="735.50"></text></g><g><title>[bash] (311 samples, 0.03%)</title><rect x="17.1680%" y="709" width="0.0325%" height="15" fill="rgb(254,61,31)" fg:x="164123" fg:w="311"/><text x="17.4180%" y="719.50"></text></g><g><title>command_substitute (306 samples, 0.03%)</title><rect x="17.1685%" y="693" width="0.0320%" height="15" fill="rgb(222,173,38)" fg:x="164128" fg:w="306"/><text x="17.4185%" y="703.50"></text></g><g><title>[bash] (319 samples, 0.03%)</title><rect x="17.1677%" y="757" width="0.0334%" height="15" fill="rgb(218,50,12)" fg:x="164120" fg:w="319"/><text x="17.4177%" y="767.50"></text></g><g><title>[bash] (343 samples, 0.04%)</title><rect x="17.1674%" y="773" width="0.0359%" height="15" fill="rgb(223,88,40)" fg:x="164118" fg:w="343"/><text x="17.4174%" y="783.50"></text></g><g><title>[bash] (344 samples, 0.04%)</title><rect x="17.1674%" y="789" width="0.0360%" height="15" fill="rgb(237,54,19)" fg:x="164118" fg:w="344"/><text x="17.4174%" y="799.50"></text></g><g><title>expand_word_leave_quoted (163 samples, 0.02%)</title><rect x="17.2202%" y="757" width="0.0171%" height="15" fill="rgb(251,129,25)" fg:x="164622" fg:w="163"/><text x="17.4702%" y="767.50"></text></g><g><title>[bash] (163 samples, 0.02%)</title><rect x="17.2202%" y="741" width="0.0171%" height="15" fill="rgb(238,97,19)" fg:x="164622" fg:w="163"/><text x="17.4702%" y="751.50"></text></g><g><title>command_substitute (163 samples, 0.02%)</title><rect x="17.2202%" y="725" width="0.0171%" height="15" fill="rgb(240,169,18)" fg:x="164622" fg:w="163"/><text x="17.4702%" y="735.50"></text></g><g><title>execute_command (761 samples, 0.08%)</title><rect x="17.1671%" y="821" width="0.0796%" height="15" fill="rgb(230,187,49)" fg:x="164115" fg:w="761"/><text x="17.4171%" y="831.50"></text></g><g><title>execute_command_internal (759 samples, 0.08%)</title><rect x="17.1673%" y="805" width="0.0794%" height="15" fill="rgb(209,44,26)" fg:x="164117" fg:w="759"/><text x="17.4173%" y="815.50"></text></g><g><title>execute_command (291 samples, 0.03%)</title><rect x="17.2163%" y="789" width="0.0304%" height="15" fill="rgb(244,0,6)" fg:x="164585" fg:w="291"/><text x="17.4663%" y="799.50"></text></g><g><title>execute_command_internal (291 samples, 0.03%)</title><rect x="17.2163%" y="773" width="0.0304%" height="15" fill="rgb(248,18,21)" fg:x="164585" fg:w="291"/><text x="17.4663%" y="783.50"></text></g><g><title>[bash] (225 samples, 0.02%)</title><rect x="17.2579%" y="757" width="0.0235%" height="15" fill="rgb(245,180,19)" fg:x="164983" fg:w="225"/><text x="17.5079%" y="767.50"></text></g><g><title>[bash] (369 samples, 0.04%)</title><rect x="17.2496%" y="773" width="0.0386%" height="15" fill="rgb(252,118,36)" fg:x="164903" fg:w="369"/><text x="17.4996%" y="783.50"></text></g><g><title>reader_loop (1,212 samples, 0.13%)</title><rect x="17.1648%" y="837" width="0.1268%" height="15" fill="rgb(210,224,19)" fg:x="164093" fg:w="1212"/><text x="17.4148%" y="847.50"></text></g><g><title>read_command (429 samples, 0.04%)</title><rect x="17.2467%" y="821" width="0.0449%" height="15" fill="rgb(218,30,24)" fg:x="164876" fg:w="429"/><text x="17.4967%" y="831.50"></text></g><g><title>parse_command (429 samples, 0.04%)</title><rect x="17.2467%" y="805" width="0.0449%" height="15" fill="rgb(219,75,50)" fg:x="164876" fg:w="429"/><text x="17.4967%" y="815.50"></text></g><g><title>yyparse (429 samples, 0.04%)</title><rect x="17.2467%" y="789" width="0.0449%" height="15" fill="rgb(234,72,50)" fg:x="164876" fg:w="429"/><text x="17.4967%" y="799.50"></text></g><g><title>__libc_start_main_impl (1,224 samples, 0.13%)</title><rect x="17.1642%" y="885" width="0.1280%" height="15" fill="rgb(219,100,48)" fg:x="164087" fg:w="1224"/><text x="17.4142%" y="895.50"></text></g><g><title>__libc_start_call_main (1,224 samples, 0.13%)</title><rect x="17.1642%" y="869" width="0.1280%" height="15" fill="rgb(253,5,41)" fg:x="164087" fg:w="1224"/><text x="17.4142%" y="879.50"></text></g><g><title>main (1,224 samples, 0.13%)</title><rect x="17.1642%" y="853" width="0.1280%" height="15" fill="rgb(247,181,11)" fg:x="164087" fg:w="1224"/><text x="17.4142%" y="863.50"></text></g><g><title>_start (1,236 samples, 0.13%)</title><rect x="17.1642%" y="901" width="0.1293%" height="15" fill="rgb(222,223,25)" fg:x="164087" fg:w="1236"/><text x="17.4142%" y="911.50"></text></g><g><title>libtool (1,645 samples, 0.17%)</title><rect x="17.1284%" y="917" width="0.1721%" height="15" fill="rgb(214,198,28)" fg:x="163745" fg:w="1645"/><text x="17.3784%" y="927.50"></text></g><g><title>copy_process (133 samples, 0.01%)</title><rect x="17.3041%" y="773" width="0.0139%" height="15" fill="rgb(230,46,43)" fg:x="165424" fg:w="133"/><text x="17.5541%" y="783.50"></text></g><g><title>__x64_sys_clone (139 samples, 0.01%)</title><rect x="17.3040%" y="821" width="0.0145%" height="15" fill="rgb(233,65,53)" fg:x="165423" fg:w="139"/><text x="17.5540%" y="831.50"></text></g><g><title>__do_sys_clone (139 samples, 0.01%)</title><rect x="17.3040%" y="805" width="0.0145%" height="15" fill="rgb(221,121,27)" fg:x="165423" fg:w="139"/><text x="17.5540%" y="815.50"></text></g><g><title>kernel_clone (139 samples, 0.01%)</title><rect x="17.3040%" y="789" width="0.0145%" height="15" fill="rgb(247,70,47)" fg:x="165423" fg:w="139"/><text x="17.5540%" y="799.50"></text></g><g><title>[libc.so.6] (141 samples, 0.01%)</title><rect x="17.3038%" y="901" width="0.0147%" height="15" fill="rgb(228,85,35)" fg:x="165422" fg:w="141"/><text x="17.5538%" y="911.50"></text></g><g><title>__libc_start_call_main (140 samples, 0.01%)</title><rect x="17.3040%" y="885" width="0.0146%" height="15" fill="rgb(209,50,18)" fg:x="165423" fg:w="140"/><text x="17.5540%" y="895.50"></text></g><g><title>__GI___clone (140 samples, 0.01%)</title><rect x="17.3040%" y="869" width="0.0146%" height="15" fill="rgb(250,19,35)" fg:x="165423" fg:w="140"/><text x="17.5540%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (140 samples, 0.01%)</title><rect x="17.3040%" y="853" width="0.0146%" height="15" fill="rgb(253,107,29)" fg:x="165423" fg:w="140"/><text x="17.5540%" y="863.50"></text></g><g><title>do_syscall_64 (140 samples, 0.01%)</title><rect x="17.3040%" y="837" width="0.0146%" height="15" fill="rgb(252,179,29)" fg:x="165423" fg:w="140"/><text x="17.5540%" y="847.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (98 samples, 0.01%)</title><rect x="17.3756%" y="437" width="0.0103%" height="15" fill="rgb(238,194,6)" fg:x="166108" fg:w="98"/><text x="17.6256%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (112 samples, 0.01%)</title><rect x="17.3745%" y="453" width="0.0117%" height="15" fill="rgb(238,164,29)" fg:x="166097" fg:w="112"/><text x="17.6245%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (126 samples, 0.01%)</title><rect x="17.3731%" y="469" width="0.0132%" height="15" fill="rgb(224,25,9)" fg:x="166084" fg:w="126"/><text x="17.6231%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (152 samples, 0.02%)</title><rect x="17.3705%" y="501" width="0.0159%" height="15" fill="rgb(244,153,23)" fg:x="166059" fg:w="152"/><text x="17.6205%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (132 samples, 0.01%)</title><rect x="17.3726%" y="485" width="0.0138%" height="15" fill="rgb(212,203,14)" fg:x="166079" fg:w="132"/><text x="17.6226%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (182 samples, 0.02%)</title><rect x="17.3676%" y="517" width="0.0190%" height="15" fill="rgb(220,164,20)" fg:x="166031" fg:w="182"/><text x="17.6176%" y="527.50"></text></g><g><title>_ZdlPv (462 samples, 0.05%)</title><rect x="17.3392%" y="597" width="0.0483%" height="15" fill="rgb(222,203,48)" fg:x="165760" fg:w="462"/><text x="17.5892%" y="607.50"></text></g><g><title>_ZdlPv (462 samples, 0.05%)</title><rect x="17.3392%" y="581" width="0.0483%" height="15" fill="rgb(215,159,22)" fg:x="165760" fg:w="462"/><text x="17.5892%" y="591.50"></text></g><g><title>_ZdlPv (459 samples, 0.05%)</title><rect x="17.3395%" y="565" width="0.0480%" height="15" fill="rgb(216,183,47)" fg:x="165763" fg:w="459"/><text x="17.5895%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (274 samples, 0.03%)</title><rect x="17.3589%" y="549" width="0.0287%" height="15" fill="rgb(229,195,25)" fg:x="165948" fg:w="274"/><text x="17.6089%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (230 samples, 0.02%)</title><rect x="17.3635%" y="533" width="0.0241%" height="15" fill="rgb(224,132,51)" fg:x="165992" fg:w="230"/><text x="17.6135%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (106 samples, 0.01%)</title><rect x="17.4067%" y="485" width="0.0111%" height="15" fill="rgb(240,63,7)" fg:x="166405" fg:w="106"/><text x="17.6567%" y="495.50"></text></g><g><title>_ZdlPv (281 samples, 0.03%)</title><rect x="17.3886%" y="533" width="0.0294%" height="15" fill="rgb(249,182,41)" fg:x="166232" fg:w="281"/><text x="17.6386%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (180 samples, 0.02%)</title><rect x="17.3991%" y="517" width="0.0188%" height="15" fill="rgb(243,47,26)" fg:x="166333" fg:w="180"/><text x="17.6491%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (138 samples, 0.01%)</title><rect x="17.4035%" y="501" width="0.0144%" height="15" fill="rgb(233,48,2)" fg:x="166375" fg:w="138"/><text x="17.6535%" y="511.50"></text></g><g><title>_ZdlPv (295 samples, 0.03%)</title><rect x="17.3883%" y="565" width="0.0309%" height="15" fill="rgb(244,165,34)" fg:x="166229" fg:w="295"/><text x="17.6383%" y="575.50"></text></g><g><title>_ZdlPv (295 samples, 0.03%)</title><rect x="17.3883%" y="549" width="0.0309%" height="15" fill="rgb(207,89,7)" fg:x="166229" fg:w="295"/><text x="17.6383%" y="559.50"></text></g><g><title>_ZdlPv (296 samples, 0.03%)</title><rect x="17.3883%" y="581" width="0.0310%" height="15" fill="rgb(244,117,36)" fg:x="166229" fg:w="296"/><text x="17.6383%" y="591.50"></text></g><g><title>cshook_security_sb_free_security (317 samples, 0.03%)</title><rect x="17.3882%" y="597" width="0.0332%" height="15" fill="rgb(226,144,34)" fg:x="166228" fg:w="317"/><text x="17.6382%" y="607.50"></text></g><g><title>cshook_security_file_permission (791 samples, 0.08%)</title><rect x="17.3389%" y="645" width="0.0827%" height="15" fill="rgb(213,23,19)" fg:x="165757" fg:w="791"/><text x="17.5889%" y="655.50"></text></g><g><title>cshook_security_sb_free_security (789 samples, 0.08%)</title><rect x="17.3391%" y="629" width="0.0825%" height="15" fill="rgb(217,75,12)" fg:x="165759" fg:w="789"/><text x="17.5891%" y="639.50"></text></g><g><title>cshook_security_sb_free_security (789 samples, 0.08%)</title><rect x="17.3391%" y="613" width="0.0825%" height="15" fill="rgb(224,159,17)" fg:x="165759" fg:w="789"/><text x="17.5891%" y="623.50"></text></g><g><title>security_bprm_check (814 samples, 0.09%)</title><rect x="17.3371%" y="709" width="0.0851%" height="15" fill="rgb(217,118,1)" fg:x="165740" fg:w="814"/><text x="17.5871%" y="719.50"></text></g><g><title>pinnedhook_security_bprm_check_security (813 samples, 0.09%)</title><rect x="17.3372%" y="693" width="0.0850%" height="15" fill="rgb(232,180,48)" fg:x="165741" fg:w="813"/><text x="17.5872%" y="703.50"></text></g><g><title>cshook_security_bprm_check_security (813 samples, 0.09%)</title><rect x="17.3372%" y="677" width="0.0850%" height="15" fill="rgb(230,27,33)" fg:x="165741" fg:w="813"/><text x="17.5872%" y="687.50"></text></g><g><title>cshook_security_file_permission (813 samples, 0.09%)</title><rect x="17.3372%" y="661" width="0.0850%" height="15" fill="rgb(205,31,21)" fg:x="165741" fg:w="813"/><text x="17.5872%" y="671.50"></text></g><g><title>exec_binprm (833 samples, 0.09%)</title><rect x="17.3352%" y="741" width="0.0871%" height="15" fill="rgb(253,59,4)" fg:x="165722" fg:w="833"/><text x="17.5852%" y="751.50"></text></g><g><title>search_binary_handler (833 samples, 0.09%)</title><rect x="17.3352%" y="725" width="0.0871%" height="15" fill="rgb(224,201,9)" fg:x="165722" fg:w="833"/><text x="17.5852%" y="735.50"></text></g><g><title>bprm_execve.part.0 (892 samples, 0.09%)</title><rect x="17.3311%" y="757" width="0.0933%" height="15" fill="rgb(229,206,30)" fg:x="165683" fg:w="892"/><text x="17.5811%" y="767.50"></text></g><g><title>bprm_execve (893 samples, 0.09%)</title><rect x="17.3311%" y="773" width="0.0934%" height="15" fill="rgb(212,67,47)" fg:x="165683" fg:w="893"/><text x="17.5811%" y="783.50"></text></g><g><title>[libc.so.6] (902 samples, 0.09%)</title><rect x="17.3308%" y="869" width="0.0944%" height="15" fill="rgb(211,96,50)" fg:x="165680" fg:w="902"/><text x="17.5808%" y="879.50"></text></g><g><title>__GI_execve (902 samples, 0.09%)</title><rect x="17.3308%" y="853" width="0.0944%" height="15" fill="rgb(252,114,18)" fg:x="165680" fg:w="902"/><text x="17.5808%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (902 samples, 0.09%)</title><rect x="17.3308%" y="837" width="0.0944%" height="15" fill="rgb(223,58,37)" fg:x="165680" fg:w="902"/><text x="17.5808%" y="847.50"></text></g><g><title>do_syscall_64 (902 samples, 0.09%)</title><rect x="17.3308%" y="821" width="0.0944%" height="15" fill="rgb(237,70,4)" fg:x="165680" fg:w="902"/><text x="17.5808%" y="831.50"></text></g><g><title>__x64_sys_execve (902 samples, 0.09%)</title><rect x="17.3308%" y="805" width="0.0944%" height="15" fill="rgb(244,85,46)" fg:x="165680" fg:w="902"/><text x="17.5808%" y="815.50"></text></g><g><title>do_execveat_common.isra.0 (902 samples, 0.09%)</title><rect x="17.3308%" y="789" width="0.0944%" height="15" fill="rgb(223,39,52)" fg:x="165680" fg:w="902"/><text x="17.5808%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (145 samples, 0.02%)</title><rect x="17.4360%" y="853" width="0.0152%" height="15" fill="rgb(218,200,14)" fg:x="166685" fg:w="145"/><text x="17.6860%" y="863.50"></text></g><g><title>do_syscall_64 (145 samples, 0.02%)</title><rect x="17.4360%" y="837" width="0.0152%" height="15" fill="rgb(208,171,16)" fg:x="166685" fg:w="145"/><text x="17.6860%" y="847.50"></text></g><g><title>unload_network_ops_symbols (143 samples, 0.01%)</title><rect x="17.4362%" y="821" width="0.0150%" height="15" fill="rgb(234,200,18)" fg:x="166687" fg:w="143"/><text x="17.6862%" y="831.50"></text></g><g><title>__GI___mount (147 samples, 0.02%)</title><rect x="17.4359%" y="869" width="0.0154%" height="15" fill="rgb(228,45,11)" fg:x="166684" fg:w="147"/><text x="17.6859%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.01%)</title><rect x="17.4533%" y="709" width="0.0101%" height="15" fill="rgb(237,182,11)" fg:x="166851" fg:w="97"/><text x="17.7033%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (106 samples, 0.01%)</title><rect x="17.4529%" y="725" width="0.0111%" height="15" fill="rgb(241,175,49)" fg:x="166847" fg:w="106"/><text x="17.7029%" y="735.50"></text></g><g><title>schedule (111 samples, 0.01%)</title><rect x="17.4525%" y="757" width="0.0116%" height="15" fill="rgb(247,38,35)" fg:x="166843" fg:w="111"/><text x="17.7025%" y="767.50"></text></g><g><title>__schedule (110 samples, 0.01%)</title><rect x="17.4526%" y="741" width="0.0115%" height="15" fill="rgb(228,39,49)" fg:x="166844" fg:w="110"/><text x="17.7026%" y="751.50"></text></g><g><title>__x64_sys_wait4 (127 samples, 0.01%)</title><rect x="17.4522%" y="821" width="0.0133%" height="15" fill="rgb(226,101,26)" fg:x="166840" fg:w="127"/><text x="17.7022%" y="831.50"></text></g><g><title>__do_sys_wait4 (127 samples, 0.01%)</title><rect x="17.4522%" y="805" width="0.0133%" height="15" fill="rgb(206,141,19)" fg:x="166840" fg:w="127"/><text x="17.7022%" y="815.50"></text></g><g><title>kernel_wait4 (127 samples, 0.01%)</title><rect x="17.4522%" y="789" width="0.0133%" height="15" fill="rgb(211,200,13)" fg:x="166840" fg:w="127"/><text x="17.7022%" y="799.50"></text></g><g><title>do_wait (126 samples, 0.01%)</title><rect x="17.4523%" y="773" width="0.0132%" height="15" fill="rgb(241,121,6)" fg:x="166841" fg:w="126"/><text x="17.7023%" y="783.50"></text></g><g><title>__GI___wait4 (134 samples, 0.01%)</title><rect x="17.4521%" y="869" width="0.0140%" height="15" fill="rgb(234,221,29)" fg:x="166839" fg:w="134"/><text x="17.7021%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (133 samples, 0.01%)</title><rect x="17.4522%" y="853" width="0.0139%" height="15" fill="rgb(229,136,5)" fg:x="166840" fg:w="133"/><text x="17.7022%" y="863.50"></text></g><g><title>do_syscall_64 (133 samples, 0.01%)</title><rect x="17.4522%" y="837" width="0.0139%" height="15" fill="rgb(238,36,11)" fg:x="166840" fg:w="133"/><text x="17.7022%" y="847.50"></text></g><g><title>schedule_tail (204 samples, 0.02%)</title><rect x="17.4752%" y="805" width="0.0213%" height="15" fill="rgb(251,55,41)" fg:x="167060" fg:w="204"/><text x="17.7252%" y="815.50"></text></g><g><title>finish_task_switch.isra.0 (197 samples, 0.02%)</title><rect x="17.4759%" y="789" width="0.0206%" height="15" fill="rgb(242,34,40)" fg:x="167067" fg:w="197"/><text x="17.7259%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (190 samples, 0.02%)</title><rect x="17.4767%" y="773" width="0.0199%" height="15" fill="rgb(215,42,17)" fg:x="167074" fg:w="190"/><text x="17.7267%" y="783.50"></text></g><g><title>x86_pmu_enable (186 samples, 0.02%)</title><rect x="17.4771%" y="757" width="0.0195%" height="15" fill="rgb(207,44,46)" fg:x="167078" fg:w="186"/><text x="17.7271%" y="767.50"></text></g><g><title>intel_pmu_enable_all (186 samples, 0.02%)</title><rect x="17.4771%" y="741" width="0.0195%" height="15" fill="rgb(211,206,28)" fg:x="167078" fg:w="186"/><text x="17.7271%" y="751.50"></text></g><g><title>native_write_msr (186 samples, 0.02%)</title><rect x="17.4771%" y="725" width="0.0195%" height="15" fill="rgb(237,167,16)" fg:x="167078" fg:w="186"/><text x="17.7271%" y="735.50"></text></g><g><title>arch_fork (286 samples, 0.03%)</title><rect x="17.4668%" y="837" width="0.0299%" height="15" fill="rgb(233,66,6)" fg:x="166980" fg:w="286"/><text x="17.7168%" y="847.50"></text></g><g><title>ret_from_fork (232 samples, 0.02%)</title><rect x="17.4725%" y="821" width="0.0243%" height="15" fill="rgb(246,123,29)" fg:x="167034" fg:w="232"/><text x="17.7225%" y="831.50"></text></g><g><title>__GI__Fork (287 samples, 0.03%)</title><rect x="17.4668%" y="853" width="0.0300%" height="15" fill="rgb(209,62,40)" fg:x="166980" fg:w="287"/><text x="17.7168%" y="863.50"></text></g><g><title>__libc_fork (299 samples, 0.03%)</title><rect x="17.4668%" y="869" width="0.0313%" height="15" fill="rgb(218,4,25)" fg:x="166980" fg:w="299"/><text x="17.7168%" y="879.50"></text></g><g><title>Pid1Main (1,756 samples, 0.18%)</title><rect x="17.3210%" y="885" width="0.1837%" height="15" fill="rgb(253,91,49)" fg:x="165586" fg:w="1756"/><text x="17.5710%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (205 samples, 0.02%)</title><rect x="17.5074%" y="837" width="0.0214%" height="15" fill="rgb(228,155,29)" fg:x="167368" fg:w="205"/><text x="17.7574%" y="847.50"></text></g><g><title>x86_pmu_enable (201 samples, 0.02%)</title><rect x="17.5078%" y="821" width="0.0210%" height="15" fill="rgb(243,57,37)" fg:x="167372" fg:w="201"/><text x="17.7578%" y="831.50"></text></g><g><title>intel_pmu_enable_all (201 samples, 0.02%)</title><rect x="17.5078%" y="805" width="0.0210%" height="15" fill="rgb(244,167,17)" fg:x="167372" fg:w="201"/><text x="17.7578%" y="815.50"></text></g><g><title>native_write_msr (201 samples, 0.02%)</title><rect x="17.5078%" y="789" width="0.0210%" height="15" fill="rgb(207,181,38)" fg:x="167372" fg:w="201"/><text x="17.7578%" y="799.50"></text></g><g><title>schedule_tail (225 samples, 0.02%)</title><rect x="17.5054%" y="869" width="0.0235%" height="15" fill="rgb(211,8,23)" fg:x="167349" fg:w="225"/><text x="17.7554%" y="879.50"></text></g><g><title>finish_task_switch.isra.0 (217 samples, 0.02%)</title><rect x="17.5063%" y="853" width="0.0227%" height="15" fill="rgb(235,11,44)" fg:x="167357" fg:w="217"/><text x="17.7563%" y="863.50"></text></g><g><title>__GI___clone (2,014 samples, 0.21%)</title><rect x="17.3210%" y="901" width="0.2107%" height="15" fill="rgb(248,18,52)" fg:x="165586" fg:w="2014"/><text x="17.5710%" y="911.50"></text></g><g><title>ret_from_fork (251 samples, 0.03%)</title><rect x="17.5054%" y="885" width="0.0263%" height="15" fill="rgb(208,4,7)" fg:x="167349" fg:w="251"/><text x="17.7554%" y="895.50"></text></g><g><title>do_anonymous_page (105 samples, 0.01%)</title><rect x="17.5537%" y="725" width="0.0110%" height="15" fill="rgb(240,17,39)" fg:x="167811" fg:w="105"/><text x="17.8037%" y="735.50"></text></g><g><title>handle_pte_fault (111 samples, 0.01%)</title><rect x="17.5532%" y="741" width="0.0116%" height="15" fill="rgb(207,170,3)" fg:x="167806" fg:w="111"/><text x="17.8032%" y="751.50"></text></g><g><title>__handle_mm_fault (117 samples, 0.01%)</title><rect x="17.5527%" y="757" width="0.0122%" height="15" fill="rgb(236,100,52)" fg:x="167801" fg:w="117"/><text x="17.8027%" y="767.50"></text></g><g><title>do_user_addr_fault (135 samples, 0.01%)</title><rect x="17.5509%" y="789" width="0.0141%" height="15" fill="rgb(246,78,51)" fg:x="167784" fg:w="135"/><text x="17.8009%" y="799.50"></text></g><g><title>handle_mm_fault (132 samples, 0.01%)</title><rect x="17.5512%" y="773" width="0.0138%" height="15" fill="rgb(211,17,15)" fg:x="167787" fg:w="132"/><text x="17.8012%" y="783.50"></text></g><g><title>asm_exc_page_fault (163 samples, 0.02%)</title><rect x="17.5505%" y="821" width="0.0171%" height="15" fill="rgb(209,59,46)" fg:x="167780" fg:w="163"/><text x="17.8005%" y="831.50"></text></g><g><title>exc_page_fault (160 samples, 0.02%)</title><rect x="17.5508%" y="805" width="0.0167%" height="15" fill="rgb(210,92,25)" fg:x="167783" fg:w="160"/><text x="17.8008%" y="815.50"></text></g><g><title>[libc.so.6] (202 samples, 0.02%)</title><rect x="17.5478%" y="837" width="0.0211%" height="15" fill="rgb(238,174,52)" fg:x="167754" fg:w="202"/><text x="17.7978%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (149 samples, 0.02%)</title><rect x="17.5769%" y="677" width="0.0156%" height="15" fill="rgb(230,73,7)" fg:x="168032" fg:w="149"/><text x="17.8269%" y="687.50"></text></g><g><title>x86_pmu_enable (147 samples, 0.02%)</title><rect x="17.5771%" y="661" width="0.0154%" height="15" fill="rgb(243,124,40)" fg:x="168034" fg:w="147"/><text x="17.8271%" y="671.50"></text></g><g><title>intel_pmu_enable_all (146 samples, 0.02%)</title><rect x="17.5772%" y="645" width="0.0153%" height="15" fill="rgb(244,170,11)" fg:x="168035" fg:w="146"/><text x="17.8272%" y="655.50"></text></g><g><title>native_write_msr (146 samples, 0.02%)</title><rect x="17.5772%" y="629" width="0.0153%" height="15" fill="rgb(207,114,54)" fg:x="168035" fg:w="146"/><text x="17.8272%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (159 samples, 0.02%)</title><rect x="17.5764%" y="693" width="0.0166%" height="15" fill="rgb(205,42,20)" fg:x="168028" fg:w="159"/><text x="17.8264%" y="703.50"></text></g><g><title>schedule (163 samples, 0.02%)</title><rect x="17.5762%" y="725" width="0.0171%" height="15" fill="rgb(230,30,28)" fg:x="168026" fg:w="163"/><text x="17.8262%" y="735.50"></text></g><g><title>__schedule (162 samples, 0.02%)</title><rect x="17.5763%" y="709" width="0.0169%" height="15" fill="rgb(205,73,54)" fg:x="168027" fg:w="162"/><text x="17.8263%" y="719.50"></text></g><g><title>do_wait (187 samples, 0.02%)</title><rect x="17.5758%" y="741" width="0.0196%" height="15" fill="rgb(254,227,23)" fg:x="168022" fg:w="187"/><text x="17.8258%" y="751.50"></text></g><g><title>kernel_wait4 (189 samples, 0.02%)</title><rect x="17.5757%" y="757" width="0.0198%" height="15" fill="rgb(228,202,34)" fg:x="168021" fg:w="189"/><text x="17.8257%" y="767.50"></text></g><g><title>__GI___wait4 (192 samples, 0.02%)</title><rect x="17.5755%" y="837" width="0.0201%" height="15" fill="rgb(222,225,37)" fg:x="168019" fg:w="192"/><text x="17.8255%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (191 samples, 0.02%)</title><rect x="17.5756%" y="821" width="0.0200%" height="15" fill="rgb(221,14,54)" fg:x="168020" fg:w="191"/><text x="17.8256%" y="831.50"></text></g><g><title>do_syscall_64 (191 samples, 0.02%)</title><rect x="17.5756%" y="805" width="0.0200%" height="15" fill="rgb(254,102,2)" fg:x="168020" fg:w="191"/><text x="17.8256%" y="815.50"></text></g><g><title>__x64_sys_wait4 (191 samples, 0.02%)</title><rect x="17.5756%" y="789" width="0.0200%" height="15" fill="rgb(232,104,17)" fg:x="168020" fg:w="191"/><text x="17.8256%" y="799.50"></text></g><g><title>__do_sys_wait4 (191 samples, 0.02%)</title><rect x="17.5756%" y="773" width="0.0200%" height="15" fill="rgb(250,220,14)" fg:x="168020" fg:w="191"/><text x="17.8256%" y="783.50"></text></g><g><title>__libc_start_call_main (560 samples, 0.06%)</title><rect x="17.5400%" y="869" width="0.0586%" height="15" fill="rgb(241,158,9)" fg:x="167680" fg:w="560"/><text x="17.7900%" y="879.50"></text></g><g><title>main (516 samples, 0.05%)</title><rect x="17.5446%" y="853" width="0.0540%" height="15" fill="rgb(246,9,43)" fg:x="167724" fg:w="516"/><text x="17.7946%" y="863.50"></text></g><g><title>__libc_start_main_impl (611 samples, 0.06%)</title><rect x="17.5348%" y="885" width="0.0639%" height="15" fill="rgb(206,73,33)" fg:x="167630" fg:w="611"/><text x="17.7848%" y="895.50"></text></g><g><title>_dl_map_segments (107 samples, 0.01%)</title><rect x="17.6037%" y="741" width="0.0112%" height="15" fill="rgb(222,79,8)" fg:x="168289" fg:w="107"/><text x="17.8537%" y="751.50"></text></g><g><title>_dl_map_object_from_fd (152 samples, 0.02%)</title><rect x="17.6029%" y="757" width="0.0159%" height="15" fill="rgb(234,8,54)" fg:x="168281" fg:w="152"/><text x="17.8529%" y="767.50"></text></g><g><title>_dl_map_object_deps (205 samples, 0.02%)</title><rect x="17.6007%" y="821" width="0.0214%" height="15" fill="rgb(209,134,38)" fg:x="168260" fg:w="205"/><text x="17.8507%" y="831.50"></text></g><g><title>_dl_catch_exception (204 samples, 0.02%)</title><rect x="17.6008%" y="805" width="0.0213%" height="15" fill="rgb(230,127,29)" fg:x="168261" fg:w="204"/><text x="17.8508%" y="815.50"></text></g><g><title>openaux (204 samples, 0.02%)</title><rect x="17.6008%" y="789" width="0.0213%" height="15" fill="rgb(242,44,41)" fg:x="168261" fg:w="204"/><text x="17.8508%" y="799.50"></text></g><g><title>_dl_map_object (204 samples, 0.02%)</title><rect x="17.6008%" y="773" width="0.0213%" height="15" fill="rgb(222,56,43)" fg:x="168261" fg:w="204"/><text x="17.8508%" y="783.50"></text></g><g><title>_dl_lookup_symbol_x (286 samples, 0.03%)</title><rect x="17.6339%" y="773" width="0.0299%" height="15" fill="rgb(238,39,47)" fg:x="168577" fg:w="286"/><text x="17.8839%" y="783.50"></text></g><g><title>do_lookup_x (185 samples, 0.02%)</title><rect x="17.6444%" y="757" width="0.0194%" height="15" fill="rgb(226,79,43)" fg:x="168678" fg:w="185"/><text x="17.8944%" y="767.50"></text></g><g><title>elf_machine_rela (354 samples, 0.04%)</title><rect x="17.6278%" y="789" width="0.0370%" height="15" fill="rgb(242,105,53)" fg:x="168519" fg:w="354"/><text x="17.8778%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (394 samples, 0.04%)</title><rect x="17.6246%" y="805" width="0.0412%" height="15" fill="rgb(251,132,46)" fg:x="168488" fg:w="394"/><text x="17.8746%" y="815.50"></text></g><g><title>_dl_relocate_object (418 samples, 0.04%)</title><rect x="17.6227%" y="821" width="0.0437%" height="15" fill="rgb(231,77,14)" fg:x="168470" fg:w="418"/><text x="17.8727%" y="831.50"></text></g><g><title>dl_main (676 samples, 0.07%)</title><rect x="17.5988%" y="837" width="0.0707%" height="15" fill="rgb(240,135,9)" fg:x="168242" fg:w="676"/><text x="17.8488%" y="847.50"></text></g><g><title>_dl_start_final (681 samples, 0.07%)</title><rect x="17.5987%" y="869" width="0.0712%" height="15" fill="rgb(248,109,14)" fg:x="168241" fg:w="681"/><text x="17.8487%" y="879.50"></text></g><g><title>_dl_sysdep_start (680 samples, 0.07%)</title><rect x="17.5988%" y="853" width="0.0711%" height="15" fill="rgb(227,146,52)" fg:x="168242" fg:w="680"/><text x="17.8488%" y="863.50"></text></g><g><title>_dl_start (693 samples, 0.07%)</title><rect x="17.5987%" y="885" width="0.0725%" height="15" fill="rgb(232,54,3)" fg:x="168241" fg:w="693"/><text x="17.8487%" y="895.50"></text></g><g><title>_start (1,313 samples, 0.14%)</title><rect x="17.5348%" y="901" width="0.1373%" height="15" fill="rgb(229,201,43)" fg:x="167630" fg:w="1313"/><text x="17.7848%" y="911.50"></text></g><g><title>asm_exc_page_fault (108 samples, 0.01%)</title><rect x="17.6722%" y="901" width="0.0113%" height="15" fill="rgb(252,161,33)" fg:x="168943" fg:w="108"/><text x="17.9222%" y="911.50"></text></g><g><title>exit_mmap (123 samples, 0.01%)</title><rect x="17.6934%" y="805" width="0.0129%" height="15" fill="rgb(226,146,40)" fg:x="169146" fg:w="123"/><text x="17.9434%" y="815.50"></text></g><g><title>exit_mm (124 samples, 0.01%)</title><rect x="17.6934%" y="837" width="0.0130%" height="15" fill="rgb(219,47,25)" fg:x="169146" fg:w="124"/><text x="17.9434%" y="847.50"></text></g><g><title>mmput (124 samples, 0.01%)</title><rect x="17.6934%" y="821" width="0.0130%" height="15" fill="rgb(250,135,13)" fg:x="169146" fg:w="124"/><text x="17.9434%" y="831.50"></text></g><g><title>__x64_sys_exit (215 samples, 0.02%)</title><rect x="17.6930%" y="869" width="0.0225%" height="15" fill="rgb(219,229,18)" fg:x="169142" fg:w="215"/><text x="17.9430%" y="879.50"></text></g><g><title>do_exit (215 samples, 0.02%)</title><rect x="17.6930%" y="853" width="0.0225%" height="15" fill="rgb(217,152,27)" fg:x="169142" fg:w="215"/><text x="17.9430%" y="863.50"></text></g><g><title>exit_mm (101 samples, 0.01%)</title><rect x="17.7157%" y="821" width="0.0106%" height="15" fill="rgb(225,71,47)" fg:x="169359" fg:w="101"/><text x="17.9657%" y="831.50"></text></g><g><title>mmput (100 samples, 0.01%)</title><rect x="17.7158%" y="805" width="0.0105%" height="15" fill="rgb(220,139,14)" fg:x="169360" fg:w="100"/><text x="17.9658%" y="815.50"></text></g><g><title>exit_mmap (100 samples, 0.01%)</title><rect x="17.7158%" y="789" width="0.0105%" height="15" fill="rgb(247,54,32)" fg:x="169360" fg:w="100"/><text x="17.9658%" y="799.50"></text></g><g><title>__x64_sys_exit_group (116 samples, 0.01%)</title><rect x="17.7155%" y="869" width="0.0121%" height="15" fill="rgb(252,131,39)" fg:x="169357" fg:w="116"/><text x="17.9655%" y="879.50"></text></g><g><title>do_group_exit (116 samples, 0.01%)</title><rect x="17.7155%" y="853" width="0.0121%" height="15" fill="rgb(210,108,39)" fg:x="169357" fg:w="116"/><text x="17.9655%" y="863.50"></text></g><g><title>do_exit (116 samples, 0.01%)</title><rect x="17.7155%" y="837" width="0.0121%" height="15" fill="rgb(205,23,29)" fg:x="169357" fg:w="116"/><text x="17.9655%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (423 samples, 0.04%)</title><rect x="17.6835%" y="901" width="0.0442%" height="15" fill="rgb(246,139,46)" fg:x="169051" fg:w="423"/><text x="17.9335%" y="911.50"></text></g><g><title>do_syscall_64 (423 samples, 0.04%)</title><rect x="17.6835%" y="885" width="0.0442%" height="15" fill="rgb(250,81,26)" fg:x="169051" fg:w="423"/><text x="17.9335%" y="895.50"></text></g><g><title>linux-sandbox (4,087 samples, 0.43%)</title><rect x="17.3005%" y="917" width="0.4275%" height="15" fill="rgb(214,104,7)" fg:x="165390" fg:w="4087"/><text x="17.5505%" y="927.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (149 samples, 0.02%)</title><rect x="17.7294%" y="837" width="0.0156%" height="15" fill="rgb(233,189,8)" fg:x="169490" fg:w="149"/><text x="17.9794%" y="847.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (149 samples, 0.02%)</title><rect x="17.7294%" y="821" width="0.0156%" height="15" fill="rgb(228,141,17)" fg:x="169490" fg:w="149"/><text x="17.9794%" y="831.50"></text></g><g><title>__libc_start_main_impl (204 samples, 0.02%)</title><rect x="17.7290%" y="885" width="0.0213%" height="15" fill="rgb(247,157,1)" fg:x="169486" fg:w="204"/><text x="17.9790%" y="895.50"></text></g><g><title>__libc_start_call_main (200 samples, 0.02%)</title><rect x="17.7294%" y="869" width="0.0209%" height="15" fill="rgb(249,225,5)" fg:x="169490" fg:w="200"/><text x="17.9794%" y="879.50"></text></g><g><title>main (200 samples, 0.02%)</title><rect x="17.7294%" y="853" width="0.0209%" height="15" fill="rgb(242,55,13)" fg:x="169490" fg:w="200"/><text x="17.9794%" y="863.50"></text></g><g><title>_start (257 samples, 0.03%)</title><rect x="17.7290%" y="901" width="0.0269%" height="15" fill="rgb(230,49,50)" fg:x="169486" fg:w="257"/><text x="17.9790%" y="911.50"></text></g><g><title>process-wrapper (281 samples, 0.03%)</title><rect x="17.7286%" y="917" width="0.0294%" height="15" fill="rgb(241,111,38)" fg:x="169483" fg:w="281"/><text x="17.9786%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (107 samples, 0.01%)</title><rect x="17.7724%" y="709" width="0.0112%" height="15" fill="rgb(252,155,4)" fg:x="169901" fg:w="107"/><text x="18.0224%" y="719.50"></text></g><g><title>x86_pmu_enable (102 samples, 0.01%)</title><rect x="17.7729%" y="693" width="0.0107%" height="15" fill="rgb(212,69,32)" fg:x="169906" fg:w="102"/><text x="18.0229%" y="703.50"></text></g><g><title>intel_pmu_enable_all (102 samples, 0.01%)</title><rect x="17.7729%" y="677" width="0.0107%" height="15" fill="rgb(243,107,47)" fg:x="169906" fg:w="102"/><text x="18.0229%" y="687.50"></text></g><g><title>native_write_msr (100 samples, 0.01%)</title><rect x="17.7731%" y="661" width="0.0105%" height="15" fill="rgb(247,130,12)" fg:x="169908" fg:w="100"/><text x="18.0231%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (112 samples, 0.01%)</title><rect x="17.7723%" y="725" width="0.0117%" height="15" fill="rgb(233,74,16)" fg:x="169900" fg:w="112"/><text x="18.0223%" y="735.50"></text></g><g><title>schedule (119 samples, 0.01%)</title><rect x="17.7720%" y="757" width="0.0124%" height="15" fill="rgb(208,58,18)" fg:x="169897" fg:w="119"/><text x="18.0220%" y="767.50"></text></g><g><title>__schedule (119 samples, 0.01%)</title><rect x="17.7720%" y="741" width="0.0124%" height="15" fill="rgb(242,225,1)" fg:x="169897" fg:w="119"/><text x="18.0220%" y="751.50"></text></g><g><title>do_wait (178 samples, 0.02%)</title><rect x="17.7718%" y="773" width="0.0186%" height="15" fill="rgb(249,39,40)" fg:x="169896" fg:w="178"/><text x="18.0218%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (184 samples, 0.02%)</title><rect x="17.7717%" y="853" width="0.0192%" height="15" fill="rgb(207,72,44)" fg:x="169895" fg:w="184"/><text x="18.0217%" y="863.50"></text></g><g><title>do_syscall_64 (184 samples, 0.02%)</title><rect x="17.7717%" y="837" width="0.0192%" height="15" fill="rgb(215,193,12)" fg:x="169895" fg:w="184"/><text x="18.0217%" y="847.50"></text></g><g><title>__x64_sys_wait4 (184 samples, 0.02%)</title><rect x="17.7717%" y="821" width="0.0192%" height="15" fill="rgb(248,41,39)" fg:x="169895" fg:w="184"/><text x="18.0217%" y="831.50"></text></g><g><title>__do_sys_wait4 (184 samples, 0.02%)</title><rect x="17.7717%" y="805" width="0.0192%" height="15" fill="rgb(253,85,4)" fg:x="169895" fg:w="184"/><text x="18.0217%" y="815.50"></text></g><g><title>kernel_wait4 (184 samples, 0.02%)</title><rect x="17.7717%" y="789" width="0.0192%" height="15" fill="rgb(243,70,31)" fg:x="169895" fg:w="184"/><text x="18.0217%" y="799.50"></text></g><g><title>__GI___wait4 (185 samples, 0.02%)</title><rect x="17.7717%" y="869" width="0.0194%" height="15" fill="rgb(253,195,26)" fg:x="169895" fg:w="185"/><text x="18.0217%" y="879.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (186 samples, 0.02%)</title><rect x="17.7717%" y="885" width="0.0195%" height="15" fill="rgb(243,42,11)" fg:x="169895" fg:w="186"/><text x="18.0217%" y="895.50"></text></g><g><title>[perf-722681.map] (382 samples, 0.04%)</title><rect x="17.7585%" y="901" width="0.0400%" height="15" fill="rgb(239,66,17)" fg:x="169768" fg:w="382"/><text x="18.0085%" y="911.50"></text></g><g><title>process_reaper (389 samples, 0.04%)</title><rect x="17.7580%" y="917" width="0.0407%" height="15" fill="rgb(217,132,21)" fg:x="169764" fg:w="389"/><text x="18.0080%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (164 samples, 0.02%)</title><rect x="17.8612%" y="629" width="0.0172%" height="15" fill="rgb(252,202,21)" fg:x="170750" fg:w="164"/><text x="18.1112%" y="639.50"></text></g><g><title>x86_pmu_enable (157 samples, 0.02%)</title><rect x="17.8619%" y="613" width="0.0164%" height="15" fill="rgb(233,98,36)" fg:x="170757" fg:w="157"/><text x="18.1119%" y="623.50"></text></g><g><title>intel_pmu_enable_all (155 samples, 0.02%)</title><rect x="17.8621%" y="597" width="0.0162%" height="15" fill="rgb(216,153,54)" fg:x="170759" fg:w="155"/><text x="18.1121%" y="607.50"></text></g><g><title>native_write_msr (153 samples, 0.02%)</title><rect x="17.8623%" y="581" width="0.0160%" height="15" fill="rgb(250,99,7)" fg:x="170761" fg:w="153"/><text x="18.1123%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (171 samples, 0.02%)</title><rect x="17.8609%" y="645" width="0.0179%" height="15" fill="rgb(207,56,50)" fg:x="170747" fg:w="171"/><text x="18.1109%" y="655.50"></text></g><g><title>futex_wait_queue_me (206 samples, 0.02%)</title><rect x="17.8586%" y="693" width="0.0215%" height="15" fill="rgb(244,61,34)" fg:x="170725" fg:w="206"/><text x="18.1086%" y="703.50"></text></g><g><title>schedule (202 samples, 0.02%)</title><rect x="17.8590%" y="677" width="0.0211%" height="15" fill="rgb(241,50,38)" fg:x="170729" fg:w="202"/><text x="18.1090%" y="687.50"></text></g><g><title>__schedule (201 samples, 0.02%)</title><rect x="17.8591%" y="661" width="0.0210%" height="15" fill="rgb(212,166,30)" fg:x="170730" fg:w="201"/><text x="18.1091%" y="671.50"></text></g><g><title>__x64_sys_futex (216 samples, 0.02%)</title><rect x="17.8580%" y="741" width="0.0226%" height="15" fill="rgb(249,127,32)" fg:x="170720" fg:w="216"/><text x="18.1080%" y="751.50"></text></g><g><title>do_futex (215 samples, 0.02%)</title><rect x="17.8581%" y="725" width="0.0225%" height="15" fill="rgb(209,103,0)" fg:x="170721" fg:w="215"/><text x="18.1081%" y="735.50"></text></g><g><title>futex_wait (215 samples, 0.02%)</title><rect x="17.8581%" y="709" width="0.0225%" height="15" fill="rgb(238,209,51)" fg:x="170721" fg:w="215"/><text x="18.1081%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (230 samples, 0.02%)</title><rect x="17.8579%" y="773" width="0.0241%" height="15" fill="rgb(237,56,23)" fg:x="170719" fg:w="230"/><text x="18.1079%" y="783.50"></text></g><g><title>do_syscall_64 (230 samples, 0.02%)</title><rect x="17.8579%" y="757" width="0.0241%" height="15" fill="rgb(215,153,46)" fg:x="170719" fg:w="230"/><text x="18.1079%" y="767.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (242 samples, 0.03%)</title><rect x="17.8568%" y="821" width="0.0253%" height="15" fill="rgb(224,49,31)" fg:x="170708" fg:w="242"/><text x="18.1068%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (242 samples, 0.03%)</title><rect x="17.8568%" y="805" width="0.0253%" height="15" fill="rgb(250,18,42)" fg:x="170708" fg:w="242"/><text x="18.1068%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (242 samples, 0.03%)</title><rect x="17.8568%" y="789" width="0.0253%" height="15" fill="rgb(215,176,39)" fg:x="170708" fg:w="242"/><text x="18.1068%" y="799.50"></text></g><g><title>___pthread_cond_wait (254 samples, 0.03%)</title><rect x="17.8564%" y="853" width="0.0266%" height="15" fill="rgb(223,77,29)" fg:x="170704" fg:w="254"/><text x="18.1064%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (253 samples, 0.03%)</title><rect x="17.8565%" y="837" width="0.0265%" height="15" fill="rgb(234,94,52)" fg:x="170705" fg:w="253"/><text x="18.1065%" y="847.50"></text></g><g><title>Parker::park (292 samples, 0.03%)</title><rect x="17.8548%" y="869" width="0.0305%" height="15" fill="rgb(220,154,50)" fg:x="170689" fg:w="292"/><text x="18.1048%" y="879.50"></text></g><g><title>Unsafe_Park (301 samples, 0.03%)</title><rect x="17.8541%" y="885" width="0.0315%" height="15" fill="rgb(212,11,10)" fg:x="170682" fg:w="301"/><text x="18.1041%" y="895.50"></text></g><g><title>[perf-722681.map] (848 samples, 0.09%)</title><rect x="17.8006%" y="901" width="0.0887%" height="15" fill="rgb(205,166,19)" fg:x="170171" fg:w="848"/><text x="18.0506%" y="911.50"></text></g><g><title>profile-writer- (885 samples, 0.09%)</title><rect x="17.7987%" y="917" width="0.0926%" height="15" fill="rgb(244,198,16)" fg:x="170153" fg:w="885"/><text x="18.0487%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (99 samples, 0.01%)</title><rect x="17.9150%" y="869" width="0.0104%" height="15" fill="rgb(219,69,12)" fg:x="171265" fg:w="99"/><text x="18.1650%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (99 samples, 0.01%)</title><rect x="17.9150%" y="853" width="0.0104%" height="15" fill="rgb(245,30,7)" fg:x="171265" fg:w="99"/><text x="18.1650%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (153 samples, 0.02%)</title><rect x="17.9097%" y="885" width="0.0160%" height="15" fill="rgb(218,221,48)" fg:x="171214" fg:w="153"/><text x="18.1597%" y="895.50"></text></g><g><title>[unknown] (355 samples, 0.04%)</title><rect x="17.8950%" y="901" width="0.0371%" height="15" fill="rgb(216,66,15)" fg:x="171073" fg:w="355"/><text x="18.1450%" y="911.50"></text></g><g><title>Py_BytesMain (166 samples, 0.02%)</title><rect x="17.9322%" y="853" width="0.0174%" height="15" fill="rgb(226,122,50)" fg:x="171429" fg:w="166"/><text x="18.1822%" y="863.50"></text></g><g><title>__libc_start_main_impl (167 samples, 0.02%)</title><rect x="17.9322%" y="885" width="0.0175%" height="15" fill="rgb(239,156,16)" fg:x="171429" fg:w="167"/><text x="18.1822%" y="895.50"></text></g><g><title>__libc_start_call_main (167 samples, 0.02%)</title><rect x="17.9322%" y="869" width="0.0175%" height="15" fill="rgb(224,27,38)" fg:x="171429" fg:w="167"/><text x="18.1822%" y="879.50"></text></g><g><title>_start (180 samples, 0.02%)</title><rect x="17.9322%" y="901" width="0.0188%" height="15" fill="rgb(224,39,27)" fg:x="171429" fg:w="180"/><text x="18.1822%" y="911.50"></text></g><g><title>python3 (579 samples, 0.06%)</title><rect x="17.8917%" y="917" width="0.0606%" height="15" fill="rgb(215,92,29)" fg:x="171042" fg:w="579"/><text x="18.1417%" y="927.50"></text></g><g><title>[sed] (155 samples, 0.02%)</title><rect x="17.9808%" y="789" width="0.0162%" height="15" fill="rgb(207,159,16)" fg:x="171894" fg:w="155"/><text x="18.2308%" y="799.50"></text></g><g><title>[sed] (185 samples, 0.02%)</title><rect x="17.9801%" y="805" width="0.0194%" height="15" fill="rgb(238,163,47)" fg:x="171887" fg:w="185"/><text x="18.2301%" y="815.50"></text></g><g><title>__GI___fflush_unlocked (100 samples, 0.01%)</title><rect x="17.9995%" y="805" width="0.0105%" height="15" fill="rgb(219,91,49)" fg:x="172072" fg:w="100"/><text x="18.2495%" y="815.50"></text></g><g><title>_IO_new_file_sync (99 samples, 0.01%)</title><rect x="17.9996%" y="789" width="0.0104%" height="15" fill="rgb(227,167,31)" fg:x="172073" fg:w="99"/><text x="18.2496%" y="799.50"></text></g><g><title>_IO_new_do_write (99 samples, 0.01%)</title><rect x="17.9996%" y="773" width="0.0104%" height="15" fill="rgb(234,80,54)" fg:x="172073" fg:w="99"/><text x="18.2496%" y="783.50"></text></g><g><title>_IO_new_do_write (99 samples, 0.01%)</title><rect x="17.9996%" y="757" width="0.0104%" height="15" fill="rgb(212,114,2)" fg:x="172073" fg:w="99"/><text x="18.2496%" y="767.50"></text></g><g><title>new_do_write (99 samples, 0.01%)</title><rect x="17.9996%" y="741" width="0.0104%" height="15" fill="rgb(234,50,24)" fg:x="172073" fg:w="99"/><text x="18.2496%" y="751.50"></text></g><g><title>_IO_new_file_write (96 samples, 0.01%)</title><rect x="17.9999%" y="725" width="0.0100%" height="15" fill="rgb(221,68,8)" fg:x="172076" fg:w="96"/><text x="18.2499%" y="735.50"></text></g><g><title>__GI___libc_write (96 samples, 0.01%)</title><rect x="17.9999%" y="709" width="0.0100%" height="15" fill="rgb(254,180,31)" fg:x="172076" fg:w="96"/><text x="18.2499%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (130 samples, 0.01%)</title><rect x="18.0157%" y="581" width="0.0136%" height="15" fill="rgb(247,130,50)" fg:x="172227" fg:w="130"/><text x="18.2657%" y="591.50"></text></g><g><title>x86_pmu_enable (129 samples, 0.01%)</title><rect x="18.0158%" y="565" width="0.0135%" height="15" fill="rgb(211,109,4)" fg:x="172228" fg:w="129"/><text x="18.2658%" y="575.50"></text></g><g><title>intel_pmu_enable_all (127 samples, 0.01%)</title><rect x="18.0160%" y="549" width="0.0133%" height="15" fill="rgb(238,50,21)" fg:x="172230" fg:w="127"/><text x="18.2660%" y="559.50"></text></g><g><title>native_write_msr (127 samples, 0.01%)</title><rect x="18.0160%" y="533" width="0.0133%" height="15" fill="rgb(225,57,45)" fg:x="172230" fg:w="127"/><text x="18.2660%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (138 samples, 0.01%)</title><rect x="18.0151%" y="597" width="0.0144%" height="15" fill="rgb(209,196,50)" fg:x="172221" fg:w="138"/><text x="18.2651%" y="607.50"></text></g><g><title>schedule (142 samples, 0.01%)</title><rect x="18.0148%" y="629" width="0.0149%" height="15" fill="rgb(242,140,13)" fg:x="172219" fg:w="142"/><text x="18.2648%" y="639.50"></text></g><g><title>__schedule (142 samples, 0.01%)</title><rect x="18.0148%" y="613" width="0.0149%" height="15" fill="rgb(217,111,7)" fg:x="172219" fg:w="142"/><text x="18.2648%" y="623.50"></text></g><g><title>pipe_read (151 samples, 0.02%)</title><rect x="18.0141%" y="645" width="0.0158%" height="15" fill="rgb(253,193,51)" fg:x="172212" fg:w="151"/><text x="18.2641%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (162 samples, 0.02%)</title><rect x="18.0131%" y="757" width="0.0169%" height="15" fill="rgb(252,70,29)" fg:x="172202" fg:w="162"/><text x="18.2631%" y="767.50"></text></g><g><title>do_syscall_64 (162 samples, 0.02%)</title><rect x="18.0131%" y="741" width="0.0169%" height="15" fill="rgb(232,127,12)" fg:x="172202" fg:w="162"/><text x="18.2631%" y="751.50"></text></g><g><title>unload_network_ops_symbols (157 samples, 0.02%)</title><rect x="18.0136%" y="725" width="0.0164%" height="15" fill="rgb(211,180,21)" fg:x="172207" fg:w="157"/><text x="18.2636%" y="735.50"></text></g><g><title>__x64_sys_read (157 samples, 0.02%)</title><rect x="18.0136%" y="709" width="0.0164%" height="15" fill="rgb(229,72,13)" fg:x="172207" fg:w="157"/><text x="18.2636%" y="719.50"></text></g><g><title>ksys_read (157 samples, 0.02%)</title><rect x="18.0136%" y="693" width="0.0164%" height="15" fill="rgb(240,211,49)" fg:x="172207" fg:w="157"/><text x="18.2636%" y="703.50"></text></g><g><title>vfs_read (157 samples, 0.02%)</title><rect x="18.0136%" y="677" width="0.0164%" height="15" fill="rgb(219,149,40)" fg:x="172207" fg:w="157"/><text x="18.2636%" y="687.50"></text></g><g><title>new_sync_read (154 samples, 0.02%)</title><rect x="18.0139%" y="661" width="0.0161%" height="15" fill="rgb(210,127,46)" fg:x="172210" fg:w="154"/><text x="18.2639%" y="671.50"></text></g><g><title>__GI___getdelim (193 samples, 0.02%)</title><rect x="18.0099%" y="805" width="0.0202%" height="15" fill="rgb(220,106,7)" fg:x="172172" fg:w="193"/><text x="18.2599%" y="815.50"></text></g><g><title>_IO_new_file_underflow (191 samples, 0.02%)</title><rect x="18.0101%" y="789" width="0.0200%" height="15" fill="rgb(249,31,22)" fg:x="172174" fg:w="191"/><text x="18.2601%" y="799.50"></text></g><g><title>__GI___libc_read (163 samples, 0.02%)</title><rect x="18.0131%" y="773" width="0.0171%" height="15" fill="rgb(253,1,49)" fg:x="172202" fg:w="163"/><text x="18.2631%" y="783.50"></text></g><g><title>[sed] (506 samples, 0.05%)</title><rect x="17.9782%" y="821" width="0.0529%" height="15" fill="rgb(227,144,33)" fg:x="171869" fg:w="506"/><text x="18.2282%" y="831.50"></text></g><g><title>[sed] (560 samples, 0.06%)</title><rect x="17.9752%" y="837" width="0.0586%" height="15" fill="rgb(249,163,44)" fg:x="171840" fg:w="560"/><text x="18.2252%" y="847.50"></text></g><g><title>[sed] (738 samples, 0.08%)</title><rect x="17.9713%" y="853" width="0.0772%" height="15" fill="rgb(234,15,39)" fg:x="171803" fg:w="738"/><text x="18.2213%" y="863.50"></text></g><g><title>__libc_start_call_main (861 samples, 0.09%)</title><rect x="17.9713%" y="869" width="0.0901%" height="15" fill="rgb(207,66,16)" fg:x="171803" fg:w="861"/><text x="18.2213%" y="879.50"></text></g><g><title>__GI_exit (123 samples, 0.01%)</title><rect x="18.0485%" y="853" width="0.0129%" height="15" fill="rgb(233,112,24)" fg:x="172541" fg:w="123"/><text x="18.2985%" y="863.50"></text></g><g><title>__run_exit_handlers (123 samples, 0.01%)</title><rect x="18.0485%" y="837" width="0.0129%" height="15" fill="rgb(230,90,22)" fg:x="172541" fg:w="123"/><text x="18.2985%" y="847.50"></text></g><g><title>__libc_start_main_impl (876 samples, 0.09%)</title><rect x="17.9708%" y="885" width="0.0916%" height="15" fill="rgb(229,61,13)" fg:x="171798" fg:w="876"/><text x="18.2208%" y="895.50"></text></g><g><title>[sed] (879 samples, 0.09%)</title><rect x="17.9706%" y="901" width="0.0919%" height="15" fill="rgb(225,57,24)" fg:x="171796" fg:w="879"/><text x="18.2206%" y="911.50"></text></g><g><title>[unknown] (97 samples, 0.01%)</title><rect x="18.0625%" y="901" width="0.0101%" height="15" fill="rgb(208,169,48)" fg:x="172675" fg:w="97"/><text x="18.3125%" y="911.50"></text></g><g><title>__fopen_internal (209 samples, 0.02%)</title><rect x="18.0944%" y="789" width="0.0219%" height="15" fill="rgb(244,218,51)" fg:x="172980" fg:w="209"/><text x="18.3444%" y="799.50"></text></g><g><title>_IO_new_fopen (223 samples, 0.02%)</title><rect x="18.0942%" y="805" width="0.0233%" height="15" fill="rgb(214,148,10)" fg:x="172978" fg:w="223"/><text x="18.3442%" y="815.50"></text></g><g><title>proc_reg_read_iter (97 samples, 0.01%)</title><rect x="18.1224%" y="645" width="0.0101%" height="15" fill="rgb(225,174,27)" fg:x="173247" fg:w="97"/><text x="18.3724%" y="655.50"></text></g><g><title>seq_read_iter (96 samples, 0.01%)</title><rect x="18.1225%" y="629" width="0.0100%" height="15" fill="rgb(230,96,26)" fg:x="173248" fg:w="96"/><text x="18.3725%" y="639.50"></text></g><g><title>new_sync_read (99 samples, 0.01%)</title><rect x="18.1223%" y="661" width="0.0104%" height="15" fill="rgb(232,10,30)" fg:x="173246" fg:w="99"/><text x="18.3723%" y="671.50"></text></g><g><title>do_syscall_64 (109 samples, 0.01%)</title><rect x="18.1215%" y="741" width="0.0114%" height="15" fill="rgb(222,8,50)" fg:x="173239" fg:w="109"/><text x="18.3715%" y="751.50"></text></g><g><title>unload_network_ops_symbols (108 samples, 0.01%)</title><rect x="18.1216%" y="725" width="0.0113%" height="15" fill="rgb(213,81,27)" fg:x="173240" fg:w="108"/><text x="18.3716%" y="735.50"></text></g><g><title>__x64_sys_read (106 samples, 0.01%)</title><rect x="18.1219%" y="709" width="0.0111%" height="15" fill="rgb(245,50,10)" fg:x="173242" fg:w="106"/><text x="18.3719%" y="719.50"></text></g><g><title>ksys_read (106 samples, 0.01%)</title><rect x="18.1219%" y="693" width="0.0111%" height="15" fill="rgb(216,100,18)" fg:x="173242" fg:w="106"/><text x="18.3719%" y="703.50"></text></g><g><title>vfs_read (104 samples, 0.01%)</title><rect x="18.1221%" y="677" width="0.0109%" height="15" fill="rgb(236,147,54)" fg:x="173244" fg:w="104"/><text x="18.3721%" y="687.50"></text></g><g><title>_IO_new_file_underflow (130 samples, 0.01%)</title><rect x="18.1194%" y="789" width="0.0136%" height="15" fill="rgb(205,143,26)" fg:x="173219" fg:w="130"/><text x="18.3694%" y="799.50"></text></g><g><title>__GI___libc_read (110 samples, 0.01%)</title><rect x="18.1215%" y="773" width="0.0115%" height="15" fill="rgb(236,26,9)" fg:x="173239" fg:w="110"/><text x="18.3715%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.01%)</title><rect x="18.1215%" y="757" width="0.0115%" height="15" fill="rgb(221,165,53)" fg:x="173239" fg:w="110"/><text x="18.3715%" y="767.50"></text></g><g><title>__GI___getdelim (149 samples, 0.02%)</title><rect x="18.1176%" y="805" width="0.0156%" height="15" fill="rgb(214,110,17)" fg:x="173201" fg:w="149"/><text x="18.3676%" y="815.50"></text></g><g><title>[libselinux.so.1] (575 samples, 0.06%)</title><rect x="18.0742%" y="837" width="0.0601%" height="15" fill="rgb(237,197,12)" fg:x="172786" fg:w="575"/><text x="18.3242%" y="847.50"></text></g><g><title>selinuxfs_exists (432 samples, 0.05%)</title><rect x="18.0891%" y="821" width="0.0452%" height="15" fill="rgb(205,84,17)" fg:x="172929" fg:w="432"/><text x="18.3391%" y="831.50"></text></g><g><title>_dl_start_user (613 samples, 0.06%)</title><rect x="18.0735%" y="901" width="0.0641%" height="15" fill="rgb(237,18,45)" fg:x="172780" fg:w="613"/><text x="18.3235%" y="911.50"></text></g><g><title>_dl_init (612 samples, 0.06%)</title><rect x="18.0736%" y="885" width="0.0640%" height="15" fill="rgb(221,87,14)" fg:x="172781" fg:w="612"/><text x="18.3236%" y="895.50"></text></g><g><title>call_init (612 samples, 0.06%)</title><rect x="18.0736%" y="869" width="0.0640%" height="15" fill="rgb(238,186,15)" fg:x="172781" fg:w="612"/><text x="18.3236%" y="879.50"></text></g><g><title>call_init (612 samples, 0.06%)</title><rect x="18.0736%" y="853" width="0.0640%" height="15" fill="rgb(208,115,11)" fg:x="172781" fg:w="612"/><text x="18.3236%" y="863.50"></text></g><g><title>__libc_early_init (136 samples, 0.01%)</title><rect x="18.1522%" y="821" width="0.0142%" height="15" fill="rgb(254,175,0)" fg:x="173532" fg:w="136"/><text x="18.4022%" y="831.50"></text></g><g><title>_dl_sysdep_read_whole_file (140 samples, 0.01%)</title><rect x="18.1761%" y="741" width="0.0146%" height="15" fill="rgb(227,24,42)" fg:x="173761" fg:w="140"/><text x="18.4261%" y="751.50"></text></g><g><title>_dl_load_cache_lookup (253 samples, 0.03%)</title><rect x="18.1755%" y="757" width="0.0265%" height="15" fill="rgb(223,211,37)" fg:x="173755" fg:w="253"/><text x="18.4255%" y="767.50"></text></g><g><title>__vma_adjust (123 samples, 0.01%)</title><rect x="18.2350%" y="533" width="0.0129%" height="15" fill="rgb(235,49,27)" fg:x="174324" fg:w="123"/><text x="18.4850%" y="543.50"></text></g><g><title>__split_vma (164 samples, 0.02%)</title><rect x="18.2346%" y="549" width="0.0172%" height="15" fill="rgb(254,97,51)" fg:x="174320" fg:w="164"/><text x="18.4846%" y="559.50"></text></g><g><title>unmap_region (101 samples, 0.01%)</title><rect x="18.2560%" y="549" width="0.0106%" height="15" fill="rgb(249,51,40)" fg:x="174524" fg:w="101"/><text x="18.5060%" y="559.50"></text></g><g><title>__do_munmap (316 samples, 0.03%)</title><rect x="18.2340%" y="565" width="0.0331%" height="15" fill="rgb(210,128,45)" fg:x="174314" fg:w="316"/><text x="18.4840%" y="575.50"></text></g><g><title>perf_event_mmap (96 samples, 0.01%)</title><rect x="18.2679%" y="565" width="0.0100%" height="15" fill="rgb(224,137,50)" fg:x="174638" fg:w="96"/><text x="18.5179%" y="575.50"></text></g><g><title>mmap_region (482 samples, 0.05%)</title><rect x="18.2325%" y="581" width="0.0504%" height="15" fill="rgb(242,15,9)" fg:x="174300" fg:w="482"/><text x="18.4825%" y="591.50"></text></g><g><title>do_mmap (492 samples, 0.05%)</title><rect x="18.2319%" y="597" width="0.0515%" height="15" fill="rgb(233,187,41)" fg:x="174294" fg:w="492"/><text x="18.4819%" y="607.50"></text></g><g><title>__x64_sys_mmap (511 samples, 0.05%)</title><rect x="18.2308%" y="645" width="0.0535%" height="15" fill="rgb(227,2,29)" fg:x="174284" fg:w="511"/><text x="18.4808%" y="655.50"></text></g><g><title>ksys_mmap_pgoff (511 samples, 0.05%)</title><rect x="18.2308%" y="629" width="0.0535%" height="15" fill="rgb(222,70,3)" fg:x="174284" fg:w="511"/><text x="18.4808%" y="639.50"></text></g><g><title>vm_mmap_pgoff (502 samples, 0.05%)</title><rect x="18.2318%" y="613" width="0.0525%" height="15" fill="rgb(213,11,42)" fg:x="174293" fg:w="502"/><text x="18.4818%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (597 samples, 0.06%)</title><rect x="18.2289%" y="693" width="0.0624%" height="15" fill="rgb(225,150,9)" fg:x="174265" fg:w="597"/><text x="18.4789%" y="703.50"></text></g><g><title>do_syscall_64 (596 samples, 0.06%)</title><rect x="18.2290%" y="677" width="0.0623%" height="15" fill="rgb(230,162,45)" fg:x="174266" fg:w="596"/><text x="18.4790%" y="687.50"></text></g><g><title>unload_network_ops_symbols (583 samples, 0.06%)</title><rect x="18.2303%" y="661" width="0.0610%" height="15" fill="rgb(222,14,52)" fg:x="174279" fg:w="583"/><text x="18.4803%" y="671.50"></text></g><g><title>__mmap64 (607 samples, 0.06%)</title><rect x="18.2279%" y="725" width="0.0635%" height="15" fill="rgb(254,198,14)" fg:x="174256" fg:w="607"/><text x="18.4779%" y="735.50"></text></g><g><title>__mmap64 (607 samples, 0.06%)</title><rect x="18.2279%" y="709" width="0.0635%" height="15" fill="rgb(220,217,30)" fg:x="174256" fg:w="607"/><text x="18.4779%" y="719.50"></text></g><g><title>mmap_region (99 samples, 0.01%)</title><rect x="18.3022%" y="565" width="0.0104%" height="15" fill="rgb(215,146,41)" fg:x="174966" fg:w="99"/><text x="18.5522%" y="575.50"></text></g><g><title>do_mmap (111 samples, 0.01%)</title><rect x="18.3012%" y="581" width="0.0116%" height="15" fill="rgb(217,27,36)" fg:x="174957" fg:w="111"/><text x="18.5512%" y="591.50"></text></g><g><title>__x64_sys_mmap (121 samples, 0.01%)</title><rect x="18.3008%" y="629" width="0.0127%" height="15" fill="rgb(219,218,39)" fg:x="174953" fg:w="121"/><text x="18.5508%" y="639.50"></text></g><g><title>ksys_mmap_pgoff (121 samples, 0.01%)</title><rect x="18.3008%" y="613" width="0.0127%" height="15" fill="rgb(219,4,42)" fg:x="174953" fg:w="121"/><text x="18.5508%" y="623.50"></text></g><g><title>vm_mmap_pgoff (117 samples, 0.01%)</title><rect x="18.3012%" y="597" width="0.0122%" height="15" fill="rgb(249,119,36)" fg:x="174957" fg:w="117"/><text x="18.5512%" y="607.50"></text></g><g><title>_dl_map_segment (149 samples, 0.02%)</title><rect x="18.3004%" y="725" width="0.0156%" height="15" fill="rgb(209,23,33)" fg:x="174949" fg:w="149"/><text x="18.5504%" y="735.50"></text></g><g><title>__mmap64 (149 samples, 0.02%)</title><rect x="18.3004%" y="709" width="0.0156%" height="15" fill="rgb(211,10,0)" fg:x="174949" fg:w="149"/><text x="18.5504%" y="719.50"></text></g><g><title>__mmap64 (149 samples, 0.02%)</title><rect x="18.3004%" y="693" width="0.0156%" height="15" fill="rgb(208,99,37)" fg:x="174949" fg:w="149"/><text x="18.5504%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (148 samples, 0.02%)</title><rect x="18.3005%" y="677" width="0.0155%" height="15" fill="rgb(213,132,31)" fg:x="174950" fg:w="148"/><text x="18.5505%" y="687.50"></text></g><g><title>do_syscall_64 (148 samples, 0.02%)</title><rect x="18.3005%" y="661" width="0.0155%" height="15" fill="rgb(243,129,40)" fg:x="174950" fg:w="148"/><text x="18.5505%" y="671.50"></text></g><g><title>unload_network_ops_symbols (145 samples, 0.02%)</title><rect x="18.3008%" y="645" width="0.0152%" height="15" fill="rgb(210,66,33)" fg:x="174953" fg:w="145"/><text x="18.5508%" y="655.50"></text></g><g><title>_dl_map_segments (948 samples, 0.10%)</title><rect x="18.2173%" y="741" width="0.0992%" height="15" fill="rgb(209,189,4)" fg:x="174154" fg:w="948"/><text x="18.4673%" y="751.50"></text></g><g><title>do_user_addr_fault (102 samples, 0.01%)</title><rect x="18.3259%" y="693" width="0.0107%" height="15" fill="rgb(214,107,37)" fg:x="175193" fg:w="102"/><text x="18.5759%" y="703.50"></text></g><g><title>asm_exc_page_fault (108 samples, 0.01%)</title><rect x="18.3255%" y="725" width="0.0113%" height="15" fill="rgb(245,88,54)" fg:x="175189" fg:w="108"/><text x="18.5755%" y="735.50"></text></g><g><title>exc_page_fault (106 samples, 0.01%)</title><rect x="18.3257%" y="709" width="0.0111%" height="15" fill="rgb(205,146,20)" fg:x="175191" fg:w="106"/><text x="18.5757%" y="719.50"></text></g><g><title>elf_get_dynamic_info (138 samples, 0.01%)</title><rect x="18.3233%" y="741" width="0.0144%" height="15" fill="rgb(220,161,25)" fg:x="175168" fg:w="138"/><text x="18.5733%" y="751.50"></text></g><g><title>_dl_map_object_from_fd (1,316 samples, 0.14%)</title><rect x="18.2020%" y="757" width="0.1377%" height="15" fill="rgb(215,152,15)" fg:x="174008" fg:w="1316"/><text x="18.4520%" y="767.50"></text></g><g><title>__x64_sys_openat (98 samples, 0.01%)</title><rect x="18.3427%" y="677" width="0.0103%" height="15" fill="rgb(233,192,44)" fg:x="175353" fg:w="98"/><text x="18.5927%" y="687.50"></text></g><g><title>do_sys_openat2 (96 samples, 0.01%)</title><rect x="18.3429%" y="661" width="0.0100%" height="15" fill="rgb(240,170,46)" fg:x="175355" fg:w="96"/><text x="18.5929%" y="671.50"></text></g><g><title>__GI___open64_nocancel (183 samples, 0.02%)</title><rect x="18.3416%" y="741" width="0.0191%" height="15" fill="rgb(207,104,33)" fg:x="175343" fg:w="183"/><text x="18.5916%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (179 samples, 0.02%)</title><rect x="18.3420%" y="725" width="0.0187%" height="15" fill="rgb(219,21,39)" fg:x="175347" fg:w="179"/><text x="18.5920%" y="735.50"></text></g><g><title>do_syscall_64 (178 samples, 0.02%)</title><rect x="18.3421%" y="709" width="0.0186%" height="15" fill="rgb(214,133,29)" fg:x="175348" fg:w="178"/><text x="18.5921%" y="719.50"></text></g><g><title>unload_network_ops_symbols (174 samples, 0.02%)</title><rect x="18.3426%" y="693" width="0.0182%" height="15" fill="rgb(226,93,6)" fg:x="175352" fg:w="174"/><text x="18.5926%" y="703.50"></text></g><g><title>open_verify (254 samples, 0.03%)</title><rect x="18.3413%" y="757" width="0.0266%" height="15" fill="rgb(252,222,34)" fg:x="175340" fg:w="254"/><text x="18.5913%" y="767.50"></text></g><g><title>_dl_catch_exception (1,880 samples, 0.20%)</title><rect x="18.1719%" y="805" width="0.1967%" height="15" fill="rgb(252,92,48)" fg:x="173720" fg:w="1880"/><text x="18.4219%" y="815.50"></text></g><g><title>openaux (1,872 samples, 0.20%)</title><rect x="18.1727%" y="789" width="0.1958%" height="15" fill="rgb(245,223,24)" fg:x="173728" fg:w="1872"/><text x="18.4227%" y="799.50"></text></g><g><title>_dl_map_object (1,872 samples, 0.20%)</title><rect x="18.1727%" y="773" width="0.1958%" height="15" fill="rgb(205,176,3)" fg:x="173728" fg:w="1872"/><text x="18.4227%" y="783.50"></text></g><g><title>_dl_map_object_deps (1,897 samples, 0.20%)</title><rect x="18.1705%" y="821" width="0.1984%" height="15" fill="rgb(235,151,15)" fg:x="173707" fg:w="1897"/><text x="18.4205%" y="831.50"></text></g><g><title>mprotect_fixup (157 samples, 0.02%)</title><rect x="18.3767%" y="709" width="0.0164%" height="15" fill="rgb(237,209,11)" fg:x="175678" fg:w="157"/><text x="18.6267%" y="719.50"></text></g><g><title>__x64_sys_mprotect (177 samples, 0.02%)</title><rect x="18.3752%" y="741" width="0.0185%" height="15" fill="rgb(243,227,24)" fg:x="175664" fg:w="177"/><text x="18.6252%" y="751.50"></text></g><g><title>do_mprotect_pkey (177 samples, 0.02%)</title><rect x="18.3752%" y="725" width="0.0185%" height="15" fill="rgb(239,193,16)" fg:x="175664" fg:w="177"/><text x="18.6252%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (180 samples, 0.02%)</title><rect x="18.3751%" y="773" width="0.0188%" height="15" fill="rgb(231,27,9)" fg:x="175663" fg:w="180"/><text x="18.6251%" y="783.50"></text></g><g><title>do_syscall_64 (179 samples, 0.02%)</title><rect x="18.3752%" y="757" width="0.0187%" height="15" fill="rgb(219,169,10)" fg:x="175664" fg:w="179"/><text x="18.6252%" y="767.50"></text></g><g><title>__mprotect (185 samples, 0.02%)</title><rect x="18.3748%" y="789" width="0.0194%" height="15" fill="rgb(244,229,43)" fg:x="175660" fg:w="185"/><text x="18.6248%" y="799.50"></text></g><g><title>_dl_protect_relro (186 samples, 0.02%)</title><rect x="18.3748%" y="805" width="0.0195%" height="15" fill="rgb(254,38,20)" fg:x="175660" fg:w="186"/><text x="18.6248%" y="815.50"></text></g><g><title>check_match (188 samples, 0.02%)</title><rect x="18.4583%" y="741" width="0.0197%" height="15" fill="rgb(250,47,30)" fg:x="176458" fg:w="188"/><text x="18.7083%" y="751.50"></text></g><g><title>strcmp (102 samples, 0.01%)</title><rect x="18.4673%" y="725" width="0.0107%" height="15" fill="rgb(224,124,36)" fg:x="176544" fg:w="102"/><text x="18.7173%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (579 samples, 0.06%)</title><rect x="18.4179%" y="773" width="0.0606%" height="15" fill="rgb(246,68,51)" fg:x="176072" fg:w="579"/><text x="18.6679%" y="783.50"></text></g><g><title>do_lookup_x (444 samples, 0.05%)</title><rect x="18.4320%" y="757" width="0.0464%" height="15" fill="rgb(253,43,49)" fg:x="176207" fg:w="444"/><text x="18.6820%" y="767.50"></text></g><g><title>elf_machine_rela (713 samples, 0.07%)</title><rect x="18.4048%" y="789" width="0.0746%" height="15" fill="rgb(219,54,36)" fg:x="175947" fg:w="713"/><text x="18.6548%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (880 samples, 0.09%)</title><rect x="18.3942%" y="805" width="0.0921%" height="15" fill="rgb(227,133,34)" fg:x="175846" fg:w="880"/><text x="18.6442%" y="815.50"></text></g><g><title>_dl_relocate_object (1,089 samples, 0.11%)</title><rect x="18.3737%" y="821" width="0.1139%" height="15" fill="rgb(247,227,15)" fg:x="175650" fg:w="1089"/><text x="18.6237%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.01%)</title><rect x="18.4877%" y="789" width="0.0116%" height="15" fill="rgb(229,96,14)" fg:x="176739" fg:w="111"/><text x="18.7377%" y="799.50"></text></g><g><title>do_syscall_64 (110 samples, 0.01%)</title><rect x="18.4878%" y="773" width="0.0115%" height="15" fill="rgb(220,79,17)" fg:x="176740" fg:w="110"/><text x="18.7378%" y="783.50"></text></g><g><title>_dl_unload_cache (112 samples, 0.01%)</title><rect x="18.4877%" y="821" width="0.0117%" height="15" fill="rgb(205,131,53)" fg:x="176739" fg:w="112"/><text x="18.7377%" y="831.50"></text></g><g><title>munmap (112 samples, 0.01%)</title><rect x="18.4877%" y="805" width="0.0117%" height="15" fill="rgb(209,50,29)" fg:x="176739" fg:w="112"/><text x="18.7377%" y="815.50"></text></g><g><title>dl_main (3,616 samples, 0.38%)</title><rect x="18.1451%" y="837" width="0.3782%" height="15" fill="rgb(245,86,46)" fg:x="173464" fg:w="3616"/><text x="18.3951%" y="847.50"></text></g><g><title>_dl_start_final (3,774 samples, 0.39%)</title><rect x="18.1387%" y="869" width="0.3948%" height="15" fill="rgb(235,66,46)" fg:x="173403" fg:w="3774"/><text x="18.3887%" y="879.50"></text></g><g><title>_dl_sysdep_start (3,749 samples, 0.39%)</title><rect x="18.1413%" y="853" width="0.3922%" height="15" fill="rgb(232,148,31)" fg:x="173428" fg:w="3749"/><text x="18.3913%" y="863.50"></text></g><g><title>_dl_start (3,832 samples, 0.40%)</title><rect x="18.1383%" y="885" width="0.4008%" height="15" fill="rgb(217,149,8)" fg:x="173399" fg:w="3832"/><text x="18.3883%" y="895.50"></text></g><g><title>_start (3,911 samples, 0.41%)</title><rect x="18.1376%" y="901" width="0.4091%" height="15" fill="rgb(209,183,11)" fg:x="173393" fg:w="3911"/><text x="18.3876%" y="911.50"></text></g><g><title>asm_exc_page_fault (196 samples, 0.02%)</title><rect x="18.5468%" y="901" width="0.0205%" height="15" fill="rgb(208,55,20)" fg:x="177304" fg:w="196"/><text x="18.7968%" y="911.50"></text></g><g><title>load_elf_interp.constprop.0 (111 samples, 0.01%)</title><rect x="18.5894%" y="757" width="0.0116%" height="15" fill="rgb(218,39,14)" fg:x="177712" fg:w="111"/><text x="18.8394%" y="767.50"></text></g><g><title>load_elf_binary (390 samples, 0.04%)</title><rect x="18.5676%" y="773" width="0.0408%" height="15" fill="rgb(216,169,33)" fg:x="177503" fg:w="390"/><text x="18.8176%" y="783.50"></text></g><g><title>__x64_sys_execve (391 samples, 0.04%)</title><rect x="18.5676%" y="869" width="0.0409%" height="15" fill="rgb(233,80,24)" fg:x="177503" fg:w="391"/><text x="18.8176%" y="879.50"></text></g><g><title>do_execveat_common.isra.0 (391 samples, 0.04%)</title><rect x="18.5676%" y="853" width="0.0409%" height="15" fill="rgb(213,179,31)" fg:x="177503" fg:w="391"/><text x="18.8176%" y="863.50"></text></g><g><title>bprm_execve (391 samples, 0.04%)</title><rect x="18.5676%" y="837" width="0.0409%" height="15" fill="rgb(209,19,5)" fg:x="177503" fg:w="391"/><text x="18.8176%" y="847.50"></text></g><g><title>bprm_execve.part.0 (391 samples, 0.04%)</title><rect x="18.5676%" y="821" width="0.0409%" height="15" fill="rgb(219,18,35)" fg:x="177503" fg:w="391"/><text x="18.8176%" y="831.50"></text></g><g><title>exec_binprm (391 samples, 0.04%)</title><rect x="18.5676%" y="805" width="0.0409%" height="15" fill="rgb(209,169,16)" fg:x="177503" fg:w="391"/><text x="18.8176%" y="815.50"></text></g><g><title>search_binary_handler (391 samples, 0.04%)</title><rect x="18.5676%" y="789" width="0.0409%" height="15" fill="rgb(245,90,51)" fg:x="177503" fg:w="391"/><text x="18.8176%" y="799.50"></text></g><g><title>free_pages_and_swap_cache (98 samples, 0.01%)</title><rect x="18.6292%" y="757" width="0.0103%" height="15" fill="rgb(220,99,45)" fg:x="178092" fg:w="98"/><text x="18.8792%" y="767.50"></text></g><g><title>release_pages (96 samples, 0.01%)</title><rect x="18.6294%" y="741" width="0.0100%" height="15" fill="rgb(249,89,25)" fg:x="178094" fg:w="96"/><text x="18.8794%" y="751.50"></text></g><g><title>tlb_finish_mmu (119 samples, 0.01%)</title><rect x="18.6289%" y="773" width="0.0124%" height="15" fill="rgb(239,193,0)" fg:x="178089" fg:w="119"/><text x="18.8789%" y="783.50"></text></g><g><title>zap_pmd_range.isra.0 (312 samples, 0.03%)</title><rect x="18.6441%" y="725" width="0.0326%" height="15" fill="rgb(231,126,1)" fg:x="178235" fg:w="312"/><text x="18.8941%" y="735.50"></text></g><g><title>zap_pte_range (291 samples, 0.03%)</title><rect x="18.6463%" y="709" width="0.0304%" height="15" fill="rgb(243,166,3)" fg:x="178256" fg:w="291"/><text x="18.8963%" y="719.50"></text></g><g><title>unmap_single_vma (336 samples, 0.04%)</title><rect x="18.6417%" y="757" width="0.0351%" height="15" fill="rgb(223,22,34)" fg:x="178212" fg:w="336"/><text x="18.8917%" y="767.50"></text></g><g><title>unmap_page_range (334 samples, 0.03%)</title><rect x="18.6419%" y="741" width="0.0349%" height="15" fill="rgb(251,52,51)" fg:x="178214" fg:w="334"/><text x="18.8919%" y="751.50"></text></g><g><title>unmap_vmas (341 samples, 0.04%)</title><rect x="18.6413%" y="773" width="0.0357%" height="15" fill="rgb(221,165,28)" fg:x="178208" fg:w="341"/><text x="18.8913%" y="783.50"></text></g><g><title>exit_mmap (588 samples, 0.06%)</title><rect x="18.6157%" y="789" width="0.0615%" height="15" fill="rgb(218,121,47)" fg:x="177963" fg:w="588"/><text x="18.8657%" y="799.50"></text></g><g><title>exit_mm (594 samples, 0.06%)</title><rect x="18.6155%" y="821" width="0.0621%" height="15" fill="rgb(209,120,9)" fg:x="177961" fg:w="594"/><text x="18.8655%" y="831.50"></text></g><g><title>mmput (594 samples, 0.06%)</title><rect x="18.6155%" y="805" width="0.0621%" height="15" fill="rgb(236,68,12)" fg:x="177961" fg:w="594"/><text x="18.8655%" y="815.50"></text></g><g><title>do_exit (747 samples, 0.08%)</title><rect x="18.6085%" y="837" width="0.0781%" height="15" fill="rgb(225,194,26)" fg:x="177894" fg:w="747"/><text x="18.8585%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,141 samples, 0.12%)</title><rect x="18.5674%" y="901" width="0.1194%" height="15" fill="rgb(231,84,39)" fg:x="177501" fg:w="1141"/><text x="18.8174%" y="911.50"></text></g><g><title>do_syscall_64 (1,139 samples, 0.12%)</title><rect x="18.5676%" y="885" width="0.1191%" height="15" fill="rgb(210,11,45)" fg:x="177503" fg:w="1139"/><text x="18.8176%" y="895.50"></text></g><g><title>__x64_sys_exit_group (748 samples, 0.08%)</title><rect x="18.6085%" y="869" width="0.0782%" height="15" fill="rgb(224,54,52)" fg:x="177894" fg:w="748"/><text x="18.8585%" y="879.50"></text></g><g><title>do_group_exit (748 samples, 0.08%)</title><rect x="18.6085%" y="853" width="0.0782%" height="15" fill="rgb(238,102,14)" fg:x="177894" fg:w="748"/><text x="18.8585%" y="863.50"></text></g><g><title>sed (7,028 samples, 0.74%)</title><rect x="17.9523%" y="917" width="0.7352%" height="15" fill="rgb(243,160,52)" fg:x="171621" fg:w="7028"/><text x="18.2023%" y="927.50"></text></g><g><title>__GI_unlinkat (101 samples, 0.01%)</title><rect x="18.8109%" y="885" width="0.0106%" height="15" fill="rgb(216,114,19)" fg:x="179829" fg:w="101"/><text x="19.0609%" y="895.50"></text></g><g><title>[anon] (1,618 samples, 0.17%)</title><rect x="18.6894%" y="901" width="0.1692%" height="15" fill="rgb(244,166,37)" fg:x="178668" fg:w="1618"/><text x="18.9394%" y="911.50"></text></g><g><title>[libstdc++.so.6.0.30] (415 samples, 0.04%)</title><rect x="19.0618%" y="885" width="0.0434%" height="15" fill="rgb(246,29,44)" fg:x="182228" fg:w="415"/><text x="19.3118%" y="895.50"></text></g><g><title>btrfs_release_file (136 samples, 0.01%)</title><rect x="19.1270%" y="741" width="0.0142%" height="15" fill="rgb(215,56,53)" fg:x="182851" fg:w="136"/><text x="19.3770%" y="751.50"></text></g><g><title>kfree (101 samples, 0.01%)</title><rect x="19.1307%" y="725" width="0.0106%" height="15" fill="rgb(217,60,2)" fg:x="182886" fg:w="101"/><text x="19.3807%" y="735.50"></text></g><g><title>pinnedhook_security_file_free_security (111 samples, 0.01%)</title><rect x="19.1530%" y="725" width="0.0116%" height="15" fill="rgb(207,26,24)" fg:x="183100" fg:w="111"/><text x="19.4030%" y="735.50"></text></g><g><title>__fput (406 samples, 0.04%)</title><rect x="19.1223%" y="757" width="0.0425%" height="15" fill="rgb(252,210,15)" fg:x="182806" fg:w="406"/><text x="19.3723%" y="767.50"></text></g><g><title>security_file_free (171 samples, 0.02%)</title><rect x="19.1469%" y="741" width="0.0179%" height="15" fill="rgb(253,209,26)" fg:x="183041" fg:w="171"/><text x="19.3969%" y="751.50"></text></g><g><title>____fput (433 samples, 0.05%)</title><rect x="19.1222%" y="773" width="0.0453%" height="15" fill="rgb(238,170,14)" fg:x="182805" fg:w="433"/><text x="19.3722%" y="783.50"></text></g><g><title>exit_to_user_mode_loop (494 samples, 0.05%)</title><rect x="19.1166%" y="805" width="0.0517%" height="15" fill="rgb(216,178,15)" fg:x="182752" fg:w="494"/><text x="19.3666%" y="815.50"></text></g><g><title>task_work_run (444 samples, 0.05%)</title><rect x="19.1219%" y="789" width="0.0464%" height="15" fill="rgb(250,197,2)" fg:x="182802" fg:w="444"/><text x="19.3719%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (502 samples, 0.05%)</title><rect x="19.1161%" y="821" width="0.0525%" height="15" fill="rgb(212,70,42)" fg:x="182747" fg:w="502"/><text x="19.3661%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (507 samples, 0.05%)</title><rect x="19.1157%" y="837" width="0.0530%" height="15" fill="rgb(227,213,9)" fg:x="182743" fg:w="507"/><text x="19.3657%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (102 samples, 0.01%)</title><rect x="19.1965%" y="741" width="0.0107%" height="15" fill="rgb(245,99,25)" fg:x="183515" fg:w="102"/><text x="19.4465%" y="751.50"></text></g><g><title>cshook_security_file_free_security (112 samples, 0.01%)</title><rect x="19.1963%" y="757" width="0.0117%" height="15" fill="rgb(250,82,29)" fg:x="183514" fg:w="112"/><text x="19.4463%" y="767.50"></text></g><g><title>cshook_security_file_free_security (165 samples, 0.02%)</title><rect x="19.1916%" y="773" width="0.0173%" height="15" fill="rgb(241,226,54)" fg:x="183469" fg:w="165"/><text x="19.4416%" y="783.50"></text></g><g><title>cshook_security_file_free_security (202 samples, 0.02%)</title><rect x="19.1881%" y="789" width="0.0211%" height="15" fill="rgb(221,99,41)" fg:x="183435" fg:w="202"/><text x="19.4381%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (493 samples, 0.05%)</title><rect x="19.1834%" y="805" width="0.0516%" height="15" fill="rgb(213,90,21)" fg:x="183390" fg:w="493"/><text x="19.4334%" y="815.50"></text></g><g><title>fshook_syscalltable_pre_lchown (244 samples, 0.03%)</title><rect x="19.2094%" y="789" width="0.0255%" height="15" fill="rgb(205,208,24)" fg:x="183639" fg:w="244"/><text x="19.4594%" y="799.50"></text></g><g><title>do_syscall_64 (1,190 samples, 0.12%)</title><rect x="19.1116%" y="853" width="0.1245%" height="15" fill="rgb(246,31,12)" fg:x="182704" fg:w="1190"/><text x="19.3616%" y="863.50"></text></g><g><title>unload_network_ops_symbols (644 samples, 0.07%)</title><rect x="19.1687%" y="837" width="0.0674%" height="15" fill="rgb(213,154,6)" fg:x="183250" fg:w="644"/><text x="19.4187%" y="847.50"></text></g><g><title>cshook_systemcalltable_pre_close (504 samples, 0.05%)</title><rect x="19.1834%" y="821" width="0.0527%" height="15" fill="rgb(222,163,29)" fg:x="183390" fg:w="504"/><text x="19.4334%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,203 samples, 0.13%)</title><rect x="19.1110%" y="869" width="0.1258%" height="15" fill="rgb(227,201,8)" fg:x="182698" fg:w="1203"/><text x="19.3610%" y="879.50"></text></g><g><title>__GI___close_nocancel (1,222 samples, 0.13%)</title><rect x="19.1093%" y="885" width="0.1278%" height="15" fill="rgb(233,9,32)" fg:x="182682" fg:w="1222"/><text x="19.3593%" y="895.50"></text></g><g><title>_int_free (205 samples, 0.02%)</title><rect x="19.2678%" y="869" width="0.0214%" height="15" fill="rgb(217,54,24)" fg:x="184197" fg:w="205"/><text x="19.5178%" y="879.50"></text></g><g><title>__GI___libc_free (575 samples, 0.06%)</title><rect x="19.2383%" y="885" width="0.0601%" height="15" fill="rgb(235,192,0)" fg:x="183915" fg:w="575"/><text x="19.4883%" y="895.50"></text></g><g><title>filldir64 (235 samples, 0.02%)</title><rect x="19.3702%" y="757" width="0.0246%" height="15" fill="rgb(235,45,9)" fg:x="185176" fg:w="235"/><text x="19.6202%" y="767.50"></text></g><g><title>btrfs_filldir (259 samples, 0.03%)</title><rect x="19.3686%" y="773" width="0.0271%" height="15" fill="rgb(246,42,40)" fg:x="185161" fg:w="259"/><text x="19.6186%" y="783.50"></text></g><g><title>btrfs_search_slot (102 samples, 0.01%)</title><rect x="19.4111%" y="757" width="0.0107%" height="15" fill="rgb(248,111,24)" fg:x="185567" fg:w="102"/><text x="19.6611%" y="767.50"></text></g><g><title>btrfs_next_old_leaf (145 samples, 0.02%)</title><rect x="19.4099%" y="773" width="0.0152%" height="15" fill="rgb(249,65,22)" fg:x="185556" fg:w="145"/><text x="19.6599%" y="783.50"></text></g><g><title>btrfs_release_path (109 samples, 0.01%)</title><rect x="19.4354%" y="773" width="0.0114%" height="15" fill="rgb(238,111,51)" fg:x="185799" fg:w="109"/><text x="19.6854%" y="783.50"></text></g><g><title>btrfs_bin_search (239 samples, 0.03%)</title><rect x="19.4588%" y="757" width="0.0250%" height="15" fill="rgb(250,118,22)" fg:x="186023" fg:w="239"/><text x="19.7088%" y="767.50"></text></g><g><title>generic_bin_search.constprop.0 (234 samples, 0.02%)</title><rect x="19.4593%" y="741" width="0.0245%" height="15" fill="rgb(234,84,26)" fg:x="186028" fg:w="234"/><text x="19.7093%" y="751.50"></text></g><g><title>dequeue_task_fair (112 samples, 0.01%)</title><rect x="19.4939%" y="645" width="0.0117%" height="15" fill="rgb(243,172,12)" fg:x="186359" fg:w="112"/><text x="19.7439%" y="655.50"></text></g><g><title>dequeue_task (116 samples, 0.01%)</title><rect x="19.4937%" y="661" width="0.0121%" height="15" fill="rgb(236,150,49)" fg:x="186357" fg:w="116"/><text x="19.7437%" y="671.50"></text></g><g><title>__schedule (357 samples, 0.04%)</title><rect x="19.4920%" y="677" width="0.0373%" height="15" fill="rgb(225,197,26)" fg:x="186340" fg:w="357"/><text x="19.7420%" y="687.50"></text></g><g><title>schedule (362 samples, 0.04%)</title><rect x="19.4916%" y="693" width="0.0379%" height="15" fill="rgb(214,17,42)" fg:x="186337" fg:w="362"/><text x="19.7416%" y="703.50"></text></g><g><title>rwsem_down_read_slowpath (409 samples, 0.04%)</title><rect x="19.4871%" y="709" width="0.0428%" height="15" fill="rgb(224,165,40)" fg:x="186294" fg:w="409"/><text x="19.7371%" y="719.50"></text></g><g><title>down_read (424 samples, 0.04%)</title><rect x="19.4857%" y="725" width="0.0444%" height="15" fill="rgb(246,100,4)" fg:x="186280" fg:w="424"/><text x="19.7357%" y="735.50"></text></g><g><title>__btrfs_tree_read_lock (428 samples, 0.04%)</title><rect x="19.4854%" y="741" width="0.0448%" height="15" fill="rgb(222,103,0)" fg:x="186277" fg:w="428"/><text x="19.7354%" y="751.50"></text></g><g><title>btrfs_read_lock_root_node (462 samples, 0.05%)</title><rect x="19.4851%" y="757" width="0.0483%" height="15" fill="rgb(227,189,26)" fg:x="186274" fg:w="462"/><text x="19.7351%" y="767.50"></text></g><g><title>schedule (250 samples, 0.03%)</title><rect x="19.5390%" y="693" width="0.0262%" height="15" fill="rgb(214,202,17)" fg:x="186790" fg:w="250"/><text x="19.7890%" y="703.50"></text></g><g><title>__schedule (247 samples, 0.03%)</title><rect x="19.5393%" y="677" width="0.0258%" height="15" fill="rgb(229,111,3)" fg:x="186793" fg:w="247"/><text x="19.7893%" y="687.50"></text></g><g><title>down_read (296 samples, 0.03%)</title><rect x="19.5345%" y="725" width="0.0310%" height="15" fill="rgb(229,172,15)" fg:x="186747" fg:w="296"/><text x="19.7845%" y="735.50"></text></g><g><title>rwsem_down_read_slowpath (266 samples, 0.03%)</title><rect x="19.5377%" y="709" width="0.0278%" height="15" fill="rgb(230,224,35)" fg:x="186777" fg:w="266"/><text x="19.7877%" y="719.50"></text></g><g><title>__btrfs_tree_read_lock (305 samples, 0.03%)</title><rect x="19.5337%" y="741" width="0.0319%" height="15" fill="rgb(251,141,6)" fg:x="186739" fg:w="305"/><text x="19.7837%" y="751.50"></text></g><g><title>btrfs_tree_read_lock (306 samples, 0.03%)</title><rect x="19.5337%" y="757" width="0.0320%" height="15" fill="rgb(225,208,6)" fg:x="186739" fg:w="306"/><text x="19.7837%" y="767.50"></text></g><g><title>find_extent_buffer_nolock (229 samples, 0.02%)</title><rect x="19.5971%" y="725" width="0.0240%" height="15" fill="rgb(246,181,16)" fg:x="187345" fg:w="229"/><text x="19.8471%" y="735.50"></text></g><g><title>radix_tree_lookup (143 samples, 0.01%)</title><rect x="19.6061%" y="709" width="0.0150%" height="15" fill="rgb(227,129,36)" fg:x="187431" fg:w="143"/><text x="19.8561%" y="719.50"></text></g><g><title>__radix_tree_lookup (143 samples, 0.01%)</title><rect x="19.6061%" y="693" width="0.0150%" height="15" fill="rgb(248,117,24)" fg:x="187431" fg:w="143"/><text x="19.8561%" y="703.50"></text></g><g><title>find_extent_buffer (330 samples, 0.03%)</title><rect x="19.5948%" y="741" width="0.0345%" height="15" fill="rgb(214,185,35)" fg:x="187323" fg:w="330"/><text x="19.8448%" y="751.50"></text></g><g><title>read_block_for_search (522 samples, 0.05%)</title><rect x="19.5767%" y="757" width="0.0546%" height="15" fill="rgb(236,150,34)" fg:x="187150" fg:w="522"/><text x="19.8267%" y="767.50"></text></g><g><title>btrfs_search_slot (1,823 samples, 0.19%)</title><rect x="19.4468%" y="773" width="0.1907%" height="15" fill="rgb(243,228,27)" fg:x="185908" fg:w="1823"/><text x="19.6968%" y="783.50"></text></g><g><title>read_extent_buffer (257 samples, 0.03%)</title><rect x="19.6486%" y="773" width="0.0269%" height="15" fill="rgb(245,77,44)" fg:x="187837" fg:w="257"/><text x="19.8986%" y="783.50"></text></g><g><title>btrfs_real_readdir (3,153 samples, 0.33%)</title><rect x="19.3469%" y="789" width="0.3298%" height="15" fill="rgb(235,214,42)" fg:x="184953" fg:w="3153"/><text x="19.5969%" y="799.50"></text></g><g><title>security_file_permission (147 samples, 0.02%)</title><rect x="19.6851%" y="789" width="0.0154%" height="15" fill="rgb(221,74,3)" fg:x="188186" fg:w="147"/><text x="19.9351%" y="799.50"></text></g><g><title>btrfs_delayed_update_inode (190 samples, 0.02%)</title><rect x="19.7292%" y="725" width="0.0199%" height="15" fill="rgb(206,121,29)" fg:x="188608" fg:w="190"/><text x="19.9792%" y="735.50"></text></g><g><title>btrfs_update_inode (237 samples, 0.02%)</title><rect x="19.7272%" y="741" width="0.0248%" height="15" fill="rgb(249,131,53)" fg:x="188589" fg:w="237"/><text x="19.9772%" y="751.50"></text></g><g><title>btrfs_dirty_inode (429 samples, 0.04%)</title><rect x="19.7082%" y="757" width="0.0449%" height="15" fill="rgb(236,170,29)" fg:x="188407" fg:w="429"/><text x="19.9582%" y="767.50"></text></g><g><title>btrfs_update_time (436 samples, 0.05%)</title><rect x="19.7079%" y="773" width="0.0456%" height="15" fill="rgb(247,96,15)" fg:x="188404" fg:w="436"/><text x="19.9579%" y="783.50"></text></g><g><title>iterate_dir (4,023 samples, 0.42%)</title><rect x="19.3330%" y="805" width="0.4208%" height="15" fill="rgb(211,210,7)" fg:x="184820" fg:w="4023"/><text x="19.5830%" y="815.50"></text></g><g><title>touch_atime (510 samples, 0.05%)</title><rect x="19.7004%" y="789" width="0.0533%" height="15" fill="rgb(240,88,50)" fg:x="188333" fg:w="510"/><text x="19.9504%" y="799.50"></text></g><g><title>__x64_sys_getdents64 (4,127 samples, 0.43%)</title><rect x="19.3243%" y="821" width="0.4317%" height="15" fill="rgb(209,229,26)" fg:x="184737" fg:w="4127"/><text x="19.5743%" y="831.50"></text></g><g><title>do_syscall_64 (4,271 samples, 0.45%)</title><rect x="19.3211%" y="837" width="0.4468%" height="15" fill="rgb(210,68,23)" fg:x="184707" fg:w="4271"/><text x="19.5711%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (103 samples, 0.01%)</title><rect x="19.7571%" y="821" width="0.0108%" height="15" fill="rgb(229,180,13)" fg:x="188875" fg:w="103"/><text x="20.0071%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (98 samples, 0.01%)</title><rect x="19.7577%" y="805" width="0.0103%" height="15" fill="rgb(236,53,44)" fg:x="188880" fg:w="98"/><text x="20.0077%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,297 samples, 0.45%)</title><rect x="19.3190%" y="853" width="0.4495%" height="15" fill="rgb(244,214,29)" fg:x="184687" fg:w="4297"/><text x="19.5690%" y="863.50"></text></g><g><title>__GI___readdir64 (4,477 samples, 0.47%)</title><rect x="19.3019%" y="885" width="0.4683%" height="15" fill="rgb(220,75,29)" fg:x="184523" fg:w="4477"/><text x="19.5519%" y="895.50"></text></g><g><title>__GI___getdents64 (4,343 samples, 0.45%)</title><rect x="19.3159%" y="869" width="0.4543%" height="15" fill="rgb(214,183,37)" fg:x="184657" fg:w="4343"/><text x="19.5659%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (102 samples, 0.01%)</title><rect x="19.7815%" y="837" width="0.0107%" height="15" fill="rgb(239,117,29)" fg:x="189108" fg:w="102"/><text x="20.0315%" y="847.50"></text></g><g><title>btrfs_bin_search (129 samples, 0.01%)</title><rect x="19.8372%" y="693" width="0.0135%" height="15" fill="rgb(237,171,35)" fg:x="189640" fg:w="129"/><text x="20.0872%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (123 samples, 0.01%)</title><rect x="19.8378%" y="677" width="0.0129%" height="15" fill="rgb(229,178,53)" fg:x="189646" fg:w="123"/><text x="20.0878%" y="687.50"></text></g><g><title>__schedule (236 samples, 0.02%)</title><rect x="19.8564%" y="613" width="0.0247%" height="15" fill="rgb(210,102,19)" fg:x="189824" fg:w="236"/><text x="20.1064%" y="623.50"></text></g><g><title>schedule (240 samples, 0.03%)</title><rect x="19.8563%" y="629" width="0.0251%" height="15" fill="rgb(235,127,22)" fg:x="189823" fg:w="240"/><text x="20.1063%" y="639.50"></text></g><g><title>down_read (283 samples, 0.03%)</title><rect x="19.8521%" y="661" width="0.0296%" height="15" fill="rgb(244,31,31)" fg:x="189783" fg:w="283"/><text x="20.1021%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (270 samples, 0.03%)</title><rect x="19.8535%" y="645" width="0.0282%" height="15" fill="rgb(231,43,21)" fg:x="189796" fg:w="270"/><text x="20.1035%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (287 samples, 0.03%)</title><rect x="19.8519%" y="677" width="0.0300%" height="15" fill="rgb(217,131,35)" fg:x="189781" fg:w="287"/><text x="20.1019%" y="687.50"></text></g><g><title>btrfs_read_lock_root_node (317 samples, 0.03%)</title><rect x="19.8518%" y="693" width="0.0332%" height="15" fill="rgb(221,149,4)" fg:x="189780" fg:w="317"/><text x="20.1018%" y="703.50"></text></g><g><title>schedule (281 samples, 0.03%)</title><rect x="19.8903%" y="629" width="0.0294%" height="15" fill="rgb(232,170,28)" fg:x="190148" fg:w="281"/><text x="20.1403%" y="639.50"></text></g><g><title>__schedule (281 samples, 0.03%)</title><rect x="19.8903%" y="613" width="0.0294%" height="15" fill="rgb(238,56,10)" fg:x="190148" fg:w="281"/><text x="20.1403%" y="623.50"></text></g><g><title>rwsem_down_read_slowpath (298 samples, 0.03%)</title><rect x="19.8888%" y="645" width="0.0312%" height="15" fill="rgb(235,196,14)" fg:x="190134" fg:w="298"/><text x="20.1388%" y="655.50"></text></g><g><title>down_read (328 samples, 0.03%)</title><rect x="19.8858%" y="661" width="0.0343%" height="15" fill="rgb(216,45,48)" fg:x="190105" fg:w="328"/><text x="20.1358%" y="671.50"></text></g><g><title>btrfs_tree_read_lock (333 samples, 0.03%)</title><rect x="19.8854%" y="693" width="0.0348%" height="15" fill="rgb(238,213,17)" fg:x="190101" fg:w="333"/><text x="20.1354%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (333 samples, 0.03%)</title><rect x="19.8854%" y="677" width="0.0348%" height="15" fill="rgb(212,13,2)" fg:x="190101" fg:w="333"/><text x="20.1354%" y="687.50"></text></g><g><title>find_extent_buffer_nolock (137 samples, 0.01%)</title><rect x="19.9413%" y="661" width="0.0143%" height="15" fill="rgb(240,114,20)" fg:x="190636" fg:w="137"/><text x="20.1913%" y="671.50"></text></g><g><title>find_extent_buffer (186 samples, 0.02%)</title><rect x="19.9399%" y="677" width="0.0195%" height="15" fill="rgb(228,41,40)" fg:x="190622" fg:w="186"/><text x="20.1899%" y="687.50"></text></g><g><title>read_block_for_search (303 samples, 0.03%)</title><rect x="19.9288%" y="693" width="0.0317%" height="15" fill="rgb(244,132,35)" fg:x="190516" fg:w="303"/><text x="20.1788%" y="703.50"></text></g><g><title>btrfs_search_slot (1,312 samples, 0.14%)</title><rect x="19.8284%" y="709" width="0.1372%" height="15" fill="rgb(253,189,4)" fg:x="189556" fg:w="1312"/><text x="20.0784%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (1,374 samples, 0.14%)</title><rect x="19.8268%" y="725" width="0.1437%" height="15" fill="rgb(224,37,19)" fg:x="189541" fg:w="1374"/><text x="20.0768%" y="735.50"></text></g><g><title>btrfs_lookup_dentry (1,508 samples, 0.16%)</title><rect x="19.8146%" y="741" width="0.1577%" height="15" fill="rgb(235,223,18)" fg:x="189424" fg:w="1508"/><text x="20.0646%" y="751.50"></text></g><g><title>btrfs_lookup (1,547 samples, 0.16%)</title><rect x="19.8137%" y="757" width="0.1618%" height="15" fill="rgb(235,163,25)" fg:x="189416" fg:w="1547"/><text x="20.0637%" y="767.50"></text></g><g><title>kmem_cache_alloc (107 samples, 0.01%)</title><rect x="19.9789%" y="725" width="0.0112%" height="15" fill="rgb(217,145,28)" fg:x="190995" fg:w="107"/><text x="20.2289%" y="735.50"></text></g><g><title>__d_alloc (138 samples, 0.01%)</title><rect x="19.9763%" y="741" width="0.0144%" height="15" fill="rgb(223,223,32)" fg:x="190970" fg:w="138"/><text x="20.2263%" y="751.50"></text></g><g><title>d_alloc (146 samples, 0.02%)</title><rect x="19.9762%" y="757" width="0.0153%" height="15" fill="rgb(227,189,39)" fg:x="190969" fg:w="146"/><text x="20.2262%" y="767.50"></text></g><g><title>__lookup_hash (1,746 samples, 0.18%)</title><rect x="19.8128%" y="773" width="0.1826%" height="15" fill="rgb(248,10,22)" fg:x="189407" fg:w="1746"/><text x="20.0628%" y="783.50"></text></g><g><title>inode_permission (124 samples, 0.01%)</title><rect x="20.0177%" y="725" width="0.0130%" height="15" fill="rgb(248,46,39)" fg:x="191366" fg:w="124"/><text x="20.2677%" y="735.50"></text></g><g><title>__d_lookup_rcu (138 samples, 0.01%)</title><rect x="20.0374%" y="693" width="0.0144%" height="15" fill="rgb(248,113,48)" fg:x="191554" fg:w="138"/><text x="20.2874%" y="703.50"></text></g><g><title>lookup_fast (163 samples, 0.02%)</title><rect x="20.0349%" y="709" width="0.0171%" height="15" fill="rgb(245,16,25)" fg:x="191530" fg:w="163"/><text x="20.2849%" y="719.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (501 samples, 0.05%)</title><rect x="20.0057%" y="741" width="0.0524%" height="15" fill="rgb(249,152,16)" fg:x="191251" fg:w="501"/><text x="20.2557%" y="751.50"></text></g><g><title>walk_component (251 samples, 0.03%)</title><rect x="20.0318%" y="725" width="0.0263%" height="15" fill="rgb(250,16,1)" fg:x="191501" fg:w="251"/><text x="20.2818%" y="735.50"></text></g><g><title>path_parentat (550 samples, 0.06%)</title><rect x="20.0038%" y="757" width="0.0575%" height="15" fill="rgb(249,138,3)" fg:x="191233" fg:w="550"/><text x="20.2538%" y="767.50"></text></g><g><title>filename_parentat (565 samples, 0.06%)</title><rect x="20.0025%" y="773" width="0.0591%" height="15" fill="rgb(227,71,41)" fg:x="191221" fg:w="565"/><text x="20.2525%" y="783.50"></text></g><g><title>filename_create (2,405 samples, 0.25%)</title><rect x="19.8114%" y="789" width="0.2516%" height="15" fill="rgb(209,184,23)" fg:x="189394" fg:w="2405"/><text x="20.0614%" y="799.50"></text></g><g><title>btrfs_insert_delayed_dir_index (190 samples, 0.02%)</title><rect x="20.0890%" y="725" width="0.0199%" height="15" fill="rgb(223,215,31)" fg:x="192048" fg:w="190"/><text x="20.3390%" y="735.50"></text></g><g><title>btrfs_bin_search (127 samples, 0.01%)</title><rect x="20.1315%" y="677" width="0.0133%" height="15" fill="rgb(210,146,28)" fg:x="192454" fg:w="127"/><text x="20.3815%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (123 samples, 0.01%)</title><rect x="20.1319%" y="661" width="0.0129%" height="15" fill="rgb(209,183,41)" fg:x="192458" fg:w="123"/><text x="20.3819%" y="671.50"></text></g><g><title>__schedule (212 samples, 0.02%)</title><rect x="20.1512%" y="597" width="0.0222%" height="15" fill="rgb(209,224,45)" fg:x="192642" fg:w="212"/><text x="20.4012%" y="607.50"></text></g><g><title>schedule (215 samples, 0.02%)</title><rect x="20.1512%" y="613" width="0.0225%" height="15" fill="rgb(224,209,51)" fg:x="192642" fg:w="215"/><text x="20.4012%" y="623.50"></text></g><g><title>down_read (251 samples, 0.03%)</title><rect x="20.1475%" y="645" width="0.0263%" height="15" fill="rgb(223,17,39)" fg:x="192607" fg:w="251"/><text x="20.3975%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (245 samples, 0.03%)</title><rect x="20.1481%" y="629" width="0.0256%" height="15" fill="rgb(234,204,37)" fg:x="192613" fg:w="245"/><text x="20.3981%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (252 samples, 0.03%)</title><rect x="20.1475%" y="661" width="0.0264%" height="15" fill="rgb(236,120,5)" fg:x="192607" fg:w="252"/><text x="20.3975%" y="671.50"></text></g><g><title>btrfs_read_lock_root_node (267 samples, 0.03%)</title><rect x="20.1472%" y="677" width="0.0279%" height="15" fill="rgb(248,97,27)" fg:x="192604" fg:w="267"/><text x="20.3972%" y="687.50"></text></g><g><title>osq_lock (161 samples, 0.02%)</title><rect x="20.1895%" y="597" width="0.0168%" height="15" fill="rgb(240,66,17)" fg:x="193008" fg:w="161"/><text x="20.4395%" y="607.50"></text></g><g><title>rwsem_spin_on_owner (237 samples, 0.02%)</title><rect x="20.2067%" y="597" width="0.0248%" height="15" fill="rgb(210,79,3)" fg:x="193173" fg:w="237"/><text x="20.4567%" y="607.50"></text></g><g><title>rwsem_optimistic_spin (506 samples, 0.05%)</title><rect x="20.1790%" y="613" width="0.0529%" height="15" fill="rgb(214,176,27)" fg:x="192908" fg:w="506"/><text x="20.4290%" y="623.50"></text></g><g><title>__btrfs_tree_lock (627 samples, 0.07%)</title><rect x="20.1751%" y="661" width="0.0656%" height="15" fill="rgb(235,185,3)" fg:x="192871" fg:w="627"/><text x="20.4251%" y="671.50"></text></g><g><title>down_write (623 samples, 0.07%)</title><rect x="20.1755%" y="645" width="0.0652%" height="15" fill="rgb(227,24,12)" fg:x="192875" fg:w="623"/><text x="20.4255%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (609 samples, 0.06%)</title><rect x="20.1770%" y="629" width="0.0637%" height="15" fill="rgb(252,169,48)" fg:x="192889" fg:w="609"/><text x="20.4270%" y="639.50"></text></g><g><title>btrfs_tree_lock (628 samples, 0.07%)</title><rect x="20.1751%" y="677" width="0.0657%" height="15" fill="rgb(212,65,1)" fg:x="192871" fg:w="628"/><text x="20.4251%" y="687.50"></text></g><g><title>find_extent_buffer_nolock (115 samples, 0.01%)</title><rect x="20.2601%" y="645" width="0.0120%" height="15" fill="rgb(242,39,24)" fg:x="193683" fg:w="115"/><text x="20.5101%" y="655.50"></text></g><g><title>find_extent_buffer (168 samples, 0.02%)</title><rect x="20.2594%" y="661" width="0.0176%" height="15" fill="rgb(249,32,23)" fg:x="193677" fg:w="168"/><text x="20.5094%" y="671.50"></text></g><g><title>read_block_for_search (249 samples, 0.03%)</title><rect x="20.2513%" y="677" width="0.0260%" height="15" fill="rgb(251,195,23)" fg:x="193599" fg:w="249"/><text x="20.5013%" y="687.50"></text></g><g><title>split_leaf (117 samples, 0.01%)</title><rect x="20.2773%" y="677" width="0.0122%" height="15" fill="rgb(236,174,8)" fg:x="193848" fg:w="117"/><text x="20.5273%" y="687.50"></text></g><g><title>btrfs_search_slot (1,761 samples, 0.18%)</title><rect x="20.1255%" y="693" width="0.1842%" height="15" fill="rgb(220,197,8)" fg:x="192397" fg:w="1761"/><text x="20.3755%" y="703.50"></text></g><g><title>unlock_up (192 samples, 0.02%)</title><rect x="20.2897%" y="677" width="0.0201%" height="15" fill="rgb(240,108,37)" fg:x="193966" fg:w="192"/><text x="20.5397%" y="687.50"></text></g><g><title>btrfs_get_token_32 (116 samples, 0.01%)</title><rect x="20.3189%" y="677" width="0.0121%" height="15" fill="rgb(232,176,24)" fg:x="194245" fg:w="116"/><text x="20.5689%" y="687.50"></text></g><g><title>btrfs_set_token_32 (108 samples, 0.01%)</title><rect x="20.3352%" y="677" width="0.0113%" height="15" fill="rgb(243,35,29)" fg:x="194401" fg:w="108"/><text x="20.5852%" y="687.50"></text></g><g><title>memmove_extent_buffer (103 samples, 0.01%)</title><rect x="20.3518%" y="677" width="0.0108%" height="15" fill="rgb(210,37,18)" fg:x="194560" fg:w="103"/><text x="20.6018%" y="687.50"></text></g><g><title>setup_items_for_insert (498 samples, 0.05%)</title><rect x="20.3118%" y="693" width="0.0521%" height="15" fill="rgb(224,184,40)" fg:x="194178" fg:w="498"/><text x="20.5618%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (2,310 samples, 0.24%)</title><rect x="20.1225%" y="709" width="0.2416%" height="15" fill="rgb(236,39,29)" fg:x="192368" fg:w="2310"/><text x="20.3725%" y="719.50"></text></g><g><title>insert_with_overflow (2,327 samples, 0.24%)</title><rect x="20.1210%" y="725" width="0.2434%" height="15" fill="rgb(232,48,39)" fg:x="192354" fg:w="2327"/><text x="20.3710%" y="735.50"></text></g><g><title>btrfs_insert_dir_item (2,712 samples, 0.28%)</title><rect x="20.0842%" y="741" width="0.2837%" height="15" fill="rgb(236,34,42)" fg:x="192002" fg:w="2712"/><text x="20.3342%" y="751.50"></text></g><g><title>btrfs_add_link (2,854 samples, 0.30%)</title><rect x="20.0810%" y="757" width="0.2985%" height="15" fill="rgb(243,106,37)" fg:x="191971" fg:w="2854"/><text x="20.3310%" y="767.50"></text></g><g><title>btrfs_balance_delayed_items (103 samples, 0.01%)</title><rect x="20.3797%" y="741" width="0.0108%" height="15" fill="rgb(218,96,6)" fg:x="194827" fg:w="103"/><text x="20.6297%" y="751.50"></text></g><g><title>btrfs_btree_balance_dirty (114 samples, 0.01%)</title><rect x="20.3796%" y="757" width="0.0119%" height="15" fill="rgb(235,130,12)" fg:x="194826" fg:w="114"/><text x="20.6296%" y="767.50"></text></g><g><title>__schedule (197 samples, 0.02%)</title><rect x="20.4473%" y="629" width="0.0206%" height="15" fill="rgb(231,95,0)" fg:x="195473" fg:w="197"/><text x="20.6973%" y="639.50"></text></g><g><title>schedule (200 samples, 0.02%)</title><rect x="20.4471%" y="645" width="0.0209%" height="15" fill="rgb(228,12,23)" fg:x="195471" fg:w="200"/><text x="20.6971%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (226 samples, 0.02%)</title><rect x="20.4447%" y="661" width="0.0236%" height="15" fill="rgb(216,12,1)" fg:x="195448" fg:w="226"/><text x="20.6947%" y="671.50"></text></g><g><title>down_read (233 samples, 0.02%)</title><rect x="20.4442%" y="677" width="0.0244%" height="15" fill="rgb(219,59,3)" fg:x="195443" fg:w="233"/><text x="20.6942%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (236 samples, 0.02%)</title><rect x="20.4441%" y="693" width="0.0247%" height="15" fill="rgb(215,208,46)" fg:x="195442" fg:w="236"/><text x="20.6941%" y="703.50"></text></g><g><title>btrfs_read_lock_root_node (250 samples, 0.03%)</title><rect x="20.4439%" y="709" width="0.0262%" height="15" fill="rgb(254,224,29)" fg:x="195440" fg:w="250"/><text x="20.6939%" y="719.50"></text></g><g><title>osq_lock (153 samples, 0.02%)</title><rect x="20.4870%" y="629" width="0.0160%" height="15" fill="rgb(232,14,29)" fg:x="195852" fg:w="153"/><text x="20.7370%" y="639.50"></text></g><g><title>rwsem_spin_on_owner (187 samples, 0.02%)</title><rect x="20.5033%" y="629" width="0.0196%" height="15" fill="rgb(208,45,52)" fg:x="196008" fg:w="187"/><text x="20.7533%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (470 samples, 0.05%)</title><rect x="20.4742%" y="645" width="0.0492%" height="15" fill="rgb(234,191,28)" fg:x="195730" fg:w="470"/><text x="20.7242%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (556 samples, 0.06%)</title><rect x="20.4730%" y="661" width="0.0582%" height="15" fill="rgb(244,67,43)" fg:x="195719" fg:w="556"/><text x="20.7230%" y="671.50"></text></g><g><title>down_write (581 samples, 0.06%)</title><rect x="20.4705%" y="677" width="0.0608%" height="15" fill="rgb(236,189,24)" fg:x="195695" fg:w="581"/><text x="20.7205%" y="687.50"></text></g><g><title>btrfs_tree_lock (588 samples, 0.06%)</title><rect x="20.4700%" y="709" width="0.0615%" height="15" fill="rgb(239,214,33)" fg:x="195690" fg:w="588"/><text x="20.7200%" y="719.50"></text></g><g><title>__btrfs_tree_lock (588 samples, 0.06%)</title><rect x="20.4700%" y="693" width="0.0615%" height="15" fill="rgb(226,176,41)" fg:x="195690" fg:w="588"/><text x="20.7200%" y="703.50"></text></g><g><title>__schedule (115 samples, 0.01%)</title><rect x="20.5325%" y="629" width="0.0120%" height="15" fill="rgb(248,47,8)" fg:x="196287" fg:w="115"/><text x="20.7825%" y="639.50"></text></g><g><title>schedule (116 samples, 0.01%)</title><rect x="20.5325%" y="645" width="0.0121%" height="15" fill="rgb(218,81,44)" fg:x="196287" fg:w="116"/><text x="20.7825%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (120 samples, 0.01%)</title><rect x="20.5321%" y="661" width="0.0126%" height="15" fill="rgb(213,98,6)" fg:x="196284" fg:w="120"/><text x="20.7821%" y="671.50"></text></g><g><title>btrfs_tree_read_lock (127 samples, 0.01%)</title><rect x="20.5315%" y="709" width="0.0133%" height="15" fill="rgb(222,85,22)" fg:x="196278" fg:w="127"/><text x="20.7815%" y="719.50"></text></g><g><title>__btrfs_tree_read_lock (127 samples, 0.01%)</title><rect x="20.5315%" y="693" width="0.0133%" height="15" fill="rgb(239,46,39)" fg:x="196278" fg:w="127"/><text x="20.7815%" y="703.50"></text></g><g><title>down_read (126 samples, 0.01%)</title><rect x="20.5316%" y="677" width="0.0132%" height="15" fill="rgb(237,12,29)" fg:x="196279" fg:w="126"/><text x="20.7816%" y="687.50"></text></g><g><title>find_extent_buffer_nolock (105 samples, 0.01%)</title><rect x="20.5574%" y="677" width="0.0110%" height="15" fill="rgb(214,77,8)" fg:x="196525" fg:w="105"/><text x="20.8074%" y="687.50"></text></g><g><title>find_extent_buffer (158 samples, 0.02%)</title><rect x="20.5555%" y="693" width="0.0165%" height="15" fill="rgb(217,168,37)" fg:x="196507" fg:w="158"/><text x="20.8055%" y="703.50"></text></g><g><title>read_block_for_search (253 samples, 0.03%)</title><rect x="20.5462%" y="709" width="0.0265%" height="15" fill="rgb(221,217,23)" fg:x="196418" fg:w="253"/><text x="20.7962%" y="719.50"></text></g><g><title>split_leaf (141 samples, 0.01%)</title><rect x="20.5726%" y="709" width="0.0147%" height="15" fill="rgb(243,229,36)" fg:x="196671" fg:w="141"/><text x="20.8226%" y="719.50"></text></g><g><title>btrfs_search_slot (1,748 samples, 0.18%)</title><rect x="20.4254%" y="725" width="0.1828%" height="15" fill="rgb(251,163,40)" fg:x="195264" fg:w="1748"/><text x="20.6754%" y="735.50"></text></g><g><title>unlock_up (200 samples, 0.02%)</title><rect x="20.5874%" y="709" width="0.0209%" height="15" fill="rgb(237,222,12)" fg:x="196812" fg:w="200"/><text x="20.8374%" y="719.50"></text></g><g><title>setup_items_for_insert (235 samples, 0.02%)</title><rect x="20.6101%" y="725" width="0.0246%" height="15" fill="rgb(248,132,6)" fg:x="197029" fg:w="235"/><text x="20.8601%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (2,029 samples, 0.21%)</title><rect x="20.4230%" y="741" width="0.2122%" height="15" fill="rgb(227,167,50)" fg:x="195241" fg:w="2029"/><text x="20.6730%" y="751.50"></text></g><g><title>fill_inode_item (110 samples, 0.01%)</title><rect x="20.6412%" y="741" width="0.0115%" height="15" fill="rgb(242,84,37)" fg:x="197327" fg:w="110"/><text x="20.8912%" y="751.50"></text></g><g><title>inode_tree_add (207 samples, 0.02%)</title><rect x="20.6552%" y="741" width="0.0217%" height="15" fill="rgb(212,4,50)" fg:x="197460" fg:w="207"/><text x="20.9052%" y="751.50"></text></g><g><title>kmem_cache_alloc (105 samples, 0.01%)</title><rect x="20.6910%" y="693" width="0.0110%" height="15" fill="rgb(230,228,32)" fg:x="197803" fg:w="105"/><text x="20.9410%" y="703.50"></text></g><g><title>btrfs_alloc_inode (141 samples, 0.01%)</title><rect x="20.6874%" y="709" width="0.0147%" height="15" fill="rgb(248,217,23)" fg:x="197768" fg:w="141"/><text x="20.9374%" y="719.50"></text></g><g><title>alloc_inode (243 samples, 0.03%)</title><rect x="20.6843%" y="725" width="0.0254%" height="15" fill="rgb(238,197,32)" fg:x="197739" fg:w="243"/><text x="20.9343%" y="735.50"></text></g><g><title>new_inode (250 samples, 0.03%)</title><rect x="20.6841%" y="741" width="0.0262%" height="15" fill="rgb(236,106,1)" fg:x="197737" fg:w="250"/><text x="20.9341%" y="751.50"></text></g><g><title>btrfs_new_inode (2,931 samples, 0.31%)</title><rect x="20.4069%" y="757" width="0.3066%" height="15" fill="rgb(219,228,13)" fg:x="195087" fg:w="2931"/><text x="20.6569%" y="767.50"></text></g><g><title>__reserve_bytes (99 samples, 0.01%)</title><rect x="20.7220%" y="693" width="0.0104%" height="15" fill="rgb(238,30,35)" fg:x="198099" fg:w="99"/><text x="20.9720%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (124 samples, 0.01%)</title><rect x="20.7213%" y="725" width="0.0130%" height="15" fill="rgb(236,70,23)" fg:x="198092" fg:w="124"/><text x="20.9713%" y="735.50"></text></g><g><title>btrfs_reserve_metadata_bytes (122 samples, 0.01%)</title><rect x="20.7215%" y="709" width="0.0128%" height="15" fill="rgb(249,104,48)" fg:x="198094" fg:w="122"/><text x="20.9715%" y="719.50"></text></g><g><title>start_transaction (222 samples, 0.02%)</title><rect x="20.7153%" y="741" width="0.0232%" height="15" fill="rgb(254,117,50)" fg:x="198035" fg:w="222"/><text x="20.9653%" y="751.50"></text></g><g><title>btrfs_start_transaction (232 samples, 0.02%)</title><rect x="20.7145%" y="757" width="0.0243%" height="15" fill="rgb(223,152,4)" fg:x="198027" fg:w="232"/><text x="20.9645%" y="767.50"></text></g><g><title>btrfs_get_or_create_delayed_node (156 samples, 0.02%)</title><rect x="20.7490%" y="725" width="0.0163%" height="15" fill="rgb(245,6,2)" fg:x="198357" fg:w="156"/><text x="20.9990%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (274 samples, 0.03%)</title><rect x="20.7402%" y="741" width="0.0287%" height="15" fill="rgb(249,150,24)" fg:x="198273" fg:w="274"/><text x="20.9902%" y="751.50"></text></g><g><title>btrfs_update_inode (306 samples, 0.03%)</title><rect x="20.7391%" y="757" width="0.0320%" height="15" fill="rgb(228,185,42)" fg:x="198262" fg:w="306"/><text x="20.9891%" y="767.50"></text></g><g><title>btrfs_mkdir (6,773 samples, 0.71%)</title><rect x="20.0762%" y="773" width="0.7085%" height="15" fill="rgb(226,39,33)" fg:x="191925" fg:w="6773"/><text x="20.3262%" y="783.50"></text></g><g><title>do_mkdirat (9,515 samples, 1.00%)</title><rect x="19.7968%" y="805" width="0.9953%" height="15" fill="rgb(221,166,19)" fg:x="189254" fg:w="9515"/><text x="20.0468%" y="815.50"></text></g><g><title>vfs_mkdir (6,877 samples, 0.72%)</title><rect x="20.0727%" y="789" width="0.7194%" height="15" fill="rgb(209,109,2)" fg:x="191892" fg:w="6877"/><text x="20.3227%" y="799.50"></text></g><g><title>getname_flags.part.0 (116 samples, 0.01%)</title><rect x="20.7927%" y="805" width="0.0121%" height="15" fill="rgb(252,216,26)" fg:x="198775" fg:w="116"/><text x="21.0427%" y="815.50"></text></g><g><title>__x64_sys_mkdir (9,662 samples, 1.01%)</title><rect x="19.7961%" y="821" width="1.0107%" height="15" fill="rgb(227,173,36)" fg:x="189248" fg:w="9662"/><text x="20.0461%" y="831.50"></text></g><g><title>inode_permission (158 samples, 0.02%)</title><rect x="20.8521%" y="693" width="0.0165%" height="15" fill="rgb(209,90,7)" fg:x="199343" fg:w="158"/><text x="21.1021%" y="703.50"></text></g><g><title>lookup_fast (256 samples, 0.03%)</title><rect x="20.8730%" y="677" width="0.0268%" height="15" fill="rgb(250,194,11)" fg:x="199543" fg:w="256"/><text x="21.1230%" y="687.50"></text></g><g><title>__d_lookup_rcu (231 samples, 0.02%)</title><rect x="20.8757%" y="661" width="0.0242%" height="15" fill="rgb(220,72,50)" fg:x="199568" fg:w="231"/><text x="21.1257%" y="671.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (638 samples, 0.07%)</title><rect x="20.8392%" y="709" width="0.0667%" height="15" fill="rgb(222,106,48)" fg:x="199219" fg:w="638"/><text x="21.0892%" y="719.50"></text></g><g><title>walk_component (342 samples, 0.04%)</title><rect x="20.8701%" y="693" width="0.0358%" height="15" fill="rgb(216,220,45)" fg:x="199515" fg:w="342"/><text x="21.1201%" y="703.50"></text></g><g><title>path_lookupat (749 samples, 0.08%)</title><rect x="20.8346%" y="725" width="0.0783%" height="15" fill="rgb(234,112,18)" fg:x="199175" fg:w="749"/><text x="21.0846%" y="735.50"></text></g><g><title>filename_lookup (765 samples, 0.08%)</title><rect x="20.8332%" y="741" width="0.0800%" height="15" fill="rgb(206,179,9)" fg:x="199162" fg:w="765"/><text x="21.0832%" y="751.50"></text></g><g><title>getname_flags.part.0 (129 samples, 0.01%)</title><rect x="20.9133%" y="725" width="0.0135%" height="15" fill="rgb(215,115,40)" fg:x="199928" fg:w="129"/><text x="21.1633%" y="735.50"></text></g><g><title>getname_flags (133 samples, 0.01%)</title><rect x="20.9132%" y="741" width="0.0139%" height="15" fill="rgb(222,69,34)" fg:x="199927" fg:w="133"/><text x="21.1632%" y="751.50"></text></g><g><title>[[falcon_kal]] (974 samples, 0.10%)</title><rect x="20.8264%" y="773" width="0.1019%" height="15" fill="rgb(209,161,10)" fg:x="199097" fg:w="974"/><text x="21.0764%" y="783.50"></text></g><g><title>user_path_at_empty (909 samples, 0.10%)</title><rect x="20.8332%" y="757" width="0.0951%" height="15" fill="rgb(217,6,38)" fg:x="199162" fg:w="909"/><text x="21.0832%" y="767.50"></text></g><g><title>_ZdlPv (125 samples, 0.01%)</title><rect x="20.9334%" y="757" width="0.0131%" height="15" fill="rgb(229,229,48)" fg:x="200120" fg:w="125"/><text x="21.1834%" y="767.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (97 samples, 0.01%)</title><rect x="20.9363%" y="741" width="0.0101%" height="15" fill="rgb(225,21,28)" fg:x="200148" fg:w="97"/><text x="21.1863%" y="751.50"></text></g><g><title>_ZdlPv (211 samples, 0.02%)</title><rect x="20.9283%" y="773" width="0.0221%" height="15" fill="rgb(206,33,13)" fg:x="200071" fg:w="211"/><text x="21.1783%" y="783.50"></text></g><g><title>copy_from_kernel_nofault (99 samples, 0.01%)</title><rect x="20.9668%" y="677" width="0.0104%" height="15" fill="rgb(242,178,17)" fg:x="200439" fg:w="99"/><text x="21.2168%" y="687.50"></text></g><g><title>prepend (134 samples, 0.01%)</title><rect x="20.9642%" y="709" width="0.0140%" height="15" fill="rgb(220,162,5)" fg:x="200414" fg:w="134"/><text x="21.2142%" y="719.50"></text></g><g><title>prepend_copy (118 samples, 0.01%)</title><rect x="20.9658%" y="693" width="0.0123%" height="15" fill="rgb(210,33,43)" fg:x="200430" fg:w="118"/><text x="21.2158%" y="703.50"></text></g><g><title>d_path (197 samples, 0.02%)</title><rect x="20.9588%" y="741" width="0.0206%" height="15" fill="rgb(216,116,54)" fg:x="200363" fg:w="197"/><text x="21.2088%" y="751.50"></text></g><g><title>prepend_path (189 samples, 0.02%)</title><rect x="20.9597%" y="725" width="0.0198%" height="15" fill="rgb(249,92,24)" fg:x="200371" fg:w="189"/><text x="21.2097%" y="735.50"></text></g><g><title>[[falcon_kal]] (247 samples, 0.03%)</title><rect x="20.9547%" y="757" width="0.0258%" height="15" fill="rgb(231,189,14)" fg:x="200324" fg:w="247"/><text x="21.2047%" y="767.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (194 samples, 0.02%)</title><rect x="20.9811%" y="757" width="0.0203%" height="15" fill="rgb(230,8,41)" fg:x="200576" fg:w="194"/><text x="21.2311%" y="767.50"></text></g><g><title>[[falcon_kal]] (177 samples, 0.02%)</title><rect x="20.9829%" y="741" width="0.0185%" height="15" fill="rgb(249,7,27)" fg:x="200593" fg:w="177"/><text x="21.2329%" y="751.50"></text></g><g><title>memset_erms (101 samples, 0.01%)</title><rect x="20.9908%" y="725" width="0.0106%" height="15" fill="rgb(232,86,5)" fg:x="200669" fg:w="101"/><text x="21.2408%" y="735.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (478 samples, 0.05%)</title><rect x="20.9515%" y="773" width="0.0500%" height="15" fill="rgb(224,175,18)" fg:x="200293" fg:w="478"/><text x="21.2015%" y="783.50"></text></g><g><title>cshook_systemcalltable_post_mkdir (1,939 samples, 0.20%)</title><rect x="20.8084%" y="821" width="0.2028%" height="15" fill="rgb(220,129,12)" fg:x="198925" fg:w="1939"/><text x="21.0584%" y="831.50"></text></g><g><title>fshook_syscalltable_pre_lchown (1,819 samples, 0.19%)</title><rect x="20.8210%" y="805" width="0.1903%" height="15" fill="rgb(210,19,36)" fg:x="199045" fg:w="1819"/><text x="21.0710%" y="815.50"></text></g><g><title>fshook_syscalltable_pre_lchown (1,783 samples, 0.19%)</title><rect x="20.8247%" y="789" width="0.1865%" height="15" fill="rgb(219,96,14)" fg:x="199081" fg:w="1783"/><text x="21.0747%" y="799.50"></text></g><g><title>do_syscall_64 (11,853 samples, 1.24%)</title><rect x="19.7755%" y="853" width="1.2399%" height="15" fill="rgb(249,106,1)" fg:x="189051" fg:w="11853"/><text x="20.0255%" y="863.50"></text></g><g><title>unload_network_ops_symbols (11,694 samples, 1.22%)</title><rect x="19.7922%" y="837" width="1.2232%" height="15" fill="rgb(249,155,20)" fg:x="189210" fg:w="11694"/><text x="20.0422%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (11,874 samples, 1.24%)</title><rect x="19.7749%" y="869" width="1.2421%" height="15" fill="rgb(244,168,9)" fg:x="189045" fg:w="11874"/><text x="20.0249%" y="879.50"></text></g><g><title>__GI_mkdir (11,930 samples, 1.25%)</title><rect x="19.7702%" y="885" width="1.2479%" height="15" fill="rgb(216,23,50)" fg:x="189000" fg:w="11930"/><text x="20.0202%" y="895.50"></text></g><g><title>__GI_remove (121 samples, 0.01%)</title><rect x="21.0183%" y="869" width="0.0127%" height="15" fill="rgb(224,219,20)" fg:x="200932" fg:w="121"/><text x="21.2683%" y="879.50"></text></g><g><title>__GI___rmdir (121 samples, 0.01%)</title><rect x="21.0183%" y="853" width="0.0127%" height="15" fill="rgb(222,156,15)" fg:x="200932" fg:w="121"/><text x="21.2683%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (121 samples, 0.01%)</title><rect x="21.0183%" y="837" width="0.0127%" height="15" fill="rgb(231,97,17)" fg:x="200932" fg:w="121"/><text x="21.2683%" y="847.50"></text></g><g><title>do_syscall_64 (121 samples, 0.01%)</title><rect x="21.0183%" y="821" width="0.0127%" height="15" fill="rgb(218,70,48)" fg:x="200932" fg:w="121"/><text x="21.2683%" y="831.50"></text></g><g><title>unload_network_ops_symbols (121 samples, 0.01%)</title><rect x="21.0183%" y="805" width="0.0127%" height="15" fill="rgb(212,196,52)" fg:x="200932" fg:w="121"/><text x="21.2683%" y="815.50"></text></g><g><title>__x64_sys_rmdir (121 samples, 0.01%)</title><rect x="21.0183%" y="789" width="0.0127%" height="15" fill="rgb(243,203,18)" fg:x="200932" fg:w="121"/><text x="21.2683%" y="799.50"></text></g><g><title>do_rmdir (121 samples, 0.01%)</title><rect x="21.0183%" y="773" width="0.0127%" height="15" fill="rgb(252,125,41)" fg:x="200932" fg:w="121"/><text x="21.2683%" y="783.50"></text></g><g><title>vfs_rmdir (121 samples, 0.01%)</title><rect x="21.0183%" y="757" width="0.0127%" height="15" fill="rgb(223,180,33)" fg:x="200932" fg:w="121"/><text x="21.2683%" y="767.50"></text></g><g><title>rwsem_optimistic_spin (109 samples, 0.01%)</title><rect x="21.0318%" y="741" width="0.0114%" height="15" fill="rgb(254,159,46)" fg:x="201061" fg:w="109"/><text x="21.2818%" y="751.50"></text></g><g><title>down_write (110 samples, 0.01%)</title><rect x="21.0318%" y="773" width="0.0115%" height="15" fill="rgb(254,38,10)" fg:x="201061" fg:w="110"/><text x="21.2818%" y="783.50"></text></g><g><title>rwsem_down_write_slowpath (110 samples, 0.01%)</title><rect x="21.0318%" y="757" width="0.0115%" height="15" fill="rgb(208,217,32)" fg:x="201061" fg:w="110"/><text x="21.2818%" y="767.50"></text></g><g><title>do_unlinkat (149 samples, 0.02%)</title><rect x="21.0316%" y="789" width="0.0156%" height="15" fill="rgb(221,120,13)" fg:x="201059" fg:w="149"/><text x="21.2816%" y="799.50"></text></g><g><title>__x64_sys_unlink (152 samples, 0.02%)</title><rect x="21.0316%" y="805" width="0.0159%" height="15" fill="rgb(246,54,52)" fg:x="201059" fg:w="152"/><text x="21.2816%" y="815.50"></text></g><g><title>__GI_remove (365 samples, 0.04%)</title><rect x="21.0182%" y="885" width="0.0382%" height="15" fill="rgb(242,34,25)" fg:x="200931" fg:w="365"/><text x="21.2682%" y="895.50"></text></g><g><title>__unlink (243 samples, 0.03%)</title><rect x="21.0310%" y="869" width="0.0254%" height="15" fill="rgb(247,209,9)" fg:x="201053" fg:w="243"/><text x="21.2810%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (242 samples, 0.03%)</title><rect x="21.0311%" y="853" width="0.0253%" height="15" fill="rgb(228,71,26)" fg:x="201054" fg:w="242"/><text x="21.2811%" y="863.50"></text></g><g><title>do_syscall_64 (242 samples, 0.03%)</title><rect x="21.0311%" y="837" width="0.0253%" height="15" fill="rgb(222,145,49)" fg:x="201054" fg:w="242"/><text x="21.2811%" y="847.50"></text></g><g><title>unload_network_ops_symbols (237 samples, 0.02%)</title><rect x="21.0316%" y="821" width="0.0248%" height="15" fill="rgb(218,121,17)" fg:x="201059" fg:w="237"/><text x="21.2816%" y="831.50"></text></g><g><title>__entry_text_start (105 samples, 0.01%)</title><rect x="21.0688%" y="869" width="0.0110%" height="15" fill="rgb(244,50,7)" fg:x="201414" fg:w="105"/><text x="21.3188%" y="879.50"></text></g><g><title>acquire_rundown (124 samples, 0.01%)</title><rect x="21.1201%" y="837" width="0.0130%" height="15" fill="rgb(246,229,37)" fg:x="201905" fg:w="124"/><text x="21.3701%" y="847.50"></text></g><g><title>__get_user_8 (162 samples, 0.02%)</title><rect x="21.1863%" y="757" width="0.0169%" height="15" fill="rgb(225,18,5)" fg:x="202538" fg:w="162"/><text x="21.4363%" y="767.50"></text></g><g><title>__rseq_handle_notify_resume (268 samples, 0.03%)</title><rect x="21.1765%" y="789" width="0.0280%" height="15" fill="rgb(213,204,8)" fg:x="202444" fg:w="268"/><text x="21.4265%" y="799.50"></text></g><g><title>rseq_ip_fixup (198 samples, 0.02%)</title><rect x="21.1838%" y="773" width="0.0207%" height="15" fill="rgb(238,103,6)" fg:x="202514" fg:w="198"/><text x="21.4338%" y="783.50"></text></g><g><title>exit_to_user_mode_loop (445 samples, 0.05%)</title><rect x="21.1669%" y="805" width="0.0465%" height="15" fill="rgb(222,25,35)" fg:x="202352" fg:w="445"/><text x="21.4169%" y="815.50"></text></g><g><title>restore_fpregs_from_fpstate (156 samples, 0.02%)</title><rect x="21.2237%" y="789" width="0.0163%" height="15" fill="rgb(213,203,35)" fg:x="202895" fg:w="156"/><text x="21.4737%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (782 samples, 0.08%)</title><rect x="21.1604%" y="821" width="0.0818%" height="15" fill="rgb(221,79,53)" fg:x="202290" fg:w="782"/><text x="21.4104%" y="831.50"></text></g><g><title>switch_fpu_return (247 samples, 0.03%)</title><rect x="21.2164%" y="805" width="0.0258%" height="15" fill="rgb(243,200,35)" fg:x="202825" fg:w="247"/><text x="21.4664%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (870 samples, 0.09%)</title><rect x="21.1550%" y="837" width="0.0910%" height="15" fill="rgb(248,60,25)" fg:x="202238" fg:w="870"/><text x="21.4050%" y="847.50"></text></g><g><title>__cond_resched (112 samples, 0.01%)</title><rect x="21.3246%" y="773" width="0.0117%" height="15" fill="rgb(227,53,46)" fg:x="203860" fg:w="112"/><text x="21.5746%" y="783.50"></text></g><g><title>__schedule (100 samples, 0.01%)</title><rect x="21.3259%" y="757" width="0.0105%" height="15" fill="rgb(216,120,32)" fg:x="203872" fg:w="100"/><text x="21.5759%" y="767.50"></text></g><g><title>_raw_spin_lock (119 samples, 0.01%)</title><rect x="21.3504%" y="757" width="0.0124%" height="15" fill="rgb(220,134,1)" fg:x="204106" fg:w="119"/><text x="21.6004%" y="767.50"></text></g><g><title>list_lru_add (450 samples, 0.05%)</title><rect x="21.3628%" y="757" width="0.0471%" height="15" fill="rgb(237,168,5)" fg:x="204225" fg:w="450"/><text x="21.6128%" y="767.50"></text></g><g><title>mem_cgroup_from_obj (148 samples, 0.02%)</title><rect x="21.3944%" y="741" width="0.0155%" height="15" fill="rgb(231,100,33)" fg:x="204527" fg:w="148"/><text x="21.6444%" y="751.50"></text></g><g><title>d_lru_add (596 samples, 0.06%)</title><rect x="21.3476%" y="773" width="0.0623%" height="15" fill="rgb(236,177,47)" fg:x="204080" fg:w="596"/><text x="21.5976%" y="783.50"></text></g><g><title>dput (982 samples, 0.10%)</title><rect x="21.3171%" y="789" width="0.1027%" height="15" fill="rgb(235,7,49)" fg:x="203788" fg:w="982"/><text x="21.5671%" y="799.50"></text></g><g><title>kmem_cache_alloc (155 samples, 0.02%)</title><rect x="21.4702%" y="709" width="0.0162%" height="15" fill="rgb(232,119,22)" fg:x="205252" fg:w="155"/><text x="21.7202%" y="719.50"></text></g><g><title>btrfs_alloc_path (195 samples, 0.02%)</title><rect x="21.4693%" y="725" width="0.0204%" height="15" fill="rgb(254,73,53)" fg:x="205243" fg:w="195"/><text x="21.7193%" y="735.50"></text></g><g><title>_raw_spin_lock (126 samples, 0.01%)</title><rect x="21.5044%" y="677" width="0.0132%" height="15" fill="rgb(251,35,20)" fg:x="205579" fg:w="126"/><text x="21.7544%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (324 samples, 0.03%)</title><rect x="21.5177%" y="677" width="0.0339%" height="15" fill="rgb(241,119,20)" fg:x="205706" fg:w="324"/><text x="21.7677%" y="687.50"></text></g><g><title>release_extent_buffer (109 samples, 0.01%)</title><rect x="21.5402%" y="661" width="0.0114%" height="15" fill="rgb(207,102,14)" fg:x="205921" fg:w="109"/><text x="21.7902%" y="671.50"></text></g><g><title>free_extent_buffer (464 samples, 0.05%)</title><rect x="21.5044%" y="693" width="0.0485%" height="15" fill="rgb(248,201,50)" fg:x="205579" fg:w="464"/><text x="21.7544%" y="703.50"></text></g><g><title>btrfs_release_path (611 samples, 0.06%)</title><rect x="21.4917%" y="709" width="0.0639%" height="15" fill="rgb(222,185,44)" fg:x="205457" fg:w="611"/><text x="21.7417%" y="719.50"></text></g><g><title>kmem_cache_free (199 samples, 0.02%)</title><rect x="21.5594%" y="709" width="0.0208%" height="15" fill="rgb(218,107,18)" fg:x="206104" fg:w="199"/><text x="21.8094%" y="719.50"></text></g><g><title>btrfs_free_path (868 samples, 0.09%)</title><rect x="21.4897%" y="725" width="0.0908%" height="15" fill="rgb(237,177,39)" fg:x="205438" fg:w="868"/><text x="21.7397%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (1,333 samples, 0.14%)</title><rect x="21.6792%" y="677" width="0.1394%" height="15" fill="rgb(246,69,6)" fg:x="207250" fg:w="1333"/><text x="21.9292%" y="687.50"></text></g><g><title>btrfs_bin_search (1,391 samples, 0.15%)</title><rect x="21.6733%" y="693" width="0.1455%" height="15" fill="rgb(234,208,37)" fg:x="207193" fg:w="1391"/><text x="21.9233%" y="703.50"></text></g><g><title>update_curr (153 samples, 0.02%)</title><rect x="21.9024%" y="549" width="0.0160%" height="15" fill="rgb(225,4,6)" fg:x="209383" fg:w="153"/><text x="22.1524%" y="559.50"></text></g><g><title>update_load_avg (108 samples, 0.01%)</title><rect x="21.9184%" y="549" width="0.0113%" height="15" fill="rgb(233,45,0)" fg:x="209536" fg:w="108"/><text x="22.1684%" y="559.50"></text></g><g><title>dequeue_entity (397 samples, 0.04%)</title><rect x="21.8888%" y="565" width="0.0415%" height="15" fill="rgb(226,136,5)" fg:x="209253" fg:w="397"/><text x="22.1388%" y="575.50"></text></g><g><title>dequeue_task_fair (587 samples, 0.06%)</title><rect x="21.8820%" y="581" width="0.0614%" height="15" fill="rgb(211,91,47)" fg:x="209188" fg:w="587"/><text x="22.1320%" y="591.50"></text></g><g><title>dequeue_task (667 samples, 0.07%)</title><rect x="21.8781%" y="597" width="0.0698%" height="15" fill="rgb(242,88,51)" fg:x="209151" fg:w="667"/><text x="22.1281%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (548 samples, 0.06%)</title><rect x="21.9531%" y="581" width="0.0573%" height="15" fill="rgb(230,91,28)" fg:x="209868" fg:w="548"/><text x="22.2031%" y="591.50"></text></g><g><title>x86_pmu_enable (523 samples, 0.05%)</title><rect x="21.9557%" y="565" width="0.0547%" height="15" fill="rgb(254,186,29)" fg:x="209893" fg:w="523"/><text x="22.2057%" y="575.50"></text></g><g><title>intel_pmu_enable_all (516 samples, 0.05%)</title><rect x="21.9564%" y="549" width="0.0540%" height="15" fill="rgb(238,6,4)" fg:x="209900" fg:w="516"/><text x="22.2064%" y="559.50"></text></g><g><title>native_write_msr (508 samples, 0.05%)</title><rect x="21.9573%" y="533" width="0.0531%" height="15" fill="rgb(221,151,16)" fg:x="209908" fg:w="508"/><text x="22.2073%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (648 samples, 0.07%)</title><rect x="21.9480%" y="597" width="0.0678%" height="15" fill="rgb(251,143,52)" fg:x="209819" fg:w="648"/><text x="22.1980%" y="607.50"></text></g><g><title>pick_next_task_fair (169 samples, 0.02%)</title><rect x="22.0192%" y="581" width="0.0177%" height="15" fill="rgb(206,90,15)" fg:x="210500" fg:w="169"/><text x="22.2692%" y="591.50"></text></g><g><title>pick_next_task (298 samples, 0.03%)</title><rect x="22.0162%" y="597" width="0.0312%" height="15" fill="rgb(218,35,8)" fg:x="210471" fg:w="298"/><text x="22.2662%" y="607.50"></text></g><g><title>perf_event_context_sched_out (119 samples, 0.01%)</title><rect x="22.0559%" y="565" width="0.0124%" height="15" fill="rgb(239,215,6)" fg:x="210851" fg:w="119"/><text x="22.3059%" y="575.50"></text></g><g><title>__perf_event_task_sched_out (186 samples, 0.02%)</title><rect x="22.0513%" y="581" width="0.0195%" height="15" fill="rgb(245,116,39)" fg:x="210807" fg:w="186"/><text x="22.3013%" y="591.50"></text></g><g><title>prepare_task_switch (218 samples, 0.02%)</title><rect x="22.0482%" y="597" width="0.0228%" height="15" fill="rgb(242,65,28)" fg:x="210777" fg:w="218"/><text x="22.2982%" y="607.50"></text></g><g><title>psi_group_change (280 samples, 0.03%)</title><rect x="22.0831%" y="581" width="0.0293%" height="15" fill="rgb(252,132,53)" fg:x="211111" fg:w="280"/><text x="22.3331%" y="591.50"></text></g><g><title>psi_task_switch (396 samples, 0.04%)</title><rect x="22.0723%" y="597" width="0.0414%" height="15" fill="rgb(224,159,50)" fg:x="211008" fg:w="396"/><text x="22.3223%" y="607.50"></text></g><g><title>__schedule (2,459 samples, 0.26%)</title><rect x="21.8651%" y="613" width="0.2572%" height="15" fill="rgb(224,93,4)" fg:x="209027" fg:w="2459"/><text x="22.1151%" y="623.50"></text></g><g><title>schedule (2,504 samples, 0.26%)</title><rect x="21.8633%" y="629" width="0.2619%" height="15" fill="rgb(208,81,34)" fg:x="209010" fg:w="2504"/><text x="22.1133%" y="639.50"></text></g><g><title>rwsem_down_read_slowpath (2,718 samples, 0.28%)</title><rect x="21.8425%" y="645" width="0.2843%" height="15" fill="rgb(233,92,54)" fg:x="208811" fg:w="2718"/><text x="22.0925%" y="655.50"></text></g><g><title>down_read (2,817 samples, 0.29%)</title><rect x="21.8326%" y="661" width="0.2947%" height="15" fill="rgb(237,21,14)" fg:x="208716" fg:w="2817"/><text x="22.0826%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (2,840 samples, 0.30%)</title><rect x="21.8309%" y="677" width="0.2971%" height="15" fill="rgb(249,128,51)" fg:x="208700" fg:w="2840"/><text x="22.0809%" y="687.50"></text></g><g><title>btrfs_root_node (212 samples, 0.02%)</title><rect x="22.1280%" y="677" width="0.0222%" height="15" fill="rgb(223,129,24)" fg:x="211540" fg:w="212"/><text x="22.3780%" y="687.50"></text></g><g><title>btrfs_read_lock_root_node (3,087 samples, 0.32%)</title><rect x="21.8276%" y="693" width="0.3229%" height="15" fill="rgb(231,168,25)" fg:x="208668" fg:w="3087"/><text x="22.0776%" y="703.50"></text></g><g><title>update_curr (140 samples, 0.01%)</title><rect x="22.2383%" y="549" width="0.0146%" height="15" fill="rgb(224,39,20)" fg:x="212595" fg:w="140"/><text x="22.4883%" y="559.50"></text></g><g><title>update_load_avg (141 samples, 0.01%)</title><rect x="22.2530%" y="549" width="0.0147%" height="15" fill="rgb(225,152,53)" fg:x="212735" fg:w="141"/><text x="22.5030%" y="559.50"></text></g><g><title>dequeue_entity (403 samples, 0.04%)</title><rect x="22.2266%" y="565" width="0.0422%" height="15" fill="rgb(252,17,24)" fg:x="212483" fg:w="403"/><text x="22.4766%" y="575.50"></text></g><g><title>dequeue_task_fair (547 samples, 0.06%)</title><rect x="22.2214%" y="581" width="0.0572%" height="15" fill="rgb(250,114,30)" fg:x="212433" fg:w="547"/><text x="22.4714%" y="591.50"></text></g><g><title>dequeue_task (583 samples, 0.06%)</title><rect x="22.2198%" y="597" width="0.0610%" height="15" fill="rgb(229,5,4)" fg:x="212418" fg:w="583"/><text x="22.4698%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (362 samples, 0.04%)</title><rect x="22.2857%" y="581" width="0.0379%" height="15" fill="rgb(225,176,49)" fg:x="213048" fg:w="362"/><text x="22.5357%" y="591.50"></text></g><g><title>x86_pmu_enable (339 samples, 0.04%)</title><rect x="22.2881%" y="565" width="0.0355%" height="15" fill="rgb(224,221,49)" fg:x="213071" fg:w="339"/><text x="22.5381%" y="575.50"></text></g><g><title>intel_pmu_enable_all (337 samples, 0.04%)</title><rect x="22.2883%" y="549" width="0.0353%" height="15" fill="rgb(253,169,27)" fg:x="213073" fg:w="337"/><text x="22.5383%" y="559.50"></text></g><g><title>native_write_msr (322 samples, 0.03%)</title><rect x="22.2899%" y="533" width="0.0337%" height="15" fill="rgb(211,206,16)" fg:x="213088" fg:w="322"/><text x="22.5399%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (438 samples, 0.05%)</title><rect x="22.2808%" y="597" width="0.0458%" height="15" fill="rgb(244,87,35)" fg:x="213001" fg:w="438"/><text x="22.5308%" y="607.50"></text></g><g><title>pick_next_task_fair (149 samples, 0.02%)</title><rect x="22.3303%" y="581" width="0.0156%" height="15" fill="rgb(246,28,10)" fg:x="213474" fg:w="149"/><text x="22.5803%" y="591.50"></text></g><g><title>pick_next_task (289 samples, 0.03%)</title><rect x="22.3275%" y="597" width="0.0302%" height="15" fill="rgb(229,12,44)" fg:x="213447" fg:w="289"/><text x="22.5775%" y="607.50"></text></g><g><title>prepare_task_switch (134 samples, 0.01%)</title><rect x="22.3585%" y="597" width="0.0140%" height="15" fill="rgb(210,145,37)" fg:x="213744" fg:w="134"/><text x="22.6085%" y="607.50"></text></g><g><title>__perf_event_task_sched_out (97 samples, 0.01%)</title><rect x="22.3624%" y="581" width="0.0101%" height="15" fill="rgb(227,112,52)" fg:x="213781" fg:w="97"/><text x="22.6124%" y="591.50"></text></g><g><title>psi_group_change (297 samples, 0.03%)</title><rect x="22.3828%" y="581" width="0.0311%" height="15" fill="rgb(238,155,34)" fg:x="213976" fg:w="297"/><text x="22.6328%" y="591.50"></text></g><g><title>psi_task_switch (405 samples, 0.04%)</title><rect x="22.3738%" y="597" width="0.0424%" height="15" fill="rgb(239,226,36)" fg:x="213890" fg:w="405"/><text x="22.6238%" y="607.50"></text></g><g><title>__schedule (2,114 samples, 0.22%)</title><rect x="22.2074%" y="613" width="0.2211%" height="15" fill="rgb(230,16,23)" fg:x="212299" fg:w="2114"/><text x="22.4574%" y="623.50"></text></g><g><title>schedule (2,151 samples, 0.23%)</title><rect x="22.2055%" y="629" width="0.2250%" height="15" fill="rgb(236,171,36)" fg:x="212281" fg:w="2151"/><text x="22.4555%" y="639.50"></text></g><g><title>rwsem_down_read_slowpath (2,345 samples, 0.25%)</title><rect x="22.1881%" y="645" width="0.2453%" height="15" fill="rgb(221,22,14)" fg:x="212115" fg:w="2345"/><text x="22.4381%" y="655.50"></text></g><g><title>down_read (2,637 samples, 0.28%)</title><rect x="22.1578%" y="661" width="0.2758%" height="15" fill="rgb(242,43,11)" fg:x="211825" fg:w="2637"/><text x="22.4078%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (2,687 samples, 0.28%)</title><rect x="22.1533%" y="677" width="0.2811%" height="15" fill="rgb(232,69,23)" fg:x="211782" fg:w="2687"/><text x="22.4033%" y="687.50"></text></g><g><title>btrfs_tree_read_lock (2,699 samples, 0.28%)</title><rect x="22.1528%" y="693" width="0.2823%" height="15" fill="rgb(216,180,54)" fg:x="211777" fg:w="2699"/><text x="22.4028%" y="703.50"></text></g><g><title>select_task_rq_fair (146 samples, 0.02%)</title><rect x="22.4705%" y="613" width="0.0153%" height="15" fill="rgb(216,5,24)" fg:x="214814" fg:w="146"/><text x="22.7205%" y="623.50"></text></g><g><title>try_to_wake_up (473 samples, 0.05%)</title><rect x="22.4554%" y="629" width="0.0495%" height="15" fill="rgb(225,89,9)" fg:x="214670" fg:w="473"/><text x="22.7054%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (643 samples, 0.07%)</title><rect x="22.4377%" y="661" width="0.0673%" height="15" fill="rgb(243,75,33)" fg:x="214501" fg:w="643"/><text x="22.6877%" y="671.50"></text></g><g><title>wake_up_q (503 samples, 0.05%)</title><rect x="22.4524%" y="645" width="0.0526%" height="15" fill="rgb(247,141,45)" fg:x="214641" fg:w="503"/><text x="22.7024%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (669 samples, 0.07%)</title><rect x="22.4351%" y="693" width="0.0700%" height="15" fill="rgb(232,177,36)" fg:x="214476" fg:w="669"/><text x="22.6851%" y="703.50"></text></g><g><title>up_read (655 samples, 0.07%)</title><rect x="22.4366%" y="677" width="0.0685%" height="15" fill="rgb(219,125,36)" fg:x="214490" fg:w="655"/><text x="22.6866%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (187 samples, 0.02%)</title><rect x="22.5306%" y="677" width="0.0196%" height="15" fill="rgb(227,94,9)" fg:x="215389" fg:w="187"/><text x="22.7806%" y="687.50"></text></g><g><title>verify_parent_transid (157 samples, 0.02%)</title><rect x="22.5337%" y="661" width="0.0164%" height="15" fill="rgb(240,34,52)" fg:x="215419" fg:w="157"/><text x="22.7837%" y="671.50"></text></g><g><title>btrfs_get_64 (190 samples, 0.02%)</title><rect x="22.5502%" y="677" width="0.0199%" height="15" fill="rgb(216,45,12)" fg:x="215576" fg:w="190"/><text x="22.8002%" y="687.50"></text></g><g><title>btrfs_node_key (290 samples, 0.03%)</title><rect x="22.5700%" y="677" width="0.0303%" height="15" fill="rgb(246,21,19)" fg:x="215766" fg:w="290"/><text x="22.8200%" y="687.50"></text></g><g><title>read_extent_buffer (281 samples, 0.03%)</title><rect x="22.5710%" y="661" width="0.0294%" height="15" fill="rgb(213,98,42)" fg:x="215775" fg:w="281"/><text x="22.8210%" y="671.50"></text></g><g><title>__radix_tree_lookup (854 samples, 0.09%)</title><rect x="22.6850%" y="629" width="0.0893%" height="15" fill="rgb(250,136,47)" fg:x="216865" fg:w="854"/><text x="22.9350%" y="639.50"></text></g><g><title>radix_tree_lookup (856 samples, 0.09%)</title><rect x="22.6850%" y="645" width="0.0895%" height="15" fill="rgb(251,124,27)" fg:x="216865" fg:w="856"/><text x="22.9350%" y="655.50"></text></g><g><title>find_extent_buffer_nolock (1,393 samples, 0.15%)</title><rect x="22.6290%" y="661" width="0.1457%" height="15" fill="rgb(229,180,14)" fg:x="216330" fg:w="1393"/><text x="22.8790%" y="671.50"></text></g><g><title>mark_page_accessed (391 samples, 0.04%)</title><rect x="22.7748%" y="661" width="0.0409%" height="15" fill="rgb(245,216,25)" fg:x="217723" fg:w="391"/><text x="23.0248%" y="671.50"></text></g><g><title>find_extent_buffer (1,944 samples, 0.20%)</title><rect x="22.6145%" y="677" width="0.2034%" height="15" fill="rgb(251,43,5)" fg:x="216191" fg:w="1944"/><text x="22.8645%" y="687.50"></text></g><g><title>read_block_for_search (2,997 samples, 0.31%)</title><rect x="22.5122%" y="693" width="0.3135%" height="15" fill="rgb(250,128,24)" fg:x="215213" fg:w="2997"/><text x="22.7622%" y="703.50"></text></g><g><title>unlock_up (234 samples, 0.02%)</title><rect x="22.8257%" y="693" width="0.0245%" height="15" fill="rgb(217,117,27)" fg:x="218210" fg:w="234"/><text x="23.0757%" y="703.50"></text></g><g><title>btrfs_search_slot (12,157 samples, 1.27%)</title><rect x="21.6012%" y="709" width="1.2717%" height="15" fill="rgb(245,147,4)" fg:x="206504" fg:w="12157"/><text x="21.8512%" y="719.50"></text></g><g><title>up_read (217 samples, 0.02%)</title><rect x="22.8502%" y="693" width="0.0227%" height="15" fill="rgb(242,201,35)" fg:x="218444" fg:w="217"/><text x="23.1002%" y="703.50"></text></g><g><title>crc32c (167 samples, 0.02%)</title><rect x="22.8827%" y="709" width="0.0175%" height="15" fill="rgb(218,181,1)" fg:x="218755" fg:w="167"/><text x="23.1327%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (12,749 samples, 1.33%)</title><rect x="21.5805%" y="725" width="1.3336%" height="15" fill="rgb(222,6,29)" fg:x="206306" fg:w="12749"/><text x="21.8305%" y="735.50"></text></g><g><title>btrfs_lookup_dentry (14,103 samples, 1.48%)</title><rect x="21.4508%" y="741" width="1.4752%" height="15" fill="rgb(208,186,3)" fg:x="205066" fg:w="14103"/><text x="21.7008%" y="751.50"></text></g><g><title>__d_add (134 samples, 0.01%)</title><rect x="22.9365%" y="725" width="0.0140%" height="15" fill="rgb(216,36,26)" fg:x="219269" fg:w="134"/><text x="23.1865%" y="735.50"></text></g><g><title>__d_rehash (119 samples, 0.01%)</title><rect x="22.9380%" y="709" width="0.0124%" height="15" fill="rgb(248,201,23)" fg:x="219284" fg:w="119"/><text x="23.1880%" y="719.50"></text></g><g><title>btrfs_lookup (14,520 samples, 1.52%)</title><rect x="21.4395%" y="757" width="1.5189%" height="15" fill="rgb(251,170,31)" fg:x="204958" fg:w="14520"/><text x="21.6895%" y="767.50"></text></g><g><title>d_splice_alias (258 samples, 0.03%)</title><rect x="22.9313%" y="741" width="0.0270%" height="15" fill="rgb(207,110,25)" fg:x="219220" fg:w="258"/><text x="23.1813%" y="751.50"></text></g><g><title>get_obj_cgroup_from_current (216 samples, 0.02%)</title><rect x="23.0094%" y="709" width="0.0226%" height="15" fill="rgb(250,54,15)" fg:x="219966" fg:w="216"/><text x="23.2594%" y="719.50"></text></g><g><title>memcg_slab_post_alloc_hook (231 samples, 0.02%)</title><rect x="23.0321%" y="709" width="0.0242%" height="15" fill="rgb(227,68,33)" fg:x="220183" fg:w="231"/><text x="23.2821%" y="719.50"></text></g><g><title>obj_cgroup_charge (140 samples, 0.01%)</title><rect x="23.0569%" y="709" width="0.0146%" height="15" fill="rgb(238,34,41)" fg:x="220420" fg:w="140"/><text x="23.3069%" y="719.50"></text></g><g><title>kmem_cache_alloc (830 samples, 0.09%)</title><rect x="22.9872%" y="725" width="0.0868%" height="15" fill="rgb(220,11,15)" fg:x="219754" fg:w="830"/><text x="23.2372%" y="735.50"></text></g><g><title>__d_alloc (1,076 samples, 0.11%)</title><rect x="22.9677%" y="741" width="0.1126%" height="15" fill="rgb(246,111,35)" fg:x="219568" fg:w="1076"/><text x="23.2177%" y="751.50"></text></g><g><title>d_alloc (1,180 samples, 0.12%)</title><rect x="22.9642%" y="757" width="0.1234%" height="15" fill="rgb(209,88,53)" fg:x="219534" fg:w="1180"/><text x="23.2142%" y="767.50"></text></g><g><title>__d_lookup (300 samples, 0.03%)</title><rect x="23.0987%" y="725" width="0.0314%" height="15" fill="rgb(231,185,47)" fg:x="220820" fg:w="300"/><text x="23.3487%" y="735.50"></text></g><g><title>__lookup_hash (16,250 samples, 1.70%)</title><rect x="21.4304%" y="773" width="1.6998%" height="15" fill="rgb(233,154,1)" fg:x="204871" fg:w="16250"/><text x="21.6804%" y="783.50"></text></g><g><title>lookup_dcache (356 samples, 0.04%)</title><rect x="23.0930%" y="757" width="0.0372%" height="15" fill="rgb(225,15,46)" fg:x="220765" fg:w="356"/><text x="23.3430%" y="767.50"></text></g><g><title>d_lookup (311 samples, 0.03%)</title><rect x="23.0977%" y="741" width="0.0325%" height="15" fill="rgb(211,135,41)" fg:x="220810" fg:w="311"/><text x="23.3477%" y="751.50"></text></g><g><title>__legitimize_path (129 samples, 0.01%)</title><rect x="23.1860%" y="709" width="0.0135%" height="15" fill="rgb(208,54,0)" fg:x="221654" fg:w="129"/><text x="23.4360%" y="719.50"></text></g><g><title>complete_walk (374 samples, 0.04%)</title><rect x="23.1622%" y="741" width="0.0391%" height="15" fill="rgb(244,136,14)" fg:x="221427" fg:w="374"/><text x="23.4122%" y="751.50"></text></g><g><title>try_to_unlazy (225 samples, 0.02%)</title><rect x="23.1778%" y="725" width="0.0235%" height="15" fill="rgb(241,56,14)" fg:x="221576" fg:w="225"/><text x="23.4278%" y="735.50"></text></g><g><title>btrfs_permission (171 samples, 0.02%)</title><rect x="23.3228%" y="725" width="0.0179%" height="15" fill="rgb(205,80,24)" fg:x="222962" fg:w="171"/><text x="23.5728%" y="735.50"></text></g><g><title>generic_permission (251 samples, 0.03%)</title><rect x="23.4769%" y="693" width="0.0263%" height="15" fill="rgb(220,57,4)" fg:x="224435" fg:w="251"/><text x="23.7269%" y="703.50"></text></g><g><title>btrfs_permission (273 samples, 0.03%)</title><rect x="23.4748%" y="709" width="0.0286%" height="15" fill="rgb(226,193,50)" fg:x="224415" fg:w="273"/><text x="23.7248%" y="719.50"></text></g><g><title>generic_permission (142 samples, 0.01%)</title><rect x="23.5033%" y="709" width="0.0149%" height="15" fill="rgb(231,168,22)" fg:x="224688" fg:w="142"/><text x="23.7533%" y="719.50"></text></g><g><title>inode_permission (1,824 samples, 0.19%)</title><rect x="23.3419%" y="725" width="0.1908%" height="15" fill="rgb(254,215,14)" fg:x="223145" fg:w="1824"/><text x="23.5919%" y="735.50"></text></g><g><title>security_inode_permission (128 samples, 0.01%)</title><rect x="23.5193%" y="709" width="0.0134%" height="15" fill="rgb(211,115,16)" fg:x="224841" fg:w="128"/><text x="23.7693%" y="719.50"></text></g><g><title>__d_lookup_rcu (2,552 samples, 0.27%)</title><rect x="23.6163%" y="693" width="0.2670%" height="15" fill="rgb(236,210,16)" fg:x="225768" fg:w="2552"/><text x="23.8663%" y="703.50"></text></g><g><title>lookup_fast (2,835 samples, 0.30%)</title><rect x="23.5874%" y="709" width="0.2966%" height="15" fill="rgb(221,94,12)" fg:x="225492" fg:w="2835"/><text x="23.8374%" y="719.50"></text></g><g><title>__lookup_mnt (155 samples, 0.02%)</title><rect x="23.9242%" y="693" width="0.0162%" height="15" fill="rgb(235,218,49)" fg:x="228712" fg:w="155"/><text x="24.1742%" y="703.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (7,015 samples, 0.73%)</title><rect x="23.2071%" y="741" width="0.7338%" height="15" fill="rgb(217,114,14)" fg:x="221856" fg:w="7015"/><text x="23.4571%" y="751.50"></text></g><g><title>walk_component (3,743 samples, 0.39%)</title><rect x="23.5493%" y="725" width="0.3915%" height="15" fill="rgb(216,145,22)" fg:x="225128" fg:w="3743"/><text x="23.7993%" y="735.50"></text></g><g><title>step_into (544 samples, 0.06%)</title><rect x="23.8840%" y="709" width="0.0569%" height="15" fill="rgb(217,112,39)" fg:x="228327" fg:w="544"/><text x="24.1340%" y="719.50"></text></g><g><title>nd_jump_root (160 samples, 0.02%)</title><rect x="23.9552%" y="725" width="0.0167%" height="15" fill="rgb(225,85,32)" fg:x="229008" fg:w="160"/><text x="24.2052%" y="735.50"></text></g><g><title>set_root (140 samples, 0.01%)</title><rect x="23.9573%" y="709" width="0.0146%" height="15" fill="rgb(245,209,47)" fg:x="229028" fg:w="140"/><text x="24.2073%" y="719.50"></text></g><g><title>path_init (297 samples, 0.03%)</title><rect x="23.9464%" y="741" width="0.0311%" height="15" fill="rgb(218,220,15)" fg:x="228924" fg:w="297"/><text x="24.1964%" y="751.50"></text></g><g><title>terminate_walk (110 samples, 0.01%)</title><rect x="23.9775%" y="741" width="0.0115%" height="15" fill="rgb(222,202,31)" fg:x="229221" fg:w="110"/><text x="24.2275%" y="751.50"></text></g><g><title>path_parentat (8,042 samples, 0.84%)</title><rect x="23.1595%" y="757" width="0.8412%" height="15" fill="rgb(243,203,4)" fg:x="221401" fg:w="8042"/><text x="23.4095%" y="767.50"></text></g><g><title>filename_parentat (8,266 samples, 0.86%)</title><rect x="23.1391%" y="773" width="0.8647%" height="15" fill="rgb(237,92,17)" fg:x="221206" fg:w="8266"/><text x="23.3891%" y="783.50"></text></g><g><title>mnt_want_write (154 samples, 0.02%)</title><rect x="24.0054%" y="773" width="0.0161%" height="15" fill="rgb(231,119,7)" fg:x="229488" fg:w="154"/><text x="24.2554%" y="783.50"></text></g><g><title>filename_create (24,879 samples, 2.60%)</title><rect x="21.4198%" y="789" width="2.6024%" height="15" fill="rgb(237,82,41)" fg:x="204770" fg:w="24879"/><text x="21.6698%" y="799.50">fi..</text></g><g><title>hook_path_symlink (144 samples, 0.02%)</title><rect x="24.0267%" y="789" width="0.0151%" height="15" fill="rgb(226,81,48)" fg:x="229691" fg:w="144"/><text x="24.2767%" y="799.50"></text></g><g><title>kmem_cache_free (436 samples, 0.05%)</title><rect x="24.0643%" y="773" width="0.0456%" height="15" fill="rgb(234,70,51)" fg:x="230051" fg:w="436"/><text x="24.3143%" y="783.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (129 samples, 0.01%)</title><rect x="24.0964%" y="757" width="0.0135%" height="15" fill="rgb(251,86,4)" fg:x="230358" fg:w="129"/><text x="24.3464%" y="767.50"></text></g><g><title>putname (546 samples, 0.06%)</title><rect x="24.0539%" y="789" width="0.0571%" height="15" fill="rgb(244,144,28)" fg:x="229951" fg:w="546"/><text x="24.3039%" y="799.50"></text></g><g><title>security_path_symlink (137 samples, 0.01%)</title><rect x="24.1153%" y="789" width="0.0143%" height="15" fill="rgb(232,161,39)" fg:x="230538" fg:w="137"/><text x="24.3653%" y="799.50"></text></g><g><title>apparmor_path_symlink (100 samples, 0.01%)</title><rect x="24.1191%" y="773" width="0.0105%" height="15" fill="rgb(247,34,51)" fg:x="230575" fg:w="100"/><text x="24.3691%" y="783.50"></text></g><g><title>_raw_spin_lock (150 samples, 0.02%)</title><rect x="24.2277%" y="757" width="0.0157%" height="15" fill="rgb(225,132,2)" fg:x="231613" fg:w="150"/><text x="24.4777%" y="767.50"></text></g><g><title>kmem_cache_alloc (120 samples, 0.01%)</title><rect x="24.2997%" y="709" width="0.0126%" height="15" fill="rgb(209,159,44)" fg:x="232301" fg:w="120"/><text x="24.5497%" y="719.50"></text></g><g><title>btrfs_alloc_path (197 samples, 0.02%)</title><rect x="24.2984%" y="725" width="0.0206%" height="15" fill="rgb(251,214,1)" fg:x="232289" fg:w="197"/><text x="24.5484%" y="735.50"></text></g><g><title>kmem_cache_free (207 samples, 0.02%)</title><rect x="24.3256%" y="709" width="0.0217%" height="15" fill="rgb(247,84,47)" fg:x="232549" fg:w="207"/><text x="24.5756%" y="719.50"></text></g><g><title>btrfs_free_path (264 samples, 0.03%)</title><rect x="24.3203%" y="725" width="0.0276%" height="15" fill="rgb(240,111,43)" fg:x="232498" fg:w="264"/><text x="24.5703%" y="735.50"></text></g><g><title>__btrfs_add_delayed_item (459 samples, 0.05%)</title><rect x="24.3622%" y="709" width="0.0480%" height="15" fill="rgb(215,214,35)" fg:x="232899" fg:w="459"/><text x="24.6122%" y="719.50"></text></g><g><title>btrfs_comp_cpu_keys (261 samples, 0.03%)</title><rect x="24.3829%" y="693" width="0.0273%" height="15" fill="rgb(248,207,23)" fg:x="233097" fg:w="261"/><text x="24.6329%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (147 samples, 0.02%)</title><rect x="24.4102%" y="709" width="0.0154%" height="15" fill="rgb(214,186,4)" fg:x="233358" fg:w="147"/><text x="24.6602%" y="719.50"></text></g><g><title>___slab_alloc (97 samples, 0.01%)</title><rect x="24.4577%" y="677" width="0.0101%" height="15" fill="rgb(220,133,22)" fg:x="233812" fg:w="97"/><text x="24.7077%" y="687.50"></text></g><g><title>__kmalloc (447 samples, 0.05%)</title><rect x="24.4356%" y="693" width="0.0468%" height="15" fill="rgb(239,134,19)" fg:x="233600" fg:w="447"/><text x="24.6856%" y="703.50"></text></g><g><title>btrfs_alloc_delayed_item (554 samples, 0.06%)</title><rect x="24.4311%" y="709" width="0.0580%" height="15" fill="rgb(250,140,9)" fg:x="233557" fg:w="554"/><text x="24.6811%" y="719.50"></text></g><g><title>_raw_spin_lock (182 samples, 0.02%)</title><rect x="24.4952%" y="693" width="0.0190%" height="15" fill="rgb(225,59,14)" fg:x="234170" fg:w="182"/><text x="24.7452%" y="703.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (241 samples, 0.03%)</title><rect x="24.4924%" y="709" width="0.0252%" height="15" fill="rgb(214,152,51)" fg:x="234143" fg:w="241"/><text x="24.7424%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (198 samples, 0.02%)</title><rect x="24.5183%" y="709" width="0.0207%" height="15" fill="rgb(251,227,43)" fg:x="234391" fg:w="198"/><text x="24.7683%" y="719.50"></text></g><g><title>btrfs_get_delayed_node (142 samples, 0.01%)</title><rect x="24.5242%" y="693" width="0.0149%" height="15" fill="rgb(241,96,17)" fg:x="234447" fg:w="142"/><text x="24.7742%" y="703.50"></text></g><g><title>mutex_spin_on_owner (111 samples, 0.01%)</title><rect x="24.5483%" y="661" width="0.0116%" height="15" fill="rgb(234,198,43)" fg:x="234678" fg:w="111"/><text x="24.7983%" y="671.50"></text></g><g><title>__schedule (109 samples, 0.01%)</title><rect x="24.5599%" y="629" width="0.0114%" height="15" fill="rgb(220,108,29)" fg:x="234789" fg:w="109"/><text x="24.8099%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (237 samples, 0.02%)</title><rect x="24.5466%" y="677" width="0.0248%" height="15" fill="rgb(226,163,33)" fg:x="234662" fg:w="237"/><text x="24.7966%" y="687.50"></text></g><g><title>schedule_preempt_disabled (110 samples, 0.01%)</title><rect x="24.5599%" y="661" width="0.0115%" height="15" fill="rgb(205,194,45)" fg:x="234789" fg:w="110"/><text x="24.8099%" y="671.50"></text></g><g><title>schedule (110 samples, 0.01%)</title><rect x="24.5599%" y="645" width="0.0115%" height="15" fill="rgb(206,143,44)" fg:x="234789" fg:w="110"/><text x="24.8099%" y="655.50"></text></g><g><title>__mutex_lock_slowpath (239 samples, 0.03%)</title><rect x="24.5466%" y="693" width="0.0250%" height="15" fill="rgb(236,136,36)" fg:x="234662" fg:w="239"/><text x="24.7966%" y="703.50"></text></g><g><title>mutex_lock (316 samples, 0.03%)</title><rect x="24.5390%" y="709" width="0.0331%" height="15" fill="rgb(249,172,42)" fg:x="234589" fg:w="316"/><text x="24.7890%" y="719.50"></text></g><g><title>mutex_unlock (99 samples, 0.01%)</title><rect x="24.5721%" y="709" width="0.0104%" height="15" fill="rgb(216,139,23)" fg:x="234905" fg:w="99"/><text x="24.8221%" y="719.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,339 samples, 0.24%)</title><rect x="24.3507%" y="725" width="0.2447%" height="15" fill="rgb(207,166,20)" fg:x="232789" fg:w="2339"/><text x="24.6007%" y="735.50"></text></g><g><title>rb_insert_color (124 samples, 0.01%)</title><rect x="24.5824%" y="709" width="0.0130%" height="15" fill="rgb(210,209,22)" fg:x="235004" fg:w="124"/><text x="24.8324%" y="719.50"></text></g><g><title>_raw_spin_lock (148 samples, 0.02%)</title><rect x="24.6186%" y="693" width="0.0155%" height="15" fill="rgb(232,118,20)" fg:x="235350" fg:w="148"/><text x="24.8686%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (380 samples, 0.04%)</title><rect x="24.6341%" y="693" width="0.0397%" height="15" fill="rgb(238,113,42)" fg:x="235498" fg:w="380"/><text x="24.8841%" y="703.50"></text></g><g><title>release_extent_buffer (118 samples, 0.01%)</title><rect x="24.6615%" y="677" width="0.0123%" height="15" fill="rgb(231,42,5)" fg:x="235760" fg:w="118"/><text x="24.9115%" y="687.50"></text></g><g><title>free_extent_buffer (537 samples, 0.06%)</title><rect x="24.6186%" y="709" width="0.0562%" height="15" fill="rgb(243,166,24)" fg:x="235350" fg:w="537"/><text x="24.8686%" y="719.50"></text></g><g><title>btrfs_release_path (688 samples, 0.07%)</title><rect x="24.6065%" y="725" width="0.0720%" height="15" fill="rgb(237,226,12)" fg:x="235234" fg:w="688"/><text x="24.8565%" y="735.50"></text></g><g><title>crc32c (140 samples, 0.01%)</title><rect x="24.6940%" y="725" width="0.0146%" height="15" fill="rgb(229,133,24)" fg:x="236071" fg:w="140"/><text x="24.9440%" y="735.50"></text></g><g><title>btrfs_get_32 (108 samples, 0.01%)</title><rect x="24.7259%" y="709" width="0.0113%" height="15" fill="rgb(238,33,43)" fg:x="236376" fg:w="108"/><text x="24.9759%" y="719.50"></text></g><g><title>btrfs_get_token_32 (386 samples, 0.04%)</title><rect x="24.7476%" y="693" width="0.0404%" height="15" fill="rgb(227,59,38)" fg:x="236583" fg:w="386"/><text x="24.9976%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (1,342 samples, 0.14%)</title><rect x="24.8606%" y="661" width="0.1404%" height="15" fill="rgb(230,97,0)" fg:x="237663" fg:w="1342"/><text x="25.1106%" y="671.50"></text></g><g><title>btrfs_bin_search (1,382 samples, 0.14%)</title><rect x="24.8565%" y="677" width="0.1446%" height="15" fill="rgb(250,173,50)" fg:x="237624" fg:w="1382"/><text x="25.1065%" y="687.50"></text></g><g><title>btrfs_get_32 (137 samples, 0.01%)</title><rect x="25.0143%" y="645" width="0.0143%" height="15" fill="rgb(240,15,50)" fg:x="239133" fg:w="137"/><text x="25.2643%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (225 samples, 0.02%)</title><rect x="25.0064%" y="677" width="0.0235%" height="15" fill="rgb(221,93,22)" fg:x="239057" fg:w="225"/><text x="25.2564%" y="687.50"></text></g><g><title>leaf_space_used (187 samples, 0.02%)</title><rect x="25.0104%" y="661" width="0.0196%" height="15" fill="rgb(245,180,53)" fg:x="239095" fg:w="187"/><text x="25.2604%" y="671.50"></text></g><g><title>update_curr (105 samples, 0.01%)</title><rect x="25.0874%" y="533" width="0.0110%" height="15" fill="rgb(231,88,51)" fg:x="239832" fg:w="105"/><text x="25.3374%" y="543.50"></text></g><g><title>dequeue_entity (288 samples, 0.03%)</title><rect x="25.0782%" y="549" width="0.0301%" height="15" fill="rgb(240,58,21)" fg:x="239744" fg:w="288"/><text x="25.3282%" y="559.50"></text></g><g><title>dequeue_task_fair (387 samples, 0.04%)</title><rect x="25.0743%" y="565" width="0.0405%" height="15" fill="rgb(237,21,10)" fg:x="239706" fg:w="387"/><text x="25.3243%" y="575.50"></text></g><g><title>dequeue_task (413 samples, 0.04%)</title><rect x="25.0735%" y="581" width="0.0432%" height="15" fill="rgb(218,43,11)" fg:x="239699" fg:w="413"/><text x="25.3235%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (439 samples, 0.05%)</title><rect x="25.1207%" y="565" width="0.0459%" height="15" fill="rgb(218,221,29)" fg:x="240150" fg:w="439"/><text x="25.3707%" y="575.50"></text></g><g><title>x86_pmu_enable (419 samples, 0.04%)</title><rect x="25.1228%" y="549" width="0.0438%" height="15" fill="rgb(214,118,42)" fg:x="240170" fg:w="419"/><text x="25.3728%" y="559.50"></text></g><g><title>intel_pmu_enable_all (417 samples, 0.04%)</title><rect x="25.1230%" y="533" width="0.0436%" height="15" fill="rgb(251,200,26)" fg:x="240172" fg:w="417"/><text x="25.3730%" y="543.50"></text></g><g><title>native_write_msr (410 samples, 0.04%)</title><rect x="25.1237%" y="517" width="0.0429%" height="15" fill="rgb(237,101,39)" fg:x="240179" fg:w="410"/><text x="25.3737%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (509 samples, 0.05%)</title><rect x="25.1167%" y="581" width="0.0532%" height="15" fill="rgb(251,117,11)" fg:x="240112" fg:w="509"/><text x="25.3667%" y="591.50"></text></g><g><title>pick_next_task_fair (107 samples, 0.01%)</title><rect x="25.1714%" y="565" width="0.0112%" height="15" fill="rgb(216,223,23)" fg:x="240635" fg:w="107"/><text x="25.4214%" y="575.50"></text></g><g><title>pick_next_task (220 samples, 0.02%)</title><rect x="25.1703%" y="581" width="0.0230%" height="15" fill="rgb(251,54,12)" fg:x="240624" fg:w="220"/><text x="25.4203%" y="591.50"></text></g><g><title>__perf_event_task_sched_out (113 samples, 0.01%)</title><rect x="25.1963%" y="565" width="0.0118%" height="15" fill="rgb(254,176,54)" fg:x="240873" fg:w="113"/><text x="25.4463%" y="575.50"></text></g><g><title>prepare_task_switch (133 samples, 0.01%)</title><rect x="25.1944%" y="581" width="0.0139%" height="15" fill="rgb(210,32,8)" fg:x="240854" fg:w="133"/><text x="25.4444%" y="591.50"></text></g><g><title>psi_group_change (233 samples, 0.02%)</title><rect x="25.2165%" y="565" width="0.0244%" height="15" fill="rgb(235,52,38)" fg:x="241066" fg:w="233"/><text x="25.4665%" y="575.50"></text></g><g><title>psi_task_switch (323 samples, 0.03%)</title><rect x="25.2094%" y="581" width="0.0338%" height="15" fill="rgb(231,4,44)" fg:x="240998" fg:w="323"/><text x="25.4594%" y="591.50"></text></g><g><title>__schedule (1,778 samples, 0.19%)</title><rect x="25.0643%" y="597" width="0.1860%" height="15" fill="rgb(249,2,32)" fg:x="239611" fg:w="1778"/><text x="25.3143%" y="607.50"></text></g><g><title>schedule (1,799 samples, 0.19%)</title><rect x="25.0634%" y="613" width="0.1882%" height="15" fill="rgb(224,65,26)" fg:x="239602" fg:w="1799"/><text x="25.3134%" y="623.50"></text></g><g><title>rwsem_down_read_slowpath (1,996 samples, 0.21%)</title><rect x="25.0457%" y="629" width="0.2088%" height="15" fill="rgb(250,73,40)" fg:x="239433" fg:w="1996"/><text x="25.2957%" y="639.50"></text></g><g><title>down_read (2,090 samples, 0.22%)</title><rect x="25.0361%" y="645" width="0.2186%" height="15" fill="rgb(253,177,16)" fg:x="239341" fg:w="2090"/><text x="25.2861%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (2,116 samples, 0.22%)</title><rect x="25.0336%" y="661" width="0.2213%" height="15" fill="rgb(217,32,34)" fg:x="239317" fg:w="2116"/><text x="25.2836%" y="671.50"></text></g><g><title>btrfs_root_node (111 samples, 0.01%)</title><rect x="25.2550%" y="661" width="0.0116%" height="15" fill="rgb(212,7,10)" fg:x="241434" fg:w="111"/><text x="25.5050%" y="671.50"></text></g><g><title>btrfs_read_lock_root_node (2,255 samples, 0.24%)</title><rect x="25.0313%" y="677" width="0.2359%" height="15" fill="rgb(245,89,8)" fg:x="239295" fg:w="2255"/><text x="25.2813%" y="687.50"></text></g><g><title>osq_lock (1,352 samples, 0.14%)</title><rect x="25.4116%" y="597" width="0.1414%" height="15" fill="rgb(237,16,53)" fg:x="242931" fg:w="1352"/><text x="25.6616%" y="607.50"></text></g><g><title>rwsem_spin_on_owner (1,450 samples, 0.15%)</title><rect x="25.5571%" y="597" width="0.1517%" height="15" fill="rgb(250,204,30)" fg:x="244322" fg:w="1450"/><text x="25.8071%" y="607.50"></text></g><g><title>rwsem_optimistic_spin (3,896 samples, 0.41%)</title><rect x="25.3036%" y="613" width="0.4075%" height="15" fill="rgb(208,77,27)" fg:x="241898" fg:w="3896"/><text x="25.5536%" y="623.50"></text></g><g><title>dequeue_entity (96 samples, 0.01%)</title><rect x="25.7200%" y="549" width="0.0100%" height="15" fill="rgb(250,204,28)" fg:x="245879" fg:w="96"/><text x="25.9700%" y="559.50"></text></g><g><title>dequeue_task_fair (140 samples, 0.01%)</title><rect x="25.7180%" y="565" width="0.0146%" height="15" fill="rgb(244,63,21)" fg:x="245860" fg:w="140"/><text x="25.9680%" y="575.50"></text></g><g><title>dequeue_task (154 samples, 0.02%)</title><rect x="25.7170%" y="581" width="0.0161%" height="15" fill="rgb(236,85,44)" fg:x="245850" fg:w="154"/><text x="25.9670%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (174 samples, 0.02%)</title><rect x="25.7354%" y="565" width="0.0182%" height="15" fill="rgb(215,98,4)" fg:x="246026" fg:w="174"/><text x="25.9854%" y="575.50"></text></g><g><title>x86_pmu_enable (171 samples, 0.02%)</title><rect x="25.7357%" y="549" width="0.0179%" height="15" fill="rgb(235,38,11)" fg:x="246029" fg:w="171"/><text x="25.9857%" y="559.50"></text></g><g><title>intel_pmu_enable_all (170 samples, 0.02%)</title><rect x="25.7358%" y="533" width="0.0178%" height="15" fill="rgb(254,186,25)" fg:x="246030" fg:w="170"/><text x="25.9858%" y="543.50"></text></g><g><title>native_write_msr (167 samples, 0.02%)</title><rect x="25.7361%" y="517" width="0.0175%" height="15" fill="rgb(225,55,31)" fg:x="246033" fg:w="167"/><text x="25.9861%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (205 samples, 0.02%)</title><rect x="25.7333%" y="581" width="0.0214%" height="15" fill="rgb(211,15,21)" fg:x="246006" fg:w="205"/><text x="25.9833%" y="591.50"></text></g><g><title>psi_task_switch (130 samples, 0.01%)</title><rect x="25.7672%" y="581" width="0.0136%" height="15" fill="rgb(215,187,41)" fg:x="246330" fg:w="130"/><text x="26.0172%" y="591.50"></text></g><g><title>__schedule (667 samples, 0.07%)</title><rect x="25.7129%" y="597" width="0.0698%" height="15" fill="rgb(248,69,32)" fg:x="245811" fg:w="667"/><text x="25.9629%" y="607.50"></text></g><g><title>schedule (676 samples, 0.07%)</title><rect x="25.7123%" y="613" width="0.0707%" height="15" fill="rgb(252,102,52)" fg:x="245805" fg:w="676"/><text x="25.9623%" y="623.50"></text></g><g><title>rwsem_down_write_slowpath (4,685 samples, 0.49%)</title><rect x="25.2930%" y="629" width="0.4901%" height="15" fill="rgb(253,140,32)" fg:x="241797" fg:w="4685"/><text x="25.5430%" y="639.50"></text></g><g><title>down_write (4,883 samples, 0.51%)</title><rect x="25.2727%" y="645" width="0.5108%" height="15" fill="rgb(216,56,42)" fg:x="241603" fg:w="4883"/><text x="25.5227%" y="655.50"></text></g><g><title>__btrfs_tree_lock (4,927 samples, 0.52%)</title><rect x="25.2686%" y="661" width="0.5154%" height="15" fill="rgb(216,184,14)" fg:x="241564" fg:w="4927"/><text x="25.5186%" y="671.50"></text></g><g><title>btrfs_tree_lock (4,939 samples, 0.52%)</title><rect x="25.2686%" y="677" width="0.5166%" height="15" fill="rgb(237,187,27)" fg:x="241564" fg:w="4939"/><text x="25.5186%" y="687.50"></text></g><g><title>dequeue_entity (126 samples, 0.01%)</title><rect x="25.8069%" y="549" width="0.0132%" height="15" fill="rgb(219,65,3)" fg:x="246710" fg:w="126"/><text x="26.0569%" y="559.50"></text></g><g><title>dequeue_task_fair (177 samples, 0.02%)</title><rect x="25.8048%" y="565" width="0.0185%" height="15" fill="rgb(245,83,25)" fg:x="246690" fg:w="177"/><text x="26.0548%" y="575.50"></text></g><g><title>dequeue_task (189 samples, 0.02%)</title><rect x="25.8045%" y="581" width="0.0198%" height="15" fill="rgb(214,205,45)" fg:x="246687" fg:w="189"/><text x="26.0545%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.01%)</title><rect x="25.8277%" y="565" width="0.0105%" height="15" fill="rgb(241,20,18)" fg:x="246909" fg:w="100"/><text x="26.0777%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (146 samples, 0.02%)</title><rect x="25.8244%" y="581" width="0.0153%" height="15" fill="rgb(232,163,23)" fg:x="246877" fg:w="146"/><text x="26.0744%" y="591.50"></text></g><g><title>psi_task_switch (135 samples, 0.01%)</title><rect x="25.8538%" y="581" width="0.0141%" height="15" fill="rgb(214,5,46)" fg:x="247158" fg:w="135"/><text x="26.1038%" y="591.50"></text></g><g><title>__schedule (700 samples, 0.07%)</title><rect x="25.8007%" y="597" width="0.0732%" height="15" fill="rgb(229,78,17)" fg:x="246651" fg:w="700"/><text x="26.0507%" y="607.50"></text></g><g><title>schedule (708 samples, 0.07%)</title><rect x="25.8002%" y="613" width="0.0741%" height="15" fill="rgb(248,89,10)" fg:x="246646" fg:w="708"/><text x="26.0502%" y="623.50"></text></g><g><title>down_read (841 samples, 0.09%)</title><rect x="25.7874%" y="645" width="0.0880%" height="15" fill="rgb(248,54,15)" fg:x="246523" fg:w="841"/><text x="26.0374%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (773 samples, 0.08%)</title><rect x="25.7945%" y="629" width="0.0809%" height="15" fill="rgb(223,116,6)" fg:x="246591" fg:w="773"/><text x="26.0445%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (864 samples, 0.09%)</title><rect x="25.7853%" y="661" width="0.0904%" height="15" fill="rgb(205,125,38)" fg:x="246503" fg:w="864"/><text x="26.0353%" y="671.50"></text></g><g><title>btrfs_tree_read_lock (868 samples, 0.09%)</title><rect x="25.7853%" y="677" width="0.0908%" height="15" fill="rgb(251,78,38)" fg:x="246503" fg:w="868"/><text x="26.0353%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (171 samples, 0.02%)</title><rect x="25.8986%" y="661" width="0.0179%" height="15" fill="rgb(253,78,28)" fg:x="247586" fg:w="171"/><text x="26.1486%" y="671.50"></text></g><g><title>verify_parent_transid (144 samples, 0.02%)</title><rect x="25.9014%" y="645" width="0.0151%" height="15" fill="rgb(209,120,3)" fg:x="247613" fg:w="144"/><text x="26.1514%" y="655.50"></text></g><g><title>btrfs_get_64 (191 samples, 0.02%)</title><rect x="25.9164%" y="661" width="0.0200%" height="15" fill="rgb(238,229,9)" fg:x="247757" fg:w="191"/><text x="26.1664%" y="671.50"></text></g><g><title>btrfs_node_key (240 samples, 0.03%)</title><rect x="25.9364%" y="661" width="0.0251%" height="15" fill="rgb(253,159,18)" fg:x="247948" fg:w="240"/><text x="26.1864%" y="671.50"></text></g><g><title>read_extent_buffer (231 samples, 0.02%)</title><rect x="25.9374%" y="645" width="0.0242%" height="15" fill="rgb(244,42,34)" fg:x="247957" fg:w="231"/><text x="26.1874%" y="655.50"></text></g><g><title>__radix_tree_lookup (587 samples, 0.06%)</title><rect x="26.0244%" y="613" width="0.0614%" height="15" fill="rgb(224,8,7)" fg:x="248789" fg:w="587"/><text x="26.2744%" y="623.50"></text></g><g><title>radix_tree_lookup (594 samples, 0.06%)</title><rect x="26.0238%" y="629" width="0.0621%" height="15" fill="rgb(210,201,45)" fg:x="248783" fg:w="594"/><text x="26.2738%" y="639.50"></text></g><g><title>find_extent_buffer_nolock (975 samples, 0.10%)</title><rect x="25.9840%" y="645" width="0.1020%" height="15" fill="rgb(252,185,21)" fg:x="248403" fg:w="975"/><text x="26.2340%" y="655.50"></text></g><g><title>mark_page_accessed (378 samples, 0.04%)</title><rect x="26.0860%" y="645" width="0.0395%" height="15" fill="rgb(223,131,1)" fg:x="249378" fg:w="378"/><text x="26.3360%" y="655.50"></text></g><g><title>find_extent_buffer (1,489 samples, 0.16%)</title><rect x="25.9724%" y="661" width="0.1558%" height="15" fill="rgb(245,141,16)" fg:x="248292" fg:w="1489"/><text x="26.2224%" y="671.50"></text></g><g><title>read_block_for_search (2,391 samples, 0.25%)</title><rect x="25.8831%" y="677" width="0.2501%" height="15" fill="rgb(229,55,45)" fg:x="247438" fg:w="2391"/><text x="26.1331%" y="687.50"></text></g><g><title>btrfs_init_new_buffer (118 samples, 0.01%)</title><rect x="26.1367%" y="645" width="0.0123%" height="15" fill="rgb(208,92,15)" fg:x="249863" fg:w="118"/><text x="26.3867%" y="655.50"></text></g><g><title>btrfs_alloc_tree_block (176 samples, 0.02%)</title><rect x="26.1344%" y="661" width="0.0184%" height="15" fill="rgb(234,185,47)" fg:x="249841" fg:w="176"/><text x="26.3844%" y="671.50"></text></g><g><title>__push_leaf_left (366 samples, 0.04%)</title><rect x="26.1645%" y="645" width="0.0383%" height="15" fill="rgb(253,104,50)" fg:x="250128" fg:w="366"/><text x="26.4145%" y="655.50"></text></g><g><title>push_leaf_left (434 samples, 0.05%)</title><rect x="26.1637%" y="661" width="0.0454%" height="15" fill="rgb(205,70,7)" fg:x="250121" fg:w="434"/><text x="26.4137%" y="671.50"></text></g><g><title>btrfs_get_token_32 (100 samples, 0.01%)</title><rect x="26.2185%" y="629" width="0.0105%" height="15" fill="rgb(240,178,43)" fg:x="250645" fg:w="100"/><text x="26.4685%" y="639.50"></text></g><g><title>btrfs_set_token_32 (102 samples, 0.01%)</title><rect x="26.2297%" y="629" width="0.0107%" height="15" fill="rgb(214,112,2)" fg:x="250752" fg:w="102"/><text x="26.4797%" y="639.50"></text></g><g><title>memmove_extent_buffer (99 samples, 0.01%)</title><rect x="26.2475%" y="629" width="0.0104%" height="15" fill="rgb(206,46,17)" fg:x="250922" fg:w="99"/><text x="26.4975%" y="639.50"></text></g><g><title>__push_leaf_right (460 samples, 0.05%)</title><rect x="26.2103%" y="645" width="0.0481%" height="15" fill="rgb(225,220,16)" fg:x="250566" fg:w="460"/><text x="26.4603%" y="655.50"></text></g><g><title>push_leaf_right (612 samples, 0.06%)</title><rect x="26.2091%" y="661" width="0.0640%" height="15" fill="rgb(238,65,40)" fg:x="250555" fg:w="612"/><text x="26.4591%" y="671.50"></text></g><g><title>split_leaf (1,338 samples, 0.14%)</title><rect x="26.1333%" y="677" width="0.1400%" height="15" fill="rgb(230,151,21)" fg:x="249830" fg:w="1338"/><text x="26.3833%" y="687.50"></text></g><g><title>try_to_wake_up (246 samples, 0.03%)</title><rect x="26.3144%" y="597" width="0.0257%" height="15" fill="rgb(218,58,49)" fg:x="251561" fg:w="246"/><text x="26.5644%" y="607.50"></text></g><g><title>rwsem_wake.isra.0 (357 samples, 0.04%)</title><rect x="26.3030%" y="629" width="0.0373%" height="15" fill="rgb(219,179,14)" fg:x="251452" fg:w="357"/><text x="26.5530%" y="639.50"></text></g><g><title>wake_up_q (273 samples, 0.03%)</title><rect x="26.3117%" y="613" width="0.0286%" height="15" fill="rgb(223,72,1)" fg:x="251536" fg:w="273"/><text x="26.5617%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (372 samples, 0.04%)</title><rect x="26.3015%" y="661" width="0.0389%" height="15" fill="rgb(238,126,10)" fg:x="251438" fg:w="372"/><text x="26.5515%" y="671.50"></text></g><g><title>up_read (364 samples, 0.04%)</title><rect x="26.3023%" y="645" width="0.0381%" height="15" fill="rgb(224,206,38)" fg:x="251446" fg:w="364"/><text x="26.5523%" y="655.50"></text></g><g><title>select_idle_sibling (102 samples, 0.01%)</title><rect x="26.3845%" y="565" width="0.0107%" height="15" fill="rgb(212,201,54)" fg:x="252232" fg:w="102"/><text x="26.6345%" y="575.50"></text></g><g><title>select_task_rq_fair (145 samples, 0.02%)</title><rect x="26.3823%" y="581" width="0.0152%" height="15" fill="rgb(218,154,48)" fg:x="252211" fg:w="145"/><text x="26.6323%" y="591.50"></text></g><g><title>enqueue_task (102 samples, 0.01%)</title><rect x="26.4004%" y="565" width="0.0107%" height="15" fill="rgb(232,93,24)" fg:x="252384" fg:w="102"/><text x="26.6504%" y="575.50"></text></g><g><title>ttwu_do_activate (134 samples, 0.01%)</title><rect x="26.4002%" y="581" width="0.0140%" height="15" fill="rgb(245,30,21)" fg:x="252382" fg:w="134"/><text x="26.6502%" y="591.50"></text></g><g><title>try_to_wake_up (643 samples, 0.07%)</title><rect x="26.3545%" y="597" width="0.0673%" height="15" fill="rgb(242,148,29)" fg:x="251945" fg:w="643"/><text x="26.6045%" y="607.50"></text></g><g><title>rwsem_wake.isra.0 (775 samples, 0.08%)</title><rect x="26.3409%" y="629" width="0.0811%" height="15" fill="rgb(244,153,54)" fg:x="251815" fg:w="775"/><text x="26.5909%" y="639.50"></text></g><g><title>wake_up_q (667 samples, 0.07%)</title><rect x="26.3522%" y="613" width="0.0698%" height="15" fill="rgb(252,87,22)" fg:x="251923" fg:w="667"/><text x="26.6022%" y="623.50"></text></g><g><title>btrfs_tree_unlock (781 samples, 0.08%)</title><rect x="26.3404%" y="661" width="0.0817%" height="15" fill="rgb(210,51,29)" fg:x="251810" fg:w="781"/><text x="26.5904%" y="671.50"></text></g><g><title>up_write (777 samples, 0.08%)</title><rect x="26.3408%" y="645" width="0.0813%" height="15" fill="rgb(242,136,47)" fg:x="251814" fg:w="777"/><text x="26.5908%" y="655.50"></text></g><g><title>up_read (159 samples, 0.02%)</title><rect x="26.4221%" y="661" width="0.0166%" height="15" fill="rgb(238,68,4)" fg:x="252591" fg:w="159"/><text x="26.6721%" y="671.50"></text></g><g><title>btrfs_search_slot (15,806 samples, 1.65%)</title><rect x="24.7911%" y="693" width="1.6534%" height="15" fill="rgb(242,161,30)" fg:x="236999" fg:w="15806"/><text x="25.0411%" y="703.50"></text></g><g><title>unlock_up (1,632 samples, 0.17%)</title><rect x="26.2738%" y="677" width="0.1707%" height="15" fill="rgb(218,58,44)" fg:x="251173" fg:w="1632"/><text x="26.5238%" y="687.50"></text></g><g><title>btrfs_set_token_32 (229 samples, 0.02%)</title><rect x="26.4445%" y="693" width="0.0240%" height="15" fill="rgb(252,125,32)" fg:x="252805" fg:w="229"/><text x="26.6945%" y="703.50"></text></g><g><title>btrfs_get_token_32 (2,380 samples, 0.25%)</title><rect x="26.5697%" y="677" width="0.2490%" height="15" fill="rgb(219,178,0)" fg:x="254002" fg:w="2380"/><text x="26.8197%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (169 samples, 0.02%)</title><rect x="26.8010%" y="661" width="0.0177%" height="15" fill="rgb(213,152,7)" fg:x="256213" fg:w="169"/><text x="27.0510%" y="671.50"></text></g><g><title>btrfs_get_32 (155 samples, 0.02%)</title><rect x="26.8294%" y="645" width="0.0162%" height="15" fill="rgb(249,109,34)" fg:x="256485" fg:w="155"/><text x="27.0794%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (299 samples, 0.03%)</title><rect x="26.8186%" y="677" width="0.0313%" height="15" fill="rgb(232,96,21)" fg:x="256382" fg:w="299"/><text x="27.0686%" y="687.50"></text></g><g><title>leaf_space_used (247 samples, 0.03%)</title><rect x="26.8241%" y="661" width="0.0258%" height="15" fill="rgb(228,27,39)" fg:x="256434" fg:w="247"/><text x="27.0741%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (99 samples, 0.01%)</title><rect x="26.8499%" y="677" width="0.0104%" height="15" fill="rgb(211,182,52)" fg:x="256681" fg:w="99"/><text x="27.0999%" y="687.50"></text></g><g><title>btrfs_set_token_32 (2,309 samples, 0.24%)</title><rect x="26.8603%" y="677" width="0.2415%" height="15" fill="rgb(234,178,38)" fg:x="256780" fg:w="2309"/><text x="27.1103%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (167 samples, 0.02%)</title><rect x="27.0843%" y="661" width="0.0175%" height="15" fill="rgb(221,111,3)" fg:x="258922" fg:w="167"/><text x="27.3343%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (720 samples, 0.08%)</title><rect x="27.1118%" y="677" width="0.0753%" height="15" fill="rgb(228,175,21)" fg:x="259184" fg:w="720"/><text x="27.3618%" y="687.50"></text></g><g><title>copy_pages (153 samples, 0.02%)</title><rect x="27.2090%" y="661" width="0.0160%" height="15" fill="rgb(228,174,43)" fg:x="260114" fg:w="153"/><text x="27.4590%" y="671.50"></text></g><g><title>memcpy_extent_buffer (873 samples, 0.09%)</title><rect x="27.2250%" y="661" width="0.0913%" height="15" fill="rgb(211,191,0)" fg:x="260267" fg:w="873"/><text x="27.4750%" y="671.50"></text></g><g><title>memmove (825 samples, 0.09%)</title><rect x="27.2301%" y="645" width="0.0863%" height="15" fill="rgb(253,117,3)" fg:x="260315" fg:w="825"/><text x="27.4801%" y="655.50"></text></g><g><title>memmove_extent_buffer (1,712 samples, 0.18%)</title><rect x="27.1983%" y="677" width="0.1791%" height="15" fill="rgb(241,127,19)" fg:x="260011" fg:w="1712"/><text x="27.4483%" y="687.50"></text></g><g><title>memmove (583 samples, 0.06%)</title><rect x="27.3164%" y="661" width="0.0610%" height="15" fill="rgb(218,103,12)" fg:x="261140" fg:w="583"/><text x="27.5664%" y="671.50"></text></g><g><title>setup_items_for_insert (8,706 samples, 0.91%)</title><rect x="26.4765%" y="693" width="0.9107%" height="15" fill="rgb(236,214,43)" fg:x="253111" fg:w="8706"/><text x="26.7265%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (25,367 samples, 2.65%)</title><rect x="24.7372%" y="709" width="2.6535%" height="15" fill="rgb(244,144,19)" fg:x="236484" fg:w="25367"/><text x="24.9872%" y="719.50">bt..</text></g><g><title>insert_with_overflow (25,606 samples, 2.68%)</title><rect x="24.7162%" y="725" width="2.6785%" height="15" fill="rgb(246,188,10)" fg:x="236283" fg:w="25606"/><text x="24.9662%" y="735.50">in..</text></g><g><title>btrfs_insert_dir_item (30,145 samples, 3.15%)</title><rect x="24.2802%" y="741" width="3.1533%" height="15" fill="rgb(212,193,33)" fg:x="232115" fg:w="30145"/><text x="24.5302%" y="751.50">btr..</text></g><g><title>write_extent_buffer (254 samples, 0.03%)</title><rect x="27.4069%" y="725" width="0.0266%" height="15" fill="rgb(241,51,29)" fg:x="262006" fg:w="254"/><text x="27.6569%" y="735.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.01%)</title><rect x="27.4444%" y="725" width="0.0105%" height="15" fill="rgb(211,58,19)" fg:x="262364" fg:w="100"/><text x="27.6944%" y="735.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (123 samples, 0.01%)</title><rect x="27.4578%" y="709" width="0.0129%" height="15" fill="rgb(229,111,26)" fg:x="262492" fg:w="123"/><text x="27.7078%" y="719.50"></text></g><g><title>fill_stack_inode_item (166 samples, 0.02%)</title><rect x="27.4825%" y="709" width="0.0174%" height="15" fill="rgb(213,115,40)" fg:x="262728" fg:w="166"/><text x="27.7325%" y="719.50"></text></g><g><title>btrfs_delayed_update_inode (556 samples, 0.06%)</title><rect x="27.4551%" y="725" width="0.0582%" height="15" fill="rgb(209,56,44)" fg:x="262466" fg:w="556"/><text x="27.7051%" y="735.50"></text></g><g><title>btrfs_update_root_times (111 samples, 0.01%)</title><rect x="27.5133%" y="725" width="0.0116%" height="15" fill="rgb(230,108,32)" fg:x="263023" fg:w="111"/><text x="27.7633%" y="735.50"></text></g><g><title>btrfs_update_inode (892 samples, 0.09%)</title><rect x="27.4390%" y="741" width="0.0933%" height="15" fill="rgb(216,165,31)" fg:x="262312" fg:w="892"/><text x="27.6890%" y="751.50"></text></g><g><title>btrfs_add_link (31,600 samples, 3.31%)</title><rect x="24.2444%" y="757" width="3.3055%" height="15" fill="rgb(218,122,21)" fg:x="231773" fg:w="31600"/><text x="24.4944%" y="767.50">btr..</text></g><g><title>kmem_cache_alloc (214 samples, 0.02%)</title><rect x="27.5535%" y="741" width="0.0224%" height="15" fill="rgb(223,224,47)" fg:x="263407" fg:w="214"/><text x="27.8035%" y="751.50"></text></g><g><title>btrfs_alloc_path (308 samples, 0.03%)</title><rect x="27.5499%" y="757" width="0.0322%" height="15" fill="rgb(238,102,44)" fg:x="263373" fg:w="308"/><text x="27.7999%" y="767.50"></text></g><g><title>select_idle_sibling (164 samples, 0.02%)</title><rect x="27.6425%" y="597" width="0.0172%" height="15" fill="rgb(236,46,40)" fg:x="264258" fg:w="164"/><text x="27.8925%" y="607.50"></text></g><g><title>select_task_rq_fair (203 samples, 0.02%)</title><rect x="27.6402%" y="613" width="0.0212%" height="15" fill="rgb(247,202,50)" fg:x="264236" fg:w="203"/><text x="27.8902%" y="623.50"></text></g><g><title>enqueue_task (124 samples, 0.01%)</title><rect x="27.6639%" y="597" width="0.0130%" height="15" fill="rgb(209,99,20)" fg:x="264462" fg:w="124"/><text x="27.9139%" y="607.50"></text></g><g><title>ttwu_do_activate (186 samples, 0.02%)</title><rect x="27.6635%" y="613" width="0.0195%" height="15" fill="rgb(252,27,34)" fg:x="264459" fg:w="186"/><text x="27.9135%" y="623.50"></text></g><g><title>ttwu_queue_wakelist (100 samples, 0.01%)</title><rect x="27.6833%" y="613" width="0.0105%" height="15" fill="rgb(215,206,23)" fg:x="264648" fg:w="100"/><text x="27.9333%" y="623.50"></text></g><g><title>try_to_wake_up (726 samples, 0.08%)</title><rect x="27.6197%" y="629" width="0.0759%" height="15" fill="rgb(212,135,36)" fg:x="264040" fg:w="726"/><text x="27.8697%" y="639.50"></text></g><g><title>insert_work (734 samples, 0.08%)</title><rect x="27.6190%" y="661" width="0.0768%" height="15" fill="rgb(240,189,1)" fg:x="264033" fg:w="734"/><text x="27.8690%" y="671.50"></text></g><g><title>wake_up_process (734 samples, 0.08%)</title><rect x="27.6190%" y="645" width="0.0768%" height="15" fill="rgb(242,56,20)" fg:x="264033" fg:w="734"/><text x="27.8690%" y="655.50"></text></g><g><title>__queue_work (867 samples, 0.09%)</title><rect x="27.6053%" y="677" width="0.0907%" height="15" fill="rgb(247,132,33)" fg:x="263902" fg:w="867"/><text x="27.8553%" y="687.50"></text></g><g><title>btrfs_queue_work (992 samples, 0.10%)</title><rect x="27.5990%" y="709" width="0.1038%" height="15" fill="rgb(208,149,11)" fg:x="263842" fg:w="992"/><text x="27.8490%" y="719.50"></text></g><g><title>queue_work_on (949 samples, 0.10%)</title><rect x="27.6035%" y="693" width="0.0993%" height="15" fill="rgb(211,33,11)" fg:x="263885" fg:w="949"/><text x="27.8535%" y="703.50"></text></g><g><title>btrfs_wq_run_delayed_node (1,106 samples, 0.12%)</title><rect x="27.5982%" y="725" width="0.1157%" height="15" fill="rgb(221,29,38)" fg:x="263834" fg:w="1106"/><text x="27.8482%" y="735.50"></text></g><g><title>btrfs_balance_delayed_items (1,245 samples, 0.13%)</title><rect x="27.5895%" y="741" width="0.1302%" height="15" fill="rgb(206,182,49)" fg:x="263751" fg:w="1245"/><text x="27.8395%" y="751.50"></text></g><g><title>btrfs_btree_balance_dirty (1,360 samples, 0.14%)</title><rect x="27.5848%" y="757" width="0.1423%" height="15" fill="rgb(216,140,1)" fg:x="263706" fg:w="1360"/><text x="27.8348%" y="767.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.02%)</title><rect x="27.7727%" y="709" width="0.0180%" height="15" fill="rgb(232,57,40)" fg:x="265503" fg:w="172"/><text x="28.0227%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (163 samples, 0.02%)</title><rect x="27.7907%" y="709" width="0.0171%" height="15" fill="rgb(224,186,18)" fg:x="265675" fg:w="163"/><text x="28.0407%" y="719.50"></text></g><g><title>btrfs_trans_release_metadata (366 samples, 0.04%)</title><rect x="27.7714%" y="725" width="0.0383%" height="15" fill="rgb(215,121,11)" fg:x="265490" fg:w="366"/><text x="28.0214%" y="735.50"></text></g><g><title>kmem_cache_free (197 samples, 0.02%)</title><rect x="27.8097%" y="725" width="0.0206%" height="15" fill="rgb(245,147,10)" fg:x="265856" fg:w="197"/><text x="28.0597%" y="735.50"></text></g><g><title>__btrfs_end_transaction (966 samples, 0.10%)</title><rect x="27.7293%" y="741" width="0.1010%" height="15" fill="rgb(238,153,13)" fg:x="265088" fg:w="966"/><text x="27.9793%" y="751.50"></text></g><g><title>btrfs_end_transaction (1,047 samples, 0.11%)</title><rect x="27.7293%" y="757" width="0.1095%" height="15" fill="rgb(233,108,0)" fg:x="265088" fg:w="1047"/><text x="27.9793%" y="767.50"></text></g><g><title>_raw_spin_lock (103 samples, 0.01%)</title><rect x="27.8494%" y="709" width="0.0108%" height="15" fill="rgb(212,157,17)" fg:x="266236" fg:w="103"/><text x="28.0994%" y="719.50"></text></g><g><title>free_extent_buffer.part.0 (339 samples, 0.04%)</title><rect x="27.8602%" y="709" width="0.0355%" height="15" fill="rgb(225,213,38)" fg:x="266339" fg:w="339"/><text x="28.1102%" y="719.50"></text></g><g><title>release_extent_buffer (110 samples, 0.01%)</title><rect x="27.8841%" y="693" width="0.0115%" height="15" fill="rgb(248,16,11)" fg:x="266568" fg:w="110"/><text x="28.1341%" y="703.50"></text></g><g><title>free_extent_buffer (449 samples, 0.05%)</title><rect x="27.8494%" y="725" width="0.0470%" height="15" fill="rgb(241,33,4)" fg:x="266236" fg:w="449"/><text x="28.0994%" y="735.50"></text></g><g><title>btrfs_release_path (577 samples, 0.06%)</title><rect x="27.8405%" y="741" width="0.0604%" height="15" fill="rgb(222,26,43)" fg:x="266151" fg:w="577"/><text x="28.0905%" y="751.50"></text></g><g><title>kmem_cache_free (173 samples, 0.02%)</title><rect x="27.9042%" y="741" width="0.0181%" height="15" fill="rgb(243,29,36)" fg:x="266760" fg:w="173"/><text x="28.1542%" y="751.50"></text></g><g><title>btrfs_free_path (801 samples, 0.08%)</title><rect x="27.8389%" y="757" width="0.0838%" height="15" fill="rgb(241,9,27)" fg:x="266135" fg:w="801"/><text x="28.0889%" y="767.50"></text></g><g><title>btrfs_get_free_objectid (123 samples, 0.01%)</title><rect x="27.9257%" y="757" width="0.0129%" height="15" fill="rgb(205,117,26)" fg:x="266965" fg:w="123"/><text x="28.1757%" y="767.50"></text></g><g><title>mutex_lock (102 samples, 0.01%)</title><rect x="27.9279%" y="741" width="0.0107%" height="15" fill="rgb(209,80,39)" fg:x="266986" fg:w="102"/><text x="28.1779%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (944 samples, 0.10%)</title><rect x="28.0374%" y="709" width="0.0987%" height="15" fill="rgb(239,155,6)" fg:x="268033" fg:w="944"/><text x="28.2874%" y="719.50"></text></g><g><title>btrfs_bin_search (991 samples, 0.10%)</title><rect x="28.0326%" y="725" width="0.1037%" height="15" fill="rgb(212,104,12)" fg:x="267987" fg:w="991"/><text x="28.2826%" y="735.50"></text></g><g><title>btrfs_get_32 (97 samples, 0.01%)</title><rect x="28.1510%" y="693" width="0.0101%" height="15" fill="rgb(234,204,3)" fg:x="269119" fg:w="97"/><text x="28.4010%" y="703.50"></text></g><g><title>btrfs_leaf_free_space (189 samples, 0.02%)</title><rect x="28.1431%" y="725" width="0.0198%" height="15" fill="rgb(251,218,7)" fg:x="269044" fg:w="189"/><text x="28.3931%" y="735.50"></text></g><g><title>leaf_space_used (153 samples, 0.02%)</title><rect x="28.1469%" y="709" width="0.0160%" height="15" fill="rgb(221,81,32)" fg:x="269080" fg:w="153"/><text x="28.3969%" y="719.50"></text></g><g><title>update_curr (129 samples, 0.01%)</title><rect x="28.2213%" y="581" width="0.0135%" height="15" fill="rgb(214,152,26)" fg:x="269791" fg:w="129"/><text x="28.4713%" y="591.50"></text></g><g><title>dequeue_entity (321 samples, 0.03%)</title><rect x="28.2122%" y="597" width="0.0336%" height="15" fill="rgb(223,22,3)" fg:x="269704" fg:w="321"/><text x="28.4622%" y="607.50"></text></g><g><title>dequeue_task_fair (444 samples, 0.05%)</title><rect x="28.2070%" y="613" width="0.0464%" height="15" fill="rgb(207,174,7)" fg:x="269654" fg:w="444"/><text x="28.4570%" y="623.50"></text></g><g><title>dequeue_task (478 samples, 0.05%)</title><rect x="28.2052%" y="629" width="0.0500%" height="15" fill="rgb(224,19,52)" fg:x="269637" fg:w="478"/><text x="28.4552%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (410 samples, 0.04%)</title><rect x="28.2607%" y="613" width="0.0429%" height="15" fill="rgb(228,24,14)" fg:x="270168" fg:w="410"/><text x="28.5107%" y="623.50"></text></g><g><title>x86_pmu_enable (378 samples, 0.04%)</title><rect x="28.2641%" y="597" width="0.0395%" height="15" fill="rgb(230,153,43)" fg:x="270200" fg:w="378"/><text x="28.5141%" y="607.50"></text></g><g><title>intel_pmu_enable_all (372 samples, 0.04%)</title><rect x="28.2647%" y="581" width="0.0389%" height="15" fill="rgb(231,106,12)" fg:x="270206" fg:w="372"/><text x="28.5147%" y="591.50"></text></g><g><title>native_write_msr (361 samples, 0.04%)</title><rect x="28.2658%" y="565" width="0.0378%" height="15" fill="rgb(215,92,2)" fg:x="270217" fg:w="361"/><text x="28.5158%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (503 samples, 0.05%)</title><rect x="28.2553%" y="629" width="0.0526%" height="15" fill="rgb(249,143,25)" fg:x="270116" fg:w="503"/><text x="28.5053%" y="639.50"></text></g><g><title>pick_next_task_fair (106 samples, 0.01%)</title><rect x="28.3101%" y="613" width="0.0111%" height="15" fill="rgb(252,7,35)" fg:x="270640" fg:w="106"/><text x="28.5601%" y="623.50"></text></g><g><title>pick_next_task (202 samples, 0.02%)</title><rect x="28.3085%" y="629" width="0.0211%" height="15" fill="rgb(216,69,40)" fg:x="270625" fg:w="202"/><text x="28.5585%" y="639.50"></text></g><g><title>prepare_task_switch (113 samples, 0.01%)</title><rect x="28.3309%" y="629" width="0.0118%" height="15" fill="rgb(240,36,33)" fg:x="270839" fg:w="113"/><text x="28.5809%" y="639.50"></text></g><g><title>psi_group_change (241 samples, 0.03%)</title><rect x="28.3521%" y="613" width="0.0252%" height="15" fill="rgb(231,128,14)" fg:x="271042" fg:w="241"/><text x="28.6021%" y="623.50"></text></g><g><title>psi_task_switch (341 samples, 0.04%)</title><rect x="28.3437%" y="629" width="0.0357%" height="15" fill="rgb(245,143,14)" fg:x="270961" fg:w="341"/><text x="28.5937%" y="639.50"></text></g><g><title>__schedule (1,805 samples, 0.19%)</title><rect x="28.1958%" y="645" width="0.1888%" height="15" fill="rgb(222,130,28)" fg:x="269547" fg:w="1805"/><text x="28.4458%" y="655.50"></text></g><g><title>schedule (1,818 samples, 0.19%)</title><rect x="28.1950%" y="661" width="0.1902%" height="15" fill="rgb(212,10,48)" fg:x="269540" fg:w="1818"/><text x="28.4450%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (2,017 samples, 0.21%)</title><rect x="28.1766%" y="677" width="0.2110%" height="15" fill="rgb(254,118,45)" fg:x="269364" fg:w="2017"/><text x="28.4266%" y="687.50"></text></g><g><title>down_read (2,093 samples, 0.22%)</title><rect x="28.1688%" y="693" width="0.2189%" height="15" fill="rgb(228,6,45)" fg:x="269289" fg:w="2093"/><text x="28.4188%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (2,122 samples, 0.22%)</title><rect x="28.1665%" y="709" width="0.2220%" height="15" fill="rgb(241,18,35)" fg:x="269267" fg:w="2122"/><text x="28.4165%" y="719.50"></text></g><g><title>btrfs_root_node (123 samples, 0.01%)</title><rect x="28.3884%" y="709" width="0.0129%" height="15" fill="rgb(227,214,53)" fg:x="271389" fg:w="123"/><text x="28.6384%" y="719.50"></text></g><g><title>btrfs_read_lock_root_node (2,278 samples, 0.24%)</title><rect x="28.1641%" y="725" width="0.2383%" height="15" fill="rgb(224,107,51)" fg:x="269244" fg:w="2278"/><text x="28.4141%" y="735.50"></text></g><g><title>osq_lock (1,509 samples, 0.16%)</title><rect x="28.5542%" y="645" width="0.1578%" height="15" fill="rgb(248,60,28)" fg:x="272974" fg:w="1509"/><text x="28.8042%" y="655.50"></text></g><g><title>rwsem_spin_on_owner (2,049 samples, 0.21%)</title><rect x="28.7154%" y="645" width="0.2143%" height="15" fill="rgb(249,101,23)" fg:x="274515" fg:w="2049"/><text x="28.9654%" y="655.50"></text></g><g><title>rwsem_optimistic_spin (4,695 samples, 0.49%)</title><rect x="28.4412%" y="661" width="0.4911%" height="15" fill="rgb(228,51,19)" fg:x="271893" fg:w="4695"/><text x="28.6912%" y="671.50"></text></g><g><title>dequeue_entity (97 samples, 0.01%)</title><rect x="28.9403%" y="597" width="0.0101%" height="15" fill="rgb(213,20,6)" fg:x="276665" fg:w="97"/><text x="29.1903%" y="607.50"></text></g><g><title>dequeue_task_fair (132 samples, 0.01%)</title><rect x="28.9390%" y="613" width="0.0138%" height="15" fill="rgb(212,124,10)" fg:x="276652" fg:w="132"/><text x="29.1890%" y="623.50"></text></g><g><title>dequeue_task (141 samples, 0.01%)</title><rect x="28.9386%" y="629" width="0.0147%" height="15" fill="rgb(248,3,40)" fg:x="276648" fg:w="141"/><text x="29.1886%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (161 samples, 0.02%)</title><rect x="28.9551%" y="613" width="0.0168%" height="15" fill="rgb(223,178,23)" fg:x="276806" fg:w="161"/><text x="29.2051%" y="623.50"></text></g><g><title>x86_pmu_enable (156 samples, 0.02%)</title><rect x="28.9556%" y="597" width="0.0163%" height="15" fill="rgb(240,132,45)" fg:x="276811" fg:w="156"/><text x="29.2056%" y="607.50"></text></g><g><title>intel_pmu_enable_all (154 samples, 0.02%)</title><rect x="28.9558%" y="581" width="0.0161%" height="15" fill="rgb(245,164,36)" fg:x="276813" fg:w="154"/><text x="29.2058%" y="591.50"></text></g><g><title>native_write_msr (151 samples, 0.02%)</title><rect x="28.9561%" y="565" width="0.0158%" height="15" fill="rgb(231,188,53)" fg:x="276816" fg:w="151"/><text x="29.2061%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (181 samples, 0.02%)</title><rect x="28.9536%" y="629" width="0.0189%" height="15" fill="rgb(237,198,39)" fg:x="276792" fg:w="181"/><text x="29.2036%" y="639.50"></text></g><g><title>psi_task_switch (100 samples, 0.01%)</title><rect x="28.9823%" y="629" width="0.0105%" height="15" fill="rgb(223,120,35)" fg:x="277066" fg:w="100"/><text x="29.2323%" y="639.50"></text></g><g><title>__schedule (566 samples, 0.06%)</title><rect x="28.9349%" y="645" width="0.0592%" height="15" fill="rgb(253,107,49)" fg:x="276613" fg:w="566"/><text x="29.1849%" y="655.50"></text></g><g><title>schedule (574 samples, 0.06%)</title><rect x="28.9345%" y="661" width="0.0600%" height="15" fill="rgb(216,44,31)" fg:x="276609" fg:w="574"/><text x="29.1845%" y="671.50"></text></g><g><title>rwsem_down_write_slowpath (5,417 samples, 0.57%)</title><rect x="28.4280%" y="677" width="0.5666%" height="15" fill="rgb(253,87,21)" fg:x="271767" fg:w="5417"/><text x="28.6780%" y="687.50"></text></g><g><title>down_write (5,612 samples, 0.59%)</title><rect x="28.4084%" y="693" width="0.5870%" height="15" fill="rgb(226,18,2)" fg:x="271580" fg:w="5612"/><text x="28.6584%" y="703.50"></text></g><g><title>__btrfs_tree_lock (5,674 samples, 0.59%)</title><rect x="28.4029%" y="709" width="0.5935%" height="15" fill="rgb(216,8,46)" fg:x="271527" fg:w="5674"/><text x="28.6529%" y="719.50"></text></g><g><title>btrfs_tree_lock (5,691 samples, 0.60%)</title><rect x="28.4029%" y="725" width="0.5953%" height="15" fill="rgb(226,140,39)" fg:x="271527" fg:w="5691"/><text x="28.6529%" y="735.50"></text></g><g><title>dequeue_entity (143 samples, 0.01%)</title><rect x="29.0248%" y="597" width="0.0150%" height="15" fill="rgb(221,194,54)" fg:x="277472" fg:w="143"/><text x="29.2748%" y="607.50"></text></g><g><title>dequeue_task_fair (208 samples, 0.02%)</title><rect x="29.0222%" y="613" width="0.0218%" height="15" fill="rgb(213,92,11)" fg:x="277448" fg:w="208"/><text x="29.2722%" y="623.50"></text></g><g><title>dequeue_task (221 samples, 0.02%)</title><rect x="29.0216%" y="629" width="0.0231%" height="15" fill="rgb(229,162,46)" fg:x="277442" fg:w="221"/><text x="29.2716%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (105 samples, 0.01%)</title><rect x="29.0468%" y="613" width="0.0110%" height="15" fill="rgb(214,111,36)" fg:x="277683" fg:w="105"/><text x="29.2968%" y="623.50"></text></g><g><title>x86_pmu_enable (99 samples, 0.01%)</title><rect x="29.0475%" y="597" width="0.0104%" height="15" fill="rgb(207,6,21)" fg:x="277689" fg:w="99"/><text x="29.2975%" y="607.50"></text></g><g><title>intel_pmu_enable_all (98 samples, 0.01%)</title><rect x="29.0476%" y="581" width="0.0103%" height="15" fill="rgb(213,127,38)" fg:x="277690" fg:w="98"/><text x="29.2976%" y="591.50"></text></g><g><title>native_write_msr (96 samples, 0.01%)</title><rect x="29.0478%" y="565" width="0.0100%" height="15" fill="rgb(238,118,32)" fg:x="277692" fg:w="96"/><text x="29.2978%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (135 samples, 0.01%)</title><rect x="29.0447%" y="629" width="0.0141%" height="15" fill="rgb(240,139,39)" fg:x="277663" fg:w="135"/><text x="29.2947%" y="639.50"></text></g><g><title>psi_group_change (103 samples, 0.01%)</title><rect x="29.0766%" y="613" width="0.0108%" height="15" fill="rgb(235,10,37)" fg:x="277968" fg:w="103"/><text x="29.3266%" y="623.50"></text></g><g><title>psi_task_switch (141 samples, 0.01%)</title><rect x="29.0740%" y="629" width="0.0147%" height="15" fill="rgb(249,171,38)" fg:x="277943" fg:w="141"/><text x="29.3240%" y="639.50"></text></g><g><title>__schedule (755 samples, 0.08%)</title><rect x="29.0176%" y="645" width="0.0790%" height="15" fill="rgb(242,144,32)" fg:x="277404" fg:w="755"/><text x="29.2676%" y="655.50"></text></g><g><title>schedule (767 samples, 0.08%)</title><rect x="29.0169%" y="661" width="0.0802%" height="15" fill="rgb(217,117,21)" fg:x="277397" fg:w="767"/><text x="29.2669%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (834 samples, 0.09%)</title><rect x="29.0113%" y="677" width="0.0872%" height="15" fill="rgb(249,87,1)" fg:x="277343" fg:w="834"/><text x="29.2613%" y="687.50"></text></g><g><title>down_read (935 samples, 0.10%)</title><rect x="29.0008%" y="693" width="0.0978%" height="15" fill="rgb(248,196,48)" fg:x="277243" fg:w="935"/><text x="29.2508%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (961 samples, 0.10%)</title><rect x="28.9984%" y="709" width="0.1005%" height="15" fill="rgb(251,206,33)" fg:x="277220" fg:w="961"/><text x="29.2484%" y="719.50"></text></g><g><title>btrfs_tree_read_lock (964 samples, 0.10%)</title><rect x="28.9982%" y="725" width="0.1008%" height="15" fill="rgb(232,141,28)" fg:x="277218" fg:w="964"/><text x="29.2482%" y="735.50"></text></g><g><title>btrfs_buffer_uptodate (165 samples, 0.02%)</title><rect x="29.1238%" y="709" width="0.0173%" height="15" fill="rgb(209,167,14)" fg:x="278419" fg:w="165"/><text x="29.3738%" y="719.50"></text></g><g><title>verify_parent_transid (128 samples, 0.01%)</title><rect x="29.1277%" y="693" width="0.0134%" height="15" fill="rgb(225,11,50)" fg:x="278456" fg:w="128"/><text x="29.3777%" y="703.50"></text></g><g><title>btrfs_get_64 (168 samples, 0.02%)</title><rect x="29.1411%" y="709" width="0.0176%" height="15" fill="rgb(209,50,20)" fg:x="278584" fg:w="168"/><text x="29.3911%" y="719.50"></text></g><g><title>btrfs_node_key (278 samples, 0.03%)</title><rect x="29.1586%" y="709" width="0.0291%" height="15" fill="rgb(212,17,46)" fg:x="278752" fg:w="278"/><text x="29.4086%" y="719.50"></text></g><g><title>read_extent_buffer (275 samples, 0.03%)</title><rect x="29.1590%" y="693" width="0.0288%" height="15" fill="rgb(216,101,39)" fg:x="278755" fg:w="275"/><text x="29.4090%" y="703.50"></text></g><g><title>__radix_tree_lookup (592 samples, 0.06%)</title><rect x="29.2584%" y="661" width="0.0619%" height="15" fill="rgb(212,228,48)" fg:x="279706" fg:w="592"/><text x="29.5084%" y="671.50"></text></g><g><title>radix_tree_lookup (595 samples, 0.06%)</title><rect x="29.2583%" y="677" width="0.0622%" height="15" fill="rgb(250,6,50)" fg:x="279705" fg:w="595"/><text x="29.5083%" y="687.50"></text></g><g><title>find_extent_buffer_nolock (1,047 samples, 0.11%)</title><rect x="29.2113%" y="693" width="0.1095%" height="15" fill="rgb(250,160,48)" fg:x="279255" fg:w="1047"/><text x="29.4613%" y="703.50"></text></g><g><title>mark_page_accessed (408 samples, 0.04%)</title><rect x="29.3208%" y="693" width="0.0427%" height="15" fill="rgb(244,216,33)" fg:x="280302" fg:w="408"/><text x="29.5708%" y="703.50"></text></g><g><title>find_extent_buffer (1,611 samples, 0.17%)</title><rect x="29.1982%" y="709" width="0.1685%" height="15" fill="rgb(207,157,5)" fg:x="279130" fg:w="1611"/><text x="29.4482%" y="719.50"></text></g><g><title>read_block_for_search (2,546 samples, 0.27%)</title><rect x="29.1078%" y="725" width="0.2663%" height="15" fill="rgb(228,199,8)" fg:x="278266" fg:w="2546"/><text x="29.3578%" y="735.50"></text></g><g><title>add_to_page_cache_lru (126 samples, 0.01%)</title><rect x="29.3944%" y="629" width="0.0132%" height="15" fill="rgb(227,80,20)" fg:x="281006" fg:w="126"/><text x="29.6444%" y="639.50"></text></g><g><title>pagecache_get_page (207 samples, 0.02%)</title><rect x="29.3876%" y="645" width="0.0217%" height="15" fill="rgb(222,9,33)" fg:x="280941" fg:w="207"/><text x="29.6376%" y="655.50"></text></g><g><title>alloc_extent_buffer (233 samples, 0.02%)</title><rect x="29.3855%" y="661" width="0.0244%" height="15" fill="rgb(239,44,28)" fg:x="280921" fg:w="233"/><text x="29.6355%" y="671.50"></text></g><g><title>btrfs_find_create_tree_block (242 samples, 0.03%)</title><rect x="29.3852%" y="677" width="0.0253%" height="15" fill="rgb(249,187,43)" fg:x="280918" fg:w="242"/><text x="29.6352%" y="687.50"></text></g><g><title>btrfs_init_new_buffer (314 samples, 0.03%)</title><rect x="29.3838%" y="693" width="0.0328%" height="15" fill="rgb(216,141,28)" fg:x="280904" fg:w="314"/><text x="29.6338%" y="703.50"></text></g><g><title>btrfs_alloc_tree_block (485 samples, 0.05%)</title><rect x="29.3758%" y="709" width="0.0507%" height="15" fill="rgb(230,154,53)" fg:x="280828" fg:w="485"/><text x="29.6258%" y="719.50"></text></g><g><title>copy_for_split (196 samples, 0.02%)</title><rect x="29.4297%" y="709" width="0.0205%" height="15" fill="rgb(227,82,4)" fg:x="281343" fg:w="196"/><text x="29.6797%" y="719.50"></text></g><g><title>__push_leaf_left (232 samples, 0.02%)</title><rect x="29.4506%" y="693" width="0.0243%" height="15" fill="rgb(220,107,16)" fg:x="281543" fg:w="232"/><text x="29.7006%" y="703.50"></text></g><g><title>push_leaf_left (318 samples, 0.03%)</title><rect x="29.4504%" y="709" width="0.0333%" height="15" fill="rgb(207,187,2)" fg:x="281541" fg:w="318"/><text x="29.7004%" y="719.50"></text></g><g><title>split_leaf (1,059 samples, 0.11%)</title><rect x="29.3742%" y="725" width="0.1108%" height="15" fill="rgb(210,162,52)" fg:x="280813" fg:w="1059"/><text x="29.6242%" y="735.50"></text></g><g><title>try_to_wake_up (269 samples, 0.03%)</title><rect x="29.5284%" y="645" width="0.0281%" height="15" fill="rgb(217,216,49)" fg:x="282287" fg:w="269"/><text x="29.7784%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (394 samples, 0.04%)</title><rect x="29.5157%" y="709" width="0.0412%" height="15" fill="rgb(218,146,49)" fg:x="282165" fg:w="394"/><text x="29.7657%" y="719.50"></text></g><g><title>up_read (379 samples, 0.04%)</title><rect x="29.5172%" y="693" width="0.0396%" height="15" fill="rgb(216,55,40)" fg:x="282180" fg:w="379"/><text x="29.7672%" y="703.50"></text></g><g><title>rwsem_wake.isra.0 (372 samples, 0.04%)</title><rect x="29.5180%" y="677" width="0.0389%" height="15" fill="rgb(208,196,21)" fg:x="282187" fg:w="372"/><text x="29.7680%" y="687.50"></text></g><g><title>wake_up_q (290 samples, 0.03%)</title><rect x="29.5265%" y="661" width="0.0303%" height="15" fill="rgb(242,117,42)" fg:x="282269" fg:w="290"/><text x="29.7765%" y="671.50"></text></g><g><title>select_idle_sibling (117 samples, 0.01%)</title><rect x="29.5994%" y="613" width="0.0122%" height="15" fill="rgb(210,11,23)" fg:x="282966" fg:w="117"/><text x="29.8494%" y="623.50"></text></g><g><title>select_task_rq_fair (181 samples, 0.02%)</title><rect x="29.5965%" y="629" width="0.0189%" height="15" fill="rgb(217,110,2)" fg:x="282938" fg:w="181"/><text x="29.8465%" y="639.50"></text></g><g><title>enqueue_task (105 samples, 0.01%)</title><rect x="29.6185%" y="613" width="0.0110%" height="15" fill="rgb(229,77,54)" fg:x="283148" fg:w="105"/><text x="29.8685%" y="623.50"></text></g><g><title>ttwu_do_activate (136 samples, 0.01%)</title><rect x="29.6183%" y="629" width="0.0142%" height="15" fill="rgb(218,53,16)" fg:x="283146" fg:w="136"/><text x="29.8683%" y="639.50"></text></g><g><title>try_to_wake_up (661 samples, 0.07%)</title><rect x="29.5734%" y="645" width="0.0691%" height="15" fill="rgb(215,38,13)" fg:x="282717" fg:w="661"/><text x="29.8234%" y="655.50"></text></g><g><title>btrfs_tree_unlock (820 samples, 0.09%)</title><rect x="29.5569%" y="709" width="0.0858%" height="15" fill="rgb(235,42,18)" fg:x="282559" fg:w="820"/><text x="29.8069%" y="719.50"></text></g><g><title>up_write (806 samples, 0.08%)</title><rect x="29.5583%" y="693" width="0.0843%" height="15" fill="rgb(219,66,54)" fg:x="282573" fg:w="806"/><text x="29.8083%" y="703.50"></text></g><g><title>rwsem_wake.isra.0 (805 samples, 0.08%)</title><rect x="29.5584%" y="677" width="0.0842%" height="15" fill="rgb(222,205,4)" fg:x="282574" fg:w="805"/><text x="29.8084%" y="687.50"></text></g><g><title>wake_up_q (686 samples, 0.07%)</title><rect x="29.5709%" y="661" width="0.0718%" height="15" fill="rgb(227,213,46)" fg:x="282693" fg:w="686"/><text x="29.8209%" y="671.50"></text></g><g><title>up_read (164 samples, 0.02%)</title><rect x="29.6427%" y="709" width="0.0172%" height="15" fill="rgb(250,145,42)" fg:x="283379" fg:w="164"/><text x="29.8927%" y="719.50"></text></g><g><title>btrfs_search_slot (16,209 samples, 1.70%)</title><rect x="27.9703%" y="741" width="1.6955%" height="15" fill="rgb(219,15,2)" fg:x="267392" fg:w="16209"/><text x="28.2203%" y="751.50"></text></g><g><title>unlock_up (1,727 samples, 0.18%)</title><rect x="29.4852%" y="725" width="0.1807%" height="15" fill="rgb(231,181,52)" fg:x="281874" fg:w="1727"/><text x="29.7352%" y="735.50"></text></g><g><title>btrfs_get_token_32 (267 samples, 0.03%)</title><rect x="29.7186%" y="725" width="0.0279%" height="15" fill="rgb(235,1,42)" fg:x="284105" fg:w="267"/><text x="29.9686%" y="735.50"></text></g><g><title>btrfs_get_32 (168 samples, 0.02%)</title><rect x="29.7563%" y="693" width="0.0176%" height="15" fill="rgb(249,88,27)" fg:x="284465" fg:w="168"/><text x="30.0063%" y="703.50"></text></g><g><title>btrfs_leaf_free_space (287 samples, 0.03%)</title><rect x="29.7465%" y="725" width="0.0300%" height="15" fill="rgb(235,145,16)" fg:x="284372" fg:w="287"/><text x="29.9965%" y="735.50"></text></g><g><title>leaf_space_used (241 samples, 0.03%)</title><rect x="29.7513%" y="709" width="0.0252%" height="15" fill="rgb(237,114,19)" fg:x="284418" fg:w="241"/><text x="30.0013%" y="719.50"></text></g><g><title>btrfs_mark_buffer_dirty (116 samples, 0.01%)</title><rect x="29.7765%" y="725" width="0.0121%" height="15" fill="rgb(238,51,50)" fg:x="284659" fg:w="116"/><text x="30.0265%" y="735.50"></text></g><g><title>btrfs_set_token_32 (303 samples, 0.03%)</title><rect x="29.7887%" y="725" width="0.0317%" height="15" fill="rgb(205,194,25)" fg:x="284775" fg:w="303"/><text x="30.0387%" y="735.50"></text></g><g><title>check_setget_bounds.isra.0 (111 samples, 0.01%)</title><rect x="29.8295%" y="725" width="0.0116%" height="15" fill="rgb(215,203,17)" fg:x="285165" fg:w="111"/><text x="30.0795%" y="735.50"></text></g><g><title>memcpy_extent_buffer (117 samples, 0.01%)</title><rect x="29.8590%" y="709" width="0.0122%" height="15" fill="rgb(233,112,49)" fg:x="285447" fg:w="117"/><text x="30.1090%" y="719.50"></text></g><g><title>memmove_extent_buffer (329 samples, 0.03%)</title><rect x="29.8483%" y="725" width="0.0344%" height="15" fill="rgb(241,130,26)" fg:x="285345" fg:w="329"/><text x="30.0983%" y="735.50"></text></g><g><title>memmove (110 samples, 0.01%)</title><rect x="29.8712%" y="709" width="0.0115%" height="15" fill="rgb(252,223,19)" fg:x="285564" fg:w="110"/><text x="30.1212%" y="719.50"></text></g><g><title>setup_items_for_insert (2,068 samples, 0.22%)</title><rect x="29.6770%" y="741" width="0.2163%" height="15" fill="rgb(211,95,25)" fg:x="283707" fg:w="2068"/><text x="29.9270%" y="751.50"></text></g><g><title>write_extent_buffer (97 samples, 0.01%)</title><rect x="29.8831%" y="725" width="0.0101%" height="15" fill="rgb(251,182,27)" fg:x="285678" fg:w="97"/><text x="30.1331%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (18,627 samples, 1.95%)</title><rect x="27.9493%" y="757" width="1.9485%" height="15" fill="rgb(238,24,4)" fg:x="267191" fg:w="18627"/><text x="28.1993%" y="767.50">b..</text></g><g><title>btrfs_mark_buffer_dirty (116 samples, 0.01%)</title><rect x="29.8978%" y="757" width="0.0121%" height="15" fill="rgb(224,220,25)" fg:x="285818" fg:w="116"/><text x="30.1478%" y="767.50"></text></g><g><title>_raw_spin_lock (222 samples, 0.02%)</title><rect x="29.9515%" y="741" width="0.0232%" height="15" fill="rgb(239,133,26)" fg:x="286332" fg:w="222"/><text x="30.2015%" y="751.50"></text></g><g><title>kmem_cache_alloc (109 samples, 0.01%)</title><rect x="29.9797%" y="725" width="0.0114%" height="15" fill="rgb(211,94,48)" fg:x="286601" fg:w="109"/><text x="30.2297%" y="735.50"></text></g><g><title>btrfs_alloc_path (158 samples, 0.02%)</title><rect x="29.9786%" y="741" width="0.0165%" height="15" fill="rgb(239,87,6)" fg:x="286591" fg:w="158"/><text x="30.2286%" y="751.50"></text></g><g><title>free_extent_buffer.part.0 (348 samples, 0.04%)</title><rect x="30.0166%" y="693" width="0.0364%" height="15" fill="rgb(227,62,0)" fg:x="286954" fg:w="348"/><text x="30.2666%" y="703.50"></text></g><g><title>release_extent_buffer (112 samples, 0.01%)</title><rect x="30.0413%" y="677" width="0.0117%" height="15" fill="rgb(211,226,4)" fg:x="287190" fg:w="112"/><text x="30.2913%" y="687.50"></text></g><g><title>free_extent_buffer (452 samples, 0.05%)</title><rect x="30.0070%" y="709" width="0.0473%" height="15" fill="rgb(253,38,52)" fg:x="286862" fg:w="452"/><text x="30.2570%" y="719.50"></text></g><g><title>btrfs_release_path (611 samples, 0.06%)</title><rect x="29.9960%" y="725" width="0.0639%" height="15" fill="rgb(229,126,40)" fg:x="286757" fg:w="611"/><text x="30.2460%" y="735.50"></text></g><g><title>kmem_cache_free (177 samples, 0.02%)</title><rect x="30.0643%" y="725" width="0.0185%" height="15" fill="rgb(229,165,44)" fg:x="287410" fg:w="177"/><text x="30.3143%" y="735.50"></text></g><g><title>btrfs_free_path (844 samples, 0.09%)</title><rect x="29.9952%" y="741" width="0.0883%" height="15" fill="rgb(247,95,47)" fg:x="286749" fg:w="844"/><text x="30.2452%" y="751.50"></text></g><g><title>btrfs_bin_search (976 samples, 0.10%)</title><rect x="30.1816%" y="709" width="0.1021%" height="15" fill="rgb(216,140,30)" fg:x="288531" fg:w="976"/><text x="30.4316%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (949 samples, 0.10%)</title><rect x="30.1844%" y="693" width="0.0993%" height="15" fill="rgb(246,214,8)" fg:x="288558" fg:w="949"/><text x="30.4344%" y="703.50"></text></g><g><title>btrfs_get_32 (131 samples, 0.01%)</title><rect x="30.3005%" y="677" width="0.0137%" height="15" fill="rgb(227,224,15)" fg:x="289668" fg:w="131"/><text x="30.5505%" y="687.50"></text></g><g><title>btrfs_leaf_free_space (257 samples, 0.03%)</title><rect x="30.2889%" y="709" width="0.0269%" height="15" fill="rgb(233,175,4)" fg:x="289557" fg:w="257"/><text x="30.5389%" y="719.50"></text></g><g><title>leaf_space_used (200 samples, 0.02%)</title><rect x="30.2949%" y="693" width="0.0209%" height="15" fill="rgb(221,66,45)" fg:x="289614" fg:w="200"/><text x="30.5449%" y="703.50"></text></g><g><title>update_curr (122 samples, 0.01%)</title><rect x="30.3735%" y="565" width="0.0128%" height="15" fill="rgb(221,178,18)" fg:x="290366" fg:w="122"/><text x="30.6235%" y="575.50"></text></g><g><title>update_load_avg (98 samples, 0.01%)</title><rect x="30.3863%" y="565" width="0.0103%" height="15" fill="rgb(213,81,29)" fg:x="290488" fg:w="98"/><text x="30.6363%" y="575.50"></text></g><g><title>dequeue_entity (338 samples, 0.04%)</title><rect x="30.3620%" y="581" width="0.0354%" height="15" fill="rgb(220,89,49)" fg:x="290256" fg:w="338"/><text x="30.6120%" y="591.50"></text></g><g><title>dequeue_task_fair (443 samples, 0.05%)</title><rect x="30.3572%" y="597" width="0.0463%" height="15" fill="rgb(227,60,33)" fg:x="290210" fg:w="443"/><text x="30.6072%" y="607.50"></text></g><g><title>dequeue_task (468 samples, 0.05%)</title><rect x="30.3564%" y="613" width="0.0490%" height="15" fill="rgb(205,113,12)" fg:x="290202" fg:w="468"/><text x="30.6064%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (488 samples, 0.05%)</title><rect x="30.4109%" y="597" width="0.0510%" height="15" fill="rgb(211,32,1)" fg:x="290723" fg:w="488"/><text x="30.6609%" y="607.50"></text></g><g><title>x86_pmu_enable (467 samples, 0.05%)</title><rect x="30.4131%" y="581" width="0.0489%" height="15" fill="rgb(246,2,12)" fg:x="290744" fg:w="467"/><text x="30.6631%" y="591.50"></text></g><g><title>intel_pmu_enable_all (460 samples, 0.05%)</title><rect x="30.4138%" y="565" width="0.0481%" height="15" fill="rgb(243,37,27)" fg:x="290751" fg:w="460"/><text x="30.6638%" y="575.50"></text></g><g><title>native_write_msr (450 samples, 0.05%)</title><rect x="30.4148%" y="549" width="0.0471%" height="15" fill="rgb(248,211,31)" fg:x="290761" fg:w="450"/><text x="30.6648%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (596 samples, 0.06%)</title><rect x="30.4054%" y="613" width="0.0623%" height="15" fill="rgb(242,146,47)" fg:x="290671" fg:w="596"/><text x="30.6554%" y="623.50"></text></g><g><title>pick_next_task_fair (123 samples, 0.01%)</title><rect x="30.4708%" y="597" width="0.0129%" height="15" fill="rgb(206,70,20)" fg:x="291296" fg:w="123"/><text x="30.7208%" y="607.50"></text></g><g><title>pick_next_task (244 samples, 0.03%)</title><rect x="30.4686%" y="613" width="0.0255%" height="15" fill="rgb(215,10,51)" fg:x="291275" fg:w="244"/><text x="30.7186%" y="623.50"></text></g><g><title>prepare_task_switch (117 samples, 0.01%)</title><rect x="30.4962%" y="613" width="0.0122%" height="15" fill="rgb(243,178,53)" fg:x="291539" fg:w="117"/><text x="30.7462%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (103 samples, 0.01%)</title><rect x="30.4977%" y="597" width="0.0108%" height="15" fill="rgb(233,221,20)" fg:x="291553" fg:w="103"/><text x="30.7477%" y="607.50"></text></g><g><title>psi_group_change (221 samples, 0.02%)</title><rect x="30.5156%" y="597" width="0.0231%" height="15" fill="rgb(218,95,35)" fg:x="291724" fg:w="221"/><text x="30.7656%" y="607.50"></text></g><g><title>psi_task_switch (294 samples, 0.03%)</title><rect x="30.5092%" y="613" width="0.0308%" height="15" fill="rgb(229,13,5)" fg:x="291663" fg:w="294"/><text x="30.7592%" y="623.50"></text></g><g><title>__schedule (1,891 samples, 0.20%)</title><rect x="30.3467%" y="629" width="0.1978%" height="15" fill="rgb(252,164,30)" fg:x="290110" fg:w="1891"/><text x="30.5967%" y="639.50"></text></g><g><title>schedule (1,908 samples, 0.20%)</title><rect x="30.3458%" y="645" width="0.1996%" height="15" fill="rgb(232,68,36)" fg:x="290101" fg:w="1908"/><text x="30.5958%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (2,094 samples, 0.22%)</title><rect x="30.3297%" y="661" width="0.2190%" height="15" fill="rgb(219,59,54)" fg:x="289947" fg:w="2094"/><text x="30.5797%" y="671.50"></text></g><g><title>down_read (2,182 samples, 0.23%)</title><rect x="30.3214%" y="677" width="0.2282%" height="15" fill="rgb(250,92,33)" fg:x="289868" fg:w="2182"/><text x="30.5714%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (2,201 samples, 0.23%)</title><rect x="30.3200%" y="693" width="0.2302%" height="15" fill="rgb(229,162,54)" fg:x="289854" fg:w="2201"/><text x="30.5700%" y="703.50"></text></g><g><title>btrfs_root_node (136 samples, 0.01%)</title><rect x="30.5502%" y="693" width="0.0142%" height="15" fill="rgb(244,114,52)" fg:x="292055" fg:w="136"/><text x="30.8002%" y="703.50"></text></g><g><title>btrfs_read_lock_root_node (2,369 samples, 0.25%)</title><rect x="30.3171%" y="709" width="0.2478%" height="15" fill="rgb(212,211,43)" fg:x="289827" fg:w="2369"/><text x="30.5671%" y="719.50"></text></g><g><title>osq_lock (1,564 samples, 0.16%)</title><rect x="30.7122%" y="629" width="0.1636%" height="15" fill="rgb(226,147,8)" fg:x="293604" fg:w="1564"/><text x="30.9622%" y="639.50"></text></g><g><title>rwsem_spin_on_owner (1,857 samples, 0.19%)</title><rect x="30.8812%" y="629" width="0.1943%" height="15" fill="rgb(226,23,13)" fg:x="295219" fg:w="1857"/><text x="31.1312%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (4,540 samples, 0.47%)</title><rect x="30.6026%" y="645" width="0.4749%" height="15" fill="rgb(240,63,4)" fg:x="292556" fg:w="4540"/><text x="30.8526%" y="655.50"></text></g><g><title>dequeue_entity (125 samples, 0.01%)</title><rect x="31.0864%" y="581" width="0.0131%" height="15" fill="rgb(221,1,32)" fg:x="297181" fg:w="125"/><text x="31.3364%" y="591.50"></text></g><g><title>dequeue_task_fair (176 samples, 0.02%)</title><rect x="31.0837%" y="597" width="0.0184%" height="15" fill="rgb(242,117,10)" fg:x="297155" fg:w="176"/><text x="31.3337%" y="607.50"></text></g><g><title>dequeue_task (192 samples, 0.02%)</title><rect x="31.0832%" y="613" width="0.0201%" height="15" fill="rgb(249,172,44)" fg:x="297150" fg:w="192"/><text x="31.3332%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (185 samples, 0.02%)</title><rect x="31.1051%" y="597" width="0.0194%" height="15" fill="rgb(244,46,45)" fg:x="297360" fg:w="185"/><text x="31.3551%" y="607.50"></text></g><g><title>x86_pmu_enable (177 samples, 0.02%)</title><rect x="31.1060%" y="581" width="0.0185%" height="15" fill="rgb(206,43,17)" fg:x="297368" fg:w="177"/><text x="31.3560%" y="591.50"></text></g><g><title>intel_pmu_enable_all (173 samples, 0.02%)</title><rect x="31.1064%" y="565" width="0.0181%" height="15" fill="rgb(239,218,39)" fg:x="297372" fg:w="173"/><text x="31.3564%" y="575.50"></text></g><g><title>native_write_msr (168 samples, 0.02%)</title><rect x="31.1069%" y="549" width="0.0176%" height="15" fill="rgb(208,169,54)" fg:x="297377" fg:w="168"/><text x="31.3569%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (207 samples, 0.02%)</title><rect x="31.1032%" y="613" width="0.0217%" height="15" fill="rgb(247,25,42)" fg:x="297342" fg:w="207"/><text x="31.3532%" y="623.50"></text></g><g><title>psi_group_change (107 samples, 0.01%)</title><rect x="31.1440%" y="597" width="0.0112%" height="15" fill="rgb(226,23,31)" fg:x="297732" fg:w="107"/><text x="31.3940%" y="607.50"></text></g><g><title>psi_task_switch (149 samples, 0.02%)</title><rect x="31.1405%" y="613" width="0.0156%" height="15" fill="rgb(247,16,28)" fg:x="297698" fg:w="149"/><text x="31.3905%" y="623.50"></text></g><g><title>__schedule (752 samples, 0.08%)</title><rect x="31.0796%" y="629" width="0.0787%" height="15" fill="rgb(231,147,38)" fg:x="297116" fg:w="752"/><text x="31.3296%" y="639.50"></text></g><g><title>schedule (761 samples, 0.08%)</title><rect x="31.0793%" y="645" width="0.0796%" height="15" fill="rgb(253,81,48)" fg:x="297113" fg:w="761"/><text x="31.3293%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (5,463 samples, 0.57%)</title><rect x="30.5879%" y="661" width="0.5715%" height="15" fill="rgb(249,222,43)" fg:x="292415" fg:w="5463"/><text x="30.8379%" y="671.50"></text></g><g><title>down_write (5,638 samples, 0.59%)</title><rect x="30.5705%" y="677" width="0.5898%" height="15" fill="rgb(221,3,27)" fg:x="292249" fg:w="5638"/><text x="30.8205%" y="687.50"></text></g><g><title>__btrfs_tree_lock (5,691 samples, 0.60%)</title><rect x="30.5657%" y="693" width="0.5953%" height="15" fill="rgb(228,180,5)" fg:x="292203" fg:w="5691"/><text x="30.8157%" y="703.50"></text></g><g><title>btrfs_tree_lock (5,709 samples, 0.60%)</title><rect x="30.5657%" y="709" width="0.5972%" height="15" fill="rgb(227,131,42)" fg:x="292203" fg:w="5709"/><text x="30.8157%" y="719.50"></text></g><g><title>dequeue_entity (135 samples, 0.01%)</title><rect x="31.1880%" y="581" width="0.0141%" height="15" fill="rgb(212,3,39)" fg:x="298152" fg:w="135"/><text x="31.4380%" y="591.50"></text></g><g><title>dequeue_task_fair (203 samples, 0.02%)</title><rect x="31.1851%" y="597" width="0.0212%" height="15" fill="rgb(226,45,5)" fg:x="298125" fg:w="203"/><text x="31.4351%" y="607.50"></text></g><g><title>dequeue_task (213 samples, 0.02%)</title><rect x="31.1849%" y="613" width="0.0223%" height="15" fill="rgb(215,167,45)" fg:x="298123" fg:w="213"/><text x="31.4349%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (101 samples, 0.01%)</title><rect x="31.2096%" y="597" width="0.0106%" height="15" fill="rgb(250,218,53)" fg:x="298359" fg:w="101"/><text x="31.4596%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (141 samples, 0.01%)</title><rect x="31.2073%" y="613" width="0.0147%" height="15" fill="rgb(207,140,0)" fg:x="298337" fg:w="141"/><text x="31.4573%" y="623.50"></text></g><g><title>pick_next_task (105 samples, 0.01%)</title><rect x="31.2223%" y="613" width="0.0110%" height="15" fill="rgb(238,133,51)" fg:x="298480" fg:w="105"/><text x="31.4723%" y="623.50"></text></g><g><title>psi_group_change (103 samples, 0.01%)</title><rect x="31.2428%" y="597" width="0.0108%" height="15" fill="rgb(218,203,53)" fg:x="298676" fg:w="103"/><text x="31.4928%" y="607.50"></text></g><g><title>psi_task_switch (162 samples, 0.02%)</title><rect x="31.2378%" y="613" width="0.0169%" height="15" fill="rgb(226,184,25)" fg:x="298628" fg:w="162"/><text x="31.4878%" y="623.50"></text></g><g><title>__schedule (784 samples, 0.08%)</title><rect x="31.1805%" y="629" width="0.0820%" height="15" fill="rgb(231,121,21)" fg:x="298081" fg:w="784"/><text x="31.4305%" y="639.50"></text></g><g><title>schedule (790 samples, 0.08%)</title><rect x="31.1801%" y="645" width="0.0826%" height="15" fill="rgb(251,14,34)" fg:x="298077" fg:w="790"/><text x="31.4301%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (867 samples, 0.09%)</title><rect x="31.1731%" y="661" width="0.0907%" height="15" fill="rgb(249,193,11)" fg:x="298010" fg:w="867"/><text x="31.4231%" y="671.50"></text></g><g><title>down_read (953 samples, 0.10%)</title><rect x="31.1647%" y="677" width="0.0997%" height="15" fill="rgb(220,172,37)" fg:x="297930" fg:w="953"/><text x="31.4147%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (976 samples, 0.10%)</title><rect x="31.1629%" y="693" width="0.1021%" height="15" fill="rgb(231,229,43)" fg:x="297912" fg:w="976"/><text x="31.4129%" y="703.50"></text></g><g><title>btrfs_tree_read_lock (980 samples, 0.10%)</title><rect x="31.1629%" y="709" width="0.1025%" height="15" fill="rgb(250,161,5)" fg:x="297912" fg:w="980"/><text x="31.4129%" y="719.50"></text></g><g><title>btrfs_buffer_uptodate (176 samples, 0.02%)</title><rect x="31.2907%" y="693" width="0.0184%" height="15" fill="rgb(218,225,18)" fg:x="299134" fg:w="176"/><text x="31.5407%" y="703.50"></text></g><g><title>verify_parent_transid (148 samples, 0.02%)</title><rect x="31.2936%" y="677" width="0.0155%" height="15" fill="rgb(245,45,42)" fg:x="299162" fg:w="148"/><text x="31.5436%" y="687.50"></text></g><g><title>btrfs_get_64 (199 samples, 0.02%)</title><rect x="31.3091%" y="693" width="0.0208%" height="15" fill="rgb(211,115,1)" fg:x="299310" fg:w="199"/><text x="31.5591%" y="703.50"></text></g><g><title>btrfs_node_key (257 samples, 0.03%)</title><rect x="31.3299%" y="693" width="0.0269%" height="15" fill="rgb(248,133,52)" fg:x="299509" fg:w="257"/><text x="31.5799%" y="703.50"></text></g><g><title>read_extent_buffer (249 samples, 0.03%)</title><rect x="31.3308%" y="677" width="0.0260%" height="15" fill="rgb(238,100,21)" fg:x="299517" fg:w="249"/><text x="31.5808%" y="687.50"></text></g><g><title>__radix_tree_lookup (660 samples, 0.07%)</title><rect x="31.4409%" y="645" width="0.0690%" height="15" fill="rgb(247,144,11)" fg:x="300570" fg:w="660"/><text x="31.6909%" y="655.50"></text></g><g><title>radix_tree_lookup (663 samples, 0.07%)</title><rect x="31.4407%" y="661" width="0.0694%" height="15" fill="rgb(206,164,16)" fg:x="300568" fg:w="663"/><text x="31.6907%" y="671.50"></text></g><g><title>find_extent_buffer_nolock (1,196 samples, 0.13%)</title><rect x="31.3850%" y="677" width="0.1251%" height="15" fill="rgb(222,34,3)" fg:x="300036" fg:w="1196"/><text x="31.6350%" y="687.50"></text></g><g><title>mark_page_accessed (418 samples, 0.04%)</title><rect x="31.5102%" y="677" width="0.0437%" height="15" fill="rgb(248,82,4)" fg:x="301232" fg:w="418"/><text x="31.7602%" y="687.50"></text></g><g><title>find_extent_buffer (1,788 samples, 0.19%)</title><rect x="31.3691%" y="693" width="0.1870%" height="15" fill="rgb(228,81,46)" fg:x="299884" fg:w="1788"/><text x="31.6191%" y="703.50"></text></g><g><title>read_block_for_search (2,745 samples, 0.29%)</title><rect x="31.2750%" y="709" width="0.2871%" height="15" fill="rgb(227,67,47)" fg:x="298984" fg:w="2745"/><text x="31.5250%" y="719.50"></text></g><g><title>add_to_page_cache_lru (137 samples, 0.01%)</title><rect x="31.5852%" y="613" width="0.0143%" height="15" fill="rgb(215,93,53)" fg:x="301949" fg:w="137"/><text x="31.8352%" y="623.50"></text></g><g><title>pagecache_get_page (239 samples, 0.03%)</title><rect x="31.5765%" y="629" width="0.0250%" height="15" fill="rgb(248,194,39)" fg:x="301866" fg:w="239"/><text x="31.8265%" y="639.50"></text></g><g><title>alloc_extent_buffer (279 samples, 0.03%)</title><rect x="31.5732%" y="645" width="0.0292%" height="15" fill="rgb(215,5,19)" fg:x="301835" fg:w="279"/><text x="31.8232%" y="655.50"></text></g><g><title>btrfs_find_create_tree_block (300 samples, 0.03%)</title><rect x="31.5728%" y="661" width="0.0314%" height="15" fill="rgb(226,215,51)" fg:x="301831" fg:w="300"/><text x="31.8228%" y="671.50"></text></g><g><title>btrfs_init_new_buffer (383 samples, 0.04%)</title><rect x="31.5724%" y="677" width="0.0401%" height="15" fill="rgb(225,56,26)" fg:x="301827" fg:w="383"/><text x="31.8224%" y="687.50"></text></g><g><title>btrfs_alloc_tree_block (567 samples, 0.06%)</title><rect x="31.5638%" y="693" width="0.0593%" height="15" fill="rgb(222,75,29)" fg:x="301745" fg:w="567"/><text x="31.8138%" y="703.50"></text></g><g><title>copy_for_split (189 samples, 0.02%)</title><rect x="31.6272%" y="693" width="0.0198%" height="15" fill="rgb(236,139,6)" fg:x="302351" fg:w="189"/><text x="31.8772%" y="703.50"></text></g><g><title>__push_leaf_left (264 samples, 0.03%)</title><rect x="31.6483%" y="677" width="0.0276%" height="15" fill="rgb(223,137,36)" fg:x="302553" fg:w="264"/><text x="31.8983%" y="687.50"></text></g><g><title>push_leaf_left (362 samples, 0.04%)</title><rect x="31.6473%" y="693" width="0.0379%" height="15" fill="rgb(226,99,2)" fg:x="302543" fg:w="362"/><text x="31.8973%" y="703.50"></text></g><g><title>split_leaf (1,189 samples, 0.12%)</title><rect x="31.5622%" y="709" width="0.1244%" height="15" fill="rgb(206,133,23)" fg:x="301730" fg:w="1189"/><text x="31.8122%" y="719.50"></text></g><g><title>try_to_wake_up (244 samples, 0.03%)</title><rect x="31.7383%" y="629" width="0.0255%" height="15" fill="rgb(243,173,15)" fg:x="303413" fg:w="244"/><text x="31.9883%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (383 samples, 0.04%)</title><rect x="31.7240%" y="693" width="0.0401%" height="15" fill="rgb(228,69,28)" fg:x="303276" fg:w="383"/><text x="31.9740%" y="703.50"></text></g><g><title>up_read (370 samples, 0.04%)</title><rect x="31.7253%" y="677" width="0.0387%" height="15" fill="rgb(212,51,22)" fg:x="303289" fg:w="370"/><text x="31.9753%" y="687.50"></text></g><g><title>rwsem_wake.isra.0 (368 samples, 0.04%)</title><rect x="31.7255%" y="661" width="0.0385%" height="15" fill="rgb(227,113,0)" fg:x="303291" fg:w="368"/><text x="31.9755%" y="671.50"></text></g><g><title>wake_up_q (268 samples, 0.03%)</title><rect x="31.7360%" y="645" width="0.0280%" height="15" fill="rgb(252,84,27)" fg:x="303391" fg:w="268"/><text x="31.9860%" y="655.50"></text></g><g><title>select_idle_sibling (131 samples, 0.01%)</title><rect x="31.8165%" y="597" width="0.0137%" height="15" fill="rgb(223,145,39)" fg:x="304161" fg:w="131"/><text x="32.0665%" y="607.50"></text></g><g><title>select_task_rq_fair (198 samples, 0.02%)</title><rect x="31.8131%" y="613" width="0.0207%" height="15" fill="rgb(239,219,30)" fg:x="304128" fg:w="198"/><text x="32.0631%" y="623.50"></text></g><g><title>enqueue_task (136 samples, 0.01%)</title><rect x="31.8368%" y="597" width="0.0142%" height="15" fill="rgb(224,196,39)" fg:x="304355" fg:w="136"/><text x="32.0868%" y="607.50"></text></g><g><title>ttwu_do_activate (174 samples, 0.02%)</title><rect x="31.8367%" y="613" width="0.0182%" height="15" fill="rgb(205,35,43)" fg:x="304354" fg:w="174"/><text x="32.0867%" y="623.50"></text></g><g><title>try_to_wake_up (770 samples, 0.08%)</title><rect x="31.7857%" y="629" width="0.0805%" height="15" fill="rgb(228,201,21)" fg:x="303866" fg:w="770"/><text x="32.0357%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (957 samples, 0.10%)</title><rect x="31.7662%" y="661" width="0.1001%" height="15" fill="rgb(237,118,16)" fg:x="303680" fg:w="957"/><text x="32.0162%" y="671.50"></text></g><g><title>wake_up_q (803 samples, 0.08%)</title><rect x="31.7823%" y="645" width="0.0840%" height="15" fill="rgb(241,17,19)" fg:x="303834" fg:w="803"/><text x="32.0323%" y="655.50"></text></g><g><title>btrfs_tree_unlock (979 samples, 0.10%)</title><rect x="31.7640%" y="693" width="0.1024%" height="15" fill="rgb(214,10,25)" fg:x="303659" fg:w="979"/><text x="32.0140%" y="703.50"></text></g><g><title>up_write (963 samples, 0.10%)</title><rect x="31.7657%" y="677" width="0.1007%" height="15" fill="rgb(238,37,29)" fg:x="303675" fg:w="963"/><text x="32.0157%" y="687.50"></text></g><g><title>up_read (174 samples, 0.02%)</title><rect x="31.8664%" y="693" width="0.0182%" height="15" fill="rgb(253,83,25)" fg:x="304638" fg:w="174"/><text x="32.1164%" y="703.50"></text></g><g><title>btrfs_search_slot (16,998 samples, 1.78%)</title><rect x="30.1136%" y="725" width="1.7781%" height="15" fill="rgb(234,192,12)" fg:x="287881" fg:w="16998"/><text x="30.3636%" y="735.50">b..</text></g><g><title>unlock_up (1,956 samples, 0.20%)</title><rect x="31.6870%" y="709" width="0.2046%" height="15" fill="rgb(241,216,45)" fg:x="302923" fg:w="1956"/><text x="31.9370%" y="719.50"></text></g><g><title>btrfs_get_token_32 (244 samples, 0.03%)</title><rect x="31.9529%" y="709" width="0.0255%" height="15" fill="rgb(242,22,33)" fg:x="305465" fg:w="244"/><text x="32.2029%" y="719.50"></text></g><g><title>btrfs_get_32 (149 samples, 0.02%)</title><rect x="31.9878%" y="677" width="0.0156%" height="15" fill="rgb(231,105,49)" fg:x="305798" fg:w="149"/><text x="32.2378%" y="687.50"></text></g><g><title>btrfs_leaf_free_space (269 samples, 0.03%)</title><rect x="31.9785%" y="709" width="0.0281%" height="15" fill="rgb(218,204,15)" fg:x="305709" fg:w="269"/><text x="32.2285%" y="719.50"></text></g><g><title>leaf_space_used (222 samples, 0.02%)</title><rect x="31.9834%" y="693" width="0.0232%" height="15" fill="rgb(235,138,41)" fg:x="305756" fg:w="222"/><text x="32.2334%" y="703.50"></text></g><g><title>btrfs_mark_buffer_dirty (117 samples, 0.01%)</title><rect x="32.0066%" y="709" width="0.0122%" height="15" fill="rgb(246,0,9)" fg:x="305978" fg:w="117"/><text x="32.2566%" y="719.50"></text></g><g><title>btrfs_set_token_32 (372 samples, 0.04%)</title><rect x="32.0188%" y="709" width="0.0389%" height="15" fill="rgb(210,74,4)" fg:x="306095" fg:w="372"/><text x="32.2688%" y="719.50"></text></g><g><title>btrfs_unlock_up_safe (116 samples, 0.01%)</title><rect x="32.0578%" y="709" width="0.0121%" height="15" fill="rgb(250,60,41)" fg:x="306467" fg:w="116"/><text x="32.3078%" y="719.50"></text></g><g><title>check_setget_bounds.isra.0 (111 samples, 0.01%)</title><rect x="32.0699%" y="709" width="0.0116%" height="15" fill="rgb(220,115,12)" fg:x="306583" fg:w="111"/><text x="32.3199%" y="719.50"></text></g><g><title>memmove_extent_buffer (315 samples, 0.03%)</title><rect x="32.0926%" y="709" width="0.0330%" height="15" fill="rgb(237,100,13)" fg:x="306800" fg:w="315"/><text x="32.3426%" y="719.50"></text></g><g><title>memmove (131 samples, 0.01%)</title><rect x="32.1118%" y="693" width="0.0137%" height="15" fill="rgb(213,55,26)" fg:x="306984" fg:w="131"/><text x="32.3618%" y="703.50"></text></g><g><title>setup_items_for_insert (2,255 samples, 0.24%)</title><rect x="31.9099%" y="725" width="0.2359%" height="15" fill="rgb(216,17,4)" fg:x="305054" fg:w="2255"/><text x="32.1599%" y="735.50"></text></g><g><title>write_extent_buffer (190 samples, 0.02%)</title><rect x="32.1260%" y="709" width="0.0199%" height="15" fill="rgb(220,153,47)" fg:x="307119" fg:w="190"/><text x="32.3760%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (19,715 samples, 2.06%)</title><rect x="30.0895%" y="741" width="2.0623%" height="15" fill="rgb(215,131,9)" fg:x="287651" fg:w="19715"/><text x="30.3395%" y="751.50">b..</text></g><g><title>btrfs_update_root_times (104 samples, 0.01%)</title><rect x="32.1902%" y="741" width="0.0109%" height="15" fill="rgb(233,46,42)" fg:x="307733" fg:w="104"/><text x="32.4402%" y="751.50"></text></g><g><title>btrfs_set_token_32 (276 samples, 0.03%)</title><rect x="32.2312%" y="725" width="0.0289%" height="15" fill="rgb(226,86,7)" fg:x="308125" fg:w="276"/><text x="32.4812%" y="735.50"></text></g><g><title>btrfs_set_token_64 (430 samples, 0.04%)</title><rect x="32.2601%" y="725" width="0.0450%" height="15" fill="rgb(239,226,21)" fg:x="308401" fg:w="430"/><text x="32.5101%" y="735.50"></text></g><g><title>check_setget_bounds.isra.0 (101 samples, 0.01%)</title><rect x="32.3050%" y="725" width="0.0106%" height="15" fill="rgb(244,137,22)" fg:x="308831" fg:w="101"/><text x="32.5550%" y="735.50"></text></g><g><title>fill_inode_item (1,105 samples, 0.12%)</title><rect x="32.2105%" y="741" width="0.1156%" height="15" fill="rgb(211,139,35)" fg:x="307927" fg:w="1105"/><text x="32.4605%" y="751.50"></text></g><g><title>inode_init_owner (134 samples, 0.01%)</title><rect x="32.3372%" y="741" width="0.0140%" height="15" fill="rgb(214,62,50)" fg:x="309138" fg:w="134"/><text x="32.5872%" y="751.50"></text></g><g><title>inode_tree_add (2,119 samples, 0.22%)</title><rect x="32.3526%" y="741" width="0.2217%" height="15" fill="rgb(212,113,44)" fg:x="309286" fg:w="2119"/><text x="32.6026%" y="751.50"></text></g><g><title>_raw_spin_lock (136 samples, 0.01%)</title><rect x="32.5750%" y="725" width="0.0142%" height="15" fill="rgb(226,150,43)" fg:x="311412" fg:w="136"/><text x="32.8250%" y="735.50"></text></g><g><title>insert_inode_locked4 (545 samples, 0.06%)</title><rect x="32.5743%" y="741" width="0.0570%" height="15" fill="rgb(250,71,37)" fg:x="311405" fg:w="545"/><text x="32.8243%" y="751.50"></text></g><g><title>inode_insert5 (401 samples, 0.04%)</title><rect x="32.5894%" y="725" width="0.0419%" height="15" fill="rgb(219,76,19)" fg:x="311549" fg:w="401"/><text x="32.8394%" y="735.50"></text></g><g><title>find_inode (346 samples, 0.04%)</title><rect x="32.5951%" y="709" width="0.0362%" height="15" fill="rgb(250,39,11)" fg:x="311604" fg:w="346"/><text x="32.8451%" y="719.50"></text></g><g><title>memzero_extent_buffer (126 samples, 0.01%)</title><rect x="32.6341%" y="741" width="0.0132%" height="15" fill="rgb(230,64,31)" fg:x="311977" fg:w="126"/><text x="32.8841%" y="751.50"></text></g><g><title>btrfs_init_metadata_block_rsv (111 samples, 0.01%)</title><rect x="32.6871%" y="693" width="0.0116%" height="15" fill="rgb(208,222,23)" fg:x="312483" fg:w="111"/><text x="32.9371%" y="703.50"></text></g><g><title>___slab_alloc (121 samples, 0.01%)</title><rect x="32.7203%" y="677" width="0.0127%" height="15" fill="rgb(227,125,18)" fg:x="312801" fg:w="121"/><text x="32.9703%" y="687.50"></text></g><g><title>get_obj_cgroup_from_current (197 samples, 0.02%)</title><rect x="32.7337%" y="677" width="0.0206%" height="15" fill="rgb(234,210,9)" fg:x="312929" fg:w="197"/><text x="32.9837%" y="687.50"></text></g><g><title>mod_objcg_state (110 samples, 0.01%)</title><rect x="32.7788%" y="661" width="0.0115%" height="15" fill="rgb(217,127,24)" fg:x="313360" fg:w="110"/><text x="33.0288%" y="671.50"></text></g><g><title>memcg_slab_post_alloc_hook (345 samples, 0.04%)</title><rect x="32.7544%" y="677" width="0.0361%" height="15" fill="rgb(239,141,48)" fg:x="313127" fg:w="345"/><text x="33.0044%" y="687.50"></text></g><g><title>obj_cgroup_charge_pages (97 samples, 0.01%)</title><rect x="32.7921%" y="661" width="0.0101%" height="15" fill="rgb(227,109,8)" fg:x="313487" fg:w="97"/><text x="33.0421%" y="671.50"></text></g><g><title>obj_cgroup_charge (170 samples, 0.02%)</title><rect x="32.7907%" y="677" width="0.0178%" height="15" fill="rgb(235,184,23)" fg:x="313474" fg:w="170"/><text x="33.0407%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,038 samples, 0.11%)</title><rect x="32.7023%" y="693" width="0.1086%" height="15" fill="rgb(227,226,48)" fg:x="312629" fg:w="1038"/><text x="32.9523%" y="703.50"></text></g><g><title>btrfs_alloc_inode (1,338 samples, 0.14%)</title><rect x="32.6715%" y="709" width="0.1400%" height="15" fill="rgb(206,150,11)" fg:x="312334" fg:w="1338"/><text x="32.9215%" y="719.50"></text></g><g><title>kmem_cache_alloc (246 samples, 0.03%)</title><rect x="32.8598%" y="677" width="0.0257%" height="15" fill="rgb(254,2,33)" fg:x="314134" fg:w="246"/><text x="33.1098%" y="687.50"></text></g><g><title>inode_init_always (644 samples, 0.07%)</title><rect x="32.8223%" y="709" width="0.0674%" height="15" fill="rgb(243,160,20)" fg:x="313776" fg:w="644"/><text x="33.0723%" y="719.50"></text></g><g><title>security_inode_alloc (333 samples, 0.03%)</title><rect x="32.8548%" y="693" width="0.0348%" height="15" fill="rgb(218,208,30)" fg:x="314087" fg:w="333"/><text x="33.1048%" y="703.50"></text></g><g><title>alloc_inode (2,334 samples, 0.24%)</title><rect x="32.6503%" y="725" width="0.2441%" height="15" fill="rgb(224,120,49)" fg:x="312132" fg:w="2334"/><text x="32.9003%" y="735.50"></text></g><g><title>new_inode (2,416 samples, 0.25%)</title><rect x="32.6473%" y="741" width="0.2527%" height="15" fill="rgb(246,12,2)" fg:x="312103" fg:w="2416"/><text x="32.8973%" y="751.50"></text></g><g><title>rb_insert_color (215 samples, 0.02%)</title><rect x="32.9000%" y="741" width="0.0225%" height="15" fill="rgb(236,117,3)" fg:x="314519" fg:w="215"/><text x="33.1500%" y="751.50"></text></g><g><title>btrfs_new_inode (28,947 samples, 3.03%)</title><rect x="29.9099%" y="757" width="3.0280%" height="15" fill="rgb(216,128,52)" fg:x="285934" fg:w="28947"/><text x="30.1599%" y="767.50">btr..</text></g><g><title>write_extent_buffer (131 samples, 0.01%)</title><rect x="32.9242%" y="741" width="0.0137%" height="15" fill="rgb(246,145,19)" fg:x="314750" fg:w="131"/><text x="33.1742%" y="751.50"></text></g><g><title>_raw_spin_lock (285 samples, 0.03%)</title><rect x="33.0125%" y="725" width="0.0298%" height="15" fill="rgb(222,11,46)" fg:x="315594" fg:w="285"/><text x="33.2625%" y="735.50"></text></g><g><title>need_preemptive_reclaim (382 samples, 0.04%)</title><rect x="33.0776%" y="677" width="0.0400%" height="15" fill="rgb(245,82,36)" fg:x="316217" fg:w="382"/><text x="33.3276%" y="687.50"></text></g><g><title>btrfs_get_alloc_profile (194 samples, 0.02%)</title><rect x="33.0973%" y="661" width="0.0203%" height="15" fill="rgb(250,73,51)" fg:x="316405" fg:w="194"/><text x="33.3473%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (157 samples, 0.02%)</title><rect x="33.1219%" y="661" width="0.0164%" height="15" fill="rgb(221,189,23)" fg:x="316640" fg:w="157"/><text x="33.3719%" y="671.50"></text></g><g><title>__radix_tree_lookup (117 samples, 0.01%)</title><rect x="33.1385%" y="629" width="0.0122%" height="15" fill="rgb(210,33,7)" fg:x="316799" fg:w="117"/><text x="33.3885%" y="639.50"></text></g><g><title>idr_find (120 samples, 0.01%)</title><rect x="33.1383%" y="661" width="0.0126%" height="15" fill="rgb(210,107,22)" fg:x="316797" fg:w="120"/><text x="33.3883%" y="671.50"></text></g><g><title>radix_tree_lookup (118 samples, 0.01%)</title><rect x="33.1385%" y="645" width="0.0123%" height="15" fill="rgb(222,116,37)" fg:x="316799" fg:w="118"/><text x="33.3885%" y="655.50"></text></g><g><title>__reserve_bytes (949 samples, 0.10%)</title><rect x="33.0521%" y="693" width="0.0993%" height="15" fill="rgb(254,17,48)" fg:x="315973" fg:w="949"/><text x="33.3021%" y="703.50"></text></g><g><title>work_busy (322 samples, 0.03%)</title><rect x="33.1177%" y="677" width="0.0337%" height="15" fill="rgb(224,36,32)" fg:x="316600" fg:w="322"/><text x="33.3677%" y="687.50"></text></g><g><title>_raw_spin_lock (115 samples, 0.01%)</title><rect x="33.1514%" y="693" width="0.0120%" height="15" fill="rgb(232,90,46)" fg:x="316922" fg:w="115"/><text x="33.4014%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (1,211 samples, 0.13%)</title><rect x="33.0424%" y="725" width="0.1267%" height="15" fill="rgb(241,66,40)" fg:x="315880" fg:w="1211"/><text x="33.2924%" y="735.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,181 samples, 0.12%)</title><rect x="33.0455%" y="709" width="0.1235%" height="15" fill="rgb(249,184,29)" fg:x="315910" fg:w="1181"/><text x="33.2955%" y="719.50"></text></g><g><title>join_transaction (117 samples, 0.01%)</title><rect x="33.1720%" y="725" width="0.0122%" height="15" fill="rgb(231,181,1)" fg:x="317119" fg:w="117"/><text x="33.4220%" y="735.50"></text></g><g><title>kmem_cache_alloc (218 samples, 0.02%)</title><rect x="33.1842%" y="725" width="0.0228%" height="15" fill="rgb(224,94,2)" fg:x="317236" fg:w="218"/><text x="33.4342%" y="735.50"></text></g><g><title>start_transaction (2,366 samples, 0.25%)</title><rect x="32.9682%" y="741" width="0.2475%" height="15" fill="rgb(229,170,15)" fg:x="315171" fg:w="2366"/><text x="33.2182%" y="751.50"></text></g><g><title>btrfs_start_transaction (2,444 samples, 0.26%)</title><rect x="32.9625%" y="757" width="0.2557%" height="15" fill="rgb(240,127,35)" fg:x="315116" fg:w="2444"/><text x="33.2125%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (229 samples, 0.02%)</title><rect x="33.2657%" y="725" width="0.0240%" height="15" fill="rgb(248,196,34)" fg:x="318015" fg:w="229"/><text x="33.5157%" y="735.50"></text></g><g><title>__mutex_init (102 samples, 0.01%)</title><rect x="33.2902%" y="725" width="0.0107%" height="15" fill="rgb(236,137,7)" fg:x="318249" fg:w="102"/><text x="33.5402%" y="735.50"></text></g><g><title>_raw_spin_lock (265 samples, 0.03%)</title><rect x="33.3009%" y="725" width="0.0277%" height="15" fill="rgb(235,127,16)" fg:x="318351" fg:w="265"/><text x="33.5509%" y="735.50"></text></g><g><title>btrfs_get_delayed_node (646 samples, 0.07%)</title><rect x="33.3513%" y="709" width="0.0676%" height="15" fill="rgb(250,192,54)" fg:x="318833" fg:w="646"/><text x="33.6013%" y="719.50"></text></g><g><title>radix_tree_lookup (544 samples, 0.06%)</title><rect x="33.3620%" y="693" width="0.0569%" height="15" fill="rgb(218,98,20)" fg:x="318935" fg:w="544"/><text x="33.6120%" y="703.50"></text></g><g><title>__radix_tree_lookup (541 samples, 0.06%)</title><rect x="33.3623%" y="677" width="0.0566%" height="15" fill="rgb(230,176,47)" fg:x="318938" fg:w="541"/><text x="33.6123%" y="687.50"></text></g><g><title>___slab_alloc (163 samples, 0.02%)</title><rect x="33.4396%" y="693" width="0.0171%" height="15" fill="rgb(244,2,33)" fg:x="319677" fg:w="163"/><text x="33.6896%" y="703.50"></text></g><g><title>kmem_cache_alloc (457 samples, 0.05%)</title><rect x="33.4189%" y="709" width="0.0478%" height="15" fill="rgb(231,100,17)" fg:x="319479" fg:w="457"/><text x="33.6689%" y="719.50"></text></g><g><title>radix_tree_insert (238 samples, 0.02%)</title><rect x="33.4726%" y="709" width="0.0249%" height="15" fill="rgb(245,23,12)" fg:x="319993" fg:w="238"/><text x="33.7226%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,621 samples, 0.17%)</title><rect x="33.3340%" y="725" width="0.1696%" height="15" fill="rgb(249,55,22)" fg:x="318668" fg:w="1621"/><text x="33.5840%" y="735.50"></text></g><g><title>fill_stack_inode_item (175 samples, 0.02%)</title><rect x="33.5036%" y="725" width="0.0183%" height="15" fill="rgb(207,134,9)" fg:x="320289" fg:w="175"/><text x="33.7536%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (2,772 samples, 0.29%)</title><rect x="33.2465%" y="741" width="0.2900%" height="15" fill="rgb(218,134,0)" fg:x="317831" fg:w="2772"/><text x="33.4965%" y="751.50"></text></g><g><title>btrfs_update_root_times (98 samples, 0.01%)</title><rect x="33.5405%" y="741" width="0.0103%" height="15" fill="rgb(213,212,33)" fg:x="320642" fg:w="98"/><text x="33.7905%" y="751.50"></text></g><g><title>btrfs_update_inode (3,167 samples, 0.33%)</title><rect x="33.2251%" y="757" width="0.3313%" height="15" fill="rgb(252,106,18)" fg:x="317627" fg:w="3167"/><text x="33.4751%" y="767.50"></text></g><g><title>__d_instantiate (165 samples, 0.02%)</title><rect x="33.5804%" y="741" width="0.0173%" height="15" fill="rgb(208,126,42)" fg:x="321023" fg:w="165"/><text x="33.8304%" y="751.50"></text></g><g><title>d_instantiate_new (394 samples, 0.04%)</title><rect x="33.5763%" y="757" width="0.0412%" height="15" fill="rgb(246,175,29)" fg:x="320984" fg:w="394"/><text x="33.8263%" y="767.50"></text></g><g><title>mutex_unlock (100 samples, 0.01%)</title><rect x="33.6424%" y="757" width="0.0105%" height="15" fill="rgb(215,13,50)" fg:x="321616" fg:w="100"/><text x="33.8924%" y="767.50"></text></g><g><title>btrfs_symlink (90,992 samples, 9.52%)</title><rect x="24.1781%" y="773" width="9.5182%" height="15" fill="rgb(216,172,15)" fg:x="231139" fg:w="90992"/><text x="24.4281%" y="783.50">btrfs_symlink</text></g><g><title>write_extent_buffer (188 samples, 0.02%)</title><rect x="33.6766%" y="757" width="0.0197%" height="15" fill="rgb(212,103,13)" fg:x="321943" fg:w="188"/><text x="33.9266%" y="767.50"></text></g><g><title>fsnotify (98 samples, 0.01%)</title><rect x="33.7103%" y="773" width="0.0103%" height="15" fill="rgb(231,171,36)" fg:x="322265" fg:w="98"/><text x="33.9603%" y="783.50"></text></g><g><title>btrfs_permission (129 samples, 0.01%)</title><rect x="33.7320%" y="757" width="0.0135%" height="15" fill="rgb(250,123,20)" fg:x="322473" fg:w="129"/><text x="33.9820%" y="767.50"></text></g><g><title>inode_permission (166 samples, 0.02%)</title><rect x="33.7512%" y="757" width="0.0174%" height="15" fill="rgb(212,53,50)" fg:x="322656" fg:w="166"/><text x="34.0012%" y="767.50"></text></g><g><title>may_create (413 samples, 0.04%)</title><rect x="33.7278%" y="773" width="0.0432%" height="15" fill="rgb(243,54,12)" fg:x="322432" fg:w="413"/><text x="33.9778%" y="783.50"></text></g><g><title>strlen (427 samples, 0.04%)</title><rect x="33.7731%" y="773" width="0.0447%" height="15" fill="rgb(234,101,34)" fg:x="322865" fg:w="427"/><text x="34.0231%" y="783.50"></text></g><g><title>do_symlinkat (119,896 samples, 12.54%)</title><rect x="21.2770%" y="805" width="12.5416%" height="15" fill="rgb(254,67,22)" fg:x="203405" fg:w="119896"/><text x="21.5270%" y="815.50">do_symlinkat</text></g><g><title>vfs_symlink (92,626 samples, 9.69%)</title><rect x="24.1296%" y="789" width="9.6891%" height="15" fill="rgb(250,35,47)" fg:x="230675" fg:w="92626"/><text x="24.3796%" y="799.50">vfs_symlink</text></g><g><title>kmem_cache_alloc (370 samples, 0.04%)</title><rect x="33.8469%" y="773" width="0.0387%" height="15" fill="rgb(226,126,38)" fg:x="323571" fg:w="370"/><text x="34.0969%" y="783.50"></text></g><g><title>memset_erms (723 samples, 0.08%)</title><rect x="33.8867%" y="773" width="0.0756%" height="15" fill="rgb(216,138,53)" fg:x="323951" fg:w="723"/><text x="34.1367%" y="783.50"></text></g><g><title>__check_heap_object (98 samples, 0.01%)</title><rect x="34.0401%" y="725" width="0.0103%" height="15" fill="rgb(246,199,43)" fg:x="325418" fg:w="98"/><text x="34.2901%" y="735.50"></text></g><g><title>__virt_addr_valid (205 samples, 0.02%)</title><rect x="34.0504%" y="725" width="0.0214%" height="15" fill="rgb(232,125,11)" fg:x="325516" fg:w="205"/><text x="34.3004%" y="735.50"></text></g><g><title>__check_object_size.part.0 (433 samples, 0.05%)</title><rect x="34.0266%" y="741" width="0.0453%" height="15" fill="rgb(218,219,45)" fg:x="325289" fg:w="433"/><text x="34.2766%" y="751.50"></text></g><g><title>__check_object_size (557 samples, 0.06%)</title><rect x="34.0258%" y="757" width="0.0583%" height="15" fill="rgb(216,102,54)" fg:x="325281" fg:w="557"/><text x="34.2758%" y="767.50"></text></g><g><title>getname_flags.part.0 (2,427 samples, 0.25%)</title><rect x="33.8306%" y="789" width="0.2539%" height="15" fill="rgb(250,228,7)" fg:x="323415" fg:w="2427"/><text x="34.0806%" y="799.50"></text></g><g><title>strncpy_from_user (1,156 samples, 0.12%)</title><rect x="33.9635%" y="773" width="0.1209%" height="15" fill="rgb(226,125,25)" fg:x="324686" fg:w="1156"/><text x="34.2135%" y="783.50"></text></g><g><title>getname_flags (2,450 samples, 0.26%)</title><rect x="33.8305%" y="805" width="0.2563%" height="15" fill="rgb(224,165,27)" fg:x="323414" fg:w="2450"/><text x="34.0805%" y="815.50"></text></g><g><title>__x64_sys_symlink (122,727 samples, 12.84%)</title><rect x="21.2739%" y="821" width="12.8378%" height="15" fill="rgb(233,86,3)" fg:x="203375" fg:w="122727"/><text x="21.5239%" y="831.50">__x64_sys_symlink</text></g><g><title>cshook_systemcalltable_post_symlink (104 samples, 0.01%)</title><rect x="34.1223%" y="821" width="0.0109%" height="15" fill="rgb(228,116,20)" fg:x="326204" fg:w="104"/><text x="34.3723%" y="831.50"></text></g><g><title>do_syscall_64 (124,644 samples, 13.04%)</title><rect x="21.1077%" y="853" width="13.0383%" height="15" fill="rgb(209,192,17)" fg:x="201786" fg:w="124644"/><text x="21.3577%" y="863.50">do_syscall_64</text></g><g><title>unload_network_ops_symbols (123,322 samples, 12.90%)</title><rect x="21.2460%" y="837" width="12.9000%" height="15" fill="rgb(224,88,34)" fg:x="203108" fg:w="123322"/><text x="21.4960%" y="847.50">unload_network_ops_..</text></g><g><title>entry_SYSCALL_64_after_hwframe (124,878 samples, 13.06%)</title><rect x="21.0987%" y="869" width="13.0628%" height="15" fill="rgb(233,38,6)" fg:x="201700" fg:w="124878"/><text x="21.3487%" y="879.50">entry_SYSCALL_64_aft..</text></g><g><title>__GI_symlink (125,438 samples, 13.12%)</title><rect x="21.0564%" y="885" width="13.1213%" height="15" fill="rgb(212,59,30)" fg:x="201296" fg:w="125438"/><text x="21.3064%" y="895.50">__GI_symlink</text></g><g><title>__entry_text_start (112 samples, 0.01%)</title><rect x="34.1943%" y="869" width="0.0117%" height="15" fill="rgb(213,80,3)" fg:x="326892" fg:w="112"/><text x="34.4443%" y="879.50"></text></g><g><title>__switch_to_asm (121 samples, 0.01%)</title><rect x="34.2188%" y="869" width="0.0127%" height="15" fill="rgb(251,178,7)" fg:x="327126" fg:w="121"/><text x="34.4688%" y="879.50"></text></g><g><title>release_rundown (114 samples, 0.01%)</title><rect x="34.2906%" y="837" width="0.0119%" height="15" fill="rgb(213,154,26)" fg:x="327813" fg:w="114"/><text x="34.5406%" y="847.50"></text></g><g><title>__get_user_8 (172 samples, 0.02%)</title><rect x="34.3487%" y="757" width="0.0180%" height="15" fill="rgb(238,165,49)" fg:x="328368" fg:w="172"/><text x="34.5987%" y="767.50"></text></g><g><title>__rseq_handle_notify_resume (321 samples, 0.03%)</title><rect x="34.3351%" y="789" width="0.0336%" height="15" fill="rgb(248,91,46)" fg:x="328238" fg:w="321"/><text x="34.5851%" y="799.50"></text></g><g><title>rseq_ip_fixup (220 samples, 0.02%)</title><rect x="34.3457%" y="773" width="0.0230%" height="15" fill="rgb(244,21,52)" fg:x="328339" fg:w="220"/><text x="34.5957%" y="783.50"></text></g><g><title>exit_to_user_mode_loop (533 samples, 0.06%)</title><rect x="34.3207%" y="805" width="0.0558%" height="15" fill="rgb(247,122,20)" fg:x="328100" fg:w="533"/><text x="34.5707%" y="815.50"></text></g><g><title>restore_fpregs_from_fpstate (237 samples, 0.02%)</title><rect x="34.3863%" y="789" width="0.0248%" height="15" fill="rgb(218,27,9)" fg:x="328728" fg:w="237"/><text x="34.6363%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (977 samples, 0.10%)</title><rect x="34.3118%" y="821" width="0.1022%" height="15" fill="rgb(246,7,6)" fg:x="328015" fg:w="977"/><text x="34.5618%" y="831.50"></text></g><g><title>switch_fpu_return (324 samples, 0.03%)</title><rect x="34.3801%" y="805" width="0.0339%" height="15" fill="rgb(227,135,54)" fg:x="328668" fg:w="324"/><text x="34.6301%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (1,090 samples, 0.11%)</title><rect x="34.3039%" y="837" width="0.1140%" height="15" fill="rgb(247,14,11)" fg:x="327940" fg:w="1090"/><text x="34.5539%" y="847.50"></text></g><g><title>dput (109 samples, 0.01%)</title><rect x="34.4653%" y="789" width="0.0114%" height="15" fill="rgb(206,149,34)" fg:x="329483" fg:w="109"/><text x="34.7153%" y="799.50"></text></g><g><title>btrfs_search_slot (183 samples, 0.02%)</title><rect x="34.5170%" y="709" width="0.0191%" height="15" fill="rgb(227,228,4)" fg:x="329977" fg:w="183"/><text x="34.7670%" y="719.50"></text></g><g><title>btrfs_lookup_dir_index_item (187 samples, 0.02%)</title><rect x="34.5167%" y="725" width="0.0196%" height="15" fill="rgb(238,218,28)" fg:x="329974" fg:w="187"/><text x="34.7667%" y="735.50"></text></g><g><title>btrfs_search_slot (147 samples, 0.02%)</title><rect x="34.5368%" y="709" width="0.0154%" height="15" fill="rgb(252,86,40)" fg:x="330166" fg:w="147"/><text x="34.7868%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (161 samples, 0.02%)</title><rect x="34.5362%" y="725" width="0.0168%" height="15" fill="rgb(251,225,11)" fg:x="330161" fg:w="161"/><text x="34.7862%" y="735.50"></text></g><g><title>btrfs_del_dir_entries_in_log (495 samples, 0.05%)</title><rect x="34.5074%" y="741" width="0.0518%" height="15" fill="rgb(206,46,49)" fg:x="329885" fg:w="495"/><text x="34.7574%" y="751.50"></text></g><g><title>btrfs_search_slot (148 samples, 0.02%)</title><rect x="34.5708%" y="693" width="0.0155%" height="15" fill="rgb(245,128,24)" fg:x="330491" fg:w="148"/><text x="34.8208%" y="703.50"></text></g><g><title>btrfs_del_inode_extref (241 samples, 0.03%)</title><rect x="34.5631%" y="709" width="0.0252%" height="15" fill="rgb(219,177,34)" fg:x="330418" fg:w="241"/><text x="34.8131%" y="719.50"></text></g><g><title>btrfs_search_slot (242 samples, 0.03%)</title><rect x="34.5959%" y="709" width="0.0253%" height="15" fill="rgb(218,60,48)" fg:x="330731" fg:w="242"/><text x="34.8459%" y="719.50"></text></g><g><title>btrfs_del_inode_ref (582 samples, 0.06%)</title><rect x="34.5607%" y="725" width="0.0609%" height="15" fill="rgb(221,11,5)" fg:x="330395" fg:w="582"/><text x="34.8107%" y="735.50"></text></g><g><title>btrfs_del_inode_ref_in_log (626 samples, 0.07%)</title><rect x="34.5592%" y="741" width="0.0655%" height="15" fill="rgb(220,148,13)" fg:x="330380" fg:w="626"/><text x="34.8092%" y="751.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (114 samples, 0.01%)</title><rect x="34.6248%" y="741" width="0.0119%" height="15" fill="rgb(210,16,3)" fg:x="331008" fg:w="114"/><text x="34.8748%" y="751.50"></text></g><g><title>btrfs_delete_delayed_dir_index (151 samples, 0.02%)</title><rect x="34.6373%" y="741" width="0.0158%" height="15" fill="rgb(236,80,2)" fg:x="331127" fg:w="151"/><text x="34.8873%" y="751.50"></text></g><g><title>btrfs_get_token_32 (148 samples, 0.02%)</title><rect x="34.6632%" y="709" width="0.0155%" height="15" fill="rgb(239,129,19)" fg:x="331375" fg:w="148"/><text x="34.9132%" y="719.50"></text></g><g><title>btrfs_set_token_32 (98 samples, 0.01%)</title><rect x="34.6800%" y="709" width="0.0103%" height="15" fill="rgb(220,106,35)" fg:x="331535" fg:w="98"/><text x="34.9300%" y="719.50"></text></g><g><title>memmove_extent_buffer (147 samples, 0.02%)</title><rect x="34.6979%" y="709" width="0.0154%" height="15" fill="rgb(252,139,45)" fg:x="331706" fg:w="147"/><text x="34.9479%" y="719.50"></text></g><g><title>memmove (97 samples, 0.01%)</title><rect x="34.7031%" y="693" width="0.0101%" height="15" fill="rgb(229,8,36)" fg:x="331756" fg:w="97"/><text x="34.9531%" y="703.50"></text></g><g><title>btrfs_del_items (620 samples, 0.06%)</title><rect x="34.6542%" y="725" width="0.0649%" height="15" fill="rgb(230,126,33)" fg:x="331289" fg:w="620"/><text x="34.9042%" y="735.50"></text></g><g><title>btrfs_delete_one_dir_name (674 samples, 0.07%)</title><rect x="34.6531%" y="741" width="0.0705%" height="15" fill="rgb(239,140,21)" fg:x="331278" fg:w="674"/><text x="34.9031%" y="751.50"></text></g><g><title>btrfs_bin_search (137 samples, 0.01%)</title><rect x="34.7474%" y="709" width="0.0143%" height="15" fill="rgb(254,104,9)" fg:x="332180" fg:w="137"/><text x="34.9974%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (133 samples, 0.01%)</title><rect x="34.7479%" y="693" width="0.0139%" height="15" fill="rgb(239,52,14)" fg:x="332184" fg:w="133"/><text x="34.9979%" y="703.50"></text></g><g><title>osq_lock (386 samples, 0.04%)</title><rect x="34.7990%" y="629" width="0.0404%" height="15" fill="rgb(208,227,44)" fg:x="332673" fg:w="386"/><text x="35.0490%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (740 samples, 0.08%)</title><rect x="34.7669%" y="645" width="0.0774%" height="15" fill="rgb(246,18,19)" fg:x="332366" fg:w="740"/><text x="35.0169%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (118 samples, 0.01%)</title><rect x="34.8534%" y="597" width="0.0123%" height="15" fill="rgb(235,228,25)" fg:x="333193" fg:w="118"/><text x="35.1034%" y="607.50"></text></g><g><title>x86_pmu_enable (114 samples, 0.01%)</title><rect x="34.8538%" y="581" width="0.0119%" height="15" fill="rgb(240,156,20)" fg:x="333197" fg:w="114"/><text x="35.1038%" y="591.50"></text></g><g><title>intel_pmu_enable_all (113 samples, 0.01%)</title><rect x="34.8539%" y="565" width="0.0118%" height="15" fill="rgb(224,8,20)" fg:x="333198" fg:w="113"/><text x="35.1039%" y="575.50"></text></g><g><title>native_write_msr (112 samples, 0.01%)</title><rect x="34.8540%" y="549" width="0.0117%" height="15" fill="rgb(214,12,52)" fg:x="333199" fg:w="112"/><text x="35.1040%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (125 samples, 0.01%)</title><rect x="34.8530%" y="613" width="0.0131%" height="15" fill="rgb(211,220,47)" fg:x="333189" fg:w="125"/><text x="35.1030%" y="623.50"></text></g><g><title>__schedule (308 samples, 0.03%)</title><rect x="34.8448%" y="629" width="0.0322%" height="15" fill="rgb(250,173,5)" fg:x="333111" fg:w="308"/><text x="35.0948%" y="639.50"></text></g><g><title>rwsem_down_write_slowpath (1,078 samples, 0.11%)</title><rect x="34.7645%" y="661" width="0.1128%" height="15" fill="rgb(250,125,52)" fg:x="332343" fg:w="1078"/><text x="35.0145%" y="671.50"></text></g><g><title>schedule (313 samples, 0.03%)</title><rect x="34.8445%" y="645" width="0.0327%" height="15" fill="rgb(209,133,18)" fg:x="333108" fg:w="313"/><text x="35.0945%" y="655.50"></text></g><g><title>__btrfs_tree_lock (1,091 samples, 0.11%)</title><rect x="34.7632%" y="693" width="0.1141%" height="15" fill="rgb(216,173,22)" fg:x="332331" fg:w="1091"/><text x="35.0132%" y="703.50"></text></g><g><title>down_write (1,085 samples, 0.11%)</title><rect x="34.7639%" y="677" width="0.1135%" height="15" fill="rgb(205,3,22)" fg:x="332337" fg:w="1085"/><text x="35.0139%" y="687.50"></text></g><g><title>btrfs_lock_root_node (1,096 samples, 0.11%)</title><rect x="34.7628%" y="709" width="0.1146%" height="15" fill="rgb(248,22,20)" fg:x="332327" fg:w="1096"/><text x="35.0128%" y="719.50"></text></g><g><title>__schedule (192 samples, 0.02%)</title><rect x="34.8820%" y="629" width="0.0201%" height="15" fill="rgb(233,6,29)" fg:x="333466" fg:w="192"/><text x="35.1320%" y="639.50"></text></g><g><title>schedule (196 samples, 0.02%)</title><rect x="34.8819%" y="645" width="0.0205%" height="15" fill="rgb(240,22,54)" fg:x="333465" fg:w="196"/><text x="35.1319%" y="655.50"></text></g><g><title>down_read (233 samples, 0.02%)</title><rect x="34.8781%" y="677" width="0.0244%" height="15" fill="rgb(231,133,32)" fg:x="333429" fg:w="233"/><text x="35.1281%" y="687.50"></text></g><g><title>rwsem_down_read_slowpath (220 samples, 0.02%)</title><rect x="34.8795%" y="661" width="0.0230%" height="15" fill="rgb(248,193,4)" fg:x="333442" fg:w="220"/><text x="35.1295%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (241 samples, 0.03%)</title><rect x="34.8776%" y="693" width="0.0252%" height="15" fill="rgb(211,178,46)" fg:x="333424" fg:w="241"/><text x="35.1276%" y="703.50"></text></g><g><title>btrfs_read_lock_root_node (256 samples, 0.03%)</title><rect x="34.8775%" y="709" width="0.0268%" height="15" fill="rgb(224,5,42)" fg:x="333423" fg:w="256"/><text x="35.1275%" y="719.50"></text></g><g><title>rwsem_optimistic_spin (133 samples, 0.01%)</title><rect x="34.9138%" y="645" width="0.0139%" height="15" fill="rgb(239,176,25)" fg:x="333770" fg:w="133"/><text x="35.1638%" y="655.50"></text></g><g><title>btrfs_tree_lock (166 samples, 0.02%)</title><rect x="34.9109%" y="709" width="0.0174%" height="15" fill="rgb(245,187,50)" fg:x="333743" fg:w="166"/><text x="35.1609%" y="719.50"></text></g><g><title>__btrfs_tree_lock (166 samples, 0.02%)</title><rect x="34.9109%" y="693" width="0.0174%" height="15" fill="rgb(248,24,15)" fg:x="333743" fg:w="166"/><text x="35.1609%" y="703.50"></text></g><g><title>down_write (162 samples, 0.02%)</title><rect x="34.9114%" y="677" width="0.0169%" height="15" fill="rgb(205,166,13)" fg:x="333747" fg:w="162"/><text x="35.1614%" y="687.50"></text></g><g><title>rwsem_down_write_slowpath (141 samples, 0.01%)</title><rect x="34.9136%" y="661" width="0.0147%" height="15" fill="rgb(208,114,23)" fg:x="333768" fg:w="141"/><text x="35.1636%" y="671.50"></text></g><g><title>find_extent_buffer (124 samples, 0.01%)</title><rect x="34.9381%" y="693" width="0.0130%" height="15" fill="rgb(239,127,18)" fg:x="334003" fg:w="124"/><text x="35.1881%" y="703.50"></text></g><g><title>read_block_for_search (201 samples, 0.02%)</title><rect x="34.9305%" y="709" width="0.0210%" height="15" fill="rgb(219,154,28)" fg:x="333930" fg:w="201"/><text x="35.1805%" y="719.50"></text></g><g><title>btrfs_readahead_tree_block (116 samples, 0.01%)</title><rect x="34.9552%" y="677" width="0.0121%" height="15" fill="rgb(225,157,23)" fg:x="334166" fg:w="116"/><text x="35.2052%" y="687.50"></text></g><g><title>btrfs_readahead_node_child (148 samples, 0.02%)</title><rect x="34.9522%" y="693" width="0.0155%" height="15" fill="rgb(219,8,6)" fg:x="334137" fg:w="148"/><text x="35.2022%" y="703.50"></text></g><g><title>reada_for_balance (156 samples, 0.02%)</title><rect x="34.9515%" y="709" width="0.0163%" height="15" fill="rgb(212,47,6)" fg:x="334131" fg:w="156"/><text x="35.2015%" y="719.50"></text></g><g><title>select_idle_sibling (131 samples, 0.01%)</title><rect x="34.9892%" y="597" width="0.0137%" height="15" fill="rgb(224,190,4)" fg:x="334491" fg:w="131"/><text x="35.2392%" y="607.50"></text></g><g><title>select_task_rq_fair (177 samples, 0.02%)</title><rect x="34.9882%" y="613" width="0.0185%" height="15" fill="rgb(239,183,29)" fg:x="334482" fg:w="177"/><text x="35.2382%" y="623.50"></text></g><g><title>enqueue_task (123 samples, 0.01%)</title><rect x="35.0093%" y="597" width="0.0129%" height="15" fill="rgb(213,57,7)" fg:x="334683" fg:w="123"/><text x="35.2593%" y="607.50"></text></g><g><title>ttwu_do_activate (146 samples, 0.02%)</title><rect x="35.0092%" y="613" width="0.0153%" height="15" fill="rgb(216,148,1)" fg:x="334682" fg:w="146"/><text x="35.2592%" y="623.50"></text></g><g><title>try_to_wake_up (523 samples, 0.05%)</title><rect x="34.9773%" y="629" width="0.0547%" height="15" fill="rgb(236,182,29)" fg:x="334377" fg:w="523"/><text x="35.2273%" y="639.50"></text></g><g><title>btrfs_tree_unlock (587 samples, 0.06%)</title><rect x="34.9708%" y="693" width="0.0614%" height="15" fill="rgb(244,120,48)" fg:x="334315" fg:w="587"/><text x="35.2208%" y="703.50"></text></g><g><title>up_write (584 samples, 0.06%)</title><rect x="34.9711%" y="677" width="0.0611%" height="15" fill="rgb(206,71,34)" fg:x="334318" fg:w="584"/><text x="35.2211%" y="687.50"></text></g><g><title>rwsem_wake.isra.0 (583 samples, 0.06%)</title><rect x="34.9712%" y="661" width="0.0610%" height="15" fill="rgb(242,32,6)" fg:x="334319" fg:w="583"/><text x="35.2212%" y="671.50"></text></g><g><title>wake_up_q (533 samples, 0.06%)</title><rect x="34.9764%" y="645" width="0.0558%" height="15" fill="rgb(241,35,3)" fg:x="334369" fg:w="533"/><text x="35.2264%" y="655.50"></text></g><g><title>unlock_up (629 samples, 0.07%)</title><rect x="34.9678%" y="709" width="0.0658%" height="15" fill="rgb(222,62,19)" fg:x="334287" fg:w="629"/><text x="35.2178%" y="719.50"></text></g><g><title>btrfs_search_slot (2,867 samples, 0.30%)</title><rect x="34.7342%" y="725" width="0.2999%" height="15" fill="rgb(223,110,41)" fg:x="332053" fg:w="2867"/><text x="34.9842%" y="735.50"></text></g><g><title>btrfs_lookup_dir_item (2,951 samples, 0.31%)</title><rect x="34.7277%" y="741" width="0.3087%" height="15" fill="rgb(208,224,4)" fg:x="331991" fg:w="2951"/><text x="34.9777%" y="751.50"></text></g><g><title>btrfs_release_path (96 samples, 0.01%)</title><rect x="35.0365%" y="741" width="0.0100%" height="15" fill="rgb(241,137,19)" fg:x="334943" fg:w="96"/><text x="35.2865%" y="751.50"></text></g><g><title>__btrfs_unlink_inode (5,354 samples, 0.56%)</title><rect x="34.5016%" y="757" width="0.5601%" height="15" fill="rgb(244,24,17)" fg:x="329830" fg:w="5354"/><text x="34.7516%" y="767.50"></text></g><g><title>__schedule (150 samples, 0.02%)</title><rect x="35.1114%" y="613" width="0.0157%" height="15" fill="rgb(245,178,49)" fg:x="335659" fg:w="150"/><text x="35.3614%" y="623.50"></text></g><g><title>schedule (156 samples, 0.02%)</title><rect x="35.1112%" y="629" width="0.0163%" height="15" fill="rgb(219,160,38)" fg:x="335657" fg:w="156"/><text x="35.3612%" y="639.50"></text></g><g><title>down_read (184 samples, 0.02%)</title><rect x="35.1086%" y="661" width="0.0192%" height="15" fill="rgb(228,137,14)" fg:x="335633" fg:w="184"/><text x="35.3586%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (177 samples, 0.02%)</title><rect x="35.1094%" y="645" width="0.0185%" height="15" fill="rgb(237,134,11)" fg:x="335640" fg:w="177"/><text x="35.3594%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (188 samples, 0.02%)</title><rect x="35.1084%" y="677" width="0.0197%" height="15" fill="rgb(211,126,44)" fg:x="335631" fg:w="188"/><text x="35.3584%" y="687.50"></text></g><g><title>btrfs_read_lock_root_node (207 samples, 0.02%)</title><rect x="35.1078%" y="693" width="0.0217%" height="15" fill="rgb(226,171,33)" fg:x="335625" fg:w="207"/><text x="35.3578%" y="703.50"></text></g><g><title>rwsem_spin_on_owner (105 samples, 0.01%)</title><rect x="35.1404%" y="613" width="0.0110%" height="15" fill="rgb(253,99,13)" fg:x="335937" fg:w="105"/><text x="35.3904%" y="623.50"></text></g><g><title>rwsem_optimistic_spin (187 samples, 0.02%)</title><rect x="35.1320%" y="629" width="0.0196%" height="15" fill="rgb(244,48,7)" fg:x="335856" fg:w="187"/><text x="35.3820%" y="639.50"></text></g><g><title>__btrfs_tree_lock (227 samples, 0.02%)</title><rect x="35.1300%" y="677" width="0.0237%" height="15" fill="rgb(244,217,54)" fg:x="335837" fg:w="227"/><text x="35.3800%" y="687.50"></text></g><g><title>down_write (223 samples, 0.02%)</title><rect x="35.1304%" y="661" width="0.0233%" height="15" fill="rgb(224,15,18)" fg:x="335841" fg:w="223"/><text x="35.3804%" y="671.50"></text></g><g><title>rwsem_down_write_slowpath (214 samples, 0.02%)</title><rect x="35.1313%" y="645" width="0.0224%" height="15" fill="rgb(244,99,12)" fg:x="335850" fg:w="214"/><text x="35.3813%" y="655.50"></text></g><g><title>btrfs_tree_lock (228 samples, 0.02%)</title><rect x="35.1300%" y="693" width="0.0238%" height="15" fill="rgb(233,226,8)" fg:x="335837" fg:w="228"/><text x="35.3800%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (106 samples, 0.01%)</title><rect x="35.1538%" y="677" width="0.0111%" height="15" fill="rgb(229,211,3)" fg:x="336065" fg:w="106"/><text x="35.4038%" y="687.50"></text></g><g><title>down_read (105 samples, 0.01%)</title><rect x="35.1539%" y="661" width="0.0110%" height="15" fill="rgb(216,140,21)" fg:x="336066" fg:w="105"/><text x="35.4039%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (102 samples, 0.01%)</title><rect x="35.1542%" y="645" width="0.0107%" height="15" fill="rgb(234,122,30)" fg:x="336069" fg:w="102"/><text x="35.4042%" y="655.50"></text></g><g><title>btrfs_tree_read_lock (107 samples, 0.01%)</title><rect x="35.1538%" y="693" width="0.0112%" height="15" fill="rgb(236,25,46)" fg:x="336065" fg:w="107"/><text x="35.4038%" y="703.50"></text></g><g><title>find_extent_buffer_nolock (123 samples, 0.01%)</title><rect x="35.1740%" y="661" width="0.0129%" height="15" fill="rgb(217,52,54)" fg:x="336258" fg:w="123"/><text x="35.4240%" y="671.50"></text></g><g><title>find_extent_buffer (162 samples, 0.02%)</title><rect x="35.1735%" y="677" width="0.0169%" height="15" fill="rgb(222,29,26)" fg:x="336253" fg:w="162"/><text x="35.4235%" y="687.50"></text></g><g><title>read_block_for_search (240 samples, 0.03%)</title><rect x="35.1660%" y="693" width="0.0251%" height="15" fill="rgb(216,177,29)" fg:x="336181" fg:w="240"/><text x="35.4160%" y="703.50"></text></g><g><title>btrfs_search_slot (1,089 samples, 0.11%)</title><rect x="35.0892%" y="709" width="0.1139%" height="15" fill="rgb(247,136,51)" fg:x="335447" fg:w="1089"/><text x="35.3392%" y="719.50"></text></g><g><title>unlock_up (114 samples, 0.01%)</title><rect x="35.1912%" y="693" width="0.0119%" height="15" fill="rgb(231,47,47)" fg:x="336422" fg:w="114"/><text x="35.4412%" y="703.50"></text></g><g><title>setup_items_for_insert (123 samples, 0.01%)</title><rect x="35.2049%" y="709" width="0.0129%" height="15" fill="rgb(211,192,36)" fg:x="336553" fg:w="123"/><text x="35.4549%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (1,257 samples, 0.13%)</title><rect x="35.0870%" y="725" width="0.1315%" height="15" fill="rgb(229,156,32)" fg:x="335426" fg:w="1257"/><text x="35.3370%" y="735.50"></text></g><g><title>btrfs_orphan_add (1,376 samples, 0.14%)</title><rect x="35.0755%" y="757" width="0.1439%" height="15" fill="rgb(248,213,20)" fg:x="335316" fg:w="1376"/><text x="35.3255%" y="767.50"></text></g><g><title>btrfs_insert_orphan_item (1,361 samples, 0.14%)</title><rect x="35.0771%" y="741" width="0.1424%" height="15" fill="rgb(217,64,7)" fg:x="335331" fg:w="1361"/><text x="35.3271%" y="751.50"></text></g><g><title>btrfs_block_rsv_add (118 samples, 0.01%)</title><rect x="35.2262%" y="725" width="0.0123%" height="15" fill="rgb(232,142,8)" fg:x="336757" fg:w="118"/><text x="35.4762%" y="735.50"></text></g><g><title>btrfs_reserve_metadata_bytes (111 samples, 0.01%)</title><rect x="35.2269%" y="709" width="0.0116%" height="15" fill="rgb(224,92,44)" fg:x="336764" fg:w="111"/><text x="35.4769%" y="719.50"></text></g><g><title>start_transaction (210 samples, 0.02%)</title><rect x="35.2202%" y="741" width="0.0220%" height="15" fill="rgb(214,169,17)" fg:x="336699" fg:w="210"/><text x="35.4702%" y="751.50"></text></g><g><title>btrfs_start_transaction_fallback_global_rsv (216 samples, 0.02%)</title><rect x="35.2196%" y="757" width="0.0226%" height="15" fill="rgb(210,59,37)" fg:x="336694" fg:w="216"/><text x="35.4696%" y="767.50"></text></g><g><title>btrfs_rmdir (7,192 samples, 0.75%)</title><rect x="34.4985%" y="773" width="0.7523%" height="15" fill="rgb(214,116,48)" fg:x="329800" fg:w="7192"/><text x="34.7485%" y="783.50"></text></g><g><title>btrfs_get_token_32 (178 samples, 0.02%)</title><rect x="35.2986%" y="677" width="0.0186%" height="15" fill="rgb(244,191,6)" fg:x="337449" fg:w="178"/><text x="35.5486%" y="687.50"></text></g><g><title>btrfs_set_token_32 (185 samples, 0.02%)</title><rect x="35.3176%" y="677" width="0.0194%" height="15" fill="rgb(241,50,52)" fg:x="337631" fg:w="185"/><text x="35.5676%" y="687.50"></text></g><g><title>memmove_extent_buffer (149 samples, 0.02%)</title><rect x="35.3466%" y="677" width="0.0156%" height="15" fill="rgb(236,75,39)" fg:x="337908" fg:w="149"/><text x="35.5966%" y="687.50"></text></g><g><title>memmove (111 samples, 0.01%)</title><rect x="35.3506%" y="661" width="0.0116%" height="15" fill="rgb(236,99,0)" fg:x="337946" fg:w="111"/><text x="35.6006%" y="671.50"></text></g><g><title>btrfs_del_items (709 samples, 0.07%)</title><rect x="35.2896%" y="693" width="0.0742%" height="15" fill="rgb(207,202,15)" fg:x="337363" fg:w="709"/><text x="35.5396%" y="703.50"></text></g><g><title>btrfs_bin_search (101 samples, 0.01%)</title><rect x="35.3820%" y="661" width="0.0106%" height="15" fill="rgb(233,207,14)" fg:x="338246" fg:w="101"/><text x="35.6320%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (100 samples, 0.01%)</title><rect x="35.3821%" y="645" width="0.0105%" height="15" fill="rgb(226,27,51)" fg:x="338247" fg:w="100"/><text x="35.6321%" y="655.50"></text></g><g><title>osq_lock (435 samples, 0.05%)</title><rect x="35.4413%" y="581" width="0.0455%" height="15" fill="rgb(206,104,42)" fg:x="338813" fg:w="435"/><text x="35.6913%" y="591.50"></text></g><g><title>rwsem_optimistic_spin (901 samples, 0.09%)</title><rect x="35.3972%" y="597" width="0.0942%" height="15" fill="rgb(212,225,4)" fg:x="338392" fg:w="901"/><text x="35.6472%" y="607.50"></text></g><g><title>__schedule (236 samples, 0.02%)</title><rect x="35.4927%" y="581" width="0.0247%" height="15" fill="rgb(233,96,42)" fg:x="339305" fg:w="236"/><text x="35.7427%" y="591.50"></text></g><g><title>rwsem_down_write_slowpath (1,181 samples, 0.12%)</title><rect x="35.3941%" y="613" width="0.1235%" height="15" fill="rgb(229,21,32)" fg:x="338362" fg:w="1181"/><text x="35.6441%" y="623.50"></text></g><g><title>schedule (239 samples, 0.03%)</title><rect x="35.4926%" y="597" width="0.0250%" height="15" fill="rgb(226,216,24)" fg:x="339304" fg:w="239"/><text x="35.7426%" y="607.50"></text></g><g><title>down_write (1,189 samples, 0.12%)</title><rect x="35.3935%" y="629" width="0.1244%" height="15" fill="rgb(221,163,17)" fg:x="338356" fg:w="1189"/><text x="35.6435%" y="639.50"></text></g><g><title>__btrfs_tree_lock (1,193 samples, 0.12%)</title><rect x="35.3932%" y="645" width="0.1248%" height="15" fill="rgb(216,216,42)" fg:x="338353" fg:w="1193"/><text x="35.6432%" y="655.50"></text></g><g><title>btrfs_lock_root_node (1,201 samples, 0.13%)</title><rect x="35.3930%" y="661" width="0.1256%" height="15" fill="rgb(240,118,7)" fg:x="338351" fg:w="1201"/><text x="35.6430%" y="671.50"></text></g><g><title>__schedule (237 samples, 0.02%)</title><rect x="35.5233%" y="581" width="0.0248%" height="15" fill="rgb(221,67,37)" fg:x="339597" fg:w="237"/><text x="35.7733%" y="591.50"></text></g><g><title>schedule (238 samples, 0.02%)</title><rect x="35.5233%" y="597" width="0.0249%" height="15" fill="rgb(241,32,44)" fg:x="339597" fg:w="238"/><text x="35.7733%" y="607.50"></text></g><g><title>rwsem_down_read_slowpath (264 samples, 0.03%)</title><rect x="35.5208%" y="613" width="0.0276%" height="15" fill="rgb(235,204,43)" fg:x="339573" fg:w="264"/><text x="35.7708%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (284 samples, 0.03%)</title><rect x="35.5188%" y="645" width="0.0297%" height="15" fill="rgb(213,116,10)" fg:x="339554" fg:w="284"/><text x="35.7688%" y="655.50"></text></g><g><title>down_read (280 samples, 0.03%)</title><rect x="35.5192%" y="629" width="0.0293%" height="15" fill="rgb(239,15,48)" fg:x="339558" fg:w="280"/><text x="35.7692%" y="639.50"></text></g><g><title>btrfs_read_lock_root_node (318 samples, 0.03%)</title><rect x="35.5186%" y="661" width="0.0333%" height="15" fill="rgb(207,123,36)" fg:x="339552" fg:w="318"/><text x="35.7686%" y="671.50"></text></g><g><title>rwsem_optimistic_spin (171 samples, 0.02%)</title><rect x="35.5606%" y="597" width="0.0179%" height="15" fill="rgb(209,103,30)" fg:x="339954" fg:w="171"/><text x="35.8106%" y="607.50"></text></g><g><title>__btrfs_tree_lock (220 samples, 0.02%)</title><rect x="35.5574%" y="645" width="0.0230%" height="15" fill="rgb(238,100,19)" fg:x="339923" fg:w="220"/><text x="35.8074%" y="655.50"></text></g><g><title>down_write (218 samples, 0.02%)</title><rect x="35.5576%" y="629" width="0.0228%" height="15" fill="rgb(244,30,14)" fg:x="339925" fg:w="218"/><text x="35.8076%" y="639.50"></text></g><g><title>rwsem_down_write_slowpath (192 samples, 0.02%)</title><rect x="35.5603%" y="613" width="0.0201%" height="15" fill="rgb(249,174,6)" fg:x="339951" fg:w="192"/><text x="35.8103%" y="623.50"></text></g><g><title>btrfs_tree_lock (222 samples, 0.02%)</title><rect x="35.5574%" y="661" width="0.0232%" height="15" fill="rgb(235,213,41)" fg:x="339923" fg:w="222"/><text x="35.8074%" y="671.50"></text></g><g><title>find_extent_buffer_nolock (101 samples, 0.01%)</title><rect x="35.5933%" y="629" width="0.0106%" height="15" fill="rgb(213,118,6)" fg:x="340266" fg:w="101"/><text x="35.8433%" y="639.50"></text></g><g><title>find_extent_buffer (149 samples, 0.02%)</title><rect x="35.5915%" y="645" width="0.0156%" height="15" fill="rgb(235,44,51)" fg:x="340249" fg:w="149"/><text x="35.8415%" y="655.50"></text></g><g><title>read_block_for_search (235 samples, 0.02%)</title><rect x="35.5836%" y="661" width="0.0246%" height="15" fill="rgb(217,9,53)" fg:x="340174" fg:w="235"/><text x="35.8336%" y="671.50"></text></g><g><title>btrfs_readahead_tree_block (124 samples, 0.01%)</title><rect x="35.6108%" y="629" width="0.0130%" height="15" fill="rgb(237,172,34)" fg:x="340434" fg:w="124"/><text x="35.8608%" y="639.50"></text></g><g><title>btrfs_readahead_node_child (140 samples, 0.01%)</title><rect x="35.6094%" y="645" width="0.0146%" height="15" fill="rgb(206,206,11)" fg:x="340420" fg:w="140"/><text x="35.8594%" y="655.50"></text></g><g><title>reada_for_balance (152 samples, 0.02%)</title><rect x="35.6082%" y="661" width="0.0159%" height="15" fill="rgb(214,149,29)" fg:x="340409" fg:w="152"/><text x="35.8582%" y="671.50"></text></g><g><title>select_idle_sibling (130 samples, 0.01%)</title><rect x="35.6499%" y="549" width="0.0136%" height="15" fill="rgb(208,123,3)" fg:x="340807" fg:w="130"/><text x="35.8999%" y="559.50"></text></g><g><title>select_task_rq_fair (171 samples, 0.02%)</title><rect x="35.6487%" y="565" width="0.0179%" height="15" fill="rgb(229,126,4)" fg:x="340796" fg:w="171"/><text x="35.8987%" y="575.50"></text></g><g><title>enqueue_task (107 samples, 0.01%)</title><rect x="35.6702%" y="549" width="0.0112%" height="15" fill="rgb(222,92,36)" fg:x="341001" fg:w="107"/><text x="35.9202%" y="559.50"></text></g><g><title>ttwu_do_activate (128 samples, 0.01%)</title><rect x="35.6698%" y="565" width="0.0134%" height="15" fill="rgb(216,39,41)" fg:x="340998" fg:w="128"/><text x="35.9198%" y="575.50"></text></g><g><title>try_to_wake_up (550 samples, 0.06%)</title><rect x="35.6339%" y="581" width="0.0575%" height="15" fill="rgb(253,127,28)" fg:x="340654" fg:w="550"/><text x="35.8839%" y="591.50"></text></g><g><title>btrfs_tree_unlock (615 samples, 0.06%)</title><rect x="35.6272%" y="645" width="0.0643%" height="15" fill="rgb(249,152,51)" fg:x="340590" fg:w="615"/><text x="35.8772%" y="655.50"></text></g><g><title>up_write (612 samples, 0.06%)</title><rect x="35.6275%" y="629" width="0.0640%" height="15" fill="rgb(209,123,42)" fg:x="340593" fg:w="612"/><text x="35.8775%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (612 samples, 0.06%)</title><rect x="35.6275%" y="613" width="0.0640%" height="15" fill="rgb(241,118,22)" fg:x="340593" fg:w="612"/><text x="35.8775%" y="623.50"></text></g><g><title>wake_up_q (565 samples, 0.06%)</title><rect x="35.6324%" y="597" width="0.0591%" height="15" fill="rgb(208,25,7)" fg:x="340640" fg:w="565"/><text x="35.8824%" y="607.50"></text></g><g><title>unlock_up (648 samples, 0.07%)</title><rect x="35.6241%" y="661" width="0.0678%" height="15" fill="rgb(243,144,39)" fg:x="340561" fg:w="648"/><text x="35.8741%" y="671.50"></text></g><g><title>btrfs_search_slot (3,061 samples, 0.32%)</title><rect x="35.3721%" y="677" width="0.3202%" height="15" fill="rgb(250,50,5)" fg:x="338152" fg:w="3061"/><text x="35.6221%" y="687.50"></text></g><g><title>btrfs_lookup_inode (3,091 samples, 0.32%)</title><rect x="35.3707%" y="693" width="0.3233%" height="15" fill="rgb(207,67,11)" fg:x="338138" fg:w="3091"/><text x="35.6207%" y="703.50"></text></g><g><title>__btrfs_update_delayed_inode (4,043 samples, 0.42%)</title><rect x="35.2879%" y="709" width="0.4229%" height="15" fill="rgb(245,204,40)" fg:x="337347" fg:w="4043"/><text x="35.5379%" y="719.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (4,268 samples, 0.45%)</title><rect x="35.2854%" y="725" width="0.4465%" height="15" fill="rgb(238,228,24)" fg:x="337323" fg:w="4268"/><text x="35.5354%" y="735.50"></text></g><g><title>btrfs_del_items (101 samples, 0.01%)</title><rect x="35.7349%" y="709" width="0.0106%" height="15" fill="rgb(217,116,22)" fg:x="341620" fg:w="101"/><text x="35.9849%" y="719.50"></text></g><g><title>btrfs_free_path (120 samples, 0.01%)</title><rect x="35.7455%" y="709" width="0.0126%" height="15" fill="rgb(234,98,12)" fg:x="341721" fg:w="120"/><text x="35.9955%" y="719.50"></text></g><g><title>btrfs_bin_search (98 samples, 0.01%)</title><rect x="35.7696%" y="693" width="0.0103%" height="15" fill="rgb(242,170,50)" fg:x="341952" fg:w="98"/><text x="36.0196%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (97 samples, 0.01%)</title><rect x="35.7697%" y="677" width="0.0101%" height="15" fill="rgb(235,7,5)" fg:x="341953" fg:w="97"/><text x="36.0197%" y="687.50"></text></g><g><title>osq_lock (335 samples, 0.04%)</title><rect x="35.8272%" y="613" width="0.0350%" height="15" fill="rgb(241,114,28)" fg:x="342502" fg:w="335"/><text x="36.0772%" y="623.50"></text></g><g><title>rwsem_optimistic_spin (793 samples, 0.08%)</title><rect x="35.7839%" y="629" width="0.0830%" height="15" fill="rgb(246,112,42)" fg:x="342088" fg:w="793"/><text x="36.0339%" y="639.50"></text></g><g><title>__schedule (210 samples, 0.02%)</title><rect x="35.8674%" y="613" width="0.0220%" height="15" fill="rgb(248,228,14)" fg:x="342887" fg:w="210"/><text x="36.1174%" y="623.50"></text></g><g><title>rwsem_down_write_slowpath (1,030 samples, 0.11%)</title><rect x="35.7818%" y="645" width="0.1077%" height="15" fill="rgb(208,133,18)" fg:x="342068" fg:w="1030"/><text x="36.0318%" y="655.50"></text></g><g><title>schedule (213 samples, 0.02%)</title><rect x="35.8672%" y="629" width="0.0223%" height="15" fill="rgb(207,35,49)" fg:x="342885" fg:w="213"/><text x="36.1172%" y="639.50"></text></g><g><title>down_write (1,038 samples, 0.11%)</title><rect x="35.7810%" y="661" width="0.1086%" height="15" fill="rgb(205,68,36)" fg:x="342061" fg:w="1038"/><text x="36.0310%" y="671.50"></text></g><g><title>__btrfs_tree_lock (1,041 samples, 0.11%)</title><rect x="35.7808%" y="677" width="0.1089%" height="15" fill="rgb(245,62,40)" fg:x="342059" fg:w="1041"/><text x="36.0308%" y="687.50"></text></g><g><title>btrfs_lock_root_node (1,054 samples, 0.11%)</title><rect x="35.7805%" y="693" width="0.1103%" height="15" fill="rgb(228,27,24)" fg:x="342056" fg:w="1054"/><text x="36.0305%" y="703.50"></text></g><g><title>__schedule (192 samples, 0.02%)</title><rect x="35.8971%" y="613" width="0.0201%" height="15" fill="rgb(253,19,12)" fg:x="343171" fg:w="192"/><text x="36.1471%" y="623.50"></text></g><g><title>schedule (194 samples, 0.02%)</title><rect x="35.8971%" y="629" width="0.0203%" height="15" fill="rgb(232,28,20)" fg:x="343171" fg:w="194"/><text x="36.1471%" y="639.50"></text></g><g><title>rwsem_down_read_slowpath (240 samples, 0.03%)</title><rect x="35.8930%" y="645" width="0.0251%" height="15" fill="rgb(218,35,51)" fg:x="343131" fg:w="240"/><text x="36.1430%" y="655.50"></text></g><g><title>down_read (258 samples, 0.03%)</title><rect x="35.8913%" y="661" width="0.0270%" height="15" fill="rgb(212,90,40)" fg:x="343115" fg:w="258"/><text x="36.1413%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (260 samples, 0.03%)</title><rect x="35.8912%" y="677" width="0.0272%" height="15" fill="rgb(220,172,12)" fg:x="343114" fg:w="260"/><text x="36.1412%" y="687.50"></text></g><g><title>btrfs_read_lock_root_node (275 samples, 0.03%)</title><rect x="35.8910%" y="693" width="0.0288%" height="15" fill="rgb(226,159,20)" fg:x="343112" fg:w="275"/><text x="36.1410%" y="703.50"></text></g><g><title>rwsem_optimistic_spin (154 samples, 0.02%)</title><rect x="35.9288%" y="629" width="0.0161%" height="15" fill="rgb(234,205,16)" fg:x="343474" fg:w="154"/><text x="36.1788%" y="639.50"></text></g><g><title>__btrfs_tree_lock (203 samples, 0.02%)</title><rect x="35.9261%" y="677" width="0.0212%" height="15" fill="rgb(207,9,39)" fg:x="343448" fg:w="203"/><text x="36.1761%" y="687.50"></text></g><g><title>down_write (198 samples, 0.02%)</title><rect x="35.9266%" y="661" width="0.0207%" height="15" fill="rgb(249,143,15)" fg:x="343453" fg:w="198"/><text x="36.1766%" y="671.50"></text></g><g><title>rwsem_down_write_slowpath (180 samples, 0.02%)</title><rect x="35.9285%" y="645" width="0.0188%" height="15" fill="rgb(253,133,29)" fg:x="343471" fg:w="180"/><text x="36.1785%" y="655.50"></text></g><g><title>btrfs_tree_lock (205 samples, 0.02%)</title><rect x="35.9261%" y="693" width="0.0214%" height="15" fill="rgb(221,187,0)" fg:x="343448" fg:w="205"/><text x="36.1761%" y="703.50"></text></g><g><title>find_extent_buffer_nolock (115 samples, 0.01%)</title><rect x="35.9583%" y="661" width="0.0120%" height="15" fill="rgb(205,204,26)" fg:x="343756" fg:w="115"/><text x="36.2083%" y="671.50"></text></g><g><title>find_extent_buffer (160 samples, 0.02%)</title><rect x="35.9577%" y="677" width="0.0167%" height="15" fill="rgb(224,68,54)" fg:x="343750" fg:w="160"/><text x="36.2077%" y="687.50"></text></g><g><title>read_block_for_search (228 samples, 0.02%)</title><rect x="35.9510%" y="693" width="0.0238%" height="15" fill="rgb(209,67,4)" fg:x="343686" fg:w="228"/><text x="36.2010%" y="703.50"></text></g><g><title>select_idle_sibling (103 samples, 0.01%)</title><rect x="36.0074%" y="581" width="0.0108%" height="15" fill="rgb(228,229,18)" fg:x="344225" fg:w="103"/><text x="36.2574%" y="591.50"></text></g><g><title>select_task_rq_fair (149 samples, 0.02%)</title><rect x="36.0057%" y="597" width="0.0156%" height="15" fill="rgb(231,89,13)" fg:x="344209" fg:w="149"/><text x="36.2557%" y="607.50"></text></g><g><title>ttwu_do_activate (110 samples, 0.01%)</title><rect x="36.0230%" y="597" width="0.0115%" height="15" fill="rgb(210,182,18)" fg:x="344374" fg:w="110"/><text x="36.2730%" y="607.50"></text></g><g><title>try_to_wake_up (469 samples, 0.05%)</title><rect x="35.9928%" y="613" width="0.0491%" height="15" fill="rgb(240,105,2)" fg:x="344085" fg:w="469"/><text x="36.2428%" y="623.50"></text></g><g><title>btrfs_tree_unlock (527 samples, 0.06%)</title><rect x="35.9869%" y="677" width="0.0551%" height="15" fill="rgb(207,170,50)" fg:x="344029" fg:w="527"/><text x="36.2369%" y="687.50"></text></g><g><title>up_write (522 samples, 0.05%)</title><rect x="35.9874%" y="661" width="0.0546%" height="15" fill="rgb(232,133,24)" fg:x="344034" fg:w="522"/><text x="36.2374%" y="671.50"></text></g><g><title>rwsem_wake.isra.0 (522 samples, 0.05%)</title><rect x="35.9874%" y="645" width="0.0546%" height="15" fill="rgb(235,166,27)" fg:x="344034" fg:w="522"/><text x="36.2374%" y="655.50"></text></g><g><title>wake_up_q (479 samples, 0.05%)</title><rect x="35.9919%" y="629" width="0.0501%" height="15" fill="rgb(209,19,13)" fg:x="344077" fg:w="479"/><text x="36.2419%" y="639.50"></text></g><g><title>unlock_up (561 samples, 0.06%)</title><rect x="35.9845%" y="693" width="0.0587%" height="15" fill="rgb(226,79,39)" fg:x="344006" fg:w="561"/><text x="36.2345%" y="703.50"></text></g><g><title>btrfs_search_slot (2,722 samples, 0.28%)</title><rect x="35.7589%" y="709" width="0.2847%" height="15" fill="rgb(222,163,10)" fg:x="341849" fg:w="2722"/><text x="36.0089%" y="719.50"></text></g><g><title>btrfs_del_orphan_item (2,989 samples, 0.31%)</title><rect x="35.7326%" y="725" width="0.3127%" height="15" fill="rgb(214,44,19)" fg:x="341598" fg:w="2989"/><text x="35.9826%" y="735.50"></text></g><g><title>__btrfs_end_transaction (136 samples, 0.01%)</title><rect x="36.0461%" y="709" width="0.0142%" height="15" fill="rgb(210,217,13)" fg:x="344595" fg:w="136"/><text x="36.2961%" y="719.50"></text></g><g><title>btrfs_end_transaction (151 samples, 0.02%)</title><rect x="36.0459%" y="725" width="0.0158%" height="15" fill="rgb(237,61,54)" fg:x="344593" fg:w="151"/><text x="36.2959%" y="735.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (147 samples, 0.02%)</title><rect x="36.0699%" y="709" width="0.0154%" height="15" fill="rgb(226,184,24)" fg:x="344822" fg:w="147"/><text x="36.3199%" y="719.50"></text></g><g><title>btrfs_remove_delayed_node (163 samples, 0.02%)</title><rect x="36.0699%" y="725" width="0.0171%" height="15" fill="rgb(223,226,4)" fg:x="344822" fg:w="163"/><text x="36.3199%" y="735.50"></text></g><g><title>__clear_extent_bit (139 samples, 0.01%)</title><rect x="36.0949%" y="709" width="0.0145%" height="15" fill="rgb(210,26,41)" fg:x="345061" fg:w="139"/><text x="36.3449%" y="719.50"></text></g><g><title>btrfs_free_tree_block (97 samples, 0.01%)</title><rect x="36.1213%" y="677" width="0.0101%" height="15" fill="rgb(220,221,6)" fg:x="345314" fg:w="97"/><text x="36.3713%" y="687.50"></text></g><g><title>btrfs_del_leaf (105 samples, 0.01%)</title><rect x="36.1213%" y="693" width="0.0110%" height="15" fill="rgb(225,89,49)" fg:x="345314" fg:w="105"/><text x="36.3713%" y="703.50"></text></g><g><title>btrfs_get_token_32 (213 samples, 0.02%)</title><rect x="36.1341%" y="693" width="0.0223%" height="15" fill="rgb(218,70,45)" fg:x="345436" fg:w="213"/><text x="36.3841%" y="703.50"></text></g><g><title>btrfs_set_token_32 (178 samples, 0.02%)</title><rect x="36.1576%" y="693" width="0.0186%" height="15" fill="rgb(238,166,21)" fg:x="345661" fg:w="178"/><text x="36.4076%" y="703.50"></text></g><g><title>memmove_extent_buffer (124 samples, 0.01%)</title><rect x="36.1877%" y="693" width="0.0130%" height="15" fill="rgb(224,141,44)" fg:x="345949" fg:w="124"/><text x="36.4377%" y="703.50"></text></g><g><title>btrfs_del_items (920 samples, 0.10%)</title><rect x="36.1147%" y="709" width="0.0962%" height="15" fill="rgb(230,12,49)" fg:x="345251" fg:w="920"/><text x="36.3647%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (99 samples, 0.01%)</title><rect x="36.2110%" y="709" width="0.0104%" height="15" fill="rgb(212,174,12)" fg:x="346171" fg:w="99"/><text x="36.4610%" y="719.50"></text></g><g><title>btrfs_release_path (99 samples, 0.01%)</title><rect x="36.2215%" y="693" width="0.0104%" height="15" fill="rgb(246,67,9)" fg:x="346272" fg:w="99"/><text x="36.4715%" y="703.50"></text></g><g><title>btrfs_free_path (124 samples, 0.01%)</title><rect x="36.2213%" y="709" width="0.0130%" height="15" fill="rgb(239,35,23)" fg:x="346270" fg:w="124"/><text x="36.4713%" y="719.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (98 samples, 0.01%)</title><rect x="36.2457%" y="677" width="0.0103%" height="15" fill="rgb(211,167,0)" fg:x="346503" fg:w="98"/><text x="36.4957%" y="687.50"></text></g><g><title>__btrfs_kill_delayed_node (226 samples, 0.02%)</title><rect x="36.2391%" y="693" width="0.0236%" height="15" fill="rgb(225,119,45)" fg:x="346440" fg:w="226"/><text x="36.4891%" y="703.50"></text></g><g><title>btrfs_kill_delayed_inode_items (284 samples, 0.03%)</title><rect x="36.2390%" y="709" width="0.0297%" height="15" fill="rgb(210,162,6)" fg:x="346439" fg:w="284"/><text x="36.4890%" y="719.50"></text></g><g><title>btrfs_bin_search (110 samples, 0.01%)</title><rect x="36.2821%" y="693" width="0.0115%" height="15" fill="rgb(208,118,35)" fg:x="346851" fg:w="110"/><text x="36.5321%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (109 samples, 0.01%)</title><rect x="36.2822%" y="677" width="0.0114%" height="15" fill="rgb(239,4,53)" fg:x="346852" fg:w="109"/><text x="36.5322%" y="687.50"></text></g><g><title>osq_lock (357 samples, 0.04%)</title><rect x="36.3477%" y="613" width="0.0373%" height="15" fill="rgb(213,130,21)" fg:x="347478" fg:w="357"/><text x="36.5977%" y="623.50"></text></g><g><title>rwsem_optimistic_spin (867 samples, 0.09%)</title><rect x="36.2995%" y="629" width="0.0907%" height="15" fill="rgb(235,148,0)" fg:x="347017" fg:w="867"/><text x="36.5495%" y="639.50"></text></g><g><title>__schedule (243 samples, 0.03%)</title><rect x="36.3911%" y="613" width="0.0254%" height="15" fill="rgb(244,224,18)" fg:x="347893" fg:w="243"/><text x="36.6411%" y="623.50"></text></g><g><title>rwsem_down_write_slowpath (1,152 samples, 0.12%)</title><rect x="36.2961%" y="645" width="0.1205%" height="15" fill="rgb(211,214,4)" fg:x="346985" fg:w="1152"/><text x="36.5461%" y="655.50"></text></g><g><title>schedule (247 samples, 0.03%)</title><rect x="36.3908%" y="629" width="0.0258%" height="15" fill="rgb(206,119,25)" fg:x="347890" fg:w="247"/><text x="36.6408%" y="639.50"></text></g><g><title>__btrfs_tree_lock (1,169 samples, 0.12%)</title><rect x="36.2944%" y="677" width="0.1223%" height="15" fill="rgb(243,93,47)" fg:x="346969" fg:w="1169"/><text x="36.5444%" y="687.50"></text></g><g><title>down_write (1,167 samples, 0.12%)</title><rect x="36.2946%" y="661" width="0.1221%" height="15" fill="rgb(224,194,6)" fg:x="346971" fg:w="1167"/><text x="36.5446%" y="671.50"></text></g><g><title>btrfs_lock_root_node (1,173 samples, 0.12%)</title><rect x="36.2942%" y="693" width="0.1227%" height="15" fill="rgb(243,229,6)" fg:x="346967" fg:w="1173"/><text x="36.5442%" y="703.50"></text></g><g><title>__schedule (178 samples, 0.02%)</title><rect x="36.4231%" y="613" width="0.0186%" height="15" fill="rgb(207,23,50)" fg:x="348199" fg:w="178"/><text x="36.6731%" y="623.50"></text></g><g><title>schedule (181 samples, 0.02%)</title><rect x="36.4229%" y="629" width="0.0189%" height="15" fill="rgb(253,192,32)" fg:x="348197" fg:w="181"/><text x="36.6729%" y="639.50"></text></g><g><title>down_read (231 samples, 0.02%)</title><rect x="36.4178%" y="661" width="0.0242%" height="15" fill="rgb(213,21,6)" fg:x="348148" fg:w="231"/><text x="36.6678%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (212 samples, 0.02%)</title><rect x="36.4198%" y="645" width="0.0222%" height="15" fill="rgb(243,151,13)" fg:x="348167" fg:w="212"/><text x="36.6698%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (237 samples, 0.02%)</title><rect x="36.4172%" y="677" width="0.0248%" height="15" fill="rgb(233,165,41)" fg:x="348143" fg:w="237"/><text x="36.6672%" y="687.50"></text></g><g><title>btrfs_read_lock_root_node (255 samples, 0.03%)</title><rect x="36.4171%" y="693" width="0.0267%" height="15" fill="rgb(246,176,45)" fg:x="348142" fg:w="255"/><text x="36.6671%" y="703.50"></text></g><g><title>rwsem_optimistic_spin (156 samples, 0.02%)</title><rect x="36.4508%" y="629" width="0.0163%" height="15" fill="rgb(217,170,52)" fg:x="348464" fg:w="156"/><text x="36.7008%" y="639.50"></text></g><g><title>rwsem_down_write_slowpath (179 samples, 0.02%)</title><rect x="36.4504%" y="645" width="0.0187%" height="15" fill="rgb(214,203,54)" fg:x="348460" fg:w="179"/><text x="36.7004%" y="655.50"></text></g><g><title>__btrfs_tree_lock (206 samples, 0.02%)</title><rect x="36.4477%" y="677" width="0.0215%" height="15" fill="rgb(248,215,49)" fg:x="348434" fg:w="206"/><text x="36.6977%" y="687.50"></text></g><g><title>down_write (202 samples, 0.02%)</title><rect x="36.4481%" y="661" width="0.0211%" height="15" fill="rgb(208,46,10)" fg:x="348438" fg:w="202"/><text x="36.6981%" y="671.50"></text></g><g><title>btrfs_tree_lock (207 samples, 0.02%)</title><rect x="36.4477%" y="693" width="0.0217%" height="15" fill="rgb(254,5,31)" fg:x="348434" fg:w="207"/><text x="36.6977%" y="703.50"></text></g><g><title>find_extent_buffer (142 samples, 0.01%)</title><rect x="36.4805%" y="677" width="0.0149%" height="15" fill="rgb(222,104,33)" fg:x="348748" fg:w="142"/><text x="36.7305%" y="687.50"></text></g><g><title>read_block_for_search (222 samples, 0.02%)</title><rect x="36.4726%" y="693" width="0.0232%" height="15" fill="rgb(248,49,16)" fg:x="348672" fg:w="222"/><text x="36.7226%" y="703.50"></text></g><g><title>btrfs_readahead_tree_block (116 samples, 0.01%)</title><rect x="36.4989%" y="661" width="0.0121%" height="15" fill="rgb(232,198,41)" fg:x="348924" fg:w="116"/><text x="36.7489%" y="671.50"></text></g><g><title>btrfs_readahead_node_child (141 samples, 0.01%)</title><rect x="36.4971%" y="677" width="0.0147%" height="15" fill="rgb(214,125,3)" fg:x="348906" fg:w="141"/><text x="36.7471%" y="687.50"></text></g><g><title>reada_for_balance (154 samples, 0.02%)</title><rect x="36.4958%" y="693" width="0.0161%" height="15" fill="rgb(229,220,28)" fg:x="348894" fg:w="154"/><text x="36.7458%" y="703.50"></text></g><g><title>select_idle_sibling (128 samples, 0.01%)</title><rect x="36.5367%" y="581" width="0.0134%" height="15" fill="rgb(222,64,37)" fg:x="349285" fg:w="128"/><text x="36.7867%" y="591.50"></text></g><g><title>select_task_rq_fair (172 samples, 0.02%)</title><rect x="36.5347%" y="597" width="0.0180%" height="15" fill="rgb(249,184,13)" fg:x="349266" fg:w="172"/><text x="36.7847%" y="607.50"></text></g><g><title>ttwu_do_activate (114 samples, 0.01%)</title><rect x="36.5550%" y="597" width="0.0119%" height="15" fill="rgb(252,176,6)" fg:x="349460" fg:w="114"/><text x="36.8050%" y="607.50"></text></g><g><title>try_to_wake_up (501 samples, 0.05%)</title><rect x="36.5218%" y="613" width="0.0524%" height="15" fill="rgb(228,153,7)" fg:x="349143" fg:w="501"/><text x="36.7718%" y="623.50"></text></g><g><title>btrfs_tree_unlock (574 samples, 0.06%)</title><rect x="36.5144%" y="677" width="0.0600%" height="15" fill="rgb(242,193,5)" fg:x="349072" fg:w="574"/><text x="36.7644%" y="687.50"></text></g><g><title>up_write (570 samples, 0.06%)</title><rect x="36.5148%" y="661" width="0.0596%" height="15" fill="rgb(232,140,9)" fg:x="349076" fg:w="570"/><text x="36.7648%" y="671.50"></text></g><g><title>rwsem_wake.isra.0 (569 samples, 0.06%)</title><rect x="36.5149%" y="645" width="0.0595%" height="15" fill="rgb(213,222,16)" fg:x="349077" fg:w="569"/><text x="36.7649%" y="655.50"></text></g><g><title>wake_up_q (513 samples, 0.05%)</title><rect x="36.5208%" y="629" width="0.0537%" height="15" fill="rgb(222,75,50)" fg:x="349133" fg:w="513"/><text x="36.7708%" y="639.50"></text></g><g><title>unlock_up (605 samples, 0.06%)</title><rect x="36.5119%" y="693" width="0.0633%" height="15" fill="rgb(205,180,2)" fg:x="349048" fg:w="605"/><text x="36.7619%" y="703.50"></text></g><g><title>btrfs_search_slot (2,925 samples, 0.31%)</title><rect x="36.2700%" y="709" width="0.3060%" height="15" fill="rgb(216,34,7)" fg:x="346735" fg:w="2925"/><text x="36.5200%" y="719.50"></text></g><g><title>btrfs_truncate_inode_items (4,823 samples, 0.50%)</title><rect x="36.0872%" y="725" width="0.5045%" height="15" fill="rgb(253,16,32)" fg:x="344988" fg:w="4823"/><text x="36.3372%" y="735.50"></text></g><g><title>__reserve_bytes (132 samples, 0.01%)</title><rect x="36.6020%" y="677" width="0.0138%" height="15" fill="rgb(208,97,28)" fg:x="349909" fg:w="132"/><text x="36.8520%" y="687.50"></text></g><g><title>btrfs_block_rsv_refill (163 samples, 0.02%)</title><rect x="36.6012%" y="709" width="0.0171%" height="15" fill="rgb(225,92,11)" fg:x="349902" fg:w="163"/><text x="36.8512%" y="719.50"></text></g><g><title>btrfs_reserve_metadata_bytes (159 samples, 0.02%)</title><rect x="36.6017%" y="693" width="0.0166%" height="15" fill="rgb(243,38,12)" fg:x="349906" fg:w="159"/><text x="36.8517%" y="703.50"></text></g><g><title>btrfs_join_transaction (105 samples, 0.01%)</title><rect x="36.6183%" y="709" width="0.0110%" height="15" fill="rgb(208,139,16)" fg:x="350065" fg:w="105"/><text x="36.8683%" y="719.50"></text></g><g><title>start_transaction (100 samples, 0.01%)</title><rect x="36.6188%" y="693" width="0.0105%" height="15" fill="rgb(227,24,9)" fg:x="350070" fg:w="100"/><text x="36.8688%" y="703.50"></text></g><g><title>evict_refill_and_join (328 samples, 0.03%)</title><rect x="36.5955%" y="725" width="0.0343%" height="15" fill="rgb(206,62,11)" fg:x="349847" fg:w="328"/><text x="36.8455%" y="735.50"></text></g><g><title>btrfs_evict_inode (13,002 samples, 1.36%)</title><rect x="35.2725%" y="741" width="1.3601%" height="15" fill="rgb(228,134,27)" fg:x="337199" fg:w="13002"/><text x="35.5225%" y="751.50"></text></g><g><title>__destroy_inode (184 samples, 0.02%)</title><rect x="36.6351%" y="725" width="0.0192%" height="15" fill="rgb(205,55,33)" fg:x="350226" fg:w="184"/><text x="36.8851%" y="735.50"></text></g><g><title>security_inode_free (122 samples, 0.01%)</title><rect x="36.6416%" y="709" width="0.0128%" height="15" fill="rgb(243,75,43)" fg:x="350288" fg:w="122"/><text x="36.8916%" y="719.50"></text></g><g><title>btrfs_destroy_inode (240 samples, 0.03%)</title><rect x="36.6550%" y="725" width="0.0251%" height="15" fill="rgb(223,27,42)" fg:x="350416" fg:w="240"/><text x="36.9050%" y="735.50"></text></g><g><title>destroy_inode (535 samples, 0.06%)</title><rect x="36.6348%" y="741" width="0.0560%" height="15" fill="rgb(232,189,33)" fg:x="350223" fg:w="535"/><text x="36.8848%" y="751.50"></text></g><g><title>evict (13,630 samples, 1.43%)</title><rect x="35.2672%" y="757" width="1.4258%" height="15" fill="rgb(210,9,39)" fg:x="337149" fg:w="13630"/><text x="35.5172%" y="767.50"></text></g><g><title>iput (13,678 samples, 1.43%)</title><rect x="35.2623%" y="773" width="1.4308%" height="15" fill="rgb(242,85,26)" fg:x="337102" fg:w="13678"/><text x="35.5123%" y="783.50"></text></g><g><title>mem_cgroup_from_obj (176 samples, 0.02%)</title><rect x="36.7451%" y="693" width="0.0184%" height="15" fill="rgb(248,44,4)" fg:x="351277" fg:w="176"/><text x="36.9951%" y="703.50"></text></g><g><title>list_lru_del (263 samples, 0.03%)</title><rect x="36.7361%" y="709" width="0.0275%" height="15" fill="rgb(250,96,46)" fg:x="351191" fg:w="263"/><text x="36.9861%" y="719.50"></text></g><g><title>d_lru_del (330 samples, 0.03%)</title><rect x="36.7292%" y="725" width="0.0345%" height="15" fill="rgb(229,116,26)" fg:x="351125" fg:w="330"/><text x="36.9792%" y="735.50"></text></g><g><title>d_walk (510 samples, 0.05%)</title><rect x="36.7108%" y="757" width="0.0533%" height="15" fill="rgb(246,94,34)" fg:x="350949" fg:w="510"/><text x="36.9608%" y="767.50"></text></g><g><title>select_collect (353 samples, 0.04%)</title><rect x="36.7272%" y="741" width="0.0369%" height="15" fill="rgb(251,73,21)" fg:x="351106" fg:w="353"/><text x="36.9772%" y="751.50"></text></g><g><title>___d_drop (294 samples, 0.03%)</title><rect x="36.7688%" y="725" width="0.0308%" height="15" fill="rgb(254,121,25)" fg:x="351504" fg:w="294"/><text x="37.0188%" y="735.50"></text></g><g><title>dentry_free (142 samples, 0.01%)</title><rect x="36.8000%" y="725" width="0.0149%" height="15" fill="rgb(215,161,49)" fg:x="351802" fg:w="142"/><text x="37.0500%" y="735.50"></text></g><g><title>call_rcu (132 samples, 0.01%)</title><rect x="36.8010%" y="709" width="0.0138%" height="15" fill="rgb(221,43,13)" fg:x="351812" fg:w="132"/><text x="37.0510%" y="719.50"></text></g><g><title>__call_rcu (132 samples, 0.01%)</title><rect x="36.8010%" y="693" width="0.0138%" height="15" fill="rgb(249,5,37)" fg:x="351812" fg:w="132"/><text x="37.0510%" y="703.50"></text></g><g><title>__dentry_kill (460 samples, 0.05%)</title><rect x="36.7670%" y="741" width="0.0481%" height="15" fill="rgb(226,25,44)" fg:x="351487" fg:w="460"/><text x="37.0170%" y="751.50"></text></g><g><title>shrink_dentry_list (630 samples, 0.07%)</title><rect x="36.7651%" y="757" width="0.0659%" height="15" fill="rgb(238,189,16)" fg:x="351468" fg:w="630"/><text x="37.0151%" y="767.50"></text></g><g><title>shrink_dcache_parent (1,264 samples, 0.13%)</title><rect x="36.6988%" y="773" width="0.1322%" height="15" fill="rgb(251,186,8)" fg:x="350835" fg:w="1264"/><text x="36.9488%" y="783.50"></text></g><g><title>do_rmdir (22,685 samples, 2.37%)</title><rect x="34.4586%" y="805" width="2.3729%" height="15" fill="rgb(254,34,31)" fg:x="329419" fg:w="22685"/><text x="34.7086%" y="815.50">do..</text></g><g><title>vfs_rmdir (22,346 samples, 2.34%)</title><rect x="34.4941%" y="789" width="2.3375%" height="15" fill="rgb(225,215,27)" fg:x="329758" fg:w="22346"/><text x="34.7441%" y="799.50">v..</text></g><g><title>__lookup_hash (257 samples, 0.03%)</title><rect x="36.8635%" y="789" width="0.0269%" height="15" fill="rgb(221,192,48)" fg:x="352409" fg:w="257"/><text x="37.1135%" y="799.50"></text></g><g><title>lookup_dcache (204 samples, 0.02%)</title><rect x="36.8690%" y="773" width="0.0213%" height="15" fill="rgb(219,137,20)" fg:x="352462" fg:w="204"/><text x="37.1190%" y="783.50"></text></g><g><title>d_lookup (146 samples, 0.02%)</title><rect x="36.8751%" y="757" width="0.0153%" height="15" fill="rgb(219,84,11)" fg:x="352520" fg:w="146"/><text x="37.1251%" y="767.50"></text></g><g><title>btrfs_dentry_delete (173 samples, 0.02%)</title><rect x="36.9463%" y="773" width="0.0181%" height="15" fill="rgb(224,10,23)" fg:x="353201" fg:w="173"/><text x="37.1963%" y="783.50"></text></g><g><title>lockref_put_or_lock (126 samples, 0.01%)</title><rect x="36.9644%" y="773" width="0.0132%" height="15" fill="rgb(248,22,39)" fg:x="353374" fg:w="126"/><text x="37.2144%" y="783.50"></text></g><g><title>dput (520 samples, 0.05%)</title><rect x="36.9247%" y="789" width="0.0544%" height="15" fill="rgb(212,154,20)" fg:x="352994" fg:w="520"/><text x="37.1747%" y="799.50"></text></g><g><title>complete_walk (142 samples, 0.01%)</title><rect x="37.0005%" y="757" width="0.0149%" height="15" fill="rgb(236,199,50)" fg:x="353719" fg:w="142"/><text x="37.2505%" y="767.50"></text></g><g><title>try_to_unlazy (116 samples, 0.01%)</title><rect x="37.0032%" y="741" width="0.0121%" height="15" fill="rgb(211,9,17)" fg:x="353745" fg:w="116"/><text x="37.2532%" y="751.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (144 samples, 0.02%)</title><rect x="37.0162%" y="757" width="0.0151%" height="15" fill="rgb(243,216,36)" fg:x="353869" fg:w="144"/><text x="37.2662%" y="767.50"></text></g><g><title>__fget_files (120 samples, 0.01%)</title><rect x="37.0371%" y="709" width="0.0126%" height="15" fill="rgb(250,2,10)" fg:x="354069" fg:w="120"/><text x="37.2871%" y="719.50"></text></g><g><title>__fdget_raw (127 samples, 0.01%)</title><rect x="37.0365%" y="741" width="0.0133%" height="15" fill="rgb(226,50,48)" fg:x="354063" fg:w="127"/><text x="37.2865%" y="751.50"></text></g><g><title>__fget_light (126 samples, 0.01%)</title><rect x="37.0366%" y="725" width="0.0132%" height="15" fill="rgb(243,81,16)" fg:x="354064" fg:w="126"/><text x="37.2866%" y="735.50"></text></g><g><title>path_init (254 samples, 0.03%)</title><rect x="37.0316%" y="757" width="0.0266%" height="15" fill="rgb(250,14,2)" fg:x="354016" fg:w="254"/><text x="37.2816%" y="767.50"></text></g><g><title>path_parentat (620 samples, 0.06%)</title><rect x="36.9974%" y="773" width="0.0649%" height="15" fill="rgb(233,135,29)" fg:x="353689" fg:w="620"/><text x="37.2474%" y="783.50"></text></g><g><title>filename_parentat (764 samples, 0.08%)</title><rect x="36.9840%" y="789" width="0.0799%" height="15" fill="rgb(224,64,43)" fg:x="353561" fg:w="764"/><text x="37.2340%" y="799.50"></text></g><g><title>ihold (216 samples, 0.02%)</title><rect x="37.0731%" y="789" width="0.0226%" height="15" fill="rgb(238,84,13)" fg:x="354413" fg:w="216"/><text x="37.3231%" y="799.50"></text></g><g><title>_raw_spin_lock (232 samples, 0.02%)</title><rect x="37.1133%" y="773" width="0.0243%" height="15" fill="rgb(253,48,26)" fg:x="354797" fg:w="232"/><text x="37.3633%" y="783.50"></text></g><g><title>_raw_spin_lock (225 samples, 0.02%)</title><rect x="37.1623%" y="757" width="0.0235%" height="15" fill="rgb(205,223,31)" fg:x="355266" fg:w="225"/><text x="37.4123%" y="767.50"></text></g><g><title>btrfs_find_space_info (98 samples, 0.01%)</title><rect x="37.2619%" y="725" width="0.0103%" height="15" fill="rgb(221,41,32)" fg:x="356218" fg:w="98"/><text x="37.5119%" y="735.50"></text></g><g><title>kmem_cache_alloc_trace (212 samples, 0.02%)</title><rect x="37.2722%" y="725" width="0.0222%" height="15" fill="rgb(213,158,31)" fg:x="356316" fg:w="212"/><text x="37.5222%" y="735.50"></text></g><g><title>btrfs_alloc_block_rsv (416 samples, 0.04%)</title><rect x="37.2556%" y="741" width="0.0435%" height="15" fill="rgb(245,126,43)" fg:x="356158" fg:w="416"/><text x="37.5056%" y="751.50"></text></g><g><title>__queue_work (227 samples, 0.02%)</title><rect x="37.3277%" y="661" width="0.0237%" height="15" fill="rgb(227,7,22)" fg:x="356847" fg:w="227"/><text x="37.5777%" y="671.50"></text></g><g><title>insert_work (207 samples, 0.02%)</title><rect x="37.3298%" y="645" width="0.0217%" height="15" fill="rgb(252,90,44)" fg:x="356867" fg:w="207"/><text x="37.5798%" y="655.50"></text></g><g><title>wake_up_process (206 samples, 0.02%)</title><rect x="37.3299%" y="629" width="0.0215%" height="15" fill="rgb(253,91,0)" fg:x="356868" fg:w="206"/><text x="37.5799%" y="639.50"></text></g><g><title>try_to_wake_up (204 samples, 0.02%)</title><rect x="37.3301%" y="613" width="0.0213%" height="15" fill="rgb(252,175,49)" fg:x="356870" fg:w="204"/><text x="37.5801%" y="623.50"></text></g><g><title>btrfs_queue_work (264 samples, 0.03%)</title><rect x="37.3265%" y="693" width="0.0276%" height="15" fill="rgb(246,150,1)" fg:x="356835" fg:w="264"/><text x="37.5765%" y="703.50"></text></g><g><title>queue_work_on (257 samples, 0.03%)</title><rect x="37.3272%" y="677" width="0.0269%" height="15" fill="rgb(241,192,25)" fg:x="356842" fg:w="257"/><text x="37.5772%" y="687.50"></text></g><g><title>btrfs_wq_run_delayed_node (293 samples, 0.03%)</title><rect x="37.3260%" y="709" width="0.0306%" height="15" fill="rgb(239,187,11)" fg:x="356831" fg:w="293"/><text x="37.5760%" y="719.50"></text></g><g><title>btrfs_balance_delayed_items (377 samples, 0.04%)</title><rect x="37.3179%" y="725" width="0.0394%" height="15" fill="rgb(218,202,51)" fg:x="356753" fg:w="377"/><text x="37.5679%" y="735.50"></text></g><g><title>btrfs_btree_balance_dirty (455 samples, 0.05%)</title><rect x="37.3118%" y="741" width="0.0476%" height="15" fill="rgb(225,176,8)" fg:x="356695" fg:w="455"/><text x="37.5618%" y="751.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (329 samples, 0.03%)</title><rect x="37.3720%" y="725" width="0.0344%" height="15" fill="rgb(219,122,41)" fg:x="357270" fg:w="329"/><text x="37.6220%" y="735.50"></text></g><g><title>__btrfs_add_free_space (131 samples, 0.01%)</title><rect x="37.4850%" y="645" width="0.0137%" height="15" fill="rgb(248,140,20)" fg:x="358351" fg:w="131"/><text x="37.7350%" y="655.50"></text></g><g><title>btrfs_add_free_space (134 samples, 0.01%)</title><rect x="37.4850%" y="661" width="0.0140%" height="15" fill="rgb(245,41,37)" fg:x="358351" fg:w="134"/><text x="37.7350%" y="671.50"></text></g><g><title>btrfs_free_tree_block (217 samples, 0.02%)</title><rect x="37.4803%" y="677" width="0.0227%" height="15" fill="rgb(235,82,39)" fg:x="358306" fg:w="217"/><text x="37.7303%" y="687.50"></text></g><g><title>btrfs_del_leaf (240 samples, 0.03%)</title><rect x="37.4798%" y="693" width="0.0251%" height="15" fill="rgb(230,108,42)" fg:x="358301" fg:w="240"/><text x="37.7298%" y="703.50"></text></g><g><title>btrfs_get_32 (140 samples, 0.01%)</title><rect x="37.5049%" y="693" width="0.0146%" height="15" fill="rgb(215,150,50)" fg:x="358541" fg:w="140"/><text x="37.7549%" y="703.50"></text></g><g><title>btrfs_get_token_32 (1,418 samples, 0.15%)</title><rect x="37.5196%" y="693" width="0.1483%" height="15" fill="rgb(233,212,5)" fg:x="358681" fg:w="1418"/><text x="37.7696%" y="703.50"></text></g><g><title>btrfs_set_token_32 (1,337 samples, 0.14%)</title><rect x="37.6762%" y="693" width="0.1399%" height="15" fill="rgb(245,80,22)" fg:x="360178" fg:w="1337"/><text x="37.9262%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (469 samples, 0.05%)</title><rect x="37.8162%" y="693" width="0.0491%" height="15" fill="rgb(238,129,16)" fg:x="361517" fg:w="469"/><text x="38.0662%" y="703.50"></text></g><g><title>copy_pages (298 samples, 0.03%)</title><rect x="37.8655%" y="693" width="0.0312%" height="15" fill="rgb(240,19,0)" fg:x="361988" fg:w="298"/><text x="38.1155%" y="703.50"></text></g><g><title>leaf_space_used (147 samples, 0.02%)</title><rect x="37.8986%" y="693" width="0.0154%" height="15" fill="rgb(232,42,35)" fg:x="362305" fg:w="147"/><text x="38.1486%" y="703.50"></text></g><g><title>memcpy_extent_buffer (219 samples, 0.02%)</title><rect x="37.9342%" y="677" width="0.0229%" height="15" fill="rgb(223,130,24)" fg:x="362645" fg:w="219"/><text x="38.1842%" y="687.50"></text></g><g><title>memmove (163 samples, 0.02%)</title><rect x="37.9401%" y="661" width="0.0171%" height="15" fill="rgb(237,16,22)" fg:x="362701" fg:w="163"/><text x="38.1901%" y="671.50"></text></g><g><title>memmove_extent_buffer (2,190 samples, 0.23%)</title><rect x="37.9163%" y="693" width="0.2291%" height="15" fill="rgb(248,192,20)" fg:x="362474" fg:w="2190"/><text x="38.1663%" y="703.50"></text></g><g><title>memmove (1,800 samples, 0.19%)</title><rect x="37.9571%" y="677" width="0.1883%" height="15" fill="rgb(233,167,2)" fg:x="362864" fg:w="1800"/><text x="38.2071%" y="687.50"></text></g><g><title>push_leaf_left (138 samples, 0.01%)</title><rect x="38.1454%" y="693" width="0.0144%" height="15" fill="rgb(252,71,44)" fg:x="364664" fg:w="138"/><text x="38.3954%" y="703.50"></text></g><g><title>btrfs_del_items (7,068 samples, 0.74%)</title><rect x="37.4287%" y="709" width="0.7393%" height="15" fill="rgb(238,37,47)" fg:x="357812" fg:w="7068"/><text x="37.6787%" y="719.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.02%)</title><rect x="38.1702%" y="693" width="0.0182%" height="15" fill="rgb(214,202,54)" fg:x="364901" fg:w="174"/><text x="38.4202%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (146 samples, 0.02%)</title><rect x="38.1885%" y="693" width="0.0153%" height="15" fill="rgb(254,165,40)" fg:x="365076" fg:w="146"/><text x="38.4385%" y="703.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (389 samples, 0.04%)</title><rect x="38.1680%" y="709" width="0.0407%" height="15" fill="rgb(246,173,38)" fg:x="364880" fg:w="389"/><text x="38.4180%" y="719.50"></text></g><g><title>btrfs_get_token_32 (232 samples, 0.02%)</title><rect x="38.2150%" y="709" width="0.0243%" height="15" fill="rgb(215,3,27)" fg:x="365329" fg:w="232"/><text x="38.4650%" y="719.50"></text></g><g><title>balance_level (254 samples, 0.03%)</title><rect x="38.3611%" y="677" width="0.0266%" height="15" fill="rgb(239,169,51)" fg:x="366726" fg:w="254"/><text x="38.6111%" y="687.50"></text></g><g><title>btrfs_bin_search (1,290 samples, 0.13%)</title><rect x="38.3877%" y="677" width="0.1349%" height="15" fill="rgb(212,5,25)" fg:x="366980" fg:w="1290"/><text x="38.6377%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (1,239 samples, 0.13%)</title><rect x="38.3930%" y="661" width="0.1296%" height="15" fill="rgb(243,45,17)" fg:x="367031" fg:w="1239"/><text x="38.6430%" y="671.50"></text></g><g><title>_raw_spin_lock_irq (118 samples, 0.01%)</title><rect x="38.5680%" y="613" width="0.0123%" height="15" fill="rgb(242,97,9)" fg:x="368704" fg:w="118"/><text x="38.8180%" y="623.50"></text></g><g><title>osq_lock (4,507 samples, 0.47%)</title><rect x="39.0327%" y="597" width="0.4715%" height="15" fill="rgb(228,71,31)" fg:x="373146" fg:w="4507"/><text x="39.2827%" y="607.50"></text></g><g><title>rwsem_spin_on_owner (358 samples, 0.04%)</title><rect x="39.5108%" y="597" width="0.0374%" height="15" fill="rgb(252,184,16)" fg:x="377717" fg:w="358"/><text x="39.7608%" y="607.50"></text></g><g><title>rwsem_optimistic_spin (9,281 samples, 0.97%)</title><rect x="38.5865%" y="613" width="0.9708%" height="15" fill="rgb(236,169,46)" fg:x="368881" fg:w="9281"/><text x="38.8365%" y="623.50"></text></g><g><title>update_curr (152 samples, 0.02%)</title><rect x="39.6041%" y="533" width="0.0159%" height="15" fill="rgb(207,17,47)" fg:x="378609" fg:w="152"/><text x="39.8541%" y="543.50"></text></g><g><title>update_load_avg (122 samples, 0.01%)</title><rect x="39.6200%" y="533" width="0.0128%" height="15" fill="rgb(206,201,28)" fg:x="378761" fg:w="122"/><text x="39.8700%" y="543.50"></text></g><g><title>dequeue_entity (421 samples, 0.04%)</title><rect x="39.5901%" y="549" width="0.0440%" height="15" fill="rgb(224,184,23)" fg:x="378475" fg:w="421"/><text x="39.8401%" y="559.50"></text></g><g><title>dequeue_task_fair (614 samples, 0.06%)</title><rect x="39.5829%" y="565" width="0.0642%" height="15" fill="rgb(208,139,48)" fg:x="378406" fg:w="614"/><text x="39.8329%" y="575.50"></text></g><g><title>dequeue_task (653 samples, 0.07%)</title><rect x="39.5818%" y="581" width="0.0683%" height="15" fill="rgb(208,130,10)" fg:x="378396" fg:w="653"/><text x="39.8318%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (667 samples, 0.07%)</title><rect x="39.6599%" y="565" width="0.0698%" height="15" fill="rgb(211,213,45)" fg:x="379142" fg:w="667"/><text x="39.9099%" y="575.50"></text></g><g><title>x86_pmu_enable (651 samples, 0.07%)</title><rect x="39.6615%" y="549" width="0.0681%" height="15" fill="rgb(235,100,30)" fg:x="379158" fg:w="651"/><text x="39.9115%" y="559.50"></text></g><g><title>intel_pmu_enable_all (644 samples, 0.07%)</title><rect x="39.6623%" y="533" width="0.0674%" height="15" fill="rgb(206,144,31)" fg:x="379165" fg:w="644"/><text x="39.9123%" y="543.50"></text></g><g><title>native_write_msr (632 samples, 0.07%)</title><rect x="39.6635%" y="517" width="0.0661%" height="15" fill="rgb(224,200,26)" fg:x="379177" fg:w="632"/><text x="39.9135%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (783 samples, 0.08%)</title><rect x="39.6502%" y="581" width="0.0819%" height="15" fill="rgb(247,104,53)" fg:x="379050" fg:w="783"/><text x="39.9002%" y="591.50"></text></g><g><title>pick_next_task_fair (195 samples, 0.02%)</title><rect x="39.7366%" y="565" width="0.0204%" height="15" fill="rgb(220,14,17)" fg:x="379876" fg:w="195"/><text x="39.9866%" y="575.50"></text></g><g><title>pick_next_task (329 samples, 0.03%)</title><rect x="39.7337%" y="581" width="0.0344%" height="15" fill="rgb(230,140,40)" fg:x="379848" fg:w="329"/><text x="39.9837%" y="591.50"></text></g><g><title>__perf_event_task_sched_out (139 samples, 0.01%)</title><rect x="39.7723%" y="565" width="0.0145%" height="15" fill="rgb(229,2,41)" fg:x="380217" fg:w="139"/><text x="40.0223%" y="575.50"></text></g><g><title>prepare_task_switch (177 samples, 0.02%)</title><rect x="39.7687%" y="581" width="0.0185%" height="15" fill="rgb(232,89,16)" fg:x="380182" fg:w="177"/><text x="40.0187%" y="591.50"></text></g><g><title>psi_group_change (334 samples, 0.03%)</title><rect x="39.8002%" y="565" width="0.0349%" height="15" fill="rgb(247,59,52)" fg:x="380484" fg:w="334"/><text x="40.0502%" y="575.50"></text></g><g><title>psi_task_switch (467 samples, 0.05%)</title><rect x="39.7887%" y="581" width="0.0489%" height="15" fill="rgb(226,110,21)" fg:x="380374" fg:w="467"/><text x="40.0387%" y="591.50"></text></g><g><title>__schedule (2,675 samples, 0.28%)</title><rect x="39.5664%" y="597" width="0.2798%" height="15" fill="rgb(224,176,43)" fg:x="378248" fg:w="2675"/><text x="39.8164%" y="607.50"></text></g><g><title>schedule (2,712 samples, 0.28%)</title><rect x="39.5643%" y="613" width="0.2837%" height="15" fill="rgb(221,73,6)" fg:x="378228" fg:w="2712"/><text x="39.8143%" y="623.50"></text></g><g><title>rwsem_down_write_slowpath (12,402 samples, 1.30%)</title><rect x="38.5511%" y="629" width="1.2973%" height="15" fill="rgb(232,78,19)" fg:x="368542" fg:w="12402"/><text x="38.8011%" y="639.50"></text></g><g><title>down_write (12,494 samples, 1.31%)</title><rect x="38.5432%" y="645" width="1.3069%" height="15" fill="rgb(233,112,48)" fg:x="368467" fg:w="12494"/><text x="38.7932%" y="655.50"></text></g><g><title>__btrfs_tree_lock (12,543 samples, 1.31%)</title><rect x="38.5391%" y="661" width="1.3121%" height="15" fill="rgb(243,131,47)" fg:x="368428" fg:w="12543"/><text x="38.7891%" y="671.50"></text></g><g><title>btrfs_lock_root_node (12,651 samples, 1.32%)</title><rect x="38.5363%" y="677" width="1.3233%" height="15" fill="rgb(226,51,1)" fg:x="368401" fg:w="12651"/><text x="38.7863%" y="687.50"></text></g><g><title>update_curr (201 samples, 0.02%)</title><rect x="39.9632%" y="533" width="0.0210%" height="15" fill="rgb(247,58,7)" fg:x="382042" fg:w="201"/><text x="40.2132%" y="543.50"></text></g><g><title>update_load_avg (163 samples, 0.02%)</title><rect x="39.9842%" y="533" width="0.0171%" height="15" fill="rgb(209,7,32)" fg:x="382243" fg:w="163"/><text x="40.2342%" y="543.50"></text></g><g><title>dequeue_entity (551 samples, 0.06%)</title><rect x="39.9451%" y="549" width="0.0576%" height="15" fill="rgb(209,39,41)" fg:x="381869" fg:w="551"/><text x="40.1951%" y="559.50"></text></g><g><title>dequeue_task_fair (710 samples, 0.07%)</title><rect x="39.9377%" y="565" width="0.0743%" height="15" fill="rgb(226,182,46)" fg:x="381798" fg:w="710"/><text x="40.1877%" y="575.50"></text></g><g><title>dequeue_task (756 samples, 0.08%)</title><rect x="39.9353%" y="581" width="0.0791%" height="15" fill="rgb(230,219,10)" fg:x="381775" fg:w="756"/><text x="40.1853%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (583 samples, 0.06%)</title><rect x="40.0217%" y="565" width="0.0610%" height="15" fill="rgb(227,175,30)" fg:x="382601" fg:w="583"/><text x="40.2717%" y="575.50"></text></g><g><title>x86_pmu_enable (552 samples, 0.06%)</title><rect x="40.0249%" y="549" width="0.0577%" height="15" fill="rgb(217,2,50)" fg:x="382632" fg:w="552"/><text x="40.2749%" y="559.50"></text></g><g><title>intel_pmu_enable_all (549 samples, 0.06%)</title><rect x="40.0253%" y="533" width="0.0574%" height="15" fill="rgb(229,160,0)" fg:x="382635" fg:w="549"/><text x="40.2753%" y="543.50"></text></g><g><title>native_write_msr (537 samples, 0.06%)</title><rect x="40.0265%" y="517" width="0.0562%" height="15" fill="rgb(207,78,37)" fg:x="382647" fg:w="537"/><text x="40.2765%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (741 samples, 0.08%)</title><rect x="40.0146%" y="581" width="0.0775%" height="15" fill="rgb(225,57,0)" fg:x="382533" fg:w="741"/><text x="40.2646%" y="591.50"></text></g><g><title>pick_next_task_fair (181 samples, 0.02%)</title><rect x="40.0967%" y="565" width="0.0189%" height="15" fill="rgb(232,154,2)" fg:x="383318" fg:w="181"/><text x="40.3467%" y="575.50"></text></g><g><title>pick_next_task (345 samples, 0.04%)</title><rect x="40.0933%" y="581" width="0.0361%" height="15" fill="rgb(241,212,25)" fg:x="383286" fg:w="345"/><text x="40.3433%" y="591.50"></text></g><g><title>__perf_event_task_sched_out (134 samples, 0.01%)</title><rect x="40.1348%" y="565" width="0.0140%" height="15" fill="rgb(226,69,20)" fg:x="383682" fg:w="134"/><text x="40.3848%" y="575.50"></text></g><g><title>prepare_task_switch (159 samples, 0.02%)</title><rect x="40.1323%" y="581" width="0.0166%" height="15" fill="rgb(247,184,54)" fg:x="383658" fg:w="159"/><text x="40.3823%" y="591.50"></text></g><g><title>psi_group_change (345 samples, 0.04%)</title><rect x="40.1614%" y="565" width="0.0361%" height="15" fill="rgb(210,145,0)" fg:x="383937" fg:w="345"/><text x="40.4114%" y="575.50"></text></g><g><title>psi_task_switch (481 samples, 0.05%)</title><rect x="40.1503%" y="581" width="0.0503%" height="15" fill="rgb(253,82,12)" fg:x="383830" fg:w="481"/><text x="40.4003%" y="591.50"></text></g><g><title>__schedule (2,797 samples, 0.29%)</title><rect x="39.9185%" y="597" width="0.2926%" height="15" fill="rgb(245,42,11)" fg:x="381614" fg:w="2797"/><text x="40.1685%" y="607.50"></text></g><g><title>schedule (2,841 samples, 0.30%)</title><rect x="39.9164%" y="613" width="0.2972%" height="15" fill="rgb(219,147,32)" fg:x="381594" fg:w="2841"/><text x="40.1664%" y="623.50"></text></g><g><title>rwsem_down_read_slowpath (3,189 samples, 0.33%)</title><rect x="39.8845%" y="629" width="0.3336%" height="15" fill="rgb(246,12,7)" fg:x="381289" fg:w="3189"/><text x="40.1345%" y="639.50"></text></g><g><title>down_read (3,357 samples, 0.35%)</title><rect x="39.8678%" y="645" width="0.3512%" height="15" fill="rgb(243,50,9)" fg:x="381130" fg:w="3357"/><text x="40.1178%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (3,398 samples, 0.36%)</title><rect x="39.8648%" y="661" width="0.3554%" height="15" fill="rgb(219,149,6)" fg:x="381101" fg:w="3398"/><text x="40.1148%" y="671.50"></text></g><g><title>btrfs_root_node (195 samples, 0.02%)</title><rect x="40.2202%" y="661" width="0.0204%" height="15" fill="rgb(241,51,42)" fg:x="384499" fg:w="195"/><text x="40.4702%" y="671.50"></text></g><g><title>btrfs_read_lock_root_node (3,646 samples, 0.38%)</title><rect x="39.8605%" y="677" width="0.3814%" height="15" fill="rgb(226,128,27)" fg:x="381060" fg:w="3646"/><text x="40.1105%" y="687.50"></text></g><g><title>_raw_spin_lock_irqsave (96 samples, 0.01%)</title><rect x="40.2740%" y="581" width="0.0100%" height="15" fill="rgb(244,144,4)" fg:x="385013" fg:w="96"/><text x="40.5240%" y="591.50"></text></g><g><title>try_to_wake_up (273 samples, 0.03%)</title><rect x="40.2676%" y="597" width="0.0286%" height="15" fill="rgb(221,4,13)" fg:x="384952" fg:w="273"/><text x="40.5176%" y="607.50"></text></g><g><title>rwsem_wake.isra.0 (417 samples, 0.04%)</title><rect x="40.2527%" y="629" width="0.0436%" height="15" fill="rgb(208,170,28)" fg:x="384809" fg:w="417"/><text x="40.5027%" y="639.50"></text></g><g><title>wake_up_q (299 samples, 0.03%)</title><rect x="40.2650%" y="613" width="0.0313%" height="15" fill="rgb(226,131,13)" fg:x="384927" fg:w="299"/><text x="40.5150%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (430 samples, 0.04%)</title><rect x="40.2514%" y="661" width="0.0450%" height="15" fill="rgb(215,72,41)" fg:x="384797" fg:w="430"/><text x="40.5014%" y="671.50"></text></g><g><title>up_read (424 samples, 0.04%)</title><rect x="40.2520%" y="645" width="0.0444%" height="15" fill="rgb(243,108,20)" fg:x="384803" fg:w="424"/><text x="40.5020%" y="655.50"></text></g><g><title>btrfs_release_path (645 samples, 0.07%)</title><rect x="40.2442%" y="677" width="0.0675%" height="15" fill="rgb(230,189,17)" fg:x="384728" fg:w="645"/><text x="40.4942%" y="687.50"></text></g><g><title>__schedule (124 samples, 0.01%)</title><rect x="40.3347%" y="613" width="0.0130%" height="15" fill="rgb(220,50,17)" fg:x="385593" fg:w="124"/><text x="40.5847%" y="623.50"></text></g><g><title>__cond_resched (141 samples, 0.01%)</title><rect x="40.3332%" y="629" width="0.0147%" height="15" fill="rgb(248,152,48)" fg:x="385579" fg:w="141"/><text x="40.5832%" y="639.50"></text></g><g><title>rwsem_spin_on_owner (743 samples, 0.08%)</title><rect x="40.4519%" y="597" width="0.0777%" height="15" fill="rgb(244,91,11)" fg:x="386714" fg:w="743"/><text x="40.7019%" y="607.50"></text></g><g><title>rwsem_optimistic_spin (1,711 samples, 0.18%)</title><rect x="40.3528%" y="613" width="0.1790%" height="15" fill="rgb(220,157,5)" fg:x="385766" fg:w="1711"/><text x="40.6028%" y="623.50"></text></g><g><title>__schedule (168 samples, 0.02%)</title><rect x="40.5331%" y="597" width="0.0176%" height="15" fill="rgb(253,137,8)" fg:x="387490" fg:w="168"/><text x="40.7831%" y="607.50"></text></g><g><title>down_write (2,200 samples, 0.23%)</title><rect x="40.3208%" y="645" width="0.2301%" height="15" fill="rgb(217,137,51)" fg:x="385460" fg:w="2200"/><text x="40.5708%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (1,919 samples, 0.20%)</title><rect x="40.3502%" y="629" width="0.2007%" height="15" fill="rgb(218,209,53)" fg:x="385741" fg:w="1919"/><text x="40.6002%" y="639.50"></text></g><g><title>schedule (173 samples, 0.02%)</title><rect x="40.5328%" y="613" width="0.0181%" height="15" fill="rgb(249,137,25)" fg:x="387487" fg:w="173"/><text x="40.7828%" y="623.50"></text></g><g><title>__btrfs_tree_lock (2,267 samples, 0.24%)</title><rect x="40.3139%" y="661" width="0.2371%" height="15" fill="rgb(239,155,26)" fg:x="385394" fg:w="2267"/><text x="40.5639%" y="671.50"></text></g><g><title>btrfs_tree_lock (2,284 samples, 0.24%)</title><rect x="40.3138%" y="677" width="0.2389%" height="15" fill="rgb(227,85,46)" fg:x="385393" fg:w="2284"/><text x="40.5638%" y="687.50"></text></g><g><title>rwsem_wake.isra.0 (219 samples, 0.02%)</title><rect x="40.5561%" y="645" width="0.0229%" height="15" fill="rgb(251,107,43)" fg:x="387710" fg:w="219"/><text x="40.8061%" y="655.50"></text></g><g><title>wake_up_q (118 samples, 0.01%)</title><rect x="40.5667%" y="629" width="0.0123%" height="15" fill="rgb(234,170,33)" fg:x="387811" fg:w="118"/><text x="40.8167%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (253 samples, 0.03%)</title><rect x="40.5527%" y="677" width="0.0265%" height="15" fill="rgb(206,29,35)" fg:x="387677" fg:w="253"/><text x="40.8027%" y="687.50"></text></g><g><title>up_read (224 samples, 0.02%)</title><rect x="40.5557%" y="661" width="0.0234%" height="15" fill="rgb(227,138,25)" fg:x="387706" fg:w="224"/><text x="40.8057%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (238 samples, 0.02%)</title><rect x="40.6105%" y="661" width="0.0249%" height="15" fill="rgb(249,131,35)" fg:x="388230" fg:w="238"/><text x="40.8605%" y="671.50"></text></g><g><title>verify_parent_transid (196 samples, 0.02%)</title><rect x="40.6149%" y="645" width="0.0205%" height="15" fill="rgb(239,6,40)" fg:x="388272" fg:w="196"/><text x="40.8649%" y="655.50"></text></g><g><title>btrfs_get_64 (210 samples, 0.02%)</title><rect x="40.6354%" y="661" width="0.0220%" height="15" fill="rgb(246,136,47)" fg:x="388468" fg:w="210"/><text x="40.8854%" y="671.50"></text></g><g><title>btrfs_node_key (270 samples, 0.03%)</title><rect x="40.6574%" y="661" width="0.0282%" height="15" fill="rgb(253,58,26)" fg:x="388678" fg:w="270"/><text x="40.9074%" y="671.50"></text></g><g><title>read_extent_buffer (264 samples, 0.03%)</title><rect x="40.6580%" y="645" width="0.0276%" height="15" fill="rgb(237,141,10)" fg:x="388684" fg:w="264"/><text x="40.9080%" y="655.50"></text></g><g><title>radix_tree_lookup (762 samples, 0.08%)</title><rect x="40.7638%" y="629" width="0.0797%" height="15" fill="rgb(234,156,12)" fg:x="389695" fg:w="762"/><text x="41.0138%" y="639.50"></text></g><g><title>__radix_tree_lookup (761 samples, 0.08%)</title><rect x="40.7639%" y="613" width="0.0796%" height="15" fill="rgb(243,224,36)" fg:x="389696" fg:w="761"/><text x="41.0139%" y="623.50"></text></g><g><title>find_extent_buffer_nolock (1,262 samples, 0.13%)</title><rect x="40.7119%" y="645" width="0.1320%" height="15" fill="rgb(205,229,51)" fg:x="389199" fg:w="1262"/><text x="40.9619%" y="655.50"></text></g><g><title>mark_page_accessed (430 samples, 0.04%)</title><rect x="40.8439%" y="645" width="0.0450%" height="15" fill="rgb(223,189,4)" fg:x="390461" fg:w="430"/><text x="41.0939%" y="655.50"></text></g><g><title>find_extent_buffer (1,869 samples, 0.20%)</title><rect x="40.6975%" y="661" width="0.1955%" height="15" fill="rgb(249,167,54)" fg:x="389062" fg:w="1869"/><text x="40.9475%" y="671.50"></text></g><g><title>read_block_for_search (2,940 samples, 0.31%)</title><rect x="40.5924%" y="677" width="0.3075%" height="15" fill="rgb(218,34,28)" fg:x="388057" fg:w="2940"/><text x="40.8424%" y="687.50"></text></g><g><title>btrfs_get_64 (108 samples, 0.01%)</title><rect x="40.9225%" y="645" width="0.0113%" height="15" fill="rgb(232,109,42)" fg:x="391213" fg:w="108"/><text x="41.1725%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (96 samples, 0.01%)</title><rect x="40.9456%" y="629" width="0.0100%" height="15" fill="rgb(248,214,46)" fg:x="391433" fg:w="96"/><text x="41.1956%" y="639.50"></text></g><g><title>__radix_tree_lookup (325 samples, 0.03%)</title><rect x="40.9919%" y="549" width="0.0340%" height="15" fill="rgb(244,216,40)" fg:x="391876" fg:w="325"/><text x="41.2419%" y="559.50"></text></g><g><title>radix_tree_lookup (327 samples, 0.03%)</title><rect x="40.9918%" y="565" width="0.0342%" height="15" fill="rgb(231,226,31)" fg:x="391875" fg:w="327"/><text x="41.2418%" y="575.50"></text></g><g><title>find_extent_buffer_nolock (536 samples, 0.06%)</title><rect x="40.9700%" y="581" width="0.0561%" height="15" fill="rgb(238,38,43)" fg:x="391667" fg:w="536"/><text x="41.2200%" y="591.50"></text></g><g><title>mark_page_accessed (218 samples, 0.02%)</title><rect x="41.0261%" y="581" width="0.0228%" height="15" fill="rgb(208,88,43)" fg:x="392203" fg:w="218"/><text x="41.2761%" y="591.50"></text></g><g><title>find_extent_buffer (820 samples, 0.09%)</title><rect x="40.9640%" y="597" width="0.0858%" height="15" fill="rgb(205,136,37)" fg:x="391609" fg:w="820"/><text x="41.2140%" y="607.50"></text></g><g><title>alloc_extent_buffer (911 samples, 0.10%)</title><rect x="40.9558%" y="613" width="0.0953%" height="15" fill="rgb(237,34,14)" fg:x="391531" fg:w="911"/><text x="41.2058%" y="623.50"></text></g><g><title>btrfs_find_create_tree_block (917 samples, 0.10%)</title><rect x="40.9556%" y="629" width="0.0959%" height="15" fill="rgb(236,193,44)" fg:x="391529" fg:w="917"/><text x="41.2056%" y="639.50"></text></g><g><title>btrfs_readahead_tree_block (1,195 samples, 0.13%)</title><rect x="40.9338%" y="645" width="0.1250%" height="15" fill="rgb(231,48,10)" fg:x="391321" fg:w="1195"/><text x="41.1838%" y="655.50"></text></g><g><title>btrfs_readahead_node_child (1,462 samples, 0.15%)</title><rect x="40.9082%" y="661" width="0.1529%" height="15" fill="rgb(213,141,34)" fg:x="391076" fg:w="1462"/><text x="41.1582%" y="671.50"></text></g><g><title>reada_for_balance (1,566 samples, 0.16%)</title><rect x="40.9000%" y="677" width="0.1638%" height="15" fill="rgb(249,130,34)" fg:x="390997" fg:w="1566"/><text x="41.1500%" y="687.50"></text></g><g><title>rwsem_mark_wake (382 samples, 0.04%)</title><rect x="41.1171%" y="613" width="0.0400%" height="15" fill="rgb(219,42,41)" fg:x="393073" fg:w="382"/><text x="41.3671%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (125 samples, 0.01%)</title><rect x="41.2499%" y="581" width="0.0131%" height="15" fill="rgb(224,100,54)" fg:x="394342" fg:w="125"/><text x="41.4999%" y="591.50"></text></g><g><title>_raw_spin_lock (544 samples, 0.06%)</title><rect x="41.2750%" y="565" width="0.0569%" height="15" fill="rgb(229,200,27)" fg:x="394582" fg:w="544"/><text x="41.5250%" y="575.50"></text></g><g><title>native_queued_spin_lock_slowpath (539 samples, 0.06%)</title><rect x="41.2755%" y="549" width="0.0564%" height="15" fill="rgb(217,118,10)" fg:x="394587" fg:w="539"/><text x="41.5255%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (539 samples, 0.06%)</title><rect x="41.2755%" y="533" width="0.0564%" height="15" fill="rgb(206,22,3)" fg:x="394587" fg:w="539"/><text x="41.5255%" y="543.50"></text></g><g><title>raw_spin_rq_lock_nested (554 samples, 0.06%)</title><rect x="41.2745%" y="581" width="0.0580%" height="15" fill="rgb(232,163,46)" fg:x="394578" fg:w="554"/><text x="41.5245%" y="591.50"></text></g><g><title>available_idle_cpu (158 samples, 0.02%)</title><rect x="41.3959%" y="549" width="0.0165%" height="15" fill="rgb(206,95,13)" fg:x="395738" fg:w="158"/><text x="41.6459%" y="559.50"></text></g><g><title>available_idle_cpu (181 samples, 0.02%)</title><rect x="41.4495%" y="533" width="0.0189%" height="15" fill="rgb(253,154,18)" fg:x="396251" fg:w="181"/><text x="41.6995%" y="543.50"></text></g><g><title>select_idle_sibling (1,381 samples, 0.14%)</title><rect x="41.3553%" y="565" width="0.1445%" height="15" fill="rgb(219,32,23)" fg:x="395350" fg:w="1381"/><text x="41.6053%" y="575.50"></text></g><g><title>select_idle_cpu (762 samples, 0.08%)</title><rect x="41.4200%" y="549" width="0.0797%" height="15" fill="rgb(230,191,45)" fg:x="395969" fg:w="762"/><text x="41.6700%" y="559.50"></text></g><g><title>select_idle_core (213 samples, 0.02%)</title><rect x="41.4775%" y="533" width="0.0223%" height="15" fill="rgb(229,64,36)" fg:x="396518" fg:w="213"/><text x="41.7275%" y="543.50"></text></g><g><title>task_h_load (103 samples, 0.01%)</title><rect x="41.4998%" y="565" width="0.0108%" height="15" fill="rgb(205,129,25)" fg:x="396731" fg:w="103"/><text x="41.7498%" y="575.50"></text></g><g><title>available_idle_cpu (145 samples, 0.02%)</title><rect x="41.5166%" y="549" width="0.0152%" height="15" fill="rgb(254,112,7)" fg:x="396892" fg:w="145"/><text x="41.7666%" y="559.50"></text></g><g><title>select_task_rq_fair (1,938 samples, 0.20%)</title><rect x="41.3347%" y="581" width="0.2027%" height="15" fill="rgb(226,53,48)" fg:x="395153" fg:w="1938"/><text x="41.5847%" y="591.50"></text></g><g><title>wake_affine (257 samples, 0.03%)</title><rect x="41.5105%" y="565" width="0.0269%" height="15" fill="rgb(214,153,38)" fg:x="396834" fg:w="257"/><text x="41.7605%" y="575.50"></text></g><g><title>migrate_task_rq_fair (146 samples, 0.02%)</title><rect x="41.5472%" y="565" width="0.0153%" height="15" fill="rgb(243,101,7)" fg:x="397185" fg:w="146"/><text x="41.7972%" y="575.50"></text></g><g><title>set_task_cpu (244 samples, 0.03%)</title><rect x="41.5374%" y="581" width="0.0255%" height="15" fill="rgb(240,140,22)" fg:x="397091" fg:w="244"/><text x="41.7874%" y="591.50"></text></g><g><title>update_curr (128 samples, 0.01%)</title><rect x="41.5898%" y="517" width="0.0134%" height="15" fill="rgb(235,114,2)" fg:x="397592" fg:w="128"/><text x="41.8398%" y="527.50"></text></g><g><title>update_load_avg (135 samples, 0.01%)</title><rect x="41.6032%" y="517" width="0.0141%" height="15" fill="rgb(242,59,12)" fg:x="397720" fg:w="135"/><text x="41.8532%" y="527.50"></text></g><g><title>enqueue_entity (408 samples, 0.04%)</title><rect x="41.5753%" y="533" width="0.0427%" height="15" fill="rgb(252,134,9)" fg:x="397453" fg:w="408"/><text x="41.8253%" y="543.50"></text></g><g><title>update_cfs_group (129 samples, 0.01%)</title><rect x="41.6188%" y="533" width="0.0135%" height="15" fill="rgb(236,4,44)" fg:x="397869" fg:w="129"/><text x="41.8688%" y="543.50"></text></g><g><title>enqueue_task_fair (700 samples, 0.07%)</title><rect x="41.5669%" y="549" width="0.0732%" height="15" fill="rgb(254,172,41)" fg:x="397373" fg:w="700"/><text x="41.8169%" y="559.50"></text></g><g><title>psi_group_change (411 samples, 0.04%)</title><rect x="41.6508%" y="533" width="0.0430%" height="15" fill="rgb(244,63,20)" fg:x="398175" fg:w="411"/><text x="41.9008%" y="543.50"></text></g><g><title>psi_task_change (538 samples, 0.06%)</title><rect x="41.6407%" y="549" width="0.0563%" height="15" fill="rgb(250,73,31)" fg:x="398078" fg:w="538"/><text x="41.8907%" y="559.50"></text></g><g><title>enqueue_task (1,271 samples, 0.13%)</title><rect x="41.5652%" y="565" width="0.1330%" height="15" fill="rgb(241,38,36)" fg:x="397357" fg:w="1271"/><text x="41.8152%" y="575.50"></text></g><g><title>check_preempt_wakeup (123 samples, 0.01%)</title><rect x="41.7036%" y="533" width="0.0129%" height="15" fill="rgb(245,211,2)" fg:x="398680" fg:w="123"/><text x="41.9536%" y="543.50"></text></g><g><title>check_preempt_curr (166 samples, 0.02%)</title><rect x="41.7010%" y="549" width="0.0174%" height="15" fill="rgb(206,120,28)" fg:x="398655" fg:w="166"/><text x="41.9510%" y="559.50"></text></g><g><title>ttwu_do_activate (1,499 samples, 0.16%)</title><rect x="41.5629%" y="581" width="0.1568%" height="15" fill="rgb(211,59,34)" fg:x="397335" fg:w="1499"/><text x="41.8129%" y="591.50"></text></g><g><title>ttwu_do_wakeup (199 samples, 0.02%)</title><rect x="41.6989%" y="565" width="0.0208%" height="15" fill="rgb(233,168,5)" fg:x="398635" fg:w="199"/><text x="41.9489%" y="575.50"></text></g><g><title>native_send_call_func_single_ipi (116 samples, 0.01%)</title><rect x="41.7517%" y="533" width="0.0121%" height="15" fill="rgb(234,33,13)" fg:x="399140" fg:w="116"/><text x="42.0017%" y="543.50"></text></g><g><title>x2apic_send_IPI (112 samples, 0.01%)</title><rect x="41.7522%" y="517" width="0.0117%" height="15" fill="rgb(231,150,26)" fg:x="399144" fg:w="112"/><text x="42.0022%" y="527.50"></text></g><g><title>__smp_call_single_queue (244 samples, 0.03%)</title><rect x="41.7391%" y="565" width="0.0255%" height="15" fill="rgb(217,191,4)" fg:x="399019" fg:w="244"/><text x="41.9891%" y="575.50"></text></g><g><title>send_call_function_single_ipi (222 samples, 0.02%)</title><rect x="41.7414%" y="549" width="0.0232%" height="15" fill="rgb(246,198,38)" fg:x="399041" fg:w="222"/><text x="41.9914%" y="559.50"></text></g><g><title>llist_add_batch (200 samples, 0.02%)</title><rect x="41.7646%" y="565" width="0.0209%" height="15" fill="rgb(245,64,37)" fg:x="399263" fg:w="200"/><text x="42.0146%" y="575.50"></text></g><g><title>ttwu_queue_wakelist (687 samples, 0.07%)</title><rect x="41.7200%" y="581" width="0.0719%" height="15" fill="rgb(250,30,36)" fg:x="398837" fg:w="687"/><text x="41.9700%" y="591.50"></text></g><g><title>try_to_wake_up (5,849 samples, 0.61%)</title><rect x="41.1895%" y="597" width="0.6118%" height="15" fill="rgb(217,86,53)" fg:x="393765" fg:w="5849"/><text x="41.4395%" y="607.50"></text></g><g><title>btrfs_tree_unlock (6,702 samples, 0.70%)</title><rect x="41.1016%" y="661" width="0.7011%" height="15" fill="rgb(228,157,16)" fg:x="392925" fg:w="6702"/><text x="41.3516%" y="671.50"></text></g><g><title>up_write (6,672 samples, 0.70%)</title><rect x="41.1048%" y="645" width="0.6979%" height="15" fill="rgb(217,59,31)" fg:x="392955" fg:w="6672"/><text x="41.3548%" y="655.50"></text></g><g><title>rwsem_wake.isra.0 (6,663 samples, 0.70%)</title><rect x="41.1057%" y="629" width="0.6970%" height="15" fill="rgb(237,138,41)" fg:x="392964" fg:w="6663"/><text x="41.3557%" y="639.50"></text></g><g><title>wake_up_q (6,013 samples, 0.63%)</title><rect x="41.1737%" y="613" width="0.6290%" height="15" fill="rgb(227,91,49)" fg:x="393614" fg:w="6013"/><text x="41.4237%" y="623.50"></text></g><g><title>unlock_up (7,190 samples, 0.75%)</title><rect x="41.0638%" y="677" width="0.7521%" height="15" fill="rgb(247,21,44)" fg:x="392563" fg:w="7190"/><text x="41.3138%" y="687.50"></text></g><g><title>up_write (126 samples, 0.01%)</title><rect x="41.8027%" y="661" width="0.0132%" height="15" fill="rgb(219,210,51)" fg:x="399627" fg:w="126"/><text x="42.0527%" y="671.50"></text></g><g><title>btrfs_search_slot (34,032 samples, 3.56%)</title><rect x="38.2623%" y="693" width="3.5599%" height="15" fill="rgb(209,140,6)" fg:x="365781" fg:w="34032"/><text x="38.5123%" y="703.50">btrf..</text></g><g><title>btrfs_lookup_inode (34,336 samples, 3.59%)</title><rect x="38.2392%" y="709" width="3.5917%" height="15" fill="rgb(221,188,24)" fg:x="365561" fg:w="34336"/><text x="38.4892%" y="719.50">btrf..</text></g><g><title>btrfs_mark_buffer_dirty (110 samples, 0.01%)</title><rect x="41.8309%" y="709" width="0.0115%" height="15" fill="rgb(232,154,20)" fg:x="399897" fg:w="110"/><text x="42.0809%" y="719.50"></text></g><g><title>try_to_wake_up (359 samples, 0.04%)</title><rect x="41.8672%" y="629" width="0.0376%" height="15" fill="rgb(244,137,50)" fg:x="400244" fg:w="359"/><text x="42.1172%" y="639.50"></text></g><g><title>btrfs_tree_unlock (442 samples, 0.05%)</title><rect x="41.8587%" y="693" width="0.0462%" height="15" fill="rgb(225,185,43)" fg:x="400162" fg:w="442"/><text x="42.1087%" y="703.50"></text></g><g><title>up_write (428 samples, 0.04%)</title><rect x="41.8601%" y="677" width="0.0448%" height="15" fill="rgb(213,205,38)" fg:x="400176" fg:w="428"/><text x="42.1101%" y="687.50"></text></g><g><title>rwsem_wake.isra.0 (427 samples, 0.04%)</title><rect x="41.8602%" y="661" width="0.0447%" height="15" fill="rgb(236,73,12)" fg:x="400177" fg:w="427"/><text x="42.1102%" y="671.50"></text></g><g><title>wake_up_q (373 samples, 0.04%)</title><rect x="41.8659%" y="645" width="0.0390%" height="15" fill="rgb(235,219,13)" fg:x="400231" fg:w="373"/><text x="42.1159%" y="655.50"></text></g><g><title>_raw_spin_lock (129 samples, 0.01%)</title><rect x="41.9061%" y="677" width="0.0135%" height="15" fill="rgb(218,59,36)" fg:x="400616" fg:w="129"/><text x="42.1561%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (277 samples, 0.03%)</title><rect x="41.9196%" y="677" width="0.0290%" height="15" fill="rgb(205,110,39)" fg:x="400745" fg:w="277"/><text x="42.1696%" y="687.50"></text></g><g><title>release_extent_buffer (113 samples, 0.01%)</title><rect x="41.9368%" y="661" width="0.0118%" height="15" fill="rgb(218,206,42)" fg:x="400909" fg:w="113"/><text x="42.1868%" y="671.50"></text></g><g><title>free_extent_buffer (413 samples, 0.04%)</title><rect x="41.9061%" y="693" width="0.0432%" height="15" fill="rgb(248,125,24)" fg:x="400616" fg:w="413"/><text x="42.1561%" y="703.50"></text></g><g><title>btrfs_release_path (1,014 samples, 0.11%)</title><rect x="41.8525%" y="709" width="0.1061%" height="15" fill="rgb(242,28,27)" fg:x="400103" fg:w="1014"/><text x="42.1025%" y="719.50"></text></g><g><title>btrfs_search_slot (172 samples, 0.02%)</title><rect x="41.9585%" y="709" width="0.0180%" height="15" fill="rgb(216,228,15)" fg:x="401117" fg:w="172"/><text x="42.2085%" y="719.50"></text></g><g><title>btrfs_set_token_32 (149 samples, 0.02%)</title><rect x="41.9765%" y="709" width="0.0156%" height="15" fill="rgb(235,116,46)" fg:x="401289" fg:w="149"/><text x="42.2265%" y="719.50"></text></g><g><title>finish_one_item (247 samples, 0.03%)</title><rect x="41.9939%" y="709" width="0.0258%" height="15" fill="rgb(224,18,32)" fg:x="401455" fg:w="247"/><text x="42.2439%" y="719.50"></text></g><g><title>__btrfs_update_delayed_inode (44,466 samples, 4.65%)</title><rect x="37.4064%" y="725" width="4.6513%" height="15" fill="rgb(252,5,12)" fg:x="357599" fg:w="44466"/><text x="37.6564%" y="735.50">__btr..</text></g><g><title>write_extent_buffer (258 samples, 0.03%)</title><rect x="42.0307%" y="709" width="0.0270%" height="15" fill="rgb(251,36,5)" fg:x="401807" fg:w="258"/><text x="42.2807%" y="719.50"></text></g><g><title>kmem_cache_alloc (110 samples, 0.01%)</title><rect x="42.0644%" y="709" width="0.0115%" height="15" fill="rgb(217,53,14)" fg:x="402129" fg:w="110"/><text x="42.3144%" y="719.50"></text></g><g><title>btrfs_alloc_path (164 samples, 0.02%)</title><rect x="42.0638%" y="725" width="0.0172%" height="15" fill="rgb(215,86,45)" fg:x="402123" fg:w="164"/><text x="42.3138%" y="735.50"></text></g><g><title>try_to_wake_up (178 samples, 0.02%)</title><rect x="42.0935%" y="597" width="0.0186%" height="15" fill="rgb(242,169,11)" fg:x="402407" fg:w="178"/><text x="42.3435%" y="607.50"></text></g><g><title>insert_work (182 samples, 0.02%)</title><rect x="42.0932%" y="629" width="0.0190%" height="15" fill="rgb(211,213,45)" fg:x="402404" fg:w="182"/><text x="42.3432%" y="639.50"></text></g><g><title>wake_up_process (181 samples, 0.02%)</title><rect x="42.0933%" y="613" width="0.0189%" height="15" fill="rgb(205,88,11)" fg:x="402405" fg:w="181"/><text x="42.3433%" y="623.50"></text></g><g><title>__queue_work (215 samples, 0.02%)</title><rect x="42.0898%" y="645" width="0.0225%" height="15" fill="rgb(252,69,26)" fg:x="402372" fg:w="215"/><text x="42.3398%" y="655.50"></text></g><g><title>btrfs_queue_work (256 samples, 0.03%)</title><rect x="42.0879%" y="677" width="0.0268%" height="15" fill="rgb(246,123,37)" fg:x="402354" fg:w="256"/><text x="42.3379%" y="687.50"></text></g><g><title>queue_work_on (243 samples, 0.03%)</title><rect x="42.0893%" y="661" width="0.0254%" height="15" fill="rgb(212,205,5)" fg:x="402367" fg:w="243"/><text x="42.3393%" y="671.50"></text></g><g><title>btrfs_wq_run_delayed_node (289 samples, 0.03%)</title><rect x="42.0875%" y="693" width="0.0302%" height="15" fill="rgb(253,148,0)" fg:x="402350" fg:w="289"/><text x="42.3375%" y="703.50"></text></g><g><title>btrfs_balance_delayed_items (322 samples, 0.03%)</title><rect x="42.0851%" y="709" width="0.0337%" height="15" fill="rgb(239,22,4)" fg:x="402327" fg:w="322"/><text x="42.3351%" y="719.50"></text></g><g><title>btrfs_btree_balance_dirty (373 samples, 0.04%)</title><rect x="42.0814%" y="725" width="0.0390%" height="15" fill="rgb(226,26,53)" fg:x="402291" fg:w="373"/><text x="42.3314%" y="735.50"></text></g><g><title>kmem_cache_free (192 samples, 0.02%)</title><rect x="42.1620%" y="693" width="0.0201%" height="15" fill="rgb(225,229,45)" fg:x="403062" fg:w="192"/><text x="42.4120%" y="703.50"></text></g><g><title>__btrfs_end_transaction (553 samples, 0.06%)</title><rect x="42.1244%" y="709" width="0.0578%" height="15" fill="rgb(220,60,37)" fg:x="402703" fg:w="553"/><text x="42.3744%" y="719.50"></text></g><g><title>btrfs_end_transaction (632 samples, 0.07%)</title><rect x="42.1242%" y="725" width="0.0661%" height="15" fill="rgb(217,180,35)" fg:x="402701" fg:w="632"/><text x="42.3742%" y="735.50"></text></g><g><title>kmem_cache_free (283 samples, 0.03%)</title><rect x="42.1980%" y="709" width="0.0296%" height="15" fill="rgb(229,7,53)" fg:x="403406" fg:w="283"/><text x="42.4480%" y="719.50"></text></g><g><title>btrfs_free_path (360 samples, 0.04%)</title><rect x="42.1904%" y="725" width="0.0377%" height="15" fill="rgb(254,137,3)" fg:x="403333" fg:w="360"/><text x="42.4404%" y="735.50"></text></g><g><title>join_transaction (99 samples, 0.01%)</title><rect x="42.2701%" y="693" width="0.0104%" height="15" fill="rgb(215,140,41)" fg:x="404095" fg:w="99"/><text x="42.5201%" y="703.50"></text></g><g><title>kmem_cache_alloc (113 samples, 0.01%)</title><rect x="42.2804%" y="693" width="0.0118%" height="15" fill="rgb(250,80,15)" fg:x="404194" fg:w="113"/><text x="42.5304%" y="703.50"></text></g><g><title>btrfs_join_transaction (559 samples, 0.06%)</title><rect x="42.2410%" y="725" width="0.0585%" height="15" fill="rgb(252,191,6)" fg:x="403817" fg:w="559"/><text x="42.4910%" y="735.50"></text></g><g><title>start_transaction (524 samples, 0.05%)</title><rect x="42.2446%" y="709" width="0.0548%" height="15" fill="rgb(246,217,18)" fg:x="403852" fg:w="524"/><text x="42.4946%" y="719.50"></text></g><g><title>mutex_lock (141 samples, 0.01%)</title><rect x="42.3195%" y="725" width="0.0147%" height="15" fill="rgb(223,93,7)" fg:x="404568" fg:w="141"/><text x="42.5695%" y="735.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (47,650 samples, 4.98%)</title><rect x="37.3594%" y="741" width="4.9844%" height="15" fill="rgb(225,55,52)" fg:x="357150" fg:w="47650"/><text x="37.6094%" y="751.50">btrfs_..</text></g><g><title>kmem_cache_alloc (127 samples, 0.01%)</title><rect x="42.3646%" y="709" width="0.0133%" height="15" fill="rgb(240,31,24)" fg:x="404999" fg:w="127"/><text x="42.6146%" y="719.50"></text></g><g><title>btrfs_alloc_path (177 samples, 0.02%)</title><rect x="42.3639%" y="725" width="0.0185%" height="15" fill="rgb(205,56,52)" fg:x="404992" fg:w="177"/><text x="42.6139%" y="735.50"></text></g><g><title>btrfs_mark_buffer_dirty (103 samples, 0.01%)</title><rect x="42.4220%" y="709" width="0.0108%" height="15" fill="rgb(246,146,12)" fg:x="405548" fg:w="103"/><text x="42.6720%" y="719.50"></text></g><g><title>btrfs_get_32 (98 samples, 0.01%)</title><rect x="42.4443%" y="693" width="0.0103%" height="15" fill="rgb(239,84,36)" fg:x="405761" fg:w="98"/><text x="42.6943%" y="703.50"></text></g><g><title>leaf_space_used (148 samples, 0.02%)</title><rect x="42.4406%" y="709" width="0.0155%" height="15" fill="rgb(207,41,40)" fg:x="405725" fg:w="148"/><text x="42.6906%" y="719.50"></text></g><g><title>memmove_extent_buffer (164 samples, 0.02%)</title><rect x="42.4571%" y="709" width="0.0172%" height="15" fill="rgb(241,179,25)" fg:x="405883" fg:w="164"/><text x="42.7071%" y="719.50"></text></g><g><title>btrfs_del_items (876 samples, 0.09%)</title><rect x="42.3878%" y="725" width="0.0916%" height="15" fill="rgb(210,0,34)" fg:x="405221" fg:w="876"/><text x="42.6378%" y="735.50"></text></g><g><title>btrfs_tree_unlock (378 samples, 0.04%)</title><rect x="42.4917%" y="693" width="0.0395%" height="15" fill="rgb(225,217,29)" fg:x="406214" fg:w="378"/><text x="42.7417%" y="703.50"></text></g><g><title>up_write (365 samples, 0.04%)</title><rect x="42.4931%" y="677" width="0.0382%" height="15" fill="rgb(216,191,38)" fg:x="406227" fg:w="365"/><text x="42.7431%" y="687.50"></text></g><g><title>rwsem_wake.isra.0 (364 samples, 0.04%)</title><rect x="42.4932%" y="661" width="0.0381%" height="15" fill="rgb(232,140,52)" fg:x="406228" fg:w="364"/><text x="42.7432%" y="671.50"></text></g><g><title>wake_up_q (318 samples, 0.03%)</title><rect x="42.4980%" y="645" width="0.0333%" height="15" fill="rgb(223,158,51)" fg:x="406274" fg:w="318"/><text x="42.7480%" y="655.50"></text></g><g><title>try_to_wake_up (314 samples, 0.03%)</title><rect x="42.4984%" y="629" width="0.0328%" height="15" fill="rgb(235,29,51)" fg:x="406278" fg:w="314"/><text x="42.7484%" y="639.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.01%)</title><rect x="42.5339%" y="677" width="0.0112%" height="15" fill="rgb(215,181,18)" fg:x="406617" fg:w="107"/><text x="42.7839%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (277 samples, 0.03%)</title><rect x="42.5452%" y="677" width="0.0290%" height="15" fill="rgb(227,125,34)" fg:x="406725" fg:w="277"/><text x="42.7952%" y="687.50"></text></g><g><title>release_extent_buffer (116 samples, 0.01%)</title><rect x="42.5620%" y="661" width="0.0121%" height="15" fill="rgb(230,197,49)" fg:x="406886" fg:w="116"/><text x="42.8120%" y="671.50"></text></g><g><title>free_extent_buffer (389 samples, 0.04%)</title><rect x="42.5339%" y="693" width="0.0407%" height="15" fill="rgb(239,141,16)" fg:x="406617" fg:w="389"/><text x="42.7839%" y="703.50"></text></g><g><title>btrfs_release_path (960 samples, 0.10%)</title><rect x="42.4817%" y="709" width="0.1004%" height="15" fill="rgb(225,105,43)" fg:x="406118" fg:w="960"/><text x="42.7317%" y="719.50"></text></g><g><title>kmem_cache_free (204 samples, 0.02%)</title><rect x="42.5861%" y="709" width="0.0213%" height="15" fill="rgb(214,131,14)" fg:x="407116" fg:w="204"/><text x="42.8361%" y="719.50"></text></g><g><title>btrfs_free_path (1,225 samples, 0.13%)</title><rect x="42.4795%" y="725" width="0.1281%" height="15" fill="rgb(229,177,11)" fg:x="406097" fg:w="1225"/><text x="42.7295%" y="735.50"></text></g><g><title>balance_level (243 samples, 0.03%)</title><rect x="42.7110%" y="709" width="0.0254%" height="15" fill="rgb(231,180,14)" fg:x="408310" fg:w="243"/><text x="42.9610%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (1,089 samples, 0.11%)</title><rect x="42.7400%" y="693" width="0.1139%" height="15" fill="rgb(232,88,2)" fg:x="408588" fg:w="1089"/><text x="42.9900%" y="703.50"></text></g><g><title>btrfs_bin_search (1,125 samples, 0.12%)</title><rect x="42.7364%" y="709" width="0.1177%" height="15" fill="rgb(205,220,8)" fg:x="408553" fg:w="1125"/><text x="42.9864%" y="719.50"></text></g><g><title>_raw_spin_lock_irq (112 samples, 0.01%)</title><rect x="42.8913%" y="645" width="0.0117%" height="15" fill="rgb(225,23,53)" fg:x="410034" fg:w="112"/><text x="43.1413%" y="655.50"></text></g><g><title>osq_lock (3,711 samples, 0.39%)</title><rect x="43.4171%" y="629" width="0.3882%" height="15" fill="rgb(213,62,29)" fg:x="415061" fg:w="3711"/><text x="43.6671%" y="639.50"></text></g><g><title>rwsem_spin_on_owner (345 samples, 0.04%)</title><rect x="43.8142%" y="629" width="0.0361%" height="15" fill="rgb(227,75,7)" fg:x="418857" fg:w="345"/><text x="44.0642%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (9,101 samples, 0.95%)</title><rect x="42.9073%" y="645" width="0.9520%" height="15" fill="rgb(207,105,14)" fg:x="410187" fg:w="9101"/><text x="43.1573%" y="655.50"></text></g><g><title>update_curr (167 samples, 0.02%)</title><rect x="43.9028%" y="565" width="0.0175%" height="15" fill="rgb(245,62,29)" fg:x="419704" fg:w="167"/><text x="44.1528%" y="575.50"></text></g><g><title>update_load_avg (145 samples, 0.02%)</title><rect x="43.9203%" y="565" width="0.0152%" height="15" fill="rgb(236,202,4)" fg:x="419871" fg:w="145"/><text x="44.1703%" y="575.50"></text></g><g><title>dequeue_entity (450 samples, 0.05%)</title><rect x="43.8905%" y="581" width="0.0471%" height="15" fill="rgb(250,67,1)" fg:x="419586" fg:w="450"/><text x="44.1405%" y="591.50"></text></g><g><title>dequeue_task_fair (587 samples, 0.06%)</title><rect x="43.8860%" y="597" width="0.0614%" height="15" fill="rgb(253,115,44)" fg:x="419543" fg:w="587"/><text x="44.1360%" y="607.50"></text></g><g><title>dequeue_task (623 samples, 0.07%)</title><rect x="43.8845%" y="613" width="0.0652%" height="15" fill="rgb(251,139,18)" fg:x="419529" fg:w="623"/><text x="44.1345%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (628 samples, 0.07%)</title><rect x="43.9576%" y="597" width="0.0657%" height="15" fill="rgb(218,22,32)" fg:x="420228" fg:w="628"/><text x="44.2076%" y="607.50"></text></g><g><title>x86_pmu_enable (607 samples, 0.06%)</title><rect x="43.9598%" y="581" width="0.0635%" height="15" fill="rgb(243,53,5)" fg:x="420249" fg:w="607"/><text x="44.2098%" y="591.50"></text></g><g><title>intel_pmu_enable_all (594 samples, 0.06%)</title><rect x="43.9612%" y="565" width="0.0621%" height="15" fill="rgb(227,56,16)" fg:x="420262" fg:w="594"/><text x="44.2112%" y="575.50"></text></g><g><title>native_write_msr (581 samples, 0.06%)</title><rect x="43.9626%" y="549" width="0.0608%" height="15" fill="rgb(245,53,0)" fg:x="420275" fg:w="581"/><text x="44.2126%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (719 samples, 0.08%)</title><rect x="43.9500%" y="613" width="0.0752%" height="15" fill="rgb(216,170,35)" fg:x="420155" fg:w="719"/><text x="44.2000%" y="623.50"></text></g><g><title>pick_next_task_fair (185 samples, 0.02%)</title><rect x="44.0288%" y="597" width="0.0194%" height="15" fill="rgb(211,200,8)" fg:x="420908" fg:w="185"/><text x="44.2788%" y="607.50"></text></g><g><title>pick_next_task (294 samples, 0.03%)</title><rect x="44.0266%" y="613" width="0.0308%" height="15" fill="rgb(228,204,44)" fg:x="420887" fg:w="294"/><text x="44.2766%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (125 samples, 0.01%)</title><rect x="44.0616%" y="597" width="0.0131%" height="15" fill="rgb(214,121,17)" fg:x="421222" fg:w="125"/><text x="44.3116%" y="607.50"></text></g><g><title>prepare_task_switch (162 samples, 0.02%)</title><rect x="44.0583%" y="613" width="0.0169%" height="15" fill="rgb(233,64,38)" fg:x="421190" fg:w="162"/><text x="44.3083%" y="623.50"></text></g><g><title>psi_group_change (335 samples, 0.04%)</title><rect x="44.0872%" y="597" width="0.0350%" height="15" fill="rgb(253,54,19)" fg:x="421467" fg:w="335"/><text x="44.3372%" y="607.50"></text></g><g><title>psi_task_switch (469 samples, 0.05%)</title><rect x="44.0762%" y="613" width="0.0491%" height="15" fill="rgb(253,94,18)" fg:x="421361" fg:w="469"/><text x="44.3262%" y="623.50"></text></g><g><title>__schedule (2,499 samples, 0.26%)</title><rect x="43.8714%" y="629" width="0.2614%" height="15" fill="rgb(227,57,52)" fg:x="419404" fg:w="2499"/><text x="44.1214%" y="639.50"></text></g><g><title>schedule (2,543 samples, 0.27%)</title><rect x="43.8687%" y="645" width="0.2660%" height="15" fill="rgb(230,228,50)" fg:x="419378" fg:w="2543"/><text x="44.1187%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (12,056 samples, 1.26%)</title><rect x="42.8738%" y="661" width="1.2611%" height="15" fill="rgb(217,205,27)" fg:x="409867" fg:w="12056"/><text x="43.1238%" y="671.50"></text></g><g><title>down_write (12,140 samples, 1.27%)</title><rect x="42.8665%" y="677" width="1.2699%" height="15" fill="rgb(252,71,50)" fg:x="409797" fg:w="12140"/><text x="43.1165%" y="687.50"></text></g><g><title>__btrfs_tree_lock (12,186 samples, 1.27%)</title><rect x="42.8629%" y="693" width="1.2747%" height="15" fill="rgb(209,86,4)" fg:x="409762" fg:w="12186"/><text x="43.1129%" y="703.50"></text></g><g><title>btrfs_lock_root_node (12,274 samples, 1.28%)</title><rect x="42.8607%" y="709" width="1.2839%" height="15" fill="rgb(229,94,0)" fg:x="409741" fg:w="12274"/><text x="43.1107%" y="719.50"></text></g><g><title>_raw_spin_lock_irq (99 samples, 0.01%)</title><rect x="44.1918%" y="645" width="0.0104%" height="15" fill="rgb(252,223,21)" fg:x="422467" fg:w="99"/><text x="44.4418%" y="655.50"></text></g><g><title>update_curr (190 samples, 0.02%)</title><rect x="44.2440%" y="565" width="0.0199%" height="15" fill="rgb(230,210,4)" fg:x="422966" fg:w="190"/><text x="44.4940%" y="575.50"></text></g><g><title>update_load_avg (119 samples, 0.01%)</title><rect x="44.2639%" y="565" width="0.0124%" height="15" fill="rgb(240,149,38)" fg:x="423156" fg:w="119"/><text x="44.5139%" y="575.50"></text></g><g><title>dequeue_entity (478 samples, 0.05%)</title><rect x="44.2283%" y="581" width="0.0500%" height="15" fill="rgb(254,105,20)" fg:x="422815" fg:w="478"/><text x="44.4783%" y="591.50"></text></g><g><title>dequeue_task_fair (613 samples, 0.06%)</title><rect x="44.2222%" y="597" width="0.0641%" height="15" fill="rgb(253,87,46)" fg:x="422757" fg:w="613"/><text x="44.4722%" y="607.50"></text></g><g><title>dequeue_task (637 samples, 0.07%)</title><rect x="44.2206%" y="613" width="0.0666%" height="15" fill="rgb(253,116,33)" fg:x="422742" fg:w="637"/><text x="44.4706%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (393 samples, 0.04%)</title><rect x="44.2943%" y="597" width="0.0411%" height="15" fill="rgb(229,198,5)" fg:x="423446" fg:w="393"/><text x="44.5443%" y="607.50"></text></g><g><title>x86_pmu_enable (366 samples, 0.04%)</title><rect x="44.2971%" y="581" width="0.0383%" height="15" fill="rgb(242,38,37)" fg:x="423473" fg:w="366"/><text x="44.5471%" y="591.50"></text></g><g><title>intel_pmu_enable_all (363 samples, 0.04%)</title><rect x="44.2974%" y="565" width="0.0380%" height="15" fill="rgb(242,69,53)" fg:x="423476" fg:w="363"/><text x="44.5474%" y="575.50"></text></g><g><title>native_write_msr (358 samples, 0.04%)</title><rect x="44.2979%" y="549" width="0.0374%" height="15" fill="rgb(249,80,16)" fg:x="423481" fg:w="358"/><text x="44.5479%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (507 samples, 0.05%)</title><rect x="44.2874%" y="613" width="0.0530%" height="15" fill="rgb(206,128,11)" fg:x="423380" fg:w="507"/><text x="44.5374%" y="623.50"></text></g><g><title>pick_next_task_fair (140 samples, 0.01%)</title><rect x="44.3448%" y="597" width="0.0146%" height="15" fill="rgb(212,35,20)" fg:x="423929" fg:w="140"/><text x="44.5948%" y="607.50"></text></g><g><title>pick_next_task (299 samples, 0.03%)</title><rect x="44.3417%" y="613" width="0.0313%" height="15" fill="rgb(236,79,13)" fg:x="423900" fg:w="299"/><text x="44.5917%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (126 samples, 0.01%)</title><rect x="44.3776%" y="597" width="0.0132%" height="15" fill="rgb(233,123,3)" fg:x="424243" fg:w="126"/><text x="44.6276%" y="607.50"></text></g><g><title>prepare_task_switch (156 samples, 0.02%)</title><rect x="44.3746%" y="613" width="0.0163%" height="15" fill="rgb(214,93,52)" fg:x="424214" fg:w="156"/><text x="44.6246%" y="623.50"></text></g><g><title>psi_group_change (304 samples, 0.03%)</title><rect x="44.4020%" y="597" width="0.0318%" height="15" fill="rgb(251,37,40)" fg:x="424476" fg:w="304"/><text x="44.6520%" y="607.50"></text></g><g><title>psi_task_switch (415 samples, 0.04%)</title><rect x="44.3921%" y="613" width="0.0434%" height="15" fill="rgb(227,80,54)" fg:x="424381" fg:w="415"/><text x="44.6421%" y="623.50"></text></g><g><title>__schedule (2,270 samples, 0.24%)</title><rect x="44.2077%" y="629" width="0.2375%" height="15" fill="rgb(254,48,11)" fg:x="422619" fg:w="2270"/><text x="44.4577%" y="639.50"></text></g><g><title>schedule (2,304 samples, 0.24%)</title><rect x="44.2061%" y="645" width="0.2410%" height="15" fill="rgb(235,193,26)" fg:x="422603" fg:w="2304"/><text x="44.4561%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (2,690 samples, 0.28%)</title><rect x="44.1717%" y="661" width="0.2814%" height="15" fill="rgb(229,99,21)" fg:x="422274" fg:w="2690"/><text x="44.4217%" y="671.50"></text></g><g><title>down_read (2,869 samples, 0.30%)</title><rect x="44.1535%" y="677" width="0.3001%" height="15" fill="rgb(211,140,41)" fg:x="422100" fg:w="2869"/><text x="44.4035%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (2,913 samples, 0.30%)</title><rect x="44.1494%" y="693" width="0.3047%" height="15" fill="rgb(240,227,30)" fg:x="422061" fg:w="2913"/><text x="44.3994%" y="703.50"></text></g><g><title>btrfs_root_node (162 samples, 0.02%)</title><rect x="44.4541%" y="693" width="0.0169%" height="15" fill="rgb(215,224,45)" fg:x="424974" fg:w="162"/><text x="44.7041%" y="703.50"></text></g><g><title>btrfs_read_lock_root_node (3,121 samples, 0.33%)</title><rect x="44.1459%" y="709" width="0.3265%" height="15" fill="rgb(206,123,31)" fg:x="422028" fg:w="3121"/><text x="44.3959%" y="719.50"></text></g><g><title>_raw_spin_lock_irqsave (115 samples, 0.01%)</title><rect x="44.5059%" y="613" width="0.0120%" height="15" fill="rgb(210,138,16)" fg:x="425469" fg:w="115"/><text x="44.7559%" y="623.50"></text></g><g><title>try_to_wake_up (244 samples, 0.03%)</title><rect x="44.5003%" y="629" width="0.0255%" height="15" fill="rgb(228,57,28)" fg:x="425416" fg:w="244"/><text x="44.7503%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (396 samples, 0.04%)</title><rect x="44.4845%" y="661" width="0.0414%" height="15" fill="rgb(242,170,10)" fg:x="425265" fg:w="396"/><text x="44.7345%" y="671.50"></text></g><g><title>wake_up_q (265 samples, 0.03%)</title><rect x="44.4982%" y="645" width="0.0277%" height="15" fill="rgb(228,214,39)" fg:x="425396" fg:w="265"/><text x="44.7482%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (414 samples, 0.04%)</title><rect x="44.4829%" y="693" width="0.0433%" height="15" fill="rgb(218,179,33)" fg:x="425249" fg:w="414"/><text x="44.7329%" y="703.50"></text></g><g><title>up_read (400 samples, 0.04%)</title><rect x="44.4843%" y="677" width="0.0418%" height="15" fill="rgb(235,193,39)" fg:x="425263" fg:w="400"/><text x="44.7343%" y="687.50"></text></g><g><title>btrfs_release_path (625 samples, 0.07%)</title><rect x="44.4751%" y="709" width="0.0654%" height="15" fill="rgb(219,221,36)" fg:x="425175" fg:w="625"/><text x="44.7251%" y="719.50"></text></g><g><title>__cond_resched (107 samples, 0.01%)</title><rect x="44.5643%" y="661" width="0.0112%" height="15" fill="rgb(248,218,19)" fg:x="426028" fg:w="107"/><text x="44.8143%" y="671.50"></text></g><g><title>rwsem_spin_on_owner (863 samples, 0.09%)</title><rect x="44.6688%" y="629" width="0.0903%" height="15" fill="rgb(205,50,9)" fg:x="427027" fg:w="863"/><text x="44.9188%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (1,726 samples, 0.18%)</title><rect x="44.5801%" y="645" width="0.1805%" height="15" fill="rgb(238,81,28)" fg:x="426179" fg:w="1726"/><text x="44.8301%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (1,884 samples, 0.20%)</title><rect x="44.5777%" y="661" width="0.1971%" height="15" fill="rgb(235,110,19)" fg:x="426156" fg:w="1884"/><text x="44.8277%" y="671.50"></text></g><g><title>schedule (123 samples, 0.01%)</title><rect x="44.7619%" y="645" width="0.0129%" height="15" fill="rgb(214,7,14)" fg:x="427917" fg:w="123"/><text x="45.0119%" y="655.50"></text></g><g><title>__schedule (122 samples, 0.01%)</title><rect x="44.7620%" y="629" width="0.0128%" height="15" fill="rgb(211,77,3)" fg:x="427918" fg:w="122"/><text x="45.0120%" y="639.50"></text></g><g><title>down_write (2,152 samples, 0.23%)</title><rect x="44.5499%" y="677" width="0.2251%" height="15" fill="rgb(229,5,9)" fg:x="425890" fg:w="2152"/><text x="44.7999%" y="687.50"></text></g><g><title>__btrfs_tree_lock (2,221 samples, 0.23%)</title><rect x="44.5431%" y="693" width="0.2323%" height="15" fill="rgb(225,90,11)" fg:x="425825" fg:w="2221"/><text x="44.7931%" y="703.50"></text></g><g><title>btrfs_tree_lock (2,234 samples, 0.23%)</title><rect x="44.5431%" y="709" width="0.2337%" height="15" fill="rgb(242,56,8)" fg:x="425825" fg:w="2234"/><text x="44.7931%" y="719.50"></text></g><g><title>btrfs_tree_read_unlock (226 samples, 0.02%)</title><rect x="44.7768%" y="709" width="0.0236%" height="15" fill="rgb(249,212,39)" fg:x="428059" fg:w="226"/><text x="45.0268%" y="719.50"></text></g><g><title>up_read (207 samples, 0.02%)</title><rect x="44.7788%" y="693" width="0.0217%" height="15" fill="rgb(236,90,9)" fg:x="428078" fg:w="207"/><text x="45.0288%" y="703.50"></text></g><g><title>rwsem_wake.isra.0 (199 samples, 0.02%)</title><rect x="44.7796%" y="677" width="0.0208%" height="15" fill="rgb(206,88,35)" fg:x="428086" fg:w="199"/><text x="45.0296%" y="687.50"></text></g><g><title>wake_up_q (100 samples, 0.01%)</title><rect x="44.7900%" y="661" width="0.0105%" height="15" fill="rgb(205,126,30)" fg:x="428185" fg:w="100"/><text x="45.0400%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (188 samples, 0.02%)</title><rect x="44.8304%" y="693" width="0.0197%" height="15" fill="rgb(230,176,12)" fg:x="428571" fg:w="188"/><text x="45.0804%" y="703.50"></text></g><g><title>verify_parent_transid (163 samples, 0.02%)</title><rect x="44.8330%" y="677" width="0.0171%" height="15" fill="rgb(243,19,9)" fg:x="428596" fg:w="163"/><text x="45.0830%" y="687.50"></text></g><g><title>btrfs_get_64 (203 samples, 0.02%)</title><rect x="44.8500%" y="693" width="0.0212%" height="15" fill="rgb(245,171,17)" fg:x="428759" fg:w="203"/><text x="45.1000%" y="703.50"></text></g><g><title>btrfs_node_key (266 samples, 0.03%)</title><rect x="44.8713%" y="693" width="0.0278%" height="15" fill="rgb(227,52,21)" fg:x="428962" fg:w="266"/><text x="45.1213%" y="703.50"></text></g><g><title>read_extent_buffer (255 samples, 0.03%)</title><rect x="44.8724%" y="677" width="0.0267%" height="15" fill="rgb(238,69,14)" fg:x="428973" fg:w="255"/><text x="45.1224%" y="687.50"></text></g><g><title>__radix_tree_lookup (697 samples, 0.07%)</title><rect x="44.9684%" y="645" width="0.0729%" height="15" fill="rgb(241,156,39)" fg:x="429891" fg:w="697"/><text x="45.2184%" y="655.50"></text></g><g><title>radix_tree_lookup (701 samples, 0.07%)</title><rect x="44.9681%" y="661" width="0.0733%" height="15" fill="rgb(212,227,28)" fg:x="429888" fg:w="701"/><text x="45.2181%" y="671.50"></text></g><g><title>find_extent_buffer_nolock (1,154 samples, 0.12%)</title><rect x="44.9208%" y="677" width="0.1207%" height="15" fill="rgb(209,118,27)" fg:x="429436" fg:w="1154"/><text x="45.1708%" y="687.50"></text></g><g><title>mark_page_accessed (365 samples, 0.04%)</title><rect x="45.0415%" y="677" width="0.0382%" height="15" fill="rgb(226,102,5)" fg:x="430590" fg:w="365"/><text x="45.2915%" y="687.50"></text></g><g><title>find_extent_buffer (1,646 samples, 0.17%)</title><rect x="44.9097%" y="693" width="0.1722%" height="15" fill="rgb(223,34,3)" fg:x="429330" fg:w="1646"/><text x="45.1597%" y="703.50"></text></g><g><title>read_block_for_search (2,625 samples, 0.27%)</title><rect x="44.8132%" y="709" width="0.2746%" height="15" fill="rgb(221,81,38)" fg:x="428407" fg:w="2625"/><text x="45.0632%" y="719.50"></text></g><g><title>find_extent_buffer_nolock (374 samples, 0.04%)</title><rect x="45.1360%" y="613" width="0.0391%" height="15" fill="rgb(236,219,28)" fg:x="431493" fg:w="374"/><text x="45.3860%" y="623.50"></text></g><g><title>radix_tree_lookup (208 samples, 0.02%)</title><rect x="45.1534%" y="597" width="0.0218%" height="15" fill="rgb(213,200,14)" fg:x="431659" fg:w="208"/><text x="45.4034%" y="607.50"></text></g><g><title>__radix_tree_lookup (207 samples, 0.02%)</title><rect x="45.1535%" y="581" width="0.0217%" height="15" fill="rgb(240,33,19)" fg:x="431660" fg:w="207"/><text x="45.4035%" y="591.50"></text></g><g><title>mark_page_accessed (115 samples, 0.01%)</title><rect x="45.1751%" y="613" width="0.0120%" height="15" fill="rgb(233,113,27)" fg:x="431867" fg:w="115"/><text x="45.4251%" y="623.50"></text></g><g><title>find_extent_buffer (541 samples, 0.06%)</title><rect x="45.1311%" y="629" width="0.0566%" height="15" fill="rgb(220,221,18)" fg:x="431446" fg:w="541"/><text x="45.3811%" y="639.50"></text></g><g><title>alloc_extent_buffer (613 samples, 0.06%)</title><rect x="45.1245%" y="645" width="0.0641%" height="15" fill="rgb(238,92,8)" fg:x="431383" fg:w="613"/><text x="45.3745%" y="655.50"></text></g><g><title>btrfs_find_create_tree_block (619 samples, 0.06%)</title><rect x="45.1243%" y="661" width="0.0648%" height="15" fill="rgb(222,164,16)" fg:x="431381" fg:w="619"/><text x="45.3743%" y="671.50"></text></g><g><title>btrfs_readahead_tree_block (797 samples, 0.08%)</title><rect x="45.1124%" y="677" width="0.0834%" height="15" fill="rgb(241,119,3)" fg:x="431267" fg:w="797"/><text x="45.3624%" y="687.50"></text></g><g><title>btrfs_readahead_node_child (966 samples, 0.10%)</title><rect x="45.0962%" y="693" width="0.1010%" height="15" fill="rgb(241,44,8)" fg:x="431112" fg:w="966"/><text x="45.3462%" y="703.50"></text></g><g><title>reada_for_balance (1,060 samples, 0.11%)</title><rect x="45.0878%" y="709" width="0.1109%" height="15" fill="rgb(230,36,40)" fg:x="431032" fg:w="1060"/><text x="45.3378%" y="719.50"></text></g><g><title>rwsem_mark_wake (309 samples, 0.03%)</title><rect x="45.2455%" y="645" width="0.0323%" height="15" fill="rgb(243,16,36)" fg:x="432540" fg:w="309"/><text x="45.4955%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (127 samples, 0.01%)</title><rect x="45.3625%" y="613" width="0.0133%" height="15" fill="rgb(231,4,26)" fg:x="433658" fg:w="127"/><text x="45.6125%" y="623.50"></text></g><g><title>_raw_spin_lock (531 samples, 0.06%)</title><rect x="45.3851%" y="597" width="0.0555%" height="15" fill="rgb(240,9,31)" fg:x="433874" fg:w="531"/><text x="45.6351%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (527 samples, 0.06%)</title><rect x="45.3855%" y="581" width="0.0551%" height="15" fill="rgb(207,173,15)" fg:x="433878" fg:w="527"/><text x="45.6355%" y="591.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (527 samples, 0.06%)</title><rect x="45.3855%" y="565" width="0.0551%" height="15" fill="rgb(224,192,53)" fg:x="433878" fg:w="527"/><text x="45.6355%" y="575.50"></text></g><g><title>raw_spin_rq_lock_nested (543 samples, 0.06%)</title><rect x="45.3847%" y="613" width="0.0568%" height="15" fill="rgb(223,67,28)" fg:x="433870" fg:w="543"/><text x="45.6347%" y="623.50"></text></g><g><title>available_idle_cpu (145 samples, 0.02%)</title><rect x="45.4973%" y="581" width="0.0152%" height="15" fill="rgb(211,20,47)" fg:x="434947" fg:w="145"/><text x="45.7473%" y="591.50"></text></g><g><title>available_idle_cpu (139 samples, 0.01%)</title><rect x="45.5513%" y="565" width="0.0145%" height="15" fill="rgb(240,228,2)" fg:x="435463" fg:w="139"/><text x="45.8013%" y="575.50"></text></g><g><title>select_idle_sibling (1,250 samples, 0.13%)</title><rect x="45.4614%" y="597" width="0.1308%" height="15" fill="rgb(248,151,12)" fg:x="434604" fg:w="1250"/><text x="45.7114%" y="607.50"></text></g><g><title>select_idle_cpu (686 samples, 0.07%)</title><rect x="45.5204%" y="581" width="0.0718%" height="15" fill="rgb(244,8,39)" fg:x="435168" fg:w="686"/><text x="45.7704%" y="591.50"></text></g><g><title>select_idle_core (182 samples, 0.02%)</title><rect x="45.5731%" y="565" width="0.0190%" height="15" fill="rgb(222,26,8)" fg:x="435672" fg:w="182"/><text x="45.8231%" y="575.50"></text></g><g><title>task_h_load (96 samples, 0.01%)</title><rect x="45.5922%" y="597" width="0.0100%" height="15" fill="rgb(213,106,44)" fg:x="435854" fg:w="96"/><text x="45.8422%" y="607.50"></text></g><g><title>available_idle_cpu (137 samples, 0.01%)</title><rect x="45.6081%" y="581" width="0.0143%" height="15" fill="rgb(214,129,20)" fg:x="436006" fg:w="137"/><text x="45.8581%" y="591.50"></text></g><g><title>select_task_rq_fair (1,753 samples, 0.18%)</title><rect x="45.4431%" y="613" width="0.1834%" height="15" fill="rgb(212,32,13)" fg:x="434429" fg:w="1753"/><text x="45.6931%" y="623.50"></text></g><g><title>wake_affine (232 samples, 0.02%)</title><rect x="45.6022%" y="597" width="0.0243%" height="15" fill="rgb(208,168,33)" fg:x="435950" fg:w="232"/><text x="45.8522%" y="607.50"></text></g><g><title>migrate_task_rq_fair (119 samples, 0.01%)</title><rect x="45.6352%" y="597" width="0.0124%" height="15" fill="rgb(231,207,8)" fg:x="436265" fg:w="119"/><text x="45.8852%" y="607.50"></text></g><g><title>set_task_cpu (203 samples, 0.02%)</title><rect x="45.6265%" y="613" width="0.0212%" height="15" fill="rgb(235,219,23)" fg:x="436182" fg:w="203"/><text x="45.8765%" y="623.50"></text></g><g><title>update_curr (126 samples, 0.01%)</title><rect x="45.6716%" y="549" width="0.0132%" height="15" fill="rgb(226,216,26)" fg:x="436613" fg:w="126"/><text x="45.9216%" y="559.50"></text></g><g><title>update_load_avg (125 samples, 0.01%)</title><rect x="45.6848%" y="549" width="0.0131%" height="15" fill="rgb(239,137,16)" fg:x="436739" fg:w="125"/><text x="45.9348%" y="559.50"></text></g><g><title>enqueue_entity (364 samples, 0.04%)</title><rect x="45.6604%" y="565" width="0.0381%" height="15" fill="rgb(207,12,36)" fg:x="436506" fg:w="364"/><text x="45.9104%" y="575.50"></text></g><g><title>update_cfs_group (104 samples, 0.01%)</title><rect x="45.6996%" y="565" width="0.0109%" height="15" fill="rgb(210,214,24)" fg:x="436881" fg:w="104"/><text x="45.9496%" y="575.50"></text></g><g><title>enqueue_task_fair (636 samples, 0.07%)</title><rect x="45.6506%" y="581" width="0.0665%" height="15" fill="rgb(206,56,30)" fg:x="436412" fg:w="636"/><text x="45.9006%" y="591.50"></text></g><g><title>psi_group_change (392 samples, 0.04%)</title><rect x="45.7291%" y="565" width="0.0410%" height="15" fill="rgb(228,143,26)" fg:x="437163" fg:w="392"/><text x="45.9791%" y="575.50"></text></g><g><title>psi_task_change (523 samples, 0.05%)</title><rect x="45.7183%" y="581" width="0.0547%" height="15" fill="rgb(216,218,46)" fg:x="437060" fg:w="523"/><text x="45.9683%" y="591.50"></text></g><g><title>enqueue_task (1,194 samples, 0.12%)</title><rect x="45.6494%" y="597" width="0.1249%" height="15" fill="rgb(206,6,19)" fg:x="436401" fg:w="1194"/><text x="45.8994%" y="607.50"></text></g><g><title>check_preempt_wakeup (102 samples, 0.01%)</title><rect x="45.7781%" y="565" width="0.0107%" height="15" fill="rgb(239,177,51)" fg:x="437631" fg:w="102"/><text x="46.0281%" y="575.50"></text></g><g><title>check_preempt_curr (140 samples, 0.01%)</title><rect x="45.7760%" y="581" width="0.0146%" height="15" fill="rgb(216,55,25)" fg:x="437611" fg:w="140"/><text x="46.0260%" y="591.50"></text></g><g><title>ttwu_do_activate (1,378 samples, 0.14%)</title><rect x="45.6479%" y="613" width="0.1441%" height="15" fill="rgb(231,163,29)" fg:x="436387" fg:w="1378"/><text x="45.8979%" y="623.50"></text></g><g><title>ttwu_do_wakeup (169 samples, 0.02%)</title><rect x="45.7744%" y="597" width="0.0177%" height="15" fill="rgb(232,149,50)" fg:x="437596" fg:w="169"/><text x="46.0244%" y="607.50"></text></g><g><title>native_send_call_func_single_ipi (105 samples, 0.01%)</title><rect x="45.8227%" y="565" width="0.0110%" height="15" fill="rgb(223,142,48)" fg:x="438058" fg:w="105"/><text x="46.0727%" y="575.50"></text></g><g><title>x2apic_send_IPI (101 samples, 0.01%)</title><rect x="45.8232%" y="549" width="0.0106%" height="15" fill="rgb(245,83,23)" fg:x="438062" fg:w="101"/><text x="46.0732%" y="559.50"></text></g><g><title>__smp_call_single_queue (209 samples, 0.02%)</title><rect x="45.8123%" y="597" width="0.0219%" height="15" fill="rgb(224,63,2)" fg:x="437958" fg:w="209"/><text x="46.0623%" y="607.50"></text></g><g><title>send_call_function_single_ipi (195 samples, 0.02%)</title><rect x="45.8137%" y="581" width="0.0204%" height="15" fill="rgb(218,65,53)" fg:x="437972" fg:w="195"/><text x="46.0637%" y="591.50"></text></g><g><title>llist_add_batch (178 samples, 0.02%)</title><rect x="45.8341%" y="597" width="0.0186%" height="15" fill="rgb(221,84,29)" fg:x="438167" fg:w="178"/><text x="46.0841%" y="607.50"></text></g><g><title>ttwu_queue_wakelist (625 samples, 0.07%)</title><rect x="45.7923%" y="613" width="0.0654%" height="15" fill="rgb(234,0,32)" fg:x="437767" fg:w="625"/><text x="46.0423%" y="623.50"></text></g><g><title>try_to_wake_up (5,373 samples, 0.56%)</title><rect x="45.3059%" y="629" width="0.5620%" height="15" fill="rgb(206,20,16)" fg:x="433117" fg:w="5373"/><text x="45.5559%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (6,089 samples, 0.64%)</title><rect x="45.2327%" y="661" width="0.6369%" height="15" fill="rgb(244,172,18)" fg:x="432417" fg:w="6089"/><text x="45.4827%" y="671.50"></text></g><g><title>wake_up_q (5,505 samples, 0.58%)</title><rect x="45.2937%" y="645" width="0.5758%" height="15" fill="rgb(254,133,1)" fg:x="433001" fg:w="5505"/><text x="45.5437%" y="655.50"></text></g><g><title>btrfs_tree_unlock (6,142 samples, 0.64%)</title><rect x="45.2274%" y="693" width="0.6425%" height="15" fill="rgb(222,206,41)" fg:x="432367" fg:w="6142"/><text x="45.4774%" y="703.50"></text></g><g><title>up_write (6,105 samples, 0.64%)</title><rect x="45.2313%" y="677" width="0.6386%" height="15" fill="rgb(212,3,42)" fg:x="432404" fg:w="6105"/><text x="45.4813%" y="687.50"></text></g><g><title>unlock_up (6,558 samples, 0.69%)</title><rect x="45.1987%" y="709" width="0.6860%" height="15" fill="rgb(241,11,4)" fg:x="432092" fg:w="6558"/><text x="45.4487%" y="719.50"></text></g><g><title>up_write (141 samples, 0.01%)</title><rect x="45.8699%" y="693" width="0.0147%" height="15" fill="rgb(205,19,26)" fg:x="438509" fg:w="141"/><text x="46.1199%" y="703.50"></text></g><g><title>btrfs_search_slot (31,304 samples, 3.27%)</title><rect x="42.6160%" y="725" width="3.2745%" height="15" fill="rgb(210,179,32)" fg:x="407402" fg:w="31304"/><text x="42.8660%" y="735.50">btr..</text></g><g><title>btrfs_del_orphan_item (33,984 samples, 3.55%)</title><rect x="42.3518%" y="741" width="3.5549%" height="15" fill="rgb(227,116,49)" fg:x="404876" fg:w="33984"/><text x="42.6018%" y="751.50">btrf..</text></g><g><title>_raw_spin_lock (292 samples, 0.03%)</title><rect x="45.9870%" y="693" width="0.0305%" height="15" fill="rgb(211,146,6)" fg:x="439628" fg:w="292"/><text x="46.2370%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (365 samples, 0.04%)</title><rect x="46.0175%" y="693" width="0.0382%" height="15" fill="rgb(219,44,39)" fg:x="439920" fg:w="365"/><text x="46.2675%" y="703.50"></text></g><g><title>btrfs_trans_release_metadata (689 samples, 0.07%)</title><rect x="45.9850%" y="709" width="0.0721%" height="15" fill="rgb(234,128,11)" fg:x="439609" fg:w="689"/><text x="46.2350%" y="719.50"></text></g><g><title>kmem_cache_free (336 samples, 0.04%)</title><rect x="46.0570%" y="709" width="0.0351%" height="15" fill="rgb(220,183,53)" fg:x="440298" fg:w="336"/><text x="46.3070%" y="719.50"></text></g><g><title>__btrfs_end_transaction (1,720 samples, 0.18%)</title><rect x="45.9132%" y="725" width="0.1799%" height="15" fill="rgb(213,219,32)" fg:x="438923" fg:w="1720"/><text x="46.1632%" y="735.50"></text></g><g><title>btrfs_end_transaction (1,845 samples, 0.19%)</title><rect x="45.9103%" y="741" width="0.1930%" height="15" fill="rgb(232,156,16)" fg:x="438895" fg:w="1845"/><text x="46.1603%" y="751.50"></text></g><g><title>btrfs_block_rsv_release (97 samples, 0.01%)</title><rect x="46.1143%" y="725" width="0.0101%" height="15" fill="rgb(246,135,34)" fg:x="440845" fg:w="97"/><text x="46.3643%" y="735.50"></text></g><g><title>kfree (233 samples, 0.02%)</title><rect x="46.1247%" y="725" width="0.0244%" height="15" fill="rgb(241,99,0)" fg:x="440945" fg:w="233"/><text x="46.3747%" y="735.50"></text></g><g><title>btrfs_free_block_rsv (430 samples, 0.04%)</title><rect x="46.1044%" y="741" width="0.0450%" height="15" fill="rgb(222,103,45)" fg:x="440751" fg:w="430"/><text x="46.3544%" y="751.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (124 samples, 0.01%)</title><rect x="46.1617%" y="741" width="0.0130%" height="15" fill="rgb(212,57,4)" fg:x="441298" fg:w="124"/><text x="46.4117%" y="751.50"></text></g><g><title>__slab_free (123 samples, 0.01%)</title><rect x="46.2350%" y="693" width="0.0129%" height="15" fill="rgb(215,68,47)" fg:x="441999" fg:w="123"/><text x="46.4850%" y="703.50"></text></g><g><title>kmem_cache_free (377 samples, 0.04%)</title><rect x="46.2154%" y="709" width="0.0394%" height="15" fill="rgb(230,84,2)" fg:x="441812" fg:w="377"/><text x="46.4654%" y="719.50"></text></g><g><title>mutex_lock (121 samples, 0.01%)</title><rect x="46.2549%" y="709" width="0.0127%" height="15" fill="rgb(220,102,14)" fg:x="442189" fg:w="121"/><text x="46.5049%" y="719.50"></text></g><g><title>__radix_tree_delete (124 samples, 0.01%)</title><rect x="46.2704%" y="677" width="0.0130%" height="15" fill="rgb(240,10,32)" fg:x="442338" fg:w="124"/><text x="46.5204%" y="687.50"></text></g><g><title>__radix_tree_lookup (652 samples, 0.07%)</title><rect x="46.2834%" y="677" width="0.0682%" height="15" fill="rgb(215,47,27)" fg:x="442462" fg:w="652"/><text x="46.5334%" y="687.50"></text></g><g><title>radix_tree_delete (835 samples, 0.09%)</title><rect x="46.2676%" y="709" width="0.0873%" height="15" fill="rgb(233,188,43)" fg:x="442311" fg:w="835"/><text x="46.5176%" y="719.50"></text></g><g><title>radix_tree_delete_item (824 samples, 0.09%)</title><rect x="46.2688%" y="693" width="0.0862%" height="15" fill="rgb(253,190,1)" fg:x="442322" fg:w="824"/><text x="46.5188%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,569 samples, 0.16%)</title><rect x="46.1914%" y="725" width="0.1641%" height="15" fill="rgb(206,114,52)" fg:x="441582" fg:w="1569"/><text x="46.4414%" y="735.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.01%)</title><rect x="46.3555%" y="725" width="0.0103%" height="15" fill="rgb(233,120,37)" fg:x="443151" fg:w="98"/><text x="46.6055%" y="735.50"></text></g><g><title>btrfs_remove_delayed_node (1,719 samples, 0.18%)</title><rect x="46.1911%" y="741" width="0.1798%" height="15" fill="rgb(214,52,39)" fg:x="441580" fg:w="1719"/><text x="46.4411%" y="751.50"></text></g><g><title>kmem_cache_alloc (104 samples, 0.01%)</title><rect x="46.4756%" y="693" width="0.0109%" height="15" fill="rgb(223,80,29)" fg:x="444299" fg:w="104"/><text x="46.7256%" y="703.50"></text></g><g><title>alloc_extent_state (182 samples, 0.02%)</title><rect x="46.4734%" y="709" width="0.0190%" height="15" fill="rgb(230,101,40)" fg:x="444278" fg:w="182"/><text x="46.7234%" y="719.50"></text></g><g><title>__wake_up_common_lock (147 samples, 0.02%)</title><rect x="46.5202%" y="677" width="0.0154%" height="15" fill="rgb(219,211,8)" fg:x="444726" fg:w="147"/><text x="46.7702%" y="687.50"></text></g><g><title>__wake_up (190 samples, 0.02%)</title><rect x="46.5163%" y="693" width="0.0199%" height="15" fill="rgb(252,126,28)" fg:x="444688" fg:w="190"/><text x="46.7663%" y="703.50"></text></g><g><title>kmem_cache_free (206 samples, 0.02%)</title><rect x="46.5491%" y="677" width="0.0215%" height="15" fill="rgb(215,56,38)" fg:x="445002" fg:w="206"/><text x="46.7991%" y="687.50"></text></g><g><title>clear_state_bit (695 samples, 0.07%)</title><rect x="46.4988%" y="709" width="0.0727%" height="15" fill="rgb(249,55,44)" fg:x="444521" fg:w="695"/><text x="46.7488%" y="719.50"></text></g><g><title>free_extent_state (254 samples, 0.03%)</title><rect x="46.5449%" y="693" width="0.0266%" height="15" fill="rgb(220,221,32)" fg:x="444962" fg:w="254"/><text x="46.7949%" y="703.50"></text></g><g><title>kmem_cache_free (125 samples, 0.01%)</title><rect x="46.5759%" y="693" width="0.0131%" height="15" fill="rgb(212,216,41)" fg:x="445258" fg:w="125"/><text x="46.8259%" y="703.50"></text></g><g><title>free_extent_state (170 samples, 0.02%)</title><rect x="46.5715%" y="709" width="0.0178%" height="15" fill="rgb(228,213,43)" fg:x="445216" fg:w="170"/><text x="46.8215%" y="719.50"></text></g><g><title>__clear_extent_bit (1,429 samples, 0.15%)</title><rect x="46.4475%" y="725" width="0.1495%" height="15" fill="rgb(211,31,26)" fg:x="444031" fg:w="1429"/><text x="46.6975%" y="735.50"></text></g><g><title>_raw_spin_lock (169 samples, 0.02%)</title><rect x="46.5970%" y="725" width="0.0177%" height="15" fill="rgb(229,202,19)" fg:x="445460" fg:w="169"/><text x="46.8470%" y="735.50"></text></g><g><title>alloc_extent_map (116 samples, 0.01%)</title><rect x="46.6207%" y="725" width="0.0121%" height="15" fill="rgb(229,105,46)" fg:x="445686" fg:w="116"/><text x="46.8707%" y="735.50"></text></g><g><title>kmem_cache_alloc (102 samples, 0.01%)</title><rect x="46.6384%" y="709" width="0.0107%" height="15" fill="rgb(235,108,1)" fg:x="445856" fg:w="102"/><text x="46.8884%" y="719.50"></text></g><g><title>btrfs_alloc_path (163 samples, 0.02%)</title><rect x="46.6380%" y="725" width="0.0171%" height="15" fill="rgb(245,111,35)" fg:x="445852" fg:w="163"/><text x="46.8880%" y="735.50"></text></g><g><title>btrfs_add_delayed_tree_ref (124 samples, 0.01%)</title><rect x="46.7202%" y="677" width="0.0130%" height="15" fill="rgb(219,185,31)" fg:x="446638" fg:w="124"/><text x="46.9702%" y="687.50"></text></g><g><title>_find_next_bit (167 samples, 0.02%)</title><rect x="46.7389%" y="629" width="0.0175%" height="15" fill="rgb(214,4,43)" fg:x="446816" fg:w="167"/><text x="46.9889%" y="639.50"></text></g><g><title>steal_from_bitmap.part.0 (187 samples, 0.02%)</title><rect x="46.7389%" y="645" width="0.0196%" height="15" fill="rgb(235,227,40)" fg:x="446816" fg:w="187"/><text x="46.9889%" y="655.50"></text></g><g><title>__btrfs_add_free_space (280 samples, 0.03%)</title><rect x="46.7333%" y="661" width="0.0293%" height="15" fill="rgb(230,88,30)" fg:x="446763" fg:w="280"/><text x="46.9833%" y="671.50"></text></g><g><title>btrfs_add_free_space (292 samples, 0.03%)</title><rect x="46.7332%" y="677" width="0.0305%" height="15" fill="rgb(216,217,1)" fg:x="446762" fg:w="292"/><text x="46.9832%" y="687.50"></text></g><g><title>btrfs_free_tree_block (546 samples, 0.06%)</title><rect x="46.7176%" y="693" width="0.0571%" height="15" fill="rgb(248,139,50)" fg:x="446613" fg:w="546"/><text x="46.9676%" y="703.50"></text></g><g><title>btrfs_del_leaf (609 samples, 0.06%)</title><rect x="46.7166%" y="709" width="0.0637%" height="15" fill="rgb(233,1,21)" fg:x="446603" fg:w="609"/><text x="46.9666%" y="719.50"></text></g><g><title>btrfs_get_32 (150 samples, 0.02%)</title><rect x="46.7805%" y="709" width="0.0157%" height="15" fill="rgb(215,183,12)" fg:x="447214" fg:w="150"/><text x="47.0305%" y="719.50"></text></g><g><title>btrfs_get_token_32 (1,383 samples, 0.14%)</title><rect x="46.7962%" y="709" width="0.1447%" height="15" fill="rgb(229,104,42)" fg:x="447364" fg:w="1383"/><text x="47.0462%" y="719.50"></text></g><g><title>btrfs_mark_buffer_dirty (109 samples, 0.01%)</title><rect x="46.9410%" y="709" width="0.0114%" height="15" fill="rgb(243,34,48)" fg:x="448748" fg:w="109"/><text x="47.1910%" y="719.50"></text></g><g><title>btrfs_set_token_32 (1,339 samples, 0.14%)</title><rect x="46.9526%" y="709" width="0.1401%" height="15" fill="rgb(239,11,44)" fg:x="448859" fg:w="1339"/><text x="47.2026%" y="719.50"></text></g><g><title>check_setget_bounds.isra.0 (106 samples, 0.01%)</title><rect x="47.0815%" y="693" width="0.0111%" height="15" fill="rgb(231,98,35)" fg:x="450092" fg:w="106"/><text x="47.3315%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (436 samples, 0.05%)</title><rect x="47.0945%" y="709" width="0.0456%" height="15" fill="rgb(233,28,25)" fg:x="450216" fg:w="436"/><text x="47.3445%" y="719.50"></text></g><g><title>copy_pages (266 samples, 0.03%)</title><rect x="47.1403%" y="709" width="0.0278%" height="15" fill="rgb(234,123,11)" fg:x="450654" fg:w="266"/><text x="47.3903%" y="719.50"></text></g><g><title>leaf_space_used (127 samples, 0.01%)</title><rect x="47.1720%" y="709" width="0.0133%" height="15" fill="rgb(220,69,3)" fg:x="450957" fg:w="127"/><text x="47.4220%" y="719.50"></text></g><g><title>memcpy_extent_buffer (180 samples, 0.02%)</title><rect x="47.2038%" y="693" width="0.0188%" height="15" fill="rgb(214,64,36)" fg:x="451261" fg:w="180"/><text x="47.4538%" y="703.50"></text></g><g><title>memmove (142 samples, 0.01%)</title><rect x="47.2078%" y="677" width="0.0149%" height="15" fill="rgb(211,138,32)" fg:x="451299" fg:w="142"/><text x="47.4578%" y="687.50"></text></g><g><title>memmove_extent_buffer (1,842 samples, 0.19%)</title><rect x="47.1875%" y="709" width="0.1927%" height="15" fill="rgb(213,118,47)" fg:x="451105" fg:w="1842"/><text x="47.4375%" y="719.50"></text></g><g><title>memmove (1,506 samples, 0.16%)</title><rect x="47.2227%" y="693" width="0.1575%" height="15" fill="rgb(243,124,49)" fg:x="451441" fg:w="1506"/><text x="47.4727%" y="703.50"></text></g><g><title>clear_extent_buffer_dirty (96 samples, 0.01%)</title><rect x="47.3844%" y="661" width="0.0100%" height="15" fill="rgb(221,30,28)" fg:x="452987" fg:w="96"/><text x="47.6344%" y="671.50"></text></g><g><title>btrfs_clean_tree_block (107 samples, 0.01%)</title><rect x="47.3843%" y="677" width="0.0112%" height="15" fill="rgb(246,37,13)" fg:x="452986" fg:w="107"/><text x="47.6343%" y="687.50"></text></g><g><title>__push_leaf_left (309 samples, 0.03%)</title><rect x="47.3808%" y="693" width="0.0323%" height="15" fill="rgb(249,66,14)" fg:x="452953" fg:w="309"/><text x="47.6308%" y="703.50"></text></g><g><title>push_leaf_left (440 samples, 0.05%)</title><rect x="47.3803%" y="709" width="0.0460%" height="15" fill="rgb(213,166,5)" fg:x="452948" fg:w="440"/><text x="47.6303%" y="719.50"></text></g><g><title>__push_leaf_right (106 samples, 0.01%)</title><rect x="47.4265%" y="693" width="0.0111%" height="15" fill="rgb(221,66,24)" fg:x="453390" fg:w="106"/><text x="47.6765%" y="703.50"></text></g><g><title>push_leaf_right (147 samples, 0.02%)</title><rect x="47.4263%" y="709" width="0.0154%" height="15" fill="rgb(210,132,17)" fg:x="453388" fg:w="147"/><text x="47.6763%" y="719.50"></text></g><g><title>btrfs_del_items (7,543 samples, 0.79%)</title><rect x="46.6596%" y="725" width="0.7890%" height="15" fill="rgb(243,202,5)" fg:x="446058" fg:w="7543"/><text x="46.9096%" y="735.50"></text></g><g><title>kmem_cache_alloc (272 samples, 0.03%)</title><rect x="47.4647%" y="693" width="0.0285%" height="15" fill="rgb(233,70,48)" fg:x="453755" fg:w="272"/><text x="47.7147%" y="703.50"></text></g><g><title>alloc_extent_map (422 samples, 0.04%)</title><rect x="47.4603%" y="709" width="0.0441%" height="15" fill="rgb(238,41,26)" fg:x="453713" fg:w="422"/><text x="47.7103%" y="719.50"></text></g><g><title>kmem_cache_free (315 samples, 0.03%)</title><rect x="47.5113%" y="693" width="0.0330%" height="15" fill="rgb(241,19,31)" fg:x="454200" fg:w="315"/><text x="47.7613%" y="703.50"></text></g><g><title>free_extent_map (385 samples, 0.04%)</title><rect x="47.5045%" y="709" width="0.0403%" height="15" fill="rgb(214,76,10)" fg:x="454135" fg:w="385"/><text x="47.7545%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (980 samples, 0.10%)</title><rect x="47.4486%" y="725" width="0.1025%" height="15" fill="rgb(254,202,22)" fg:x="453601" fg:w="980"/><text x="47.6986%" y="735.50"></text></g><g><title>try_to_wake_up (343 samples, 0.04%)</title><rect x="47.5717%" y="629" width="0.0359%" height="15" fill="rgb(214,72,24)" fg:x="454778" fg:w="343"/><text x="47.8217%" y="639.50"></text></g><g><title>btrfs_tree_unlock (417 samples, 0.04%)</title><rect x="47.5641%" y="693" width="0.0436%" height="15" fill="rgb(221,92,46)" fg:x="454705" fg:w="417"/><text x="47.8141%" y="703.50"></text></g><g><title>up_write (400 samples, 0.04%)</title><rect x="47.5659%" y="677" width="0.0418%" height="15" fill="rgb(246,13,50)" fg:x="454722" fg:w="400"/><text x="47.8159%" y="687.50"></text></g><g><title>rwsem_wake.isra.0 (400 samples, 0.04%)</title><rect x="47.5659%" y="661" width="0.0418%" height="15" fill="rgb(240,165,38)" fg:x="454722" fg:w="400"/><text x="47.8159%" y="671.50"></text></g><g><title>wake_up_q (356 samples, 0.04%)</title><rect x="47.5705%" y="645" width="0.0372%" height="15" fill="rgb(241,24,51)" fg:x="454766" fg:w="356"/><text x="47.8205%" y="655.50"></text></g><g><title>_raw_spin_lock (128 samples, 0.01%)</title><rect x="47.6096%" y="677" width="0.0134%" height="15" fill="rgb(227,51,44)" fg:x="455140" fg:w="128"/><text x="47.8596%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (300 samples, 0.03%)</title><rect x="47.6230%" y="677" width="0.0314%" height="15" fill="rgb(231,121,3)" fg:x="455268" fg:w="300"/><text x="47.8730%" y="687.50"></text></g><g><title>release_extent_buffer (134 samples, 0.01%)</title><rect x="47.6403%" y="661" width="0.0140%" height="15" fill="rgb(245,3,41)" fg:x="455434" fg:w="134"/><text x="47.8903%" y="671.50"></text></g><g><title>free_extent_buffer (434 samples, 0.05%)</title><rect x="47.6096%" y="693" width="0.0454%" height="15" fill="rgb(214,13,26)" fg:x="455140" fg:w="434"/><text x="47.8596%" y="703.50"></text></g><g><title>btrfs_release_path (1,085 samples, 0.11%)</title><rect x="47.5525%" y="709" width="0.1135%" height="15" fill="rgb(252,75,11)" fg:x="454594" fg:w="1085"/><text x="47.8025%" y="719.50"></text></g><g><title>up_write (105 samples, 0.01%)</title><rect x="47.6550%" y="693" width="0.0110%" height="15" fill="rgb(218,226,17)" fg:x="455574" fg:w="105"/><text x="47.9050%" y="703.50"></text></g><g><title>kmem_cache_free (220 samples, 0.02%)</title><rect x="47.6691%" y="709" width="0.0230%" height="15" fill="rgb(248,89,38)" fg:x="455709" fg:w="220"/><text x="47.9191%" y="719.50"></text></g><g><title>btrfs_free_path (1,351 samples, 0.14%)</title><rect x="47.5511%" y="725" width="0.1413%" height="15" fill="rgb(237,73,46)" fg:x="454581" fg:w="1351"/><text x="47.8011%" y="735.50"></text></g><g><title>btrfs_get_token_32 (194 samples, 0.02%)</title><rect x="47.7140%" y="725" width="0.0203%" height="15" fill="rgb(242,78,33)" fg:x="456138" fg:w="194"/><text x="47.9640%" y="735.50"></text></g><g><title>kmem_cache_alloc (187 samples, 0.02%)</title><rect x="47.7510%" y="661" width="0.0196%" height="15" fill="rgb(235,60,3)" fg:x="456492" fg:w="187"/><text x="48.0010%" y="671.50"></text></g><g><title>alloc_extent_state (281 samples, 0.03%)</title><rect x="47.7458%" y="677" width="0.0294%" height="15" fill="rgb(216,172,19)" fg:x="456442" fg:w="281"/><text x="47.9958%" y="687.50"></text></g><g><title>kmem_cache_free (168 samples, 0.02%)</title><rect x="47.7787%" y="661" width="0.0176%" height="15" fill="rgb(227,6,42)" fg:x="456757" fg:w="168"/><text x="48.0287%" y="671.50"></text></g><g><title>free_extent_state (204 samples, 0.02%)</title><rect x="47.7752%" y="677" width="0.0213%" height="15" fill="rgb(223,207,42)" fg:x="456723" fg:w="204"/><text x="48.0252%" y="687.50"></text></g><g><title>__clear_extent_bit (595 samples, 0.06%)</title><rect x="47.7363%" y="693" width="0.0622%" height="15" fill="rgb(246,138,30)" fg:x="456351" fg:w="595"/><text x="47.9863%" y="703.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (730 samples, 0.08%)</title><rect x="47.7343%" y="725" width="0.0764%" height="15" fill="rgb(251,199,47)" fg:x="456332" fg:w="730"/><text x="47.9843%" y="735.50"></text></g><g><title>clear_extent_bit (715 samples, 0.07%)</title><rect x="47.7358%" y="709" width="0.0748%" height="15" fill="rgb(228,218,44)" fg:x="456347" fg:w="715"/><text x="47.9858%" y="719.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (178 samples, 0.02%)</title><rect x="47.8106%" y="725" width="0.0186%" height="15" fill="rgb(220,68,6)" fg:x="457062" fg:w="178"/><text x="48.0606%" y="735.50"></text></g><g><title>btrfs_kill_delayed_inode_items (374 samples, 0.04%)</title><rect x="47.8293%" y="725" width="0.0391%" height="15" fill="rgb(240,60,26)" fg:x="457240" fg:w="374"/><text x="48.0793%" y="735.50"></text></g><g><title>balance_level (252 samples, 0.03%)</title><rect x="47.9707%" y="709" width="0.0264%" height="15" fill="rgb(211,200,19)" fg:x="458592" fg:w="252"/><text x="48.2207%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (1,216 samples, 0.13%)</title><rect x="48.0027%" y="693" width="0.1272%" height="15" fill="rgb(242,145,30)" fg:x="458898" fg:w="1216"/><text x="48.2527%" y="703.50"></text></g><g><title>btrfs_bin_search (1,271 samples, 0.13%)</title><rect x="47.9970%" y="709" width="0.1330%" height="15" fill="rgb(225,64,13)" fg:x="458844" fg:w="1271"/><text x="48.2470%" y="719.50"></text></g><g><title>osq_lock (3,784 samples, 0.40%)</title><rect x="48.7093%" y="629" width="0.3958%" height="15" fill="rgb(218,103,35)" fg:x="465653" fg:w="3784"/><text x="48.9593%" y="639.50"></text></g><g><title>rwsem_spin_on_owner (413 samples, 0.04%)</title><rect x="49.1126%" y="629" width="0.0432%" height="15" fill="rgb(216,93,46)" fg:x="469509" fg:w="413"/><text x="49.3626%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (9,425 samples, 0.99%)</title><rect x="48.1795%" y="645" width="0.9859%" height="15" fill="rgb(225,159,27)" fg:x="460588" fg:w="9425"/><text x="48.4295%" y="655.50"></text></g><g><title>update_curr (150 samples, 0.02%)</title><rect x="49.2096%" y="565" width="0.0157%" height="15" fill="rgb(225,204,11)" fg:x="470436" fg:w="150"/><text x="49.4596%" y="575.50"></text></g><g><title>update_load_avg (135 samples, 0.01%)</title><rect x="49.2253%" y="565" width="0.0141%" height="15" fill="rgb(205,56,4)" fg:x="470586" fg:w="135"/><text x="49.4753%" y="575.50"></text></g><g><title>dequeue_entity (409 samples, 0.04%)</title><rect x="49.1978%" y="581" width="0.0428%" height="15" fill="rgb(206,6,35)" fg:x="470323" fg:w="409"/><text x="49.4478%" y="591.50"></text></g><g><title>dequeue_task_fair (574 samples, 0.06%)</title><rect x="49.1905%" y="597" width="0.0600%" height="15" fill="rgb(247,73,52)" fg:x="470253" fg:w="574"/><text x="49.4405%" y="607.50"></text></g><g><title>dequeue_task (627 samples, 0.07%)</title><rect x="49.1880%" y="613" width="0.0656%" height="15" fill="rgb(246,97,4)" fg:x="470229" fg:w="627"/><text x="49.4380%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (809 samples, 0.08%)</title><rect x="49.2629%" y="597" width="0.0846%" height="15" fill="rgb(212,37,15)" fg:x="470945" fg:w="809"/><text x="49.5129%" y="607.50"></text></g><g><title>x86_pmu_enable (777 samples, 0.08%)</title><rect x="49.2662%" y="581" width="0.0813%" height="15" fill="rgb(208,130,40)" fg:x="470977" fg:w="777"/><text x="49.5162%" y="591.50"></text></g><g><title>intel_pmu_enable_all (773 samples, 0.08%)</title><rect x="49.2666%" y="565" width="0.0809%" height="15" fill="rgb(236,55,29)" fg:x="470981" fg:w="773"/><text x="49.5166%" y="575.50"></text></g><g><title>native_write_msr (759 samples, 0.08%)</title><rect x="49.2681%" y="549" width="0.0794%" height="15" fill="rgb(209,156,45)" fg:x="470995" fg:w="759"/><text x="49.5181%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (919 samples, 0.10%)</title><rect x="49.2535%" y="613" width="0.0961%" height="15" fill="rgb(249,107,4)" fg:x="470856" fg:w="919"/><text x="49.5035%" y="623.50"></text></g><g><title>pick_next_task_fair (162 samples, 0.02%)</title><rect x="49.3526%" y="597" width="0.0169%" height="15" fill="rgb(227,7,13)" fg:x="471803" fg:w="162"/><text x="49.6026%" y="607.50"></text></g><g><title>pick_next_task (280 samples, 0.03%)</title><rect x="49.3505%" y="613" width="0.0293%" height="15" fill="rgb(250,129,14)" fg:x="471783" fg:w="280"/><text x="49.6005%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (134 samples, 0.01%)</title><rect x="49.3846%" y="597" width="0.0140%" height="15" fill="rgb(229,92,13)" fg:x="472109" fg:w="134"/><text x="49.6346%" y="607.50"></text></g><g><title>prepare_task_switch (174 samples, 0.02%)</title><rect x="49.3805%" y="613" width="0.0182%" height="15" fill="rgb(245,98,39)" fg:x="472070" fg:w="174"/><text x="49.6305%" y="623.50"></text></g><g><title>psi_group_change (357 samples, 0.04%)</title><rect x="49.4126%" y="597" width="0.0373%" height="15" fill="rgb(234,135,48)" fg:x="472377" fg:w="357"/><text x="49.6626%" y="607.50"></text></g><g><title>psi_task_switch (494 samples, 0.05%)</title><rect x="49.4007%" y="613" width="0.0517%" height="15" fill="rgb(230,98,28)" fg:x="472263" fg:w="494"/><text x="49.6507%" y="623.50"></text></g><g><title>__schedule (2,745 samples, 0.29%)</title><rect x="49.1755%" y="629" width="0.2871%" height="15" fill="rgb(223,121,0)" fg:x="470110" fg:w="2745"/><text x="49.4255%" y="639.50"></text></g><g><title>rwsem_down_write_slowpath (12,564 samples, 1.31%)</title><rect x="48.1510%" y="661" width="1.3142%" height="15" fill="rgb(234,173,33)" fg:x="460316" fg:w="12564"/><text x="48.4010%" y="671.50"></text></g><g><title>schedule (2,798 samples, 0.29%)</title><rect x="49.1726%" y="645" width="0.2927%" height="15" fill="rgb(245,47,8)" fg:x="470082" fg:w="2798"/><text x="49.4226%" y="655.50"></text></g><g><title>down_write (12,675 samples, 1.33%)</title><rect x="48.1416%" y="677" width="1.3259%" height="15" fill="rgb(205,17,20)" fg:x="460226" fg:w="12675"/><text x="48.3916%" y="687.50"></text></g><g><title>__btrfs_tree_lock (12,715 samples, 1.33%)</title><rect x="48.1385%" y="693" width="1.3300%" height="15" fill="rgb(232,151,16)" fg:x="460196" fg:w="12715"/><text x="48.3885%" y="703.50"></text></g><g><title>btrfs_lock_root_node (12,802 samples, 1.34%)</title><rect x="48.1352%" y="709" width="1.3391%" height="15" fill="rgb(208,30,32)" fg:x="460165" fg:w="12802"/><text x="48.3852%" y="719.50"></text></g><g><title>_raw_spin_lock_irq (103 samples, 0.01%)</title><rect x="49.5165%" y="645" width="0.0108%" height="15" fill="rgb(254,26,3)" fg:x="473370" fg:w="103"/><text x="49.7665%" y="655.50"></text></g><g><title>update_curr (171 samples, 0.02%)</title><rect x="49.5646%" y="565" width="0.0179%" height="15" fill="rgb(240,177,30)" fg:x="473830" fg:w="171"/><text x="49.8146%" y="575.50"></text></g><g><title>update_load_avg (139 samples, 0.01%)</title><rect x="49.5825%" y="565" width="0.0145%" height="15" fill="rgb(248,76,44)" fg:x="474001" fg:w="139"/><text x="49.8325%" y="575.50"></text></g><g><title>dequeue_entity (456 samples, 0.05%)</title><rect x="49.5507%" y="581" width="0.0477%" height="15" fill="rgb(241,186,54)" fg:x="473697" fg:w="456"/><text x="49.8007%" y="591.50"></text></g><g><title>dequeue_task_fair (601 samples, 0.06%)</title><rect x="49.5442%" y="597" width="0.0629%" height="15" fill="rgb(249,171,29)" fg:x="473635" fg:w="601"/><text x="49.7942%" y="607.50"></text></g><g><title>dequeue_task (630 samples, 0.07%)</title><rect x="49.5429%" y="613" width="0.0659%" height="15" fill="rgb(237,151,44)" fg:x="473622" fg:w="630"/><text x="49.7929%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (529 samples, 0.06%)</title><rect x="49.6162%" y="597" width="0.0553%" height="15" fill="rgb(228,174,30)" fg:x="474323" fg:w="529"/><text x="49.8662%" y="607.50"></text></g><g><title>x86_pmu_enable (498 samples, 0.05%)</title><rect x="49.6194%" y="581" width="0.0521%" height="15" fill="rgb(252,14,37)" fg:x="474354" fg:w="498"/><text x="49.8694%" y="591.50"></text></g><g><title>intel_pmu_enable_all (484 samples, 0.05%)</title><rect x="49.6209%" y="565" width="0.0506%" height="15" fill="rgb(207,111,40)" fg:x="474368" fg:w="484"/><text x="49.8709%" y="575.50"></text></g><g><title>native_write_msr (474 samples, 0.05%)</title><rect x="49.6220%" y="549" width="0.0496%" height="15" fill="rgb(248,171,54)" fg:x="474378" fg:w="474"/><text x="49.8720%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (659 samples, 0.07%)</title><rect x="49.6092%" y="613" width="0.0689%" height="15" fill="rgb(211,127,2)" fg:x="474256" fg:w="659"/><text x="49.8592%" y="623.50"></text></g><g><title>pick_next_task_fair (173 samples, 0.02%)</title><rect x="49.6821%" y="597" width="0.0181%" height="15" fill="rgb(236,87,47)" fg:x="474953" fg:w="173"/><text x="49.9321%" y="607.50"></text></g><g><title>pick_next_task (337 samples, 0.04%)</title><rect x="49.6790%" y="613" width="0.0353%" height="15" fill="rgb(223,190,45)" fg:x="474923" fg:w="337"/><text x="49.9290%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (134 samples, 0.01%)</title><rect x="49.7182%" y="597" width="0.0140%" height="15" fill="rgb(215,5,16)" fg:x="475298" fg:w="134"/><text x="49.9682%" y="607.50"></text></g><g><title>prepare_task_switch (156 samples, 0.02%)</title><rect x="49.7161%" y="613" width="0.0163%" height="15" fill="rgb(252,82,33)" fg:x="475278" fg:w="156"/><text x="49.9661%" y="623.50"></text></g><g><title>psi_group_change (329 samples, 0.03%)</title><rect x="49.7437%" y="597" width="0.0344%" height="15" fill="rgb(247,213,44)" fg:x="475542" fg:w="329"/><text x="49.9937%" y="607.50"></text></g><g><title>psi_task_switch (445 samples, 0.05%)</title><rect x="49.7336%" y="613" width="0.0465%" height="15" fill="rgb(205,196,44)" fg:x="475445" fg:w="445"/><text x="49.9836%" y="623.50"></text></g><g><title>__schedule (2,449 samples, 0.26%)</title><rect x="49.5323%" y="629" width="0.2562%" height="15" fill="rgb(237,96,54)" fg:x="473521" fg:w="2449"/><text x="49.7823%" y="639.50"></text></g><g><title>schedule (2,490 samples, 0.26%)</title><rect x="49.5302%" y="645" width="0.2605%" height="15" fill="rgb(230,113,34)" fg:x="473501" fg:w="2490"/><text x="49.7802%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (2,866 samples, 0.30%)</title><rect x="49.4971%" y="661" width="0.2998%" height="15" fill="rgb(221,224,12)" fg:x="473184" fg:w="2866"/><text x="49.7471%" y="671.50"></text></g><g><title>down_read (3,016 samples, 0.32%)</title><rect x="49.4820%" y="677" width="0.3155%" height="15" fill="rgb(219,112,44)" fg:x="473040" fg:w="3016"/><text x="49.7320%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (3,056 samples, 0.32%)</title><rect x="49.4790%" y="693" width="0.3197%" height="15" fill="rgb(210,31,13)" fg:x="473011" fg:w="3056"/><text x="49.7290%" y="703.50"></text></g><g><title>btrfs_root_node (197 samples, 0.02%)</title><rect x="49.7988%" y="693" width="0.0206%" height="15" fill="rgb(230,25,16)" fg:x="476069" fg:w="197"/><text x="50.0488%" y="703.50"></text></g><g><title>btrfs_read_lock_root_node (3,301 samples, 0.35%)</title><rect x="49.4752%" y="709" width="0.3453%" height="15" fill="rgb(246,108,53)" fg:x="472975" fg:w="3301"/><text x="49.7252%" y="719.50"></text></g><g><title>_raw_spin_lock_irqsave (101 samples, 0.01%)</title><rect x="49.8511%" y="613" width="0.0106%" height="15" fill="rgb(241,172,50)" fg:x="476569" fg:w="101"/><text x="50.1011%" y="623.50"></text></g><g><title>try_to_wake_up (224 samples, 0.02%)</title><rect x="49.8477%" y="629" width="0.0234%" height="15" fill="rgb(235,141,10)" fg:x="476536" fg:w="224"/><text x="50.0977%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (386 samples, 0.04%)</title><rect x="49.8311%" y="661" width="0.0404%" height="15" fill="rgb(220,174,43)" fg:x="476377" fg:w="386"/><text x="50.0811%" y="671.50"></text></g><g><title>wake_up_q (257 samples, 0.03%)</title><rect x="49.8446%" y="645" width="0.0269%" height="15" fill="rgb(215,181,40)" fg:x="476506" fg:w="257"/><text x="50.0946%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (398 samples, 0.04%)</title><rect x="49.8299%" y="693" width="0.0416%" height="15" fill="rgb(230,97,2)" fg:x="476366" fg:w="398"/><text x="50.0799%" y="703.50"></text></g><g><title>up_read (390 samples, 0.04%)</title><rect x="49.8308%" y="677" width="0.0408%" height="15" fill="rgb(211,25,27)" fg:x="476374" fg:w="390"/><text x="50.0808%" y="687.50"></text></g><g><title>btrfs_release_path (582 samples, 0.06%)</title><rect x="49.8222%" y="709" width="0.0609%" height="15" fill="rgb(230,87,26)" fg:x="476292" fg:w="582"/><text x="50.0722%" y="719.50"></text></g><g><title>__schedule (115 samples, 0.01%)</title><rect x="49.9063%" y="645" width="0.0120%" height="15" fill="rgb(227,160,17)" fg:x="477096" fg:w="115"/><text x="50.1563%" y="655.50"></text></g><g><title>__cond_resched (128 samples, 0.01%)</title><rect x="49.9051%" y="661" width="0.0134%" height="15" fill="rgb(244,85,34)" fg:x="477085" fg:w="128"/><text x="50.1551%" y="671.50"></text></g><g><title>rwsem_spin_on_owner (905 samples, 0.09%)</title><rect x="50.0214%" y="629" width="0.0947%" height="15" fill="rgb(207,70,0)" fg:x="478197" fg:w="905"/><text x="50.2714%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (1,854 samples, 0.19%)</title><rect x="49.9245%" y="645" width="0.1939%" height="15" fill="rgb(223,129,7)" fg:x="477270" fg:w="1854"/><text x="50.1745%" y="655.50"></text></g><g><title>__schedule (114 samples, 0.01%)</title><rect x="50.1200%" y="629" width="0.0119%" height="15" fill="rgb(246,105,7)" fg:x="479139" fg:w="114"/><text x="50.3700%" y="639.50"></text></g><g><title>rwsem_down_write_slowpath (2,016 samples, 0.21%)</title><rect x="49.9214%" y="661" width="0.2109%" height="15" fill="rgb(215,154,42)" fg:x="477241" fg:w="2016"/><text x="50.1714%" y="671.50"></text></g><g><title>schedule (119 samples, 0.01%)</title><rect x="50.1199%" y="645" width="0.0124%" height="15" fill="rgb(220,215,30)" fg:x="479138" fg:w="119"/><text x="50.3699%" y="655.50"></text></g><g><title>down_write (2,304 samples, 0.24%)</title><rect x="49.8915%" y="677" width="0.2410%" height="15" fill="rgb(228,81,51)" fg:x="476955" fg:w="2304"/><text x="50.1415%" y="687.50"></text></g><g><title>__btrfs_tree_lock (2,359 samples, 0.25%)</title><rect x="49.8859%" y="693" width="0.2468%" height="15" fill="rgb(247,71,54)" fg:x="476901" fg:w="2359"/><text x="50.1359%" y="703.50"></text></g><g><title>btrfs_tree_lock (2,374 samples, 0.25%)</title><rect x="49.8859%" y="709" width="0.2483%" height="15" fill="rgb(234,176,34)" fg:x="476901" fg:w="2374"/><text x="50.1359%" y="719.50"></text></g><g><title>btrfs_tree_read_unlock (197 samples, 0.02%)</title><rect x="50.1342%" y="709" width="0.0206%" height="15" fill="rgb(241,103,54)" fg:x="479275" fg:w="197"/><text x="50.3842%" y="719.50"></text></g><g><title>up_read (180 samples, 0.02%)</title><rect x="50.1360%" y="693" width="0.0188%" height="15" fill="rgb(228,22,34)" fg:x="479292" fg:w="180"/><text x="50.3860%" y="703.50"></text></g><g><title>rwsem_wake.isra.0 (176 samples, 0.02%)</title><rect x="50.1364%" y="677" width="0.0184%" height="15" fill="rgb(241,179,48)" fg:x="479296" fg:w="176"/><text x="50.3864%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (173 samples, 0.02%)</title><rect x="50.1886%" y="693" width="0.0181%" height="15" fill="rgb(235,167,37)" fg:x="479795" fg:w="173"/><text x="50.4386%" y="703.50"></text></g><g><title>verify_parent_transid (140 samples, 0.01%)</title><rect x="50.1921%" y="677" width="0.0146%" height="15" fill="rgb(213,109,30)" fg:x="479828" fg:w="140"/><text x="50.4421%" y="687.50"></text></g><g><title>btrfs_get_64 (206 samples, 0.02%)</title><rect x="50.2067%" y="693" width="0.0215%" height="15" fill="rgb(222,172,16)" fg:x="479968" fg:w="206"/><text x="50.4567%" y="703.50"></text></g><g><title>btrfs_node_key (250 samples, 0.03%)</title><rect x="50.2282%" y="693" width="0.0262%" height="15" fill="rgb(233,192,5)" fg:x="480174" fg:w="250"/><text x="50.4782%" y="703.50"></text></g><g><title>read_extent_buffer (240 samples, 0.03%)</title><rect x="50.2293%" y="677" width="0.0251%" height="15" fill="rgb(247,189,41)" fg:x="480184" fg:w="240"/><text x="50.4793%" y="687.50"></text></g><g><title>__radix_tree_lookup (760 samples, 0.08%)</title><rect x="50.3190%" y="645" width="0.0795%" height="15" fill="rgb(218,134,47)" fg:x="481042" fg:w="760"/><text x="50.5690%" y="655.50"></text></g><g><title>radix_tree_lookup (762 samples, 0.08%)</title><rect x="50.3189%" y="661" width="0.0797%" height="15" fill="rgb(216,29,3)" fg:x="481041" fg:w="762"/><text x="50.5689%" y="671.50"></text></g><g><title>find_extent_buffer_nolock (1,156 samples, 0.12%)</title><rect x="50.2780%" y="677" width="0.1209%" height="15" fill="rgb(246,140,12)" fg:x="480650" fg:w="1156"/><text x="50.5280%" y="687.50"></text></g><g><title>mark_page_accessed (374 samples, 0.04%)</title><rect x="50.3990%" y="677" width="0.0391%" height="15" fill="rgb(230,136,11)" fg:x="481806" fg:w="374"/><text x="50.6490%" y="687.50"></text></g><g><title>find_extent_buffer (1,656 samples, 0.17%)</title><rect x="50.2667%" y="693" width="0.1732%" height="15" fill="rgb(247,22,47)" fg:x="480542" fg:w="1656"/><text x="50.5167%" y="703.50"></text></g><g><title>read_block_for_search (2,660 samples, 0.28%)</title><rect x="50.1706%" y="709" width="0.2782%" height="15" fill="rgb(218,84,22)" fg:x="479623" fg:w="2660"/><text x="50.4206%" y="719.50"></text></g><g><title>btrfs_buffer_uptodate (104 samples, 0.01%)</title><rect x="50.4865%" y="661" width="0.0109%" height="15" fill="rgb(216,87,39)" fg:x="482643" fg:w="104"/><text x="50.7365%" y="671.50"></text></g><g><title>verify_parent_transid (97 samples, 0.01%)</title><rect x="50.4872%" y="645" width="0.0101%" height="15" fill="rgb(221,178,8)" fg:x="482650" fg:w="97"/><text x="50.7372%" y="655.50"></text></g><g><title>__radix_tree_lookup (337 samples, 0.04%)</title><rect x="50.5377%" y="581" width="0.0353%" height="15" fill="rgb(230,42,11)" fg:x="483132" fg:w="337"/><text x="50.7877%" y="591.50"></text></g><g><title>radix_tree_lookup (342 samples, 0.04%)</title><rect x="50.5372%" y="597" width="0.0358%" height="15" fill="rgb(237,229,4)" fg:x="483128" fg:w="342"/><text x="50.7872%" y="607.50"></text></g><g><title>find_extent_buffer_nolock (586 samples, 0.06%)</title><rect x="50.5119%" y="613" width="0.0613%" height="15" fill="rgb(222,31,33)" fg:x="482886" fg:w="586"/><text x="50.7619%" y="623.50"></text></g><g><title>mark_page_accessed (176 samples, 0.02%)</title><rect x="50.5732%" y="613" width="0.0184%" height="15" fill="rgb(210,17,39)" fg:x="483472" fg:w="176"/><text x="50.8232%" y="623.50"></text></g><g><title>find_extent_buffer (831 samples, 0.09%)</title><rect x="50.5054%" y="629" width="0.0869%" height="15" fill="rgb(244,93,20)" fg:x="482824" fg:w="831"/><text x="50.7554%" y="639.50"></text></g><g><title>alloc_extent_buffer (922 samples, 0.10%)</title><rect x="50.4976%" y="645" width="0.0964%" height="15" fill="rgb(210,40,47)" fg:x="482749" fg:w="922"/><text x="50.7476%" y="655.50"></text></g><g><title>btrfs_find_create_tree_block (930 samples, 0.10%)</title><rect x="50.4974%" y="661" width="0.0973%" height="15" fill="rgb(239,211,47)" fg:x="482747" fg:w="930"/><text x="50.7474%" y="671.50"></text></g><g><title>btrfs_readahead_tree_block (1,202 samples, 0.13%)</title><rect x="50.4788%" y="677" width="0.1257%" height="15" fill="rgb(251,223,49)" fg:x="482569" fg:w="1202"/><text x="50.7288%" y="687.50"></text></g><g><title>btrfs_readahead_node_child (1,430 samples, 0.15%)</title><rect x="50.4570%" y="693" width="0.1496%" height="15" fill="rgb(221,149,5)" fg:x="482361" fg:w="1430"/><text x="50.7070%" y="703.50"></text></g><g><title>reada_for_balance (1,524 samples, 0.16%)</title><rect x="50.4489%" y="709" width="0.1594%" height="15" fill="rgb(219,224,51)" fg:x="482283" fg:w="1524"/><text x="50.6989%" y="719.50"></text></g><g><title>rwsem_mark_wake (363 samples, 0.04%)</title><rect x="50.6563%" y="645" width="0.0380%" height="15" fill="rgb(223,7,8)" fg:x="484266" fg:w="363"/><text x="50.9063%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (131 samples, 0.01%)</title><rect x="50.7828%" y="613" width="0.0137%" height="15" fill="rgb(241,217,22)" fg:x="485475" fg:w="131"/><text x="51.0328%" y="623.50"></text></g><g><title>_raw_spin_lock (504 samples, 0.05%)</title><rect x="50.8084%" y="597" width="0.0527%" height="15" fill="rgb(248,209,0)" fg:x="485720" fg:w="504"/><text x="51.0584%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (499 samples, 0.05%)</title><rect x="50.8089%" y="581" width="0.0522%" height="15" fill="rgb(217,205,4)" fg:x="485725" fg:w="499"/><text x="51.0589%" y="591.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (499 samples, 0.05%)</title><rect x="50.8089%" y="565" width="0.0522%" height="15" fill="rgb(228,124,39)" fg:x="485725" fg:w="499"/><text x="51.0589%" y="575.50"></text></g><g><title>raw_spin_rq_lock_nested (510 samples, 0.05%)</title><rect x="50.8082%" y="613" width="0.0533%" height="15" fill="rgb(250,116,42)" fg:x="485718" fg:w="510"/><text x="51.0582%" y="623.50"></text></g><g><title>available_idle_cpu (153 samples, 0.02%)</title><rect x="50.9191%" y="581" width="0.0160%" height="15" fill="rgb(223,202,9)" fg:x="486778" fg:w="153"/><text x="51.1691%" y="591.50"></text></g><g><title>available_idle_cpu (155 samples, 0.02%)</title><rect x="50.9708%" y="565" width="0.0162%" height="15" fill="rgb(242,222,40)" fg:x="487273" fg:w="155"/><text x="51.2208%" y="575.50"></text></g><g><title>select_idle_sibling (1,301 samples, 0.14%)</title><rect x="50.8832%" y="597" width="0.1361%" height="15" fill="rgb(229,99,46)" fg:x="486435" fg:w="1301"/><text x="51.1332%" y="607.50"></text></g><g><title>select_idle_cpu (742 samples, 0.08%)</title><rect x="50.9416%" y="581" width="0.0776%" height="15" fill="rgb(225,56,46)" fg:x="486994" fg:w="742"/><text x="51.1916%" y="591.50"></text></g><g><title>select_idle_core (233 samples, 0.02%)</title><rect x="50.9949%" y="565" width="0.0244%" height="15" fill="rgb(227,94,5)" fg:x="487503" fg:w="233"/><text x="51.2449%" y="575.50"></text></g><g><title>task_h_load (108 samples, 0.01%)</title><rect x="51.0193%" y="597" width="0.0113%" height="15" fill="rgb(205,112,38)" fg:x="487736" fg:w="108"/><text x="51.2693%" y="607.50"></text></g><g><title>available_idle_cpu (120 samples, 0.01%)</title><rect x="51.0358%" y="581" width="0.0126%" height="15" fill="rgb(231,133,46)" fg:x="487894" fg:w="120"/><text x="51.2858%" y="591.50"></text></g><g><title>select_task_rq_fair (1,794 samples, 0.19%)</title><rect x="50.8647%" y="613" width="0.1877%" height="15" fill="rgb(217,16,9)" fg:x="486258" fg:w="1794"/><text x="51.1147%" y="623.50"></text></g><g><title>wake_affine (208 samples, 0.02%)</title><rect x="51.0306%" y="597" width="0.0218%" height="15" fill="rgb(249,173,9)" fg:x="487844" fg:w="208"/><text x="51.2806%" y="607.50"></text></g><g><title>migrate_task_rq_fair (165 samples, 0.02%)</title><rect x="51.0616%" y="597" width="0.0173%" height="15" fill="rgb(205,163,53)" fg:x="488141" fg:w="165"/><text x="51.3116%" y="607.50"></text></g><g><title>set_task_cpu (257 samples, 0.03%)</title><rect x="51.0523%" y="613" width="0.0269%" height="15" fill="rgb(217,54,41)" fg:x="488052" fg:w="257"/><text x="51.3023%" y="623.50"></text></g><g><title>update_curr (118 samples, 0.01%)</title><rect x="51.1071%" y="549" width="0.0123%" height="15" fill="rgb(228,216,12)" fg:x="488576" fg:w="118"/><text x="51.3571%" y="559.50"></text></g><g><title>update_load_avg (131 samples, 0.01%)</title><rect x="51.1195%" y="549" width="0.0137%" height="15" fill="rgb(244,228,15)" fg:x="488694" fg:w="131"/><text x="51.3695%" y="559.50"></text></g><g><title>enqueue_entity (368 samples, 0.04%)</title><rect x="51.0948%" y="565" width="0.0385%" height="15" fill="rgb(221,176,53)" fg:x="488458" fg:w="368"/><text x="51.3448%" y="575.50"></text></g><g><title>update_cfs_group (112 samples, 0.01%)</title><rect x="51.1339%" y="565" width="0.0117%" height="15" fill="rgb(205,94,34)" fg:x="488832" fg:w="112"/><text x="51.3839%" y="575.50"></text></g><g><title>enqueue_task_fair (676 samples, 0.07%)</title><rect x="51.0833%" y="581" width="0.0707%" height="15" fill="rgb(213,110,48)" fg:x="488348" fg:w="676"/><text x="51.3333%" y="591.50"></text></g><g><title>psi_group_change (395 samples, 0.04%)</title><rect x="51.1656%" y="565" width="0.0413%" height="15" fill="rgb(236,142,28)" fg:x="489135" fg:w="395"/><text x="51.4156%" y="575.50"></text></g><g><title>psi_task_change (520 samples, 0.05%)</title><rect x="51.1547%" y="581" width="0.0544%" height="15" fill="rgb(225,135,29)" fg:x="489031" fg:w="520"/><text x="51.4047%" y="591.50"></text></g><g><title>enqueue_task (1,229 samples, 0.13%)</title><rect x="51.0817%" y="597" width="0.1286%" height="15" fill="rgb(252,45,31)" fg:x="488333" fg:w="1229"/><text x="51.3317%" y="607.50"></text></g><g><title>check_preempt_wakeup (109 samples, 0.01%)</title><rect x="51.2142%" y="565" width="0.0114%" height="15" fill="rgb(211,187,50)" fg:x="489600" fg:w="109"/><text x="51.4642%" y="575.50"></text></g><g><title>check_preempt_curr (143 samples, 0.01%)</title><rect x="51.2125%" y="581" width="0.0150%" height="15" fill="rgb(229,109,7)" fg:x="489583" fg:w="143"/><text x="51.4625%" y="591.50"></text></g><g><title>ttwu_do_activate (1,431 samples, 0.15%)</title><rect x="51.0793%" y="613" width="0.1497%" height="15" fill="rgb(251,131,51)" fg:x="488310" fg:w="1431"/><text x="51.3293%" y="623.50"></text></g><g><title>ttwu_do_wakeup (171 samples, 0.02%)</title><rect x="51.2111%" y="597" width="0.0179%" height="15" fill="rgb(251,180,35)" fg:x="489570" fg:w="171"/><text x="51.4611%" y="607.50"></text></g><g><title>native_send_call_func_single_ipi (96 samples, 0.01%)</title><rect x="51.2611%" y="565" width="0.0100%" height="15" fill="rgb(211,46,32)" fg:x="490048" fg:w="96"/><text x="51.5111%" y="575.50"></text></g><g><title>__smp_call_single_queue (216 samples, 0.02%)</title><rect x="51.2495%" y="597" width="0.0226%" height="15" fill="rgb(248,123,17)" fg:x="489937" fg:w="216"/><text x="51.4995%" y="607.50"></text></g><g><title>send_call_function_single_ipi (199 samples, 0.02%)</title><rect x="51.2513%" y="581" width="0.0208%" height="15" fill="rgb(227,141,18)" fg:x="489954" fg:w="199"/><text x="51.5013%" y="591.50"></text></g><g><title>llist_add_batch (188 samples, 0.02%)</title><rect x="51.2721%" y="597" width="0.0197%" height="15" fill="rgb(216,102,9)" fg:x="490153" fg:w="188"/><text x="51.5221%" y="607.50"></text></g><g><title>ttwu_queue_wakelist (636 samples, 0.07%)</title><rect x="51.2298%" y="613" width="0.0665%" height="15" fill="rgb(253,47,13)" fg:x="489749" fg:w="636"/><text x="51.4798%" y="623.50"></text></g><g><title>update_rq_clock (97 samples, 0.01%)</title><rect x="51.2964%" y="613" width="0.0101%" height="15" fill="rgb(226,93,23)" fg:x="490385" fg:w="97"/><text x="51.5464%" y="623.50"></text></g><g><title>try_to_wake_up (5,570 samples, 0.58%)</title><rect x="50.7245%" y="629" width="0.5826%" height="15" fill="rgb(247,104,17)" fg:x="484918" fg:w="5570"/><text x="50.9745%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (6,343 samples, 0.66%)</title><rect x="50.6454%" y="661" width="0.6635%" height="15" fill="rgb(233,203,26)" fg:x="484162" fg:w="6343"/><text x="50.8954%" y="671.50"></text></g><g><title>wake_up_q (5,734 samples, 0.60%)</title><rect x="50.7091%" y="645" width="0.5998%" height="15" fill="rgb(244,98,49)" fg:x="484771" fg:w="5734"/><text x="50.9591%" y="655.50"></text></g><g><title>btrfs_tree_unlock (6,372 samples, 0.67%)</title><rect x="50.6425%" y="693" width="0.6665%" height="15" fill="rgb(235,134,22)" fg:x="484134" fg:w="6372"/><text x="50.8925%" y="703.50"></text></g><g><title>up_write (6,348 samples, 0.66%)</title><rect x="50.6450%" y="677" width="0.6640%" height="15" fill="rgb(221,70,32)" fg:x="484158" fg:w="6348"/><text x="50.8950%" y="687.50"></text></g><g><title>unlock_up (6,841 samples, 0.72%)</title><rect x="50.6083%" y="709" width="0.7156%" height="15" fill="rgb(238,15,50)" fg:x="483807" fg:w="6841"/><text x="50.8583%" y="719.50"></text></g><g><title>up_write (142 samples, 0.01%)</title><rect x="51.3090%" y="693" width="0.0149%" height="15" fill="rgb(215,221,48)" fg:x="490506" fg:w="142"/><text x="51.5590%" y="703.50"></text></g><g><title>btrfs_search_slot (33,004 samples, 3.45%)</title><rect x="47.8765%" y="725" width="3.4524%" height="15" fill="rgb(236,73,3)" fg:x="457692" fg:w="33004"/><text x="48.1265%" y="735.50">btr..</text></g><g><title>btrfs_set_token_32 (137 samples, 0.01%)</title><rect x="51.3289%" y="725" width="0.0143%" height="15" fill="rgb(250,107,11)" fg:x="490696" fg:w="137"/><text x="51.5789%" y="735.50"></text></g><g><title>kmem_cache_alloc (175 samples, 0.02%)</title><rect x="51.4106%" y="677" width="0.0183%" height="15" fill="rgb(242,39,14)" fg:x="491477" fg:w="175"/><text x="51.6606%" y="687.50"></text></g><g><title>alloc_extent_state (273 samples, 0.03%)</title><rect x="51.4041%" y="693" width="0.0286%" height="15" fill="rgb(248,164,37)" fg:x="491415" fg:w="273"/><text x="51.6541%" y="703.50"></text></g><g><title>insert_state (216 samples, 0.02%)</title><rect x="51.4363%" y="693" width="0.0226%" height="15" fill="rgb(217,60,12)" fg:x="491723" fg:w="216"/><text x="51.6863%" y="703.50"></text></g><g><title>lock_extent_bits (1,029 samples, 0.11%)</title><rect x="51.3595%" y="725" width="0.1076%" height="15" fill="rgb(240,125,29)" fg:x="490989" fg:w="1029"/><text x="51.6095%" y="735.50"></text></g><g><title>set_extent_bit (799 samples, 0.08%)</title><rect x="51.3836%" y="709" width="0.0836%" height="15" fill="rgb(208,207,28)" fg:x="491219" fg:w="799"/><text x="51.6336%" y="719.50"></text></g><g><title>read_extent_buffer (173 samples, 0.02%)</title><rect x="51.4786%" y="725" width="0.0181%" height="15" fill="rgb(209,159,27)" fg:x="492127" fg:w="173"/><text x="51.7286%" y="735.50"></text></g><g><title>btrfs_truncate_inode_items (49,014 samples, 5.13%)</title><rect x="46.3749%" y="741" width="5.1271%" height="15" fill="rgb(251,176,53)" fg:x="443337" fg:w="49014"/><text x="46.6249%" y="751.50">btrfs_..</text></g><g><title>clear_inode (123 samples, 0.01%)</title><rect x="51.5026%" y="741" width="0.0129%" height="15" fill="rgb(211,85,7)" fg:x="492357" fg:w="123"/><text x="51.7526%" y="751.50"></text></g><g><title>_raw_spin_lock_irq (97 samples, 0.01%)</title><rect x="51.5054%" y="725" width="0.0101%" height="15" fill="rgb(216,64,54)" fg:x="492383" fg:w="97"/><text x="51.7554%" y="735.50"></text></g><g><title>clear_state_bit (220 samples, 0.02%)</title><rect x="51.5455%" y="693" width="0.0230%" height="15" fill="rgb(217,54,24)" fg:x="492767" fg:w="220"/><text x="51.7955%" y="703.50"></text></g><g><title>free_extent_state (110 samples, 0.01%)</title><rect x="51.5570%" y="677" width="0.0115%" height="15" fill="rgb(208,206,53)" fg:x="492877" fg:w="110"/><text x="51.8070%" y="687.50"></text></g><g><title>kmem_cache_free (102 samples, 0.01%)</title><rect x="51.5579%" y="661" width="0.0107%" height="15" fill="rgb(251,74,39)" fg:x="492885" fg:w="102"/><text x="51.8079%" y="671.50"></text></g><g><title>__clear_extent_bit (393 samples, 0.04%)</title><rect x="51.5328%" y="709" width="0.0411%" height="15" fill="rgb(226,47,5)" fg:x="492645" fg:w="393"/><text x="51.7828%" y="719.50"></text></g><g><title>clear_extent_bit (412 samples, 0.04%)</title><rect x="51.5326%" y="725" width="0.0431%" height="15" fill="rgb(234,111,33)" fg:x="492643" fg:w="412"/><text x="51.7826%" y="735.50"></text></g><g><title>free_extent_map (98 samples, 0.01%)</title><rect x="51.5757%" y="725" width="0.0103%" height="15" fill="rgb(251,14,10)" fg:x="493055" fg:w="98"/><text x="51.8257%" y="735.50"></text></g><g><title>set_extent_bit (241 samples, 0.03%)</title><rect x="51.5901%" y="709" width="0.0252%" height="15" fill="rgb(232,43,0)" fg:x="493193" fg:w="241"/><text x="51.8401%" y="719.50"></text></g><g><title>lock_extent_bits (291 samples, 0.03%)</title><rect x="51.5861%" y="725" width="0.0304%" height="15" fill="rgb(222,68,43)" fg:x="493155" fg:w="291"/><text x="51.8361%" y="735.50"></text></g><g><title>__pagevec_lru_add_fn (147 samples, 0.02%)</title><rect x="51.6617%" y="645" width="0.0154%" height="15" fill="rgb(217,24,23)" fg:x="493878" fg:w="147"/><text x="51.9117%" y="655.50"></text></g><g><title>__pagevec_lru_add (238 samples, 0.02%)</title><rect x="51.6585%" y="661" width="0.0249%" height="15" fill="rgb(229,209,14)" fg:x="493847" fg:w="238"/><text x="51.9085%" y="671.50"></text></g><g><title>lru_add_drain_cpu (343 samples, 0.04%)</title><rect x="51.6544%" y="677" width="0.0359%" height="15" fill="rgb(250,149,48)" fg:x="493808" fg:w="343"/><text x="51.9044%" y="687.50"></text></g><g><title>page_counter_cancel (104 samples, 0.01%)</title><rect x="51.7083%" y="613" width="0.0109%" height="15" fill="rgb(210,120,37)" fg:x="494323" fg:w="104"/><text x="51.9583%" y="623.50"></text></g><g><title>uncharge_batch (186 samples, 0.02%)</title><rect x="51.7000%" y="645" width="0.0195%" height="15" fill="rgb(210,21,8)" fg:x="494244" fg:w="186"/><text x="51.9500%" y="655.50"></text></g><g><title>page_counter_uncharge (112 samples, 0.01%)</title><rect x="51.7078%" y="629" width="0.0117%" height="15" fill="rgb(243,145,7)" fg:x="494318" fg:w="112"/><text x="51.9578%" y="639.50"></text></g><g><title>__mem_cgroup_uncharge_list (247 samples, 0.03%)</title><rect x="51.6969%" y="661" width="0.0258%" height="15" fill="rgb(238,178,32)" fg:x="494214" fg:w="247"/><text x="51.9469%" y="671.50"></text></g><g><title>free_unref_page_list (193 samples, 0.02%)</title><rect x="51.7285%" y="661" width="0.0202%" height="15" fill="rgb(222,4,10)" fg:x="494516" fg:w="193"/><text x="51.9785%" y="671.50"></text></g><g><title>__pagevec_release (992 samples, 0.10%)</title><rect x="51.6496%" y="693" width="0.1038%" height="15" fill="rgb(239,7,37)" fg:x="493762" fg:w="992"/><text x="51.8996%" y="703.50"></text></g><g><title>release_pages (601 samples, 0.06%)</title><rect x="51.6905%" y="677" width="0.0629%" height="15" fill="rgb(215,31,37)" fg:x="494153" fg:w="601"/><text x="51.9405%" y="687.50"></text></g><g><title>page_cache_delete_batch (201 samples, 0.02%)</title><rect x="51.7597%" y="677" width="0.0210%" height="15" fill="rgb(224,83,33)" fg:x="494814" fg:w="201"/><text x="52.0097%" y="687.50"></text></g><g><title>xas_store (119 samples, 0.01%)</title><rect x="51.7682%" y="661" width="0.0124%" height="15" fill="rgb(239,55,3)" fg:x="494896" fg:w="119"/><text x="52.0182%" y="671.50"></text></g><g><title>unaccount_page_cache_page (158 samples, 0.02%)</title><rect x="51.7824%" y="677" width="0.0165%" height="15" fill="rgb(247,92,11)" fg:x="495031" fg:w="158"/><text x="52.0324%" y="687.50"></text></g><g><title>__mod_lruvec_page_state (132 samples, 0.01%)</title><rect x="51.7851%" y="661" width="0.0138%" height="15" fill="rgb(239,200,7)" fg:x="495057" fg:w="132"/><text x="52.0351%" y="671.50"></text></g><g><title>delete_from_page_cache_batch (424 samples, 0.04%)</title><rect x="51.7560%" y="693" width="0.0444%" height="15" fill="rgb(227,115,8)" fg:x="494779" fg:w="424"/><text x="52.0060%" y="703.50"></text></g><g><title>find_lock_entries (191 samples, 0.02%)</title><rect x="51.8031%" y="693" width="0.0200%" height="15" fill="rgb(215,189,27)" fg:x="495229" fg:w="191"/><text x="52.0531%" y="703.50"></text></g><g><title>truncate_cleanup_page (176 samples, 0.02%)</title><rect x="51.8283%" y="693" width="0.0184%" height="15" fill="rgb(251,216,39)" fg:x="495470" fg:w="176"/><text x="52.0783%" y="703.50"></text></g><g><title>truncate_inode_pages_range (2,022 samples, 0.21%)</title><rect x="51.6385%" y="709" width="0.2115%" height="15" fill="rgb(207,29,47)" fg:x="493656" fg:w="2022"/><text x="51.8885%" y="719.50"></text></g><g><title>truncate_inode_pages_final (2,227 samples, 0.23%)</title><rect x="51.6185%" y="725" width="0.2330%" height="15" fill="rgb(210,71,34)" fg:x="493465" fg:w="2227"/><text x="51.8685%" y="735.50"></text></g><g><title>evict_inode_truncate_pages (3,226 samples, 0.34%)</title><rect x="51.5155%" y="741" width="0.3375%" height="15" fill="rgb(253,217,51)" fg:x="492480" fg:w="3226"/><text x="51.7655%" y="751.50"></text></g><g><title>_raw_spin_lock (331 samples, 0.03%)</title><rect x="51.8606%" y="725" width="0.0346%" height="15" fill="rgb(222,117,46)" fg:x="495779" fg:w="331"/><text x="52.1106%" y="735.50"></text></g><g><title>_raw_spin_lock (110 samples, 0.01%)</title><rect x="51.9758%" y="661" width="0.0115%" height="15" fill="rgb(226,132,6)" fg:x="496880" fg:w="110"/><text x="52.2258%" y="671.50"></text></g><g><title>need_preemptive_reclaim (687 samples, 0.07%)</title><rect x="51.9489%" y="677" width="0.0719%" height="15" fill="rgb(254,145,51)" fg:x="496623" fg:w="687"/><text x="52.1989%" y="687.50"></text></g><g><title>btrfs_get_alloc_profile (319 samples, 0.03%)</title><rect x="51.9874%" y="661" width="0.0334%" height="15" fill="rgb(231,199,27)" fg:x="496991" fg:w="319"/><text x="52.2374%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (156 samples, 0.02%)</title><rect x="52.0310%" y="661" width="0.0163%" height="15" fill="rgb(245,158,14)" fg:x="497408" fg:w="156"/><text x="52.2810%" y="671.50"></text></g><g><title>idr_find (197 samples, 0.02%)</title><rect x="52.0473%" y="661" width="0.0206%" height="15" fill="rgb(240,113,14)" fg:x="497564" fg:w="197"/><text x="52.2973%" y="671.50"></text></g><g><title>radix_tree_lookup (186 samples, 0.02%)</title><rect x="52.0485%" y="645" width="0.0195%" height="15" fill="rgb(210,20,13)" fg:x="497575" fg:w="186"/><text x="52.2985%" y="655.50"></text></g><g><title>__radix_tree_lookup (184 samples, 0.02%)</title><rect x="52.0487%" y="629" width="0.0192%" height="15" fill="rgb(241,144,13)" fg:x="497577" fg:w="184"/><text x="52.2987%" y="639.50"></text></g><g><title>__reserve_bytes (1,543 samples, 0.16%)</title><rect x="51.9079%" y="693" width="0.1614%" height="15" fill="rgb(235,43,34)" fg:x="496231" fg:w="1543"/><text x="52.1579%" y="703.50"></text></g><g><title>work_busy (461 samples, 0.05%)</title><rect x="52.0211%" y="677" width="0.0482%" height="15" fill="rgb(208,36,20)" fg:x="497313" fg:w="461"/><text x="52.2711%" y="687.50"></text></g><g><title>_raw_spin_lock (99 samples, 0.01%)</title><rect x="52.0693%" y="693" width="0.0104%" height="15" fill="rgb(239,204,10)" fg:x="497774" fg:w="99"/><text x="52.3193%" y="703.50"></text></g><g><title>btrfs_block_rsv_refill (1,821 samples, 0.19%)</title><rect x="51.8993%" y="725" width="0.1905%" height="15" fill="rgb(217,84,43)" fg:x="496149" fg:w="1821"/><text x="52.1493%" y="735.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,764 samples, 0.18%)</title><rect x="51.9053%" y="709" width="0.1845%" height="15" fill="rgb(241,170,50)" fg:x="496206" fg:w="1764"/><text x="52.1553%" y="719.50"></text></g><g><title>_raw_spin_lock (171 samples, 0.02%)</title><rect x="52.1252%" y="693" width="0.0179%" height="15" fill="rgb(226,205,29)" fg:x="498309" fg:w="171"/><text x="52.3752%" y="703.50"></text></g><g><title>join_transaction (183 samples, 0.02%)</title><rect x="52.1460%" y="693" width="0.0191%" height="15" fill="rgb(233,113,1)" fg:x="498507" fg:w="183"/><text x="52.3960%" y="703.50"></text></g><g><title>kmem_cache_alloc (262 samples, 0.03%)</title><rect x="52.1651%" y="693" width="0.0274%" height="15" fill="rgb(253,98,13)" fg:x="498690" fg:w="262"/><text x="52.4151%" y="703.50"></text></g><g><title>btrfs_join_transaction (1,103 samples, 0.12%)</title><rect x="52.0898%" y="725" width="0.1154%" height="15" fill="rgb(211,115,12)" fg:x="497970" fg:w="1103"/><text x="52.3398%" y="735.50"></text></g><g><title>start_transaction (1,061 samples, 0.11%)</title><rect x="52.0942%" y="709" width="0.1110%" height="15" fill="rgb(208,12,16)" fg:x="498012" fg:w="1061"/><text x="52.3442%" y="719.50"></text></g><g><title>evict_refill_and_join (3,446 samples, 0.36%)</title><rect x="51.8530%" y="741" width="0.3605%" height="15" fill="rgb(237,193,54)" fg:x="495706" fg:w="3446"/><text x="52.1030%" y="751.50"></text></g><g><title>mutex_unlock (107 samples, 0.01%)</title><rect x="52.2307%" y="741" width="0.0112%" height="15" fill="rgb(243,22,42)" fg:x="499317" fg:w="107"/><text x="52.4807%" y="751.50"></text></g><g><title>btrfs_evict_inode (143,902 samples, 15.05%)</title><rect x="37.2068%" y="757" width="15.0528%" height="15" fill="rgb(233,151,36)" fg:x="355691" fg:w="143902"/><text x="37.4568%" y="767.50">btrfs_evict_inode</text></g><g><title>fsnotify_destroy_marks (212 samples, 0.02%)</title><rect x="52.2989%" y="709" width="0.0222%" height="15" fill="rgb(237,57,45)" fg:x="499969" fg:w="212"/><text x="52.5489%" y="719.50"></text></g><g><title>fsnotify_grab_connector (140 samples, 0.01%)</title><rect x="52.3064%" y="693" width="0.0146%" height="15" fill="rgb(221,88,17)" fg:x="500041" fg:w="140"/><text x="52.5564%" y="703.50"></text></g><g><title>__fsnotify_inode_delete (233 samples, 0.02%)</title><rect x="52.2989%" y="725" width="0.0244%" height="15" fill="rgb(230,79,15)" fg:x="499969" fg:w="233"/><text x="52.5489%" y="735.50"></text></g><g><title>hook_inode_free_security (368 samples, 0.04%)</title><rect x="52.3287%" y="725" width="0.0385%" height="15" fill="rgb(213,57,13)" fg:x="500254" fg:w="368"/><text x="52.5787%" y="735.50"></text></g><g><title>__call_rcu (194 samples, 0.02%)</title><rect x="52.4005%" y="693" width="0.0203%" height="15" fill="rgb(222,116,39)" fg:x="500940" fg:w="194"/><text x="52.6505%" y="703.50"></text></g><g><title>call_rcu (197 samples, 0.02%)</title><rect x="52.4004%" y="709" width="0.0206%" height="15" fill="rgb(245,107,2)" fg:x="500939" fg:w="197"/><text x="52.6504%" y="719.50"></text></g><g><title>[[falcon_kal]] (472 samples, 0.05%)</title><rect x="52.4820%" y="613" width="0.0494%" height="15" fill="rgb(238,1,10)" fg:x="501720" fg:w="472"/><text x="52.7320%" y="623.50"></text></g><g><title>down_write (456 samples, 0.05%)</title><rect x="52.4837%" y="597" width="0.0477%" height="15" fill="rgb(249,4,48)" fg:x="501736" fg:w="456"/><text x="52.7337%" y="607.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (811 samples, 0.08%)</title><rect x="52.4528%" y="645" width="0.0848%" height="15" fill="rgb(223,151,18)" fg:x="501440" fg:w="811"/><text x="52.7028%" y="655.50"></text></g><g><title>cshook_security_inode_free_security (631 samples, 0.07%)</title><rect x="52.4716%" y="629" width="0.0660%" height="15" fill="rgb(227,65,43)" fg:x="501620" fg:w="631"/><text x="52.7216%" y="639.50"></text></g><g><title>pinnedhook_security_inode_free_security (1,153 samples, 0.12%)</title><rect x="52.4246%" y="709" width="0.1206%" height="15" fill="rgb(218,40,45)" fg:x="501171" fg:w="1153"/><text x="52.6746%" y="719.50"></text></g><g><title>cshook_security_inode_free_security (1,105 samples, 0.12%)</title><rect x="52.4296%" y="693" width="0.1156%" height="15" fill="rgb(252,121,31)" fg:x="501219" fg:w="1105"/><text x="52.6796%" y="703.50"></text></g><g><title>cshook_security_file_free_security (1,020 samples, 0.11%)</title><rect x="52.4385%" y="677" width="0.1067%" height="15" fill="rgb(219,158,43)" fg:x="501304" fg:w="1020"/><text x="52.6885%" y="687.50"></text></g><g><title>cshook_security_file_free_security (884 samples, 0.09%)</title><rect x="52.4528%" y="661" width="0.0925%" height="15" fill="rgb(231,162,42)" fg:x="501440" fg:w="884"/><text x="52.7028%" y="671.50"></text></g><g><title>__destroy_inode (2,485 samples, 0.26%)</title><rect x="52.2857%" y="741" width="0.2599%" height="15" fill="rgb(217,179,25)" fg:x="499843" fg:w="2485"/><text x="52.5357%" y="751.50"></text></g><g><title>security_inode_free (1,608 samples, 0.17%)</title><rect x="52.3774%" y="725" width="0.1682%" height="15" fill="rgb(206,212,31)" fg:x="500720" fg:w="1608"/><text x="52.6274%" y="735.50"></text></g><g><title>kmem_cache_alloc (294 samples, 0.03%)</title><rect x="52.5903%" y="693" width="0.0308%" height="15" fill="rgb(235,144,12)" fg:x="502755" fg:w="294"/><text x="52.8403%" y="703.50"></text></g><g><title>alloc_extent_map (455 samples, 0.05%)</title><rect x="52.5852%" y="709" width="0.0476%" height="15" fill="rgb(213,51,10)" fg:x="502706" fg:w="455"/><text x="52.8352%" y="719.50"></text></g><g><title>kmem_cache_free (313 samples, 0.03%)</title><rect x="52.6414%" y="693" width="0.0327%" height="15" fill="rgb(231,145,14)" fg:x="503243" fg:w="313"/><text x="52.8914%" y="703.50"></text></g><g><title>free_extent_map (408 samples, 0.04%)</title><rect x="52.6328%" y="709" width="0.0427%" height="15" fill="rgb(235,15,28)" fg:x="503161" fg:w="408"/><text x="52.8828%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (980 samples, 0.10%)</title><rect x="52.5769%" y="725" width="0.1025%" height="15" fill="rgb(237,206,10)" fg:x="502627" fg:w="980"/><text x="52.8269%" y="735.50"></text></g><g><title>kmem_cache_alloc (106 samples, 0.01%)</title><rect x="52.6862%" y="661" width="0.0111%" height="15" fill="rgb(236,227,27)" fg:x="503672" fg:w="106"/><text x="52.9362%" y="671.50"></text></g><g><title>alloc_extent_state (177 samples, 0.02%)</title><rect x="52.6834%" y="677" width="0.0185%" height="15" fill="rgb(246,83,35)" fg:x="503645" fg:w="177"/><text x="52.9334%" y="687.50"></text></g><g><title>kmem_cache_free (119 samples, 0.01%)</title><rect x="52.7049%" y="661" width="0.0124%" height="15" fill="rgb(220,136,24)" fg:x="503850" fg:w="119"/><text x="52.9549%" y="671.50"></text></g><g><title>free_extent_state (154 samples, 0.02%)</title><rect x="52.7019%" y="677" width="0.0161%" height="15" fill="rgb(217,3,25)" fg:x="503822" fg:w="154"/><text x="52.9519%" y="687.50"></text></g><g><title>__clear_extent_bit (366 samples, 0.04%)</title><rect x="52.6803%" y="693" width="0.0383%" height="15" fill="rgb(239,24,14)" fg:x="503615" fg:w="366"/><text x="52.9303%" y="703.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (411 samples, 0.04%)</title><rect x="52.6794%" y="725" width="0.0430%" height="15" fill="rgb(244,16,53)" fg:x="503607" fg:w="411"/><text x="52.9294%" y="735.50"></text></g><g><title>clear_extent_bit (408 samples, 0.04%)</title><rect x="52.6798%" y="709" width="0.0427%" height="15" fill="rgb(208,175,44)" fg:x="503610" fg:w="408"/><text x="52.9298%" y="719.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (127 samples, 0.01%)</title><rect x="52.7224%" y="725" width="0.0133%" height="15" fill="rgb(252,18,48)" fg:x="504018" fg:w="127"/><text x="52.9724%" y="735.50"></text></g><g><title>kmem_cache_alloc (172 samples, 0.02%)</title><rect x="52.7693%" y="661" width="0.0180%" height="15" fill="rgb(234,199,32)" fg:x="504466" fg:w="172"/><text x="53.0193%" y="671.50"></text></g><g><title>alloc_extent_state (301 samples, 0.03%)</title><rect x="52.7622%" y="677" width="0.0315%" height="15" fill="rgb(225,77,54)" fg:x="504398" fg:w="301"/><text x="53.0122%" y="687.50"></text></g><g><title>kmem_cache_free (168 samples, 0.02%)</title><rect x="52.7983%" y="661" width="0.0176%" height="15" fill="rgb(225,42,25)" fg:x="504743" fg:w="168"/><text x="53.0483%" y="671.50"></text></g><g><title>free_extent_state (217 samples, 0.02%)</title><rect x="52.7937%" y="677" width="0.0227%" height="15" fill="rgb(242,227,46)" fg:x="504699" fg:w="217"/><text x="53.0437%" y="687.50"></text></g><g><title>__clear_extent_bit (626 samples, 0.07%)</title><rect x="52.7519%" y="693" width="0.0655%" height="15" fill="rgb(246,197,35)" fg:x="504300" fg:w="626"/><text x="53.0019%" y="703.50"></text></g><g><title>clear_record_extent_bits (746 samples, 0.08%)</title><rect x="52.7503%" y="709" width="0.0780%" height="15" fill="rgb(215,159,26)" fg:x="504284" fg:w="746"/><text x="53.0003%" y="719.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (851 samples, 0.09%)</title><rect x="52.7411%" y="725" width="0.0890%" height="15" fill="rgb(212,194,50)" fg:x="504196" fg:w="851"/><text x="52.9911%" y="735.50"></text></g><g><title>btrfs_destroy_inode (2,836 samples, 0.30%)</title><rect x="52.5509%" y="741" width="0.2967%" height="15" fill="rgb(246,132,1)" fg:x="502378" fg:w="2836"/><text x="52.8009%" y="751.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (109 samples, 0.01%)</title><rect x="52.8490%" y="741" width="0.0114%" height="15" fill="rgb(217,71,7)" fg:x="505228" fg:w="109"/><text x="53.0990%" y="751.50"></text></g><g><title>__call_rcu (107 samples, 0.01%)</title><rect x="52.8687%" y="725" width="0.0112%" height="15" fill="rgb(252,59,32)" fg:x="505416" fg:w="107"/><text x="53.1187%" y="735.50"></text></g><g><title>call_rcu (108 samples, 0.01%)</title><rect x="52.8687%" y="741" width="0.0113%" height="15" fill="rgb(253,204,25)" fg:x="505416" fg:w="108"/><text x="53.1187%" y="751.50"></text></g><g><title>rb_erase (818 samples, 0.09%)</title><rect x="52.8837%" y="741" width="0.0856%" height="15" fill="rgb(232,21,16)" fg:x="505560" fg:w="818"/><text x="53.1337%" y="751.50"></text></g><g><title>destroy_inode (6,603 samples, 0.69%)</title><rect x="52.2823%" y="757" width="0.6907%" height="15" fill="rgb(248,90,29)" fg:x="499810" fg:w="6603"/><text x="52.5323%" y="767.50"></text></g><g><title>evict (151,591 samples, 15.86%)</title><rect x="37.1440%" y="773" width="15.8571%" height="15" fill="rgb(249,223,7)" fg:x="355091" fg:w="151591"/><text x="37.3940%" y="783.50">evict</text></g><g><title>iput (152,060 samples, 15.91%)</title><rect x="37.0957%" y="789" width="15.9061%" height="15" fill="rgb(231,119,42)" fg:x="354629" fg:w="152060"/><text x="37.3457%" y="799.50">iput</text></g><g><title>mnt_want_write (121 samples, 0.01%)</title><rect x="53.0130%" y="789" width="0.0127%" height="15" fill="rgb(215,41,35)" fg:x="506796" fg:w="121"/><text x="53.2630%" y="799.50"></text></g><g><title>kmem_cache_free (283 samples, 0.03%)</title><rect x="53.0414%" y="773" width="0.0296%" height="15" fill="rgb(220,44,45)" fg:x="507067" fg:w="283"/><text x="53.2914%" y="783.50"></text></g><g><title>putname (387 samples, 0.04%)</title><rect x="53.0306%" y="789" width="0.0405%" height="15" fill="rgb(253,197,36)" fg:x="506964" fg:w="387"/><text x="53.2806%" y="799.50"></text></g><g><title>security_path_unlink (156 samples, 0.02%)</title><rect x="53.0745%" y="789" width="0.0163%" height="15" fill="rgb(245,225,54)" fg:x="507384" fg:w="156"/><text x="53.3245%" y="799.50"></text></g><g><title>apparmor_path_unlink (122 samples, 0.01%)</title><rect x="53.0781%" y="773" width="0.0128%" height="15" fill="rgb(239,94,37)" fg:x="507418" fg:w="122"/><text x="53.3281%" y="783.50"></text></g><g><title>kmem_cache_alloc (140 samples, 0.01%)</title><rect x="53.2133%" y="725" width="0.0146%" height="15" fill="rgb(242,217,10)" fg:x="508711" fg:w="140"/><text x="53.4633%" y="735.50"></text></g><g><title>btrfs_alloc_path (180 samples, 0.02%)</title><rect x="53.2126%" y="741" width="0.0188%" height="15" fill="rgb(250,193,7)" fg:x="508704" fg:w="180"/><text x="53.4626%" y="751.50"></text></g><g><title>btrfs_alloc_path (146 samples, 0.02%)</title><rect x="53.2442%" y="725" width="0.0153%" height="15" fill="rgb(230,104,19)" fg:x="509006" fg:w="146"/><text x="53.4942%" y="735.50"></text></g><g><title>free_extent_buffer (136 samples, 0.01%)</title><rect x="53.2755%" y="693" width="0.0142%" height="15" fill="rgb(230,181,4)" fg:x="509305" fg:w="136"/><text x="53.5255%" y="703.50"></text></g><g><title>btrfs_release_path (333 samples, 0.03%)</title><rect x="53.2603%" y="709" width="0.0348%" height="15" fill="rgb(216,219,49)" fg:x="509160" fg:w="333"/><text x="53.5103%" y="719.50"></text></g><g><title>kmem_cache_free (156 samples, 0.02%)</title><rect x="53.2969%" y="709" width="0.0163%" height="15" fill="rgb(254,144,0)" fg:x="509510" fg:w="156"/><text x="53.5469%" y="719.50"></text></g><g><title>btrfs_free_path (519 samples, 0.05%)</title><rect x="53.2595%" y="725" width="0.0543%" height="15" fill="rgb(205,209,38)" fg:x="509152" fg:w="519"/><text x="53.5095%" y="735.50"></text></g><g><title>btrfs_bin_search (295 samples, 0.03%)</title><rect x="53.3513%" y="693" width="0.0309%" height="15" fill="rgb(240,21,42)" fg:x="510030" fg:w="295"/><text x="53.6013%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (272 samples, 0.03%)</title><rect x="53.3537%" y="677" width="0.0285%" height="15" fill="rgb(241,132,3)" fg:x="510053" fg:w="272"/><text x="53.6037%" y="687.50"></text></g><g><title>rwsem_optimistic_spin (171 samples, 0.02%)</title><rect x="53.3901%" y="629" width="0.0179%" height="15" fill="rgb(225,14,2)" fg:x="510401" fg:w="171"/><text x="53.6401%" y="639.50"></text></g><g><title>rwsem_down_write_slowpath (189 samples, 0.02%)</title><rect x="53.3899%" y="645" width="0.0198%" height="15" fill="rgb(210,141,35)" fg:x="510399" fg:w="189"/><text x="53.6399%" y="655.50"></text></g><g><title>__btrfs_tree_lock (248 samples, 0.03%)</title><rect x="53.3838%" y="677" width="0.0259%" height="15" fill="rgb(251,14,44)" fg:x="510341" fg:w="248"/><text x="53.6338%" y="687.50"></text></g><g><title>down_write (239 samples, 0.03%)</title><rect x="53.3848%" y="661" width="0.0250%" height="15" fill="rgb(247,48,18)" fg:x="510350" fg:w="239"/><text x="53.6348%" y="671.50"></text></g><g><title>btrfs_lock_root_node (290 samples, 0.03%)</title><rect x="53.3836%" y="693" width="0.0303%" height="15" fill="rgb(225,0,40)" fg:x="510339" fg:w="290"/><text x="53.6336%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (99 samples, 0.01%)</title><rect x="53.4149%" y="677" width="0.0104%" height="15" fill="rgb(221,31,33)" fg:x="510638" fg:w="99"/><text x="53.6649%" y="687.50"></text></g><g><title>btrfs_read_lock_root_node (139 samples, 0.01%)</title><rect x="53.4143%" y="693" width="0.0145%" height="15" fill="rgb(237,42,40)" fg:x="510632" fg:w="139"/><text x="53.6643%" y="703.50"></text></g><g><title>__radix_tree_lookup (107 samples, 0.01%)</title><rect x="53.4750%" y="629" width="0.0112%" height="15" fill="rgb(233,51,29)" fg:x="511212" fg:w="107"/><text x="53.7250%" y="639.50"></text></g><g><title>find_extent_buffer_nolock (148 samples, 0.02%)</title><rect x="53.4708%" y="661" width="0.0155%" height="15" fill="rgb(226,58,20)" fg:x="511172" fg:w="148"/><text x="53.7208%" y="671.50"></text></g><g><title>radix_tree_lookup (108 samples, 0.01%)</title><rect x="53.4750%" y="645" width="0.0113%" height="15" fill="rgb(208,98,7)" fg:x="511212" fg:w="108"/><text x="53.7250%" y="655.50"></text></g><g><title>find_extent_buffer (256 samples, 0.03%)</title><rect x="53.4670%" y="677" width="0.0268%" height="15" fill="rgb(228,143,44)" fg:x="511136" fg:w="256"/><text x="53.7170%" y="687.50"></text></g><g><title>read_block_for_search (500 samples, 0.05%)</title><rect x="53.4435%" y="693" width="0.0523%" height="15" fill="rgb(246,55,38)" fg:x="510911" fg:w="500"/><text x="53.6935%" y="703.50"></text></g><g><title>btrfs_search_slot (1,832 samples, 0.19%)</title><rect x="53.3179%" y="709" width="0.1916%" height="15" fill="rgb(247,87,16)" fg:x="509711" fg:w="1832"/><text x="53.5679%" y="719.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,893 samples, 0.20%)</title><rect x="53.3138%" y="725" width="0.1980%" height="15" fill="rgb(234,129,42)" fg:x="509671" fg:w="1893"/><text x="53.5638%" y="735.50"></text></g><g><title>btrfs_bin_search (366 samples, 0.04%)</title><rect x="53.5502%" y="693" width="0.0383%" height="15" fill="rgb(220,82,16)" fg:x="511931" fg:w="366"/><text x="53.8002%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (346 samples, 0.04%)</title><rect x="53.5523%" y="677" width="0.0362%" height="15" fill="rgb(211,88,4)" fg:x="511951" fg:w="346"/><text x="53.8023%" y="687.50"></text></g><g><title>rwsem_optimistic_spin (122 samples, 0.01%)</title><rect x="53.5952%" y="629" width="0.0128%" height="15" fill="rgb(248,151,21)" fg:x="512362" fg:w="122"/><text x="53.8452%" y="639.50"></text></g><g><title>down_write (163 samples, 0.02%)</title><rect x="53.5915%" y="661" width="0.0171%" height="15" fill="rgb(238,163,6)" fg:x="512326" fg:w="163"/><text x="53.8415%" y="671.50"></text></g><g><title>rwsem_down_write_slowpath (131 samples, 0.01%)</title><rect x="53.5948%" y="645" width="0.0137%" height="15" fill="rgb(209,183,11)" fg:x="512358" fg:w="131"/><text x="53.8448%" y="655.50"></text></g><g><title>__btrfs_tree_lock (175 samples, 0.02%)</title><rect x="53.5903%" y="677" width="0.0183%" height="15" fill="rgb(219,37,20)" fg:x="512315" fg:w="175"/><text x="53.8403%" y="687.50"></text></g><g><title>btrfs_lock_root_node (218 samples, 0.02%)</title><rect x="53.5898%" y="693" width="0.0228%" height="15" fill="rgb(210,158,4)" fg:x="512310" fg:w="218"/><text x="53.8398%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (141 samples, 0.01%)</title><rect x="53.6134%" y="677" width="0.0147%" height="15" fill="rgb(221,167,53)" fg:x="512536" fg:w="141"/><text x="53.8634%" y="687.50"></text></g><g><title>down_read (132 samples, 0.01%)</title><rect x="53.6144%" y="661" width="0.0138%" height="15" fill="rgb(237,151,45)" fg:x="512545" fg:w="132"/><text x="53.8644%" y="671.50"></text></g><g><title>btrfs_read_lock_root_node (195 samples, 0.02%)</title><rect x="53.6129%" y="693" width="0.0204%" height="15" fill="rgb(231,39,3)" fg:x="512531" fg:w="195"/><text x="53.8629%" y="703.50"></text></g><g><title>find_extent_buffer_nolock (187 samples, 0.02%)</title><rect x="53.6797%" y="661" width="0.0196%" height="15" fill="rgb(212,167,28)" fg:x="513169" fg:w="187"/><text x="53.9297%" y="671.50"></text></g><g><title>radix_tree_lookup (132 samples, 0.01%)</title><rect x="53.6854%" y="645" width="0.0138%" height="15" fill="rgb(232,178,8)" fg:x="513224" fg:w="132"/><text x="53.9354%" y="655.50"></text></g><g><title>__radix_tree_lookup (131 samples, 0.01%)</title><rect x="53.6855%" y="629" width="0.0137%" height="15" fill="rgb(225,151,20)" fg:x="513225" fg:w="131"/><text x="53.9355%" y="639.50"></text></g><g><title>find_extent_buffer (302 samples, 0.03%)</title><rect x="53.6762%" y="677" width="0.0316%" height="15" fill="rgb(238,3,37)" fg:x="513136" fg:w="302"/><text x="53.9262%" y="687.50"></text></g><g><title>read_block_for_search (555 samples, 0.06%)</title><rect x="53.6510%" y="693" width="0.0581%" height="15" fill="rgb(251,147,42)" fg:x="512895" fg:w="555"/><text x="53.9010%" y="703.50"></text></g><g><title>btrfs_search_slot (1,942 samples, 0.20%)</title><rect x="53.5182%" y="709" width="0.2031%" height="15" fill="rgb(208,173,10)" fg:x="511625" fg:w="1942"/><text x="53.7682%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (2,113 samples, 0.22%)</title><rect x="53.5118%" y="725" width="0.2210%" height="15" fill="rgb(246,225,4)" fg:x="511564" fg:w="2113"/><text x="53.7618%" y="735.50"></text></g><g><title>free_extent_buffer (117 samples, 0.01%)</title><rect x="53.7495%" y="709" width="0.0122%" height="15" fill="rgb(248,102,6)" fg:x="513837" fg:w="117"/><text x="53.9995%" y="719.50"></text></g><g><title>btrfs_release_path (342 samples, 0.04%)</title><rect x="53.7328%" y="725" width="0.0358%" height="15" fill="rgb(232,6,21)" fg:x="513677" fg:w="342"/><text x="53.9828%" y="735.50"></text></g><g><title>btrfs_del_dir_entries_in_log (5,396 samples, 0.56%)</title><rect x="53.2314%" y="741" width="0.5644%" height="15" fill="rgb(221,179,22)" fg:x="508884" fg:w="5396"/><text x="53.4814%" y="751.50"></text></g><g><title>kmem_cache_alloc (147 samples, 0.02%)</title><rect x="53.8145%" y="693" width="0.0154%" height="15" fill="rgb(252,50,20)" fg:x="514458" fg:w="147"/><text x="54.0645%" y="703.50"></text></g><g><title>btrfs_alloc_path (207 samples, 0.02%)</title><rect x="53.8130%" y="709" width="0.0217%" height="15" fill="rgb(222,56,38)" fg:x="514444" fg:w="207"/><text x="54.0630%" y="719.50"></text></g><g><title>kmem_cache_alloc (100 samples, 0.01%)</title><rect x="53.8430%" y="677" width="0.0105%" height="15" fill="rgb(206,193,29)" fg:x="514730" fg:w="100"/><text x="54.0930%" y="687.50"></text></g><g><title>btrfs_alloc_path (158 samples, 0.02%)</title><rect x="53.8421%" y="693" width="0.0165%" height="15" fill="rgb(239,192,45)" fg:x="514722" fg:w="158"/><text x="54.0921%" y="703.50"></text></g><g><title>free_extent_buffer (143 samples, 0.01%)</title><rect x="53.8754%" y="661" width="0.0150%" height="15" fill="rgb(254,18,36)" fg:x="515040" fg:w="143"/><text x="54.1254%" y="671.50"></text></g><g><title>btrfs_release_path (328 samples, 0.03%)</title><rect x="53.8607%" y="677" width="0.0343%" height="15" fill="rgb(221,127,11)" fg:x="514900" fg:w="328"/><text x="54.1107%" y="687.50"></text></g><g><title>kmem_cache_free (137 samples, 0.01%)</title><rect x="53.8965%" y="677" width="0.0143%" height="15" fill="rgb(234,146,35)" fg:x="515242" fg:w="137"/><text x="54.1465%" y="687.50"></text></g><g><title>btrfs_free_path (496 samples, 0.05%)</title><rect x="53.8597%" y="693" width="0.0519%" height="15" fill="rgb(254,201,37)" fg:x="514890" fg:w="496"/><text x="54.1097%" y="703.50"></text></g><g><title>btrfs_bin_search (303 samples, 0.03%)</title><rect x="53.9417%" y="677" width="0.0317%" height="15" fill="rgb(211,202,23)" fg:x="515674" fg:w="303"/><text x="54.1917%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (273 samples, 0.03%)</title><rect x="53.9448%" y="661" width="0.0286%" height="15" fill="rgb(237,91,2)" fg:x="515704" fg:w="273"/><text x="54.1948%" y="671.50"></text></g><g><title>rwsem_optimistic_spin (225 samples, 0.02%)</title><rect x="53.9805%" y="613" width="0.0235%" height="15" fill="rgb(226,228,36)" fg:x="516045" fg:w="225"/><text x="54.2305%" y="623.50"></text></g><g><title>__btrfs_tree_lock (298 samples, 0.03%)</title><rect x="53.9745%" y="661" width="0.0312%" height="15" fill="rgb(213,63,50)" fg:x="515988" fg:w="298"/><text x="54.2245%" y="671.50"></text></g><g><title>down_write (289 samples, 0.03%)</title><rect x="53.9755%" y="645" width="0.0302%" height="15" fill="rgb(235,194,19)" fg:x="515997" fg:w="289"/><text x="54.2255%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (243 samples, 0.03%)</title><rect x="53.9803%" y="629" width="0.0254%" height="15" fill="rgb(207,204,18)" fg:x="516043" fg:w="243"/><text x="54.2303%" y="639.50"></text></g><g><title>btrfs_lock_root_node (335 samples, 0.04%)</title><rect x="53.9743%" y="677" width="0.0350%" height="15" fill="rgb(248,8,7)" fg:x="515986" fg:w="335"/><text x="54.2243%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (124 samples, 0.01%)</title><rect x="54.0107%" y="661" width="0.0130%" height="15" fill="rgb(223,145,47)" fg:x="516334" fg:w="124"/><text x="54.2607%" y="671.50"></text></g><g><title>down_read (116 samples, 0.01%)</title><rect x="54.0116%" y="645" width="0.0121%" height="15" fill="rgb(228,84,11)" fg:x="516342" fg:w="116"/><text x="54.2616%" y="655.50"></text></g><g><title>btrfs_read_lock_root_node (168 samples, 0.02%)</title><rect x="54.0098%" y="677" width="0.0176%" height="15" fill="rgb(218,76,45)" fg:x="516325" fg:w="168"/><text x="54.2598%" y="687.50"></text></g><g><title>radix_tree_lookup (107 samples, 0.01%)</title><rect x="54.0716%" y="629" width="0.0112%" height="15" fill="rgb(223,80,15)" fg:x="516916" fg:w="107"/><text x="54.3216%" y="639.50"></text></g><g><title>__radix_tree_lookup (104 samples, 0.01%)</title><rect x="54.0719%" y="613" width="0.0109%" height="15" fill="rgb(219,218,33)" fg:x="516919" fg:w="104"/><text x="54.3219%" y="623.50"></text></g><g><title>find_extent_buffer_nolock (133 samples, 0.01%)</title><rect x="54.0690%" y="645" width="0.0139%" height="15" fill="rgb(208,51,11)" fg:x="516891" fg:w="133"/><text x="54.3190%" y="655.50"></text></g><g><title>find_extent_buffer (239 samples, 0.03%)</title><rect x="54.0654%" y="661" width="0.0250%" height="15" fill="rgb(229,165,39)" fg:x="516857" fg:w="239"/><text x="54.3154%" y="671.50"></text></g><g><title>read_block_for_search (468 samples, 0.05%)</title><rect x="54.0430%" y="677" width="0.0490%" height="15" fill="rgb(241,100,24)" fg:x="516642" fg:w="468"/><text x="54.2930%" y="687.50"></text></g><g><title>btrfs_search_slot (1,808 samples, 0.19%)</title><rect x="53.9128%" y="693" width="0.1891%" height="15" fill="rgb(228,14,23)" fg:x="515398" fg:w="1808"/><text x="54.1628%" y="703.50"></text></g><g><title>crc32c (139 samples, 0.01%)</title><rect x="54.1026%" y="693" width="0.0145%" height="15" fill="rgb(247,116,52)" fg:x="517212" fg:w="139"/><text x="54.3526%" y="703.50"></text></g><g><title>btrfs_del_inode_extref (2,768 samples, 0.29%)</title><rect x="53.8353%" y="709" width="0.2895%" height="15" fill="rgb(216,149,33)" fg:x="514657" fg:w="2768"/><text x="54.0853%" y="719.50"></text></g><g><title>free_extent_buffer (140 samples, 0.01%)</title><rect x="54.1456%" y="677" width="0.0146%" height="15" fill="rgb(238,142,29)" fg:x="517623" fg:w="140"/><text x="54.3956%" y="687.50"></text></g><g><title>btrfs_release_path (369 samples, 0.04%)</title><rect x="54.1275%" y="693" width="0.0386%" height="15" fill="rgb(224,83,40)" fg:x="517450" fg:w="369"/><text x="54.3775%" y="703.50"></text></g><g><title>kmem_cache_free (172 samples, 0.02%)</title><rect x="54.1683%" y="693" width="0.0180%" height="15" fill="rgb(234,165,11)" fg:x="517840" fg:w="172"/><text x="54.4183%" y="703.50"></text></g><g><title>btrfs_free_path (588 samples, 0.06%)</title><rect x="54.1249%" y="709" width="0.0615%" height="15" fill="rgb(215,96,23)" fg:x="517425" fg:w="588"/><text x="54.3749%" y="719.50"></text></g><g><title>balance_level (98 samples, 0.01%)</title><rect x="54.2218%" y="693" width="0.0103%" height="15" fill="rgb(233,179,26)" fg:x="518352" fg:w="98"/><text x="54.4718%" y="703.50"></text></g><g><title>btrfs_bin_search (394 samples, 0.04%)</title><rect x="54.2321%" y="693" width="0.0412%" height="15" fill="rgb(225,129,33)" fg:x="518450" fg:w="394"/><text x="54.4821%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (376 samples, 0.04%)</title><rect x="54.2340%" y="677" width="0.0393%" height="15" fill="rgb(237,49,13)" fg:x="518468" fg:w="376"/><text x="54.4840%" y="687.50"></text></g><g><title>rwsem_optimistic_spin (121 samples, 0.01%)</title><rect x="54.2831%" y="629" width="0.0127%" height="15" fill="rgb(211,3,31)" fg:x="518938" fg:w="121"/><text x="54.5331%" y="639.50"></text></g><g><title>__btrfs_tree_lock (215 samples, 0.02%)</title><rect x="54.2759%" y="677" width="0.0225%" height="15" fill="rgb(216,152,19)" fg:x="518869" fg:w="215"/><text x="54.5259%" y="687.50"></text></g><g><title>down_write (199 samples, 0.02%)</title><rect x="54.2776%" y="661" width="0.0208%" height="15" fill="rgb(251,121,35)" fg:x="518885" fg:w="199"/><text x="54.5276%" y="671.50"></text></g><g><title>rwsem_down_write_slowpath (150 samples, 0.02%)</title><rect x="54.2827%" y="645" width="0.0157%" height="15" fill="rgb(210,217,47)" fg:x="518934" fg:w="150"/><text x="54.5327%" y="655.50"></text></g><g><title>btrfs_lock_root_node (266 samples, 0.03%)</title><rect x="54.2751%" y="693" width="0.0278%" height="15" fill="rgb(244,116,22)" fg:x="518861" fg:w="266"/><text x="54.5251%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (157 samples, 0.02%)</title><rect x="54.3037%" y="677" width="0.0164%" height="15" fill="rgb(228,17,21)" fg:x="519135" fg:w="157"/><text x="54.5537%" y="687.50"></text></g><g><title>down_read (149 samples, 0.02%)</title><rect x="54.3046%" y="661" width="0.0156%" height="15" fill="rgb(240,149,34)" fg:x="519143" fg:w="149"/><text x="54.5546%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (101 samples, 0.01%)</title><rect x="54.3096%" y="645" width="0.0106%" height="15" fill="rgb(208,125,47)" fg:x="519191" fg:w="101"/><text x="54.5596%" y="655.50"></text></g><g><title>btrfs_root_node (188 samples, 0.02%)</title><rect x="54.3202%" y="677" width="0.0197%" height="15" fill="rgb(249,186,39)" fg:x="519292" fg:w="188"/><text x="54.5702%" y="687.50"></text></g><g><title>btrfs_read_lock_root_node (355 samples, 0.04%)</title><rect x="54.3030%" y="693" width="0.0371%" height="15" fill="rgb(240,220,33)" fg:x="519128" fg:w="355"/><text x="54.5530%" y="703.50"></text></g><g><title>find_extent_buffer_nolock (389 samples, 0.04%)</title><rect x="54.3887%" y="661" width="0.0407%" height="15" fill="rgb(243,110,23)" fg:x="519947" fg:w="389"/><text x="54.6387%" y="671.50"></text></g><g><title>radix_tree_lookup (257 samples, 0.03%)</title><rect x="54.4025%" y="645" width="0.0269%" height="15" fill="rgb(219,163,46)" fg:x="520079" fg:w="257"/><text x="54.6525%" y="655.50"></text></g><g><title>__radix_tree_lookup (257 samples, 0.03%)</title><rect x="54.4025%" y="629" width="0.0269%" height="15" fill="rgb(216,126,30)" fg:x="520079" fg:w="257"/><text x="54.6525%" y="639.50"></text></g><g><title>mark_page_accessed (129 samples, 0.01%)</title><rect x="54.4294%" y="661" width="0.0135%" height="15" fill="rgb(208,139,11)" fg:x="520336" fg:w="129"/><text x="54.6794%" y="671.50"></text></g><g><title>find_extent_buffer (557 samples, 0.06%)</title><rect x="54.3855%" y="677" width="0.0583%" height="15" fill="rgb(213,118,36)" fg:x="519917" fg:w="557"/><text x="54.6355%" y="687.50"></text></g><g><title>read_block_for_search (831 samples, 0.09%)</title><rect x="54.3582%" y="693" width="0.0869%" height="15" fill="rgb(226,43,17)" fg:x="519656" fg:w="831"/><text x="54.6082%" y="703.50"></text></g><g><title>btrfs_search_slot (2,596 samples, 0.27%)</title><rect x="54.1885%" y="709" width="0.2716%" height="15" fill="rgb(254,217,4)" fg:x="518033" fg:w="2596"/><text x="54.4385%" y="719.50"></text></g><g><title>btrfs_del_inode_ref (6,329 samples, 0.66%)</title><rect x="53.8084%" y="725" width="0.6620%" height="15" fill="rgb(210,134,47)" fg:x="514400" fg:w="6329"/><text x="54.0584%" y="735.50"></text></g><g><title>join_running_log_trans (185 samples, 0.02%)</title><rect x="54.4742%" y="725" width="0.0194%" height="15" fill="rgb(237,24,49)" fg:x="520765" fg:w="185"/><text x="54.7242%" y="735.50"></text></g><g><title>mutex_lock (115 samples, 0.01%)</title><rect x="54.4816%" y="709" width="0.0120%" height="15" fill="rgb(251,39,46)" fg:x="520835" fg:w="115"/><text x="54.7316%" y="719.50"></text></g><g><title>btrfs_del_inode_ref_in_log (6,728 samples, 0.70%)</title><rect x="53.7973%" y="741" width="0.7038%" height="15" fill="rgb(251,220,3)" fg:x="514294" fg:w="6728"/><text x="54.0473%" y="751.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (268 samples, 0.03%)</title><rect x="54.5203%" y="725" width="0.0280%" height="15" fill="rgb(228,105,12)" fg:x="521205" fg:w="268"/><text x="54.7703%" y="735.50"></text></g><g><title>btrfs_get_or_create_delayed_node (393 samples, 0.04%)</title><rect x="54.5543%" y="725" width="0.0411%" height="15" fill="rgb(215,196,1)" fg:x="521530" fg:w="393"/><text x="54.8043%" y="735.50"></text></g><g><title>btrfs_get_delayed_node (371 samples, 0.04%)</title><rect x="54.5566%" y="709" width="0.0388%" height="15" fill="rgb(214,33,39)" fg:x="521552" fg:w="371"/><text x="54.8066%" y="719.50"></text></g><g><title>mutex_lock (156 samples, 0.02%)</title><rect x="54.5954%" y="725" width="0.0163%" height="15" fill="rgb(220,19,52)" fg:x="521923" fg:w="156"/><text x="54.8454%" y="735.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (1,058 samples, 0.11%)</title><rect x="54.5044%" y="741" width="0.1107%" height="15" fill="rgb(221,78,38)" fg:x="521053" fg:w="1058"/><text x="54.7544%" y="751.50"></text></g><g><title>__btrfs_add_delayed_item (374 samples, 0.04%)</title><rect x="54.6273%" y="725" width="0.0391%" height="15" fill="rgb(253,30,16)" fg:x="522228" fg:w="374"/><text x="54.8773%" y="735.50"></text></g><g><title>btrfs_comp_cpu_keys (261 samples, 0.03%)</title><rect x="54.6391%" y="709" width="0.0273%" height="15" fill="rgb(242,65,0)" fg:x="522341" fg:w="261"/><text x="54.8891%" y="719.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (130 samples, 0.01%)</title><rect x="54.6664%" y="725" width="0.0136%" height="15" fill="rgb(235,201,12)" fg:x="522602" fg:w="130"/><text x="54.9164%" y="735.50"></text></g><g><title>_raw_spin_lock (192 samples, 0.02%)</title><rect x="54.6933%" y="709" width="0.0201%" height="15" fill="rgb(233,161,9)" fg:x="522859" fg:w="192"/><text x="54.9433%" y="719.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (263 samples, 0.03%)</title><rect x="54.6893%" y="725" width="0.0275%" height="15" fill="rgb(241,207,41)" fg:x="522821" fg:w="263"/><text x="54.9393%" y="735.50"></text></g><g><title>btrfs_get_or_create_delayed_node (177 samples, 0.02%)</title><rect x="54.7169%" y="725" width="0.0185%" height="15" fill="rgb(212,69,46)" fg:x="523085" fg:w="177"/><text x="54.9669%" y="735.50"></text></g><g><title>btrfs_get_delayed_node (153 samples, 0.02%)</title><rect x="54.7194%" y="709" width="0.0160%" height="15" fill="rgb(239,69,45)" fg:x="523109" fg:w="153"/><text x="54.9694%" y="719.50"></text></g><g><title>kmem_cache_alloc_trace (215 samples, 0.02%)</title><rect x="54.7354%" y="725" width="0.0225%" height="15" fill="rgb(242,117,48)" fg:x="523262" fg:w="215"/><text x="54.9854%" y="735.50"></text></g><g><title>mutex_spin_on_owner (226 samples, 0.02%)</title><rect x="54.7737%" y="677" width="0.0236%" height="15" fill="rgb(228,41,36)" fg:x="523628" fg:w="226"/><text x="55.0237%" y="687.50"></text></g><g><title>__schedule (199 samples, 0.02%)</title><rect x="54.7975%" y="645" width="0.0208%" height="15" fill="rgb(212,3,32)" fg:x="523855" fg:w="199"/><text x="55.0475%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (445 samples, 0.05%)</title><rect x="54.7718%" y="693" width="0.0465%" height="15" fill="rgb(233,41,49)" fg:x="523610" fg:w="445"/><text x="55.0218%" y="703.50"></text></g><g><title>schedule_preempt_disabled (201 samples, 0.02%)</title><rect x="54.7974%" y="677" width="0.0210%" height="15" fill="rgb(252,170,49)" fg:x="523854" fg:w="201"/><text x="55.0474%" y="687.50"></text></g><g><title>schedule (201 samples, 0.02%)</title><rect x="54.7974%" y="661" width="0.0210%" height="15" fill="rgb(229,53,26)" fg:x="523854" fg:w="201"/><text x="55.0474%" y="671.50"></text></g><g><title>__mutex_lock_slowpath (453 samples, 0.05%)</title><rect x="54.7717%" y="709" width="0.0474%" height="15" fill="rgb(217,157,12)" fg:x="523609" fg:w="453"/><text x="55.0217%" y="719.50"></text></g><g><title>mutex_lock (556 samples, 0.06%)</title><rect x="54.7616%" y="725" width="0.0582%" height="15" fill="rgb(227,17,9)" fg:x="523512" fg:w="556"/><text x="55.0116%" y="735.50"></text></g><g><title>mutex_unlock (103 samples, 0.01%)</title><rect x="54.8197%" y="725" width="0.0108%" height="15" fill="rgb(218,84,12)" fg:x="524068" fg:w="103"/><text x="55.0697%" y="735.50"></text></g><g><title>rb_insert_color (139 samples, 0.01%)</title><rect x="54.8305%" y="725" width="0.0145%" height="15" fill="rgb(212,79,24)" fg:x="524171" fg:w="139"/><text x="55.0805%" y="735.50"></text></g><g><title>btrfs_delete_delayed_dir_index (2,148 samples, 0.22%)</title><rect x="54.6211%" y="741" width="0.2247%" height="15" fill="rgb(217,222,37)" fg:x="522169" fg:w="2148"/><text x="54.8711%" y="751.50"></text></g><g><title>steal_from_bitmap.part.0 (101 samples, 0.01%)</title><rect x="54.9409%" y="645" width="0.0106%" height="15" fill="rgb(246,208,8)" fg:x="525226" fg:w="101"/><text x="55.1909%" y="655.50"></text></g><g><title>__btrfs_add_free_space (134 samples, 0.01%)</title><rect x="54.9390%" y="661" width="0.0140%" height="15" fill="rgb(244,133,10)" fg:x="525208" fg:w="134"/><text x="55.1890%" y="671.50"></text></g><g><title>btrfs_add_free_space (136 samples, 0.01%)</title><rect x="54.9390%" y="677" width="0.0142%" height="15" fill="rgb(209,219,41)" fg:x="525208" fg:w="136"/><text x="55.1890%" y="687.50"></text></g><g><title>btrfs_free_tree_block (214 samples, 0.02%)</title><rect x="54.9342%" y="693" width="0.0224%" height="15" fill="rgb(253,175,45)" fg:x="525162" fg:w="214"/><text x="55.1842%" y="703.50"></text></g><g><title>btrfs_del_leaf (244 samples, 0.03%)</title><rect x="54.9337%" y="709" width="0.0255%" height="15" fill="rgb(235,100,37)" fg:x="525157" fg:w="244"/><text x="55.1837%" y="719.50"></text></g><g><title>btrfs_get_32 (165 samples, 0.02%)</title><rect x="54.9592%" y="709" width="0.0173%" height="15" fill="rgb(225,87,19)" fg:x="525401" fg:w="165"/><text x="55.2092%" y="719.50"></text></g><g><title>btrfs_get_token_32 (2,428 samples, 0.25%)</title><rect x="54.9764%" y="709" width="0.2540%" height="15" fill="rgb(217,152,17)" fg:x="525566" fg:w="2428"/><text x="55.2264%" y="719.50"></text></g><g><title>check_setget_bounds.isra.0 (152 samples, 0.02%)</title><rect x="55.2145%" y="693" width="0.0159%" height="15" fill="rgb(235,72,13)" fg:x="527842" fg:w="152"/><text x="55.4645%" y="703.50"></text></g><g><title>btrfs_mark_buffer_dirty (119 samples, 0.01%)</title><rect x="55.2304%" y="709" width="0.0124%" height="15" fill="rgb(233,140,18)" fg:x="527994" fg:w="119"/><text x="55.4804%" y="719.50"></text></g><g><title>btrfs_set_token_32 (2,329 samples, 0.24%)</title><rect x="55.2430%" y="709" width="0.2436%" height="15" fill="rgb(207,212,28)" fg:x="528114" fg:w="2329"/><text x="55.4930%" y="719.50"></text></g><g><title>check_setget_bounds.isra.0 (186 samples, 0.02%)</title><rect x="55.4671%" y="693" width="0.0195%" height="15" fill="rgb(220,130,25)" fg:x="530257" fg:w="186"/><text x="55.7171%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (728 samples, 0.08%)</title><rect x="55.4866%" y="709" width="0.0762%" height="15" fill="rgb(205,55,34)" fg:x="530443" fg:w="728"/><text x="55.7366%" y="719.50"></text></g><g><title>copy_pages (234 samples, 0.02%)</title><rect x="55.5628%" y="709" width="0.0245%" height="15" fill="rgb(237,54,35)" fg:x="531171" fg:w="234"/><text x="55.8128%" y="719.50"></text></g><g><title>leaf_space_used (124 samples, 0.01%)</title><rect x="55.5890%" y="709" width="0.0130%" height="15" fill="rgb(208,67,23)" fg:x="531422" fg:w="124"/><text x="55.8390%" y="719.50"></text></g><g><title>memcpy_extent_buffer (370 samples, 0.04%)</title><rect x="55.6221%" y="693" width="0.0387%" height="15" fill="rgb(206,207,50)" fg:x="531738" fg:w="370"/><text x="55.8721%" y="703.50"></text></g><g><title>memmove (319 samples, 0.03%)</title><rect x="55.6274%" y="677" width="0.0334%" height="15" fill="rgb(213,211,42)" fg:x="531789" fg:w="319"/><text x="55.8774%" y="687.50"></text></g><g><title>memmove_extent_buffer (1,932 samples, 0.20%)</title><rect x="55.6043%" y="709" width="0.2021%" height="15" fill="rgb(252,197,50)" fg:x="531568" fg:w="1932"/><text x="55.8543%" y="719.50"></text></g><g><title>memmove (1,392 samples, 0.15%)</title><rect x="55.6608%" y="693" width="0.1456%" height="15" fill="rgb(251,211,41)" fg:x="532108" fg:w="1392"/><text x="55.9108%" y="703.50"></text></g><g><title>__push_leaf_left (111 samples, 0.01%)</title><rect x="55.8070%" y="693" width="0.0116%" height="15" fill="rgb(229,211,5)" fg:x="533506" fg:w="111"/><text x="56.0570%" y="703.50"></text></g><g><title>push_leaf_left (164 samples, 0.02%)</title><rect x="55.8064%" y="709" width="0.0172%" height="15" fill="rgb(239,36,31)" fg:x="533500" fg:w="164"/><text x="56.0564%" y="719.50"></text></g><g><title>__push_leaf_right (110 samples, 0.01%)</title><rect x="55.8237%" y="693" width="0.0115%" height="15" fill="rgb(248,67,31)" fg:x="533666" fg:w="110"/><text x="56.0737%" y="703.50"></text></g><g><title>push_leaf_right (149 samples, 0.02%)</title><rect x="55.8235%" y="709" width="0.0156%" height="15" fill="rgb(249,55,44)" fg:x="533664" fg:w="149"/><text x="56.0735%" y="719.50"></text></g><g><title>btrfs_del_items (9,445 samples, 0.99%)</title><rect x="54.8529%" y="725" width="0.9880%" height="15" fill="rgb(216,82,12)" fg:x="524385" fg:w="9445"/><text x="55.1029%" y="735.50"></text></g><g><title>btrfs_get_token_32 (329 samples, 0.03%)</title><rect x="55.8512%" y="725" width="0.0344%" height="15" fill="rgb(242,174,1)" fg:x="533929" fg:w="329"/><text x="56.1012%" y="735.50"></text></g><g><title>btrfs_set_token_32 (292 samples, 0.03%)</title><rect x="55.8858%" y="725" width="0.0305%" height="15" fill="rgb(208,120,29)" fg:x="534259" fg:w="292"/><text x="56.1358%" y="735.50"></text></g><g><title>btrfs_delete_one_dir_name (10,296 samples, 1.08%)</title><rect x="54.8458%" y="741" width="1.0770%" height="15" fill="rgb(221,105,43)" fg:x="524317" fg:w="10296"/><text x="55.0958%" y="751.50"></text></g><g><title>btrfs_end_log_trans (135 samples, 0.01%)</title><rect x="55.9228%" y="741" width="0.0141%" height="15" fill="rgb(234,124,22)" fg:x="534613" fg:w="135"/><text x="56.1728%" y="751.50"></text></g><g><title>kmem_cache_free (212 samples, 0.02%)</title><rect x="55.9476%" y="725" width="0.0222%" height="15" fill="rgb(212,23,30)" fg:x="534850" fg:w="212"/><text x="56.1976%" y="735.50"></text></g><g><title>btrfs_free_path (318 samples, 0.03%)</title><rect x="55.9369%" y="741" width="0.0333%" height="15" fill="rgb(219,122,53)" fg:x="534748" fg:w="318"/><text x="56.1869%" y="751.50"></text></g><g><title>btrfs_get_16 (220 samples, 0.02%)</title><rect x="56.0198%" y="709" width="0.0230%" height="15" fill="rgb(248,84,24)" fg:x="535540" fg:w="220"/><text x="56.2698%" y="719.50"></text></g><g><title>memcmp (152 samples, 0.02%)</title><rect x="56.0540%" y="709" width="0.0159%" height="15" fill="rgb(245,115,18)" fg:x="535867" fg:w="152"/><text x="56.3040%" y="719.50"></text></g><g><title>btrfs_match_dir_item_name (630 samples, 0.07%)</title><rect x="56.0101%" y="725" width="0.0659%" height="15" fill="rgb(227,176,51)" fg:x="535448" fg:w="630"/><text x="56.2601%" y="735.50"></text></g><g><title>balance_level (285 samples, 0.03%)</title><rect x="56.1890%" y="709" width="0.0298%" height="15" fill="rgb(229,63,42)" fg:x="537158" fg:w="285"/><text x="56.4390%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (1,545 samples, 0.16%)</title><rect x="56.2236%" y="693" width="0.1616%" height="15" fill="rgb(247,202,24)" fg:x="537489" fg:w="1545"/><text x="56.4736%" y="703.50"></text></g><g><title>btrfs_bin_search (1,592 samples, 0.17%)</title><rect x="56.2188%" y="709" width="0.1665%" height="15" fill="rgb(244,173,20)" fg:x="537443" fg:w="1592"/><text x="56.4688%" y="719.50"></text></g><g><title>_raw_spin_lock_irq (107 samples, 0.01%)</title><rect x="56.4285%" y="645" width="0.0112%" height="15" fill="rgb(242,81,47)" fg:x="539447" fg:w="107"/><text x="56.6785%" y="655.50"></text></g><g><title>osq_lock (5,021 samples, 0.53%)</title><rect x="56.9525%" y="629" width="0.5252%" height="15" fill="rgb(231,185,54)" fg:x="544457" fg:w="5021"/><text x="57.2025%" y="639.50"></text></g><g><title>rwsem_spin_on_owner (357 samples, 0.04%)</title><rect x="57.4856%" y="629" width="0.0373%" height="15" fill="rgb(243,55,32)" fg:x="549553" fg:w="357"/><text x="57.7356%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (10,406 samples, 1.09%)</title><rect x="56.4448%" y="645" width="1.0885%" height="15" fill="rgb(208,167,19)" fg:x="539603" fg:w="10406"/><text x="56.6948%" y="655.50"></text></g><g><title>sched_clock (99 samples, 0.01%)</title><rect x="57.5229%" y="629" width="0.0104%" height="15" fill="rgb(231,72,35)" fg:x="549910" fg:w="99"/><text x="57.7729%" y="639.50"></text></g><g><title>native_sched_clock (98 samples, 0.01%)</title><rect x="57.5230%" y="613" width="0.0103%" height="15" fill="rgb(250,173,51)" fg:x="549911" fg:w="98"/><text x="57.7730%" y="623.50"></text></g><g><title>update_curr (210 samples, 0.02%)</title><rect x="57.5866%" y="565" width="0.0220%" height="15" fill="rgb(209,5,22)" fg:x="550519" fg:w="210"/><text x="57.8366%" y="575.50"></text></g><g><title>update_load_avg (209 samples, 0.02%)</title><rect x="57.6086%" y="565" width="0.0219%" height="15" fill="rgb(250,174,19)" fg:x="550729" fg:w="209"/><text x="57.8586%" y="575.50"></text></g><g><title>dequeue_entity (591 samples, 0.06%)</title><rect x="57.5700%" y="581" width="0.0618%" height="15" fill="rgb(217,3,49)" fg:x="550360" fg:w="591"/><text x="57.8200%" y="591.50"></text></g><g><title>dequeue_task_fair (759 samples, 0.08%)</title><rect x="57.5609%" y="597" width="0.0794%" height="15" fill="rgb(218,225,5)" fg:x="550273" fg:w="759"/><text x="57.8109%" y="607.50"></text></g><g><title>dequeue_task (816 samples, 0.09%)</title><rect x="57.5582%" y="613" width="0.0854%" height="15" fill="rgb(236,89,11)" fg:x="550247" fg:w="816"/><text x="57.8082%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (692 samples, 0.07%)</title><rect x="57.6527%" y="597" width="0.0724%" height="15" fill="rgb(206,33,28)" fg:x="551151" fg:w="692"/><text x="57.9027%" y="607.50"></text></g><g><title>x86_pmu_enable (655 samples, 0.07%)</title><rect x="57.6566%" y="581" width="0.0685%" height="15" fill="rgb(241,56,42)" fg:x="551188" fg:w="655"/><text x="57.9066%" y="591.50"></text></g><g><title>intel_pmu_enable_all (651 samples, 0.07%)</title><rect x="57.6570%" y="565" width="0.0681%" height="15" fill="rgb(222,44,11)" fg:x="551192" fg:w="651"/><text x="57.9070%" y="575.50"></text></g><g><title>native_write_msr (638 samples, 0.07%)</title><rect x="57.6584%" y="549" width="0.0667%" height="15" fill="rgb(234,111,20)" fg:x="551205" fg:w="638"/><text x="57.9084%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (803 samples, 0.08%)</title><rect x="57.6436%" y="613" width="0.0840%" height="15" fill="rgb(237,77,6)" fg:x="551064" fg:w="803"/><text x="57.8936%" y="623.50"></text></g><g><title>pick_next_task_fair (188 samples, 0.02%)</title><rect x="57.7329%" y="597" width="0.0197%" height="15" fill="rgb(235,111,23)" fg:x="551917" fg:w="188"/><text x="57.9829%" y="607.50"></text></g><g><title>pick_next_task (369 samples, 0.04%)</title><rect x="57.7289%" y="613" width="0.0386%" height="15" fill="rgb(251,135,29)" fg:x="551879" fg:w="369"/><text x="57.9789%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (142 samples, 0.01%)</title><rect x="57.7728%" y="597" width="0.0149%" height="15" fill="rgb(217,57,1)" fg:x="552299" fg:w="142"/><text x="58.0228%" y="607.50"></text></g><g><title>prepare_task_switch (185 samples, 0.02%)</title><rect x="57.7685%" y="613" width="0.0194%" height="15" fill="rgb(249,119,31)" fg:x="552258" fg:w="185"/><text x="58.0185%" y="623.50"></text></g><g><title>psi_group_change (390 samples, 0.04%)</title><rect x="57.8038%" y="597" width="0.0408%" height="15" fill="rgb(233,164,33)" fg:x="552595" fg:w="390"/><text x="58.0538%" y="607.50"></text></g><g><title>psi_task_switch (558 samples, 0.06%)</title><rect x="57.7889%" y="613" width="0.0584%" height="15" fill="rgb(250,217,43)" fg:x="552453" fg:w="558"/><text x="58.0389%" y="623.50"></text></g><g><title>__schedule (2,992 samples, 0.31%)</title><rect x="57.5441%" y="629" width="0.3130%" height="15" fill="rgb(232,154,50)" fg:x="550112" fg:w="2992"/><text x="57.7941%" y="639.50"></text></g><g><title>schedule (3,048 samples, 0.32%)</title><rect x="57.5406%" y="645" width="0.3188%" height="15" fill="rgb(227,190,8)" fg:x="550079" fg:w="3048"/><text x="57.7906%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (13,849 samples, 1.45%)</title><rect x="56.4109%" y="661" width="1.4487%" height="15" fill="rgb(209,217,32)" fg:x="539279" fg:w="13849"/><text x="56.6609%" y="671.50"></text></g><g><title>down_write (13,971 samples, 1.46%)</title><rect x="56.4010%" y="677" width="1.4614%" height="15" fill="rgb(243,203,50)" fg:x="539185" fg:w="13971"/><text x="56.6510%" y="687.50"></text></g><g><title>__btrfs_tree_lock (14,011 samples, 1.47%)</title><rect x="56.3979%" y="693" width="1.4656%" height="15" fill="rgb(232,152,27)" fg:x="539155" fg:w="14011"/><text x="56.6479%" y="703.50"></text></g><g><title>btrfs_lock_root_node (14,121 samples, 1.48%)</title><rect x="56.3947%" y="709" width="1.4771%" height="15" fill="rgb(240,34,29)" fg:x="539124" fg:w="14121"/><text x="56.6447%" y="719.50"></text></g><g><title>_raw_spin_lock_irq (96 samples, 0.01%)</title><rect x="57.9179%" y="645" width="0.0100%" height="15" fill="rgb(215,185,52)" fg:x="553686" fg:w="96"/><text x="58.1679%" y="655.50"></text></g><g><title>update_curr (186 samples, 0.02%)</title><rect x="57.9750%" y="565" width="0.0195%" height="15" fill="rgb(240,89,49)" fg:x="554232" fg:w="186"/><text x="58.2250%" y="575.50"></text></g><g><title>update_load_avg (182 samples, 0.02%)</title><rect x="57.9945%" y="565" width="0.0190%" height="15" fill="rgb(225,12,52)" fg:x="554418" fg:w="182"/><text x="58.2445%" y="575.50"></text></g><g><title>dequeue_entity (520 samples, 0.05%)</title><rect x="57.9607%" y="581" width="0.0544%" height="15" fill="rgb(239,128,45)" fg:x="554095" fg:w="520"/><text x="58.2107%" y="591.50"></text></g><g><title>dequeue_task_fair (675 samples, 0.07%)</title><rect x="57.9537%" y="597" width="0.0706%" height="15" fill="rgb(211,78,47)" fg:x="554028" fg:w="675"/><text x="58.2037%" y="607.50"></text></g><g><title>dequeue_task (731 samples, 0.08%)</title><rect x="57.9500%" y="613" width="0.0765%" height="15" fill="rgb(232,31,21)" fg:x="553993" fg:w="731"/><text x="58.2000%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (415 samples, 0.04%)</title><rect x="58.0347%" y="597" width="0.0434%" height="15" fill="rgb(222,168,14)" fg:x="554802" fg:w="415"/><text x="58.2847%" y="607.50"></text></g><g><title>x86_pmu_enable (400 samples, 0.04%)</title><rect x="58.0362%" y="581" width="0.0418%" height="15" fill="rgb(209,128,24)" fg:x="554817" fg:w="400"/><text x="58.2862%" y="591.50"></text></g><g><title>intel_pmu_enable_all (397 samples, 0.04%)</title><rect x="58.0365%" y="565" width="0.0415%" height="15" fill="rgb(249,35,13)" fg:x="554820" fg:w="397"/><text x="58.2865%" y="575.50"></text></g><g><title>native_write_msr (382 samples, 0.04%)</title><rect x="58.0381%" y="549" width="0.0400%" height="15" fill="rgb(218,7,2)" fg:x="554835" fg:w="382"/><text x="58.2881%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (546 samples, 0.06%)</title><rect x="58.0267%" y="613" width="0.0571%" height="15" fill="rgb(238,107,27)" fg:x="554726" fg:w="546"/><text x="58.2767%" y="623.50"></text></g><g><title>pick_next_task_fair (171 samples, 0.02%)</title><rect x="58.0898%" y="597" width="0.0179%" height="15" fill="rgb(217,88,38)" fg:x="555329" fg:w="171"/><text x="58.3398%" y="607.50"></text></g><g><title>pick_next_task_idle (101 samples, 0.01%)</title><rect x="58.1077%" y="597" width="0.0106%" height="15" fill="rgb(230,207,0)" fg:x="555500" fg:w="101"/><text x="58.3577%" y="607.50"></text></g><g><title>pick_next_task (363 samples, 0.04%)</title><rect x="58.0852%" y="613" width="0.0380%" height="15" fill="rgb(249,64,54)" fg:x="555285" fg:w="363"/><text x="58.3352%" y="623.50"></text></g><g><title>perf_event_context_sched_out (97 samples, 0.01%)</title><rect x="58.1324%" y="581" width="0.0101%" height="15" fill="rgb(231,7,11)" fg:x="555736" fg:w="97"/><text x="58.3824%" y="591.50"></text></g><g><title>__perf_event_task_sched_out (155 samples, 0.02%)</title><rect x="58.1285%" y="597" width="0.0162%" height="15" fill="rgb(205,149,21)" fg:x="555699" fg:w="155"/><text x="58.3785%" y="607.50"></text></g><g><title>prepare_task_switch (192 samples, 0.02%)</title><rect x="58.1248%" y="613" width="0.0201%" height="15" fill="rgb(215,126,34)" fg:x="555664" fg:w="192"/><text x="58.3748%" y="623.50"></text></g><g><title>psi_group_change (335 samples, 0.04%)</title><rect x="58.1579%" y="597" width="0.0350%" height="15" fill="rgb(241,132,45)" fg:x="555980" fg:w="335"/><text x="58.4079%" y="607.50"></text></g><g><title>psi_task_switch (467 samples, 0.05%)</title><rect x="58.1463%" y="613" width="0.0489%" height="15" fill="rgb(252,69,32)" fg:x="555869" fg:w="467"/><text x="58.3963%" y="623.50"></text></g><g><title>__schedule (2,589 samples, 0.27%)</title><rect x="57.9337%" y="629" width="0.2708%" height="15" fill="rgb(232,204,19)" fg:x="553837" fg:w="2589"/><text x="58.1837%" y="639.50"></text></g><g><title>schedule (2,639 samples, 0.28%)</title><rect x="57.9314%" y="645" width="0.2761%" height="15" fill="rgb(249,15,47)" fg:x="553815" fg:w="2639"/><text x="58.1814%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (2,974 samples, 0.31%)</title><rect x="57.9000%" y="661" width="0.3111%" height="15" fill="rgb(209,227,23)" fg:x="553515" fg:w="2974"/><text x="58.1500%" y="671.50"></text></g><g><title>down_read (3,167 samples, 0.33%)</title><rect x="57.8812%" y="677" width="0.3313%" height="15" fill="rgb(248,92,24)" fg:x="553335" fg:w="3167"/><text x="58.1312%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (3,223 samples, 0.34%)</title><rect x="57.8772%" y="693" width="0.3371%" height="15" fill="rgb(247,59,2)" fg:x="553297" fg:w="3223"/><text x="58.1272%" y="703.50"></text></g><g><title>btrfs_root_node (266 samples, 0.03%)</title><rect x="58.2144%" y="693" width="0.0278%" height="15" fill="rgb(221,30,5)" fg:x="556520" fg:w="266"/><text x="58.4644%" y="703.50"></text></g><g><title>btrfs_read_lock_root_node (3,544 samples, 0.37%)</title><rect x="57.8726%" y="709" width="0.3707%" height="15" fill="rgb(208,108,53)" fg:x="553253" fg:w="3544"/><text x="58.1226%" y="719.50"></text></g><g><title>try_to_wake_up (199 samples, 0.02%)</title><rect x="58.2730%" y="629" width="0.0208%" height="15" fill="rgb(211,183,26)" fg:x="557081" fg:w="199"/><text x="58.5230%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (351 samples, 0.04%)</title><rect x="58.2574%" y="661" width="0.0367%" height="15" fill="rgb(232,132,4)" fg:x="556931" fg:w="351"/><text x="58.5074%" y="671.50"></text></g><g><title>wake_up_q (227 samples, 0.02%)</title><rect x="58.2703%" y="645" width="0.0237%" height="15" fill="rgb(253,128,37)" fg:x="557055" fg:w="227"/><text x="58.5203%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (375 samples, 0.04%)</title><rect x="58.2549%" y="693" width="0.0392%" height="15" fill="rgb(221,58,24)" fg:x="556908" fg:w="375"/><text x="58.5049%" y="703.50"></text></g><g><title>up_read (361 samples, 0.04%)</title><rect x="58.2564%" y="677" width="0.0378%" height="15" fill="rgb(230,54,45)" fg:x="556922" fg:w="361"/><text x="58.5064%" y="687.50"></text></g><g><title>btrfs_release_path (601 samples, 0.06%)</title><rect x="58.2469%" y="709" width="0.0629%" height="15" fill="rgb(254,21,18)" fg:x="556831" fg:w="601"/><text x="58.4969%" y="719.50"></text></g><g><title>__schedule (142 samples, 0.01%)</title><rect x="58.3317%" y="645" width="0.0149%" height="15" fill="rgb(221,108,0)" fg:x="557642" fg:w="142"/><text x="58.5817%" y="655.50"></text></g><g><title>__cond_resched (156 samples, 0.02%)</title><rect x="58.3304%" y="661" width="0.0163%" height="15" fill="rgb(206,95,1)" fg:x="557629" fg:w="156"/><text x="58.5804%" y="671.50"></text></g><g><title>rwsem_spin_on_owner (827 samples, 0.09%)</title><rect x="58.4488%" y="629" width="0.0865%" height="15" fill="rgb(237,52,5)" fg:x="558761" fg:w="827"/><text x="58.6988%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (1,761 samples, 0.18%)</title><rect x="58.3525%" y="645" width="0.1842%" height="15" fill="rgb(218,150,34)" fg:x="557841" fg:w="1761"/><text x="58.6025%" y="655.50"></text></g><g><title>__schedule (168 samples, 0.02%)</title><rect x="58.5381%" y="629" width="0.0176%" height="15" fill="rgb(235,194,28)" fg:x="559615" fg:w="168"/><text x="58.7881%" y="639.50"></text></g><g><title>rwsem_down_write_slowpath (1,978 samples, 0.21%)</title><rect x="58.3489%" y="661" width="0.2069%" height="15" fill="rgb(245,92,18)" fg:x="557806" fg:w="1978"/><text x="58.5989%" y="671.50"></text></g><g><title>schedule (170 samples, 0.02%)</title><rect x="58.5380%" y="645" width="0.0178%" height="15" fill="rgb(253,203,53)" fg:x="559614" fg:w="170"/><text x="58.7880%" y="655.50"></text></g><g><title>down_write (2,277 samples, 0.24%)</title><rect x="58.3177%" y="677" width="0.2382%" height="15" fill="rgb(249,185,47)" fg:x="557508" fg:w="2277"/><text x="58.5677%" y="687.50"></text></g><g><title>__btrfs_tree_lock (2,325 samples, 0.24%)</title><rect x="58.3130%" y="693" width="0.2432%" height="15" fill="rgb(252,194,52)" fg:x="557463" fg:w="2325"/><text x="58.5630%" y="703.50"></text></g><g><title>btrfs_tree_lock (2,332 samples, 0.24%)</title><rect x="58.3129%" y="709" width="0.2439%" height="15" fill="rgb(210,53,36)" fg:x="557462" fg:w="2332"/><text x="58.5629%" y="719.50"></text></g><g><title>btrfs_tree_read_unlock (227 samples, 0.02%)</title><rect x="58.5568%" y="709" width="0.0237%" height="15" fill="rgb(237,37,25)" fg:x="559794" fg:w="227"/><text x="58.8068%" y="719.50"></text></g><g><title>up_read (207 samples, 0.02%)</title><rect x="58.5589%" y="693" width="0.0217%" height="15" fill="rgb(242,116,27)" fg:x="559814" fg:w="207"/><text x="58.8089%" y="703.50"></text></g><g><title>rwsem_wake.isra.0 (204 samples, 0.02%)</title><rect x="58.5592%" y="677" width="0.0213%" height="15" fill="rgb(213,185,26)" fg:x="559817" fg:w="204"/><text x="58.8092%" y="687.50"></text></g><g><title>wake_up_q (103 samples, 0.01%)</title><rect x="58.5698%" y="661" width="0.0108%" height="15" fill="rgb(225,204,8)" fg:x="559918" fg:w="103"/><text x="58.8198%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (232 samples, 0.02%)</title><rect x="58.6141%" y="693" width="0.0243%" height="15" fill="rgb(254,111,37)" fg:x="560341" fg:w="232"/><text x="58.8641%" y="703.50"></text></g><g><title>verify_parent_transid (175 samples, 0.02%)</title><rect x="58.6200%" y="677" width="0.0183%" height="15" fill="rgb(242,35,9)" fg:x="560398" fg:w="175"/><text x="58.8700%" y="687.50"></text></g><g><title>btrfs_get_64 (182 samples, 0.02%)</title><rect x="58.6383%" y="693" width="0.0190%" height="15" fill="rgb(232,138,49)" fg:x="560573" fg:w="182"/><text x="58.8883%" y="703.50"></text></g><g><title>btrfs_node_key (314 samples, 0.03%)</title><rect x="58.6574%" y="693" width="0.0328%" height="15" fill="rgb(247,56,4)" fg:x="560755" fg:w="314"/><text x="58.9074%" y="703.50"></text></g><g><title>read_extent_buffer (307 samples, 0.03%)</title><rect x="58.6581%" y="677" width="0.0321%" height="15" fill="rgb(226,179,17)" fg:x="560762" fg:w="307"/><text x="58.9081%" y="687.50"></text></g><g><title>radix_tree_lookup (888 samples, 0.09%)</title><rect x="58.7630%" y="661" width="0.0929%" height="15" fill="rgb(216,163,45)" fg:x="561765" fg:w="888"/><text x="59.0130%" y="671.50"></text></g><g><title>__radix_tree_lookup (886 samples, 0.09%)</title><rect x="58.7632%" y="645" width="0.0927%" height="15" fill="rgb(211,157,3)" fg:x="561767" fg:w="886"/><text x="59.0132%" y="655.50"></text></g><g><title>find_extent_buffer_nolock (1,388 samples, 0.15%)</title><rect x="58.7111%" y="677" width="0.1452%" height="15" fill="rgb(234,44,20)" fg:x="561269" fg:w="1388"/><text x="58.9611%" y="687.50"></text></g><g><title>mark_page_accessed (450 samples, 0.05%)</title><rect x="58.8563%" y="677" width="0.0471%" height="15" fill="rgb(254,138,23)" fg:x="562657" fg:w="450"/><text x="59.1063%" y="687.50"></text></g><g><title>find_extent_buffer (1,959 samples, 0.20%)</title><rect x="58.7015%" y="693" width="0.2049%" height="15" fill="rgb(206,119,39)" fg:x="561177" fg:w="1959"/><text x="58.9515%" y="703.50"></text></g><g><title>read_block_for_search (3,041 samples, 0.32%)</title><rect x="58.5959%" y="709" width="0.3181%" height="15" fill="rgb(231,105,52)" fg:x="560167" fg:w="3041"/><text x="58.8459%" y="719.50"></text></g><g><title>btrfs_get_64 (115 samples, 0.01%)</title><rect x="58.9360%" y="677" width="0.0120%" height="15" fill="rgb(250,20,5)" fg:x="563419" fg:w="115"/><text x="59.1860%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (136 samples, 0.01%)</title><rect x="58.9599%" y="661" width="0.0142%" height="15" fill="rgb(215,198,30)" fg:x="563647" fg:w="136"/><text x="59.2099%" y="671.50"></text></g><g><title>verify_parent_transid (130 samples, 0.01%)</title><rect x="58.9605%" y="645" width="0.0136%" height="15" fill="rgb(246,142,8)" fg:x="563653" fg:w="130"/><text x="59.2105%" y="655.50"></text></g><g><title>find_extent_buffer_nolock (760 samples, 0.08%)</title><rect x="58.9947%" y="613" width="0.0795%" height="15" fill="rgb(243,26,38)" fg:x="563980" fg:w="760"/><text x="59.2447%" y="623.50"></text></g><g><title>radix_tree_lookup (449 samples, 0.05%)</title><rect x="59.0272%" y="597" width="0.0470%" height="15" fill="rgb(205,133,28)" fg:x="564291" fg:w="449"/><text x="59.2772%" y="607.50"></text></g><g><title>__radix_tree_lookup (447 samples, 0.05%)</title><rect x="59.0275%" y="581" width="0.0468%" height="15" fill="rgb(212,34,0)" fg:x="564293" fg:w="447"/><text x="59.2775%" y="591.50"></text></g><g><title>mark_page_accessed (257 samples, 0.03%)</title><rect x="59.0742%" y="613" width="0.0269%" height="15" fill="rgb(251,226,22)" fg:x="564740" fg:w="257"/><text x="59.3242%" y="623.50"></text></g><g><title>find_extent_buffer (1,118 samples, 0.12%)</title><rect x="58.9851%" y="629" width="0.1169%" height="15" fill="rgb(252,119,9)" fg:x="563888" fg:w="1118"/><text x="59.2351%" y="639.50"></text></g><g><title>alloc_extent_buffer (1,238 samples, 0.13%)</title><rect x="58.9744%" y="645" width="0.1295%" height="15" fill="rgb(213,150,50)" fg:x="563786" fg:w="1238"/><text x="59.2244%" y="655.50"></text></g><g><title>btrfs_find_create_tree_block (1,250 samples, 0.13%)</title><rect x="58.9741%" y="661" width="0.1308%" height="15" fill="rgb(212,24,39)" fg:x="563783" fg:w="1250"/><text x="59.2241%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (106 samples, 0.01%)</title><rect x="59.1049%" y="661" width="0.0111%" height="15" fill="rgb(213,46,39)" fg:x="565033" fg:w="106"/><text x="59.3549%" y="671.50"></text></g><g><title>btrfs_readahead_tree_block (1,614 samples, 0.17%)</title><rect x="58.9481%" y="677" width="0.1688%" height="15" fill="rgb(239,106,12)" fg:x="563534" fg:w="1614"/><text x="59.1981%" y="687.50"></text></g><g><title>btrfs_readahead_node_child (1,885 samples, 0.20%)</title><rect x="58.9224%" y="693" width="0.1972%" height="15" fill="rgb(249,229,21)" fg:x="563289" fg:w="1885"/><text x="59.1724%" y="703.50"></text></g><g><title>reada_for_balance (1,992 samples, 0.21%)</title><rect x="58.9140%" y="709" width="0.2084%" height="15" fill="rgb(212,158,3)" fg:x="563208" fg:w="1992"/><text x="59.1640%" y="719.50"></text></g><g><title>rwsem_mark_wake (365 samples, 0.04%)</title><rect x="59.1746%" y="645" width="0.0382%" height="15" fill="rgb(253,26,48)" fg:x="565700" fg:w="365"/><text x="59.4246%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (164 samples, 0.02%)</title><rect x="59.3035%" y="613" width="0.0172%" height="15" fill="rgb(238,178,20)" fg:x="566932" fg:w="164"/><text x="59.5535%" y="623.50"></text></g><g><title>_raw_spin_lock (590 samples, 0.06%)</title><rect x="59.3320%" y="597" width="0.0617%" height="15" fill="rgb(208,86,15)" fg:x="567204" fg:w="590"/><text x="59.5820%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (586 samples, 0.06%)</title><rect x="59.3324%" y="581" width="0.0613%" height="15" fill="rgb(239,42,53)" fg:x="567208" fg:w="586"/><text x="59.5824%" y="591.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (586 samples, 0.06%)</title><rect x="59.3324%" y="565" width="0.0613%" height="15" fill="rgb(245,226,8)" fg:x="567208" fg:w="586"/><text x="59.5824%" y="575.50"></text></g><g><title>raw_spin_rq_lock_nested (600 samples, 0.06%)</title><rect x="59.3315%" y="613" width="0.0628%" height="15" fill="rgb(216,176,32)" fg:x="567200" fg:w="600"/><text x="59.5815%" y="623.50"></text></g><g><title>available_idle_cpu (184 samples, 0.02%)</title><rect x="59.4519%" y="581" width="0.0192%" height="15" fill="rgb(231,186,21)" fg:x="568351" fg:w="184"/><text x="59.7019%" y="591.50"></text></g><g><title>available_idle_cpu (146 samples, 0.02%)</title><rect x="59.5063%" y="565" width="0.0153%" height="15" fill="rgb(205,95,49)" fg:x="568871" fg:w="146"/><text x="59.7563%" y="575.50"></text></g><g><title>cpumask_next_wrap (102 samples, 0.01%)</title><rect x="59.5224%" y="565" width="0.0107%" height="15" fill="rgb(217,145,8)" fg:x="569025" fg:w="102"/><text x="59.7724%" y="575.50"></text></g><g><title>available_idle_cpu (102 samples, 0.01%)</title><rect x="59.5464%" y="549" width="0.0107%" height="15" fill="rgb(239,144,48)" fg:x="569254" fg:w="102"/><text x="59.7964%" y="559.50"></text></g><g><title>select_idle_sibling (1,330 samples, 0.14%)</title><rect x="59.4181%" y="597" width="0.1391%" height="15" fill="rgb(214,189,23)" fg:x="568028" fg:w="1330"/><text x="59.6681%" y="607.50"></text></g><g><title>select_idle_cpu (751 samples, 0.08%)</title><rect x="59.4787%" y="581" width="0.0786%" height="15" fill="rgb(229,157,17)" fg:x="568607" fg:w="751"/><text x="59.7287%" y="591.50"></text></g><g><title>select_idle_core (231 samples, 0.02%)</title><rect x="59.5331%" y="565" width="0.0242%" height="15" fill="rgb(230,5,48)" fg:x="569127" fg:w="231"/><text x="59.7831%" y="575.50"></text></g><g><title>task_h_load (113 samples, 0.01%)</title><rect x="59.5573%" y="597" width="0.0118%" height="15" fill="rgb(224,156,48)" fg:x="569358" fg:w="113"/><text x="59.8073%" y="607.50"></text></g><g><title>available_idle_cpu (134 samples, 0.01%)</title><rect x="59.5758%" y="581" width="0.0140%" height="15" fill="rgb(223,14,29)" fg:x="569535" fg:w="134"/><text x="59.8258%" y="591.50"></text></g><g><title>select_task_rq_fair (1,874 samples, 0.20%)</title><rect x="59.3983%" y="613" width="0.1960%" height="15" fill="rgb(229,96,36)" fg:x="567838" fg:w="1874"/><text x="59.6483%" y="623.50"></text></g><g><title>wake_affine (241 samples, 0.03%)</title><rect x="59.5691%" y="597" width="0.0252%" height="15" fill="rgb(231,102,53)" fg:x="569471" fg:w="241"/><text x="59.8191%" y="607.50"></text></g><g><title>migrate_task_rq_fair (159 samples, 0.02%)</title><rect x="59.6028%" y="597" width="0.0166%" height="15" fill="rgb(210,77,38)" fg:x="569793" fg:w="159"/><text x="59.8528%" y="607.50"></text></g><g><title>remove_entity_load_avg (97 samples, 0.01%)</title><rect x="59.6093%" y="581" width="0.0101%" height="15" fill="rgb(235,131,6)" fg:x="569855" fg:w="97"/><text x="59.8593%" y="591.50"></text></g><g><title>set_task_cpu (250 samples, 0.03%)</title><rect x="59.5943%" y="613" width="0.0262%" height="15" fill="rgb(252,55,38)" fg:x="569712" fg:w="250"/><text x="59.8443%" y="623.50"></text></g><g><title>update_curr (123 samples, 0.01%)</title><rect x="59.6445%" y="549" width="0.0129%" height="15" fill="rgb(246,38,14)" fg:x="570192" fg:w="123"/><text x="59.8945%" y="559.50"></text></g><g><title>update_load_avg (128 samples, 0.01%)</title><rect x="59.6574%" y="549" width="0.0134%" height="15" fill="rgb(242,27,5)" fg:x="570315" fg:w="128"/><text x="59.9074%" y="559.50"></text></g><g><title>enqueue_entity (369 samples, 0.04%)</title><rect x="59.6324%" y="565" width="0.0386%" height="15" fill="rgb(228,65,35)" fg:x="570076" fg:w="369"/><text x="59.8824%" y="575.50"></text></g><g><title>update_cfs_group (124 samples, 0.01%)</title><rect x="59.6719%" y="565" width="0.0130%" height="15" fill="rgb(245,93,11)" fg:x="570454" fg:w="124"/><text x="59.9219%" y="575.50"></text></g><g><title>enqueue_task_fair (678 samples, 0.07%)</title><rect x="59.6243%" y="581" width="0.0709%" height="15" fill="rgb(213,1,31)" fg:x="569999" fg:w="678"/><text x="59.8743%" y="591.50"></text></g><g><title>update_load_avg (98 samples, 0.01%)</title><rect x="59.6850%" y="565" width="0.0103%" height="15" fill="rgb(237,205,14)" fg:x="570579" fg:w="98"/><text x="59.9350%" y="575.50"></text></g><g><title>psi_group_change (472 samples, 0.05%)</title><rect x="59.7060%" y="565" width="0.0494%" height="15" fill="rgb(232,118,45)" fg:x="570780" fg:w="472"/><text x="59.9560%" y="575.50"></text></g><g><title>psi_task_change (600 samples, 0.06%)</title><rect x="59.6956%" y="581" width="0.0628%" height="15" fill="rgb(218,5,6)" fg:x="570680" fg:w="600"/><text x="59.9456%" y="591.50"></text></g><g><title>enqueue_task (1,310 samples, 0.14%)</title><rect x="59.6223%" y="597" width="0.1370%" height="15" fill="rgb(251,87,51)" fg:x="569980" fg:w="1310"/><text x="59.8723%" y="607.50"></text></g><g><title>check_preempt_wakeup (114 samples, 0.01%)</title><rect x="59.7634%" y="565" width="0.0119%" height="15" fill="rgb(207,225,20)" fg:x="571329" fg:w="114"/><text x="60.0134%" y="575.50"></text></g><g><title>check_preempt_curr (154 samples, 0.02%)</title><rect x="59.7617%" y="581" width="0.0161%" height="15" fill="rgb(222,78,54)" fg:x="571312" fg:w="154"/><text x="60.0117%" y="591.50"></text></g><g><title>ttwu_do_activate (1,516 samples, 0.16%)</title><rect x="59.6205%" y="613" width="0.1586%" height="15" fill="rgb(232,85,16)" fg:x="569962" fg:w="1516"/><text x="59.8705%" y="623.50"></text></g><g><title>ttwu_do_wakeup (183 samples, 0.02%)</title><rect x="59.7599%" y="597" width="0.0191%" height="15" fill="rgb(244,25,33)" fg:x="571295" fg:w="183"/><text x="60.0099%" y="607.50"></text></g><g><title>native_send_call_func_single_ipi (112 samples, 0.01%)</title><rect x="59.8152%" y="565" width="0.0117%" height="15" fill="rgb(233,24,36)" fg:x="571824" fg:w="112"/><text x="60.0652%" y="575.50"></text></g><g><title>x2apic_send_IPI (106 samples, 0.01%)</title><rect x="59.8159%" y="549" width="0.0111%" height="15" fill="rgb(253,49,54)" fg:x="571830" fg:w="106"/><text x="60.0659%" y="559.50"></text></g><g><title>__smp_call_single_queue (248 samples, 0.03%)</title><rect x="59.8016%" y="597" width="0.0259%" height="15" fill="rgb(245,12,22)" fg:x="571694" fg:w="248"/><text x="60.0516%" y="607.50"></text></g><g><title>send_call_function_single_ipi (220 samples, 0.02%)</title><rect x="59.8046%" y="581" width="0.0230%" height="15" fill="rgb(253,141,28)" fg:x="571722" fg:w="220"/><text x="60.0546%" y="591.50"></text></g><g><title>llist_add_batch (225 samples, 0.02%)</title><rect x="59.8276%" y="597" width="0.0235%" height="15" fill="rgb(225,207,27)" fg:x="571942" fg:w="225"/><text x="60.0776%" y="607.50"></text></g><g><title>ttwu_queue_wakelist (747 samples, 0.08%)</title><rect x="59.7792%" y="613" width="0.0781%" height="15" fill="rgb(220,84,2)" fg:x="571480" fg:w="747"/><text x="60.0292%" y="623.50"></text></g><g><title>try_to_wake_up (5,952 samples, 0.62%)</title><rect x="59.2436%" y="629" width="0.6226%" height="15" fill="rgb(224,37,37)" fg:x="566359" fg:w="5952"/><text x="59.4936%" y="639.50"></text></g><g><title>rwsem_wake.isra.0 (6,742 samples, 0.71%)</title><rect x="59.1627%" y="661" width="0.7052%" height="15" fill="rgb(220,143,18)" fg:x="565586" fg:w="6742"/><text x="59.4127%" y="671.50"></text></g><g><title>wake_up_q (6,133 samples, 0.64%)</title><rect x="59.2264%" y="645" width="0.6415%" height="15" fill="rgb(210,88,33)" fg:x="566195" fg:w="6133"/><text x="59.4764%" y="655.50"></text></g><g><title>btrfs_tree_unlock (6,790 samples, 0.71%)</title><rect x="59.1578%" y="693" width="0.7103%" height="15" fill="rgb(219,87,51)" fg:x="565539" fg:w="6790"/><text x="59.4078%" y="703.50"></text></g><g><title>up_write (6,756 samples, 0.71%)</title><rect x="59.1613%" y="677" width="0.7067%" height="15" fill="rgb(211,7,35)" fg:x="565573" fg:w="6756"/><text x="59.4113%" y="687.50"></text></g><g><title>unlock_up (7,268 samples, 0.76%)</title><rect x="59.1223%" y="709" width="0.7603%" height="15" fill="rgb(232,77,2)" fg:x="565200" fg:w="7268"/><text x="59.3723%" y="719.50"></text></g><g><title>up_write (139 samples, 0.01%)</title><rect x="59.8681%" y="693" width="0.0145%" height="15" fill="rgb(249,94,25)" fg:x="572329" fg:w="139"/><text x="60.1181%" y="703.50"></text></g><g><title>btrfs_search_slot (36,426 samples, 3.81%)</title><rect x="56.0781%" y="725" width="3.8103%" height="15" fill="rgb(215,112,2)" fg:x="536098" fg:w="36426"/><text x="56.3281%" y="735.50">btrf..</text></g><g><title>crc32c (162 samples, 0.02%)</title><rect x="59.8912%" y="725" width="0.0169%" height="15" fill="rgb(226,115,48)" fg:x="572550" fg:w="162"/><text x="60.1412%" y="735.50"></text></g><g><title>btrfs_lookup_dir_item (37,775 samples, 3.95%)</title><rect x="55.9764%" y="741" width="3.9514%" height="15" fill="rgb(249,196,10)" fg:x="535125" fg:w="37775"/><text x="56.2264%" y="751.50">btrf..</text></g><g><title>try_to_wake_up (378 samples, 0.04%)</title><rect x="59.9527%" y="661" width="0.0395%" height="15" fill="rgb(237,109,14)" fg:x="573138" fg:w="378"/><text x="60.2027%" y="671.50"></text></g><g><title>btrfs_tree_unlock (468 samples, 0.05%)</title><rect x="59.9434%" y="725" width="0.0490%" height="15" fill="rgb(217,103,53)" fg:x="573049" fg:w="468"/><text x="60.1934%" y="735.50"></text></g><g><title>up_write (448 samples, 0.05%)</title><rect x="59.9455%" y="709" width="0.0469%" height="15" fill="rgb(244,137,9)" fg:x="573069" fg:w="448"/><text x="60.1955%" y="719.50"></text></g><g><title>rwsem_wake.isra.0 (447 samples, 0.05%)</title><rect x="59.9456%" y="693" width="0.0468%" height="15" fill="rgb(227,201,3)" fg:x="573070" fg:w="447"/><text x="60.1956%" y="703.50"></text></g><g><title>wake_up_q (390 samples, 0.04%)</title><rect x="59.9515%" y="677" width="0.0408%" height="15" fill="rgb(243,94,6)" fg:x="573127" fg:w="390"/><text x="60.2015%" y="687.50"></text></g><g><title>_raw_spin_lock (113 samples, 0.01%)</title><rect x="59.9945%" y="709" width="0.0118%" height="15" fill="rgb(235,118,5)" fg:x="573538" fg:w="113"/><text x="60.2445%" y="719.50"></text></g><g><title>free_extent_buffer.part.0 (327 samples, 0.03%)</title><rect x="60.0063%" y="709" width="0.0342%" height="15" fill="rgb(247,10,30)" fg:x="573651" fg:w="327"/><text x="60.2563%" y="719.50"></text></g><g><title>release_extent_buffer (136 samples, 0.01%)</title><rect x="60.0263%" y="693" width="0.0142%" height="15" fill="rgb(205,26,28)" fg:x="573842" fg:w="136"/><text x="60.2763%" y="703.50"></text></g><g><title>free_extent_buffer (449 samples, 0.05%)</title><rect x="59.9945%" y="725" width="0.0470%" height="15" fill="rgb(206,99,35)" fg:x="573538" fg:w="449"/><text x="60.2445%" y="735.50"></text></g><g><title>btrfs_release_path (1,141 samples, 0.12%)</title><rect x="59.9318%" y="741" width="0.1194%" height="15" fill="rgb(238,130,40)" fg:x="572938" fg:w="1141"/><text x="60.1818%" y="751.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (135 samples, 0.01%)</title><rect x="60.0762%" y="709" width="0.0141%" height="15" fill="rgb(224,126,31)" fg:x="574319" fg:w="135"/><text x="60.3262%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (99 samples, 0.01%)</title><rect x="60.0983%" y="709" width="0.0104%" height="15" fill="rgb(254,105,17)" fg:x="574530" fg:w="99"/><text x="60.3483%" y="719.50"></text></g><g><title>fill_stack_inode_item (209 samples, 0.02%)</title><rect x="60.1086%" y="709" width="0.0219%" height="15" fill="rgb(216,87,36)" fg:x="574629" fg:w="209"/><text x="60.3586%" y="719.50"></text></g><g><title>btrfs_delayed_update_inode (744 samples, 0.08%)</title><rect x="60.0723%" y="725" width="0.0778%" height="15" fill="rgb(240,21,12)" fg:x="574282" fg:w="744"/><text x="60.3223%" y="735.50"></text></g><g><title>btrfs_update_root_times (134 samples, 0.01%)</title><rect x="60.1508%" y="725" width="0.0140%" height="15" fill="rgb(245,192,34)" fg:x="575032" fg:w="134"/><text x="60.4008%" y="735.50"></text></g><g><title>btrfs_update_inode (1,105 samples, 0.12%)</title><rect x="60.0577%" y="741" width="0.1156%" height="15" fill="rgb(226,100,49)" fg:x="574142" fg:w="1105"/><text x="60.3077%" y="751.50"></text></g><g><title>__btrfs_unlink_inode (67,437 samples, 7.05%)</title><rect x="53.1641%" y="757" width="7.0542%" height="15" fill="rgb(245,188,27)" fg:x="508240" fg:w="67437"/><text x="53.4141%" y="767.50">__btrfs_u..</text></g><g><title>mutex_unlock (178 samples, 0.02%)</title><rect x="60.1996%" y="741" width="0.0186%" height="15" fill="rgb(212,170,8)" fg:x="575499" fg:w="178"/><text x="60.4496%" y="751.50"></text></g><g><title>try_to_wake_up (263 samples, 0.03%)</title><rect x="60.2488%" y="629" width="0.0275%" height="15" fill="rgb(217,113,29)" fg:x="575969" fg:w="263"/><text x="60.4988%" y="639.50"></text></g><g><title>__queue_work (319 samples, 0.03%)</title><rect x="60.2431%" y="677" width="0.0334%" height="15" fill="rgb(237,30,3)" fg:x="575914" fg:w="319"/><text x="60.4931%" y="687.50"></text></g><g><title>insert_work (270 samples, 0.03%)</title><rect x="60.2482%" y="661" width="0.0282%" height="15" fill="rgb(227,19,28)" fg:x="575963" fg:w="270"/><text x="60.4982%" y="671.50"></text></g><g><title>wake_up_process (269 samples, 0.03%)</title><rect x="60.2483%" y="645" width="0.0281%" height="15" fill="rgb(239,172,45)" fg:x="575964" fg:w="269"/><text x="60.4983%" y="655.50"></text></g><g><title>btrfs_queue_work (374 samples, 0.04%)</title><rect x="60.2407%" y="709" width="0.0391%" height="15" fill="rgb(254,55,39)" fg:x="575891" fg:w="374"/><text x="60.4907%" y="719.50"></text></g><g><title>queue_work_on (358 samples, 0.04%)</title><rect x="60.2423%" y="693" width="0.0374%" height="15" fill="rgb(249,208,12)" fg:x="575907" fg:w="358"/><text x="60.4923%" y="703.50"></text></g><g><title>btrfs_wq_run_delayed_node (418 samples, 0.04%)</title><rect x="60.2402%" y="725" width="0.0437%" height="15" fill="rgb(240,52,13)" fg:x="575887" fg:w="418"/><text x="60.4902%" y="735.50"></text></g><g><title>btrfs_balance_delayed_items (509 samples, 0.05%)</title><rect x="60.2322%" y="741" width="0.0532%" height="15" fill="rgb(252,149,13)" fg:x="575810" fg:w="509"/><text x="60.4822%" y="751.50"></text></g><g><title>btrfs_btree_balance_dirty (575 samples, 0.06%)</title><rect x="60.2293%" y="757" width="0.0601%" height="15" fill="rgb(232,81,48)" fg:x="575782" fg:w="575"/><text x="60.4793%" y="767.50"></text></g><g><title>_raw_spin_lock (163 samples, 0.02%)</title><rect x="60.3526%" y="709" width="0.0171%" height="15" fill="rgb(222,144,2)" fg:x="576961" fg:w="163"/><text x="60.6026%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (191 samples, 0.02%)</title><rect x="60.3697%" y="709" width="0.0200%" height="15" fill="rgb(216,81,32)" fg:x="577125" fg:w="191"/><text x="60.6197%" y="719.50"></text></g><g><title>btrfs_trans_release_metadata (391 samples, 0.04%)</title><rect x="60.3505%" y="725" width="0.0409%" height="15" fill="rgb(244,78,51)" fg:x="576941" fg:w="391"/><text x="60.6005%" y="735.50"></text></g><g><title>kmem_cache_free (196 samples, 0.02%)</title><rect x="60.3914%" y="725" width="0.0205%" height="15" fill="rgb(217,66,21)" fg:x="577332" fg:w="196"/><text x="60.6414%" y="735.50"></text></g><g><title>__btrfs_end_transaction (1,100 samples, 0.12%)</title><rect x="60.2973%" y="741" width="0.1151%" height="15" fill="rgb(247,101,42)" fg:x="576433" fg:w="1100"/><text x="60.5473%" y="751.50"></text></g><g><title>btrfs_end_transaction (1,184 samples, 0.12%)</title><rect x="60.2973%" y="757" width="0.1239%" height="15" fill="rgb(227,81,39)" fg:x="576433" fg:w="1184"/><text x="60.5473%" y="767.50"></text></g><g><title>kmem_cache_alloc (98 samples, 0.01%)</title><rect x="60.4510%" y="709" width="0.0103%" height="15" fill="rgb(220,223,44)" fg:x="577902" fg:w="98"/><text x="60.7010%" y="719.50"></text></g><g><title>btrfs_alloc_path (177 samples, 0.02%)</title><rect x="60.4500%" y="725" width="0.0185%" height="15" fill="rgb(205,218,2)" fg:x="577892" fg:w="177"/><text x="60.7000%" y="735.50"></text></g><g><title>_raw_spin_lock (120 samples, 0.01%)</title><rect x="60.4805%" y="677" width="0.0126%" height="15" fill="rgb(212,207,28)" fg:x="578184" fg:w="120"/><text x="60.7305%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (281 samples, 0.03%)</title><rect x="60.4931%" y="677" width="0.0294%" height="15" fill="rgb(224,12,41)" fg:x="578304" fg:w="281"/><text x="60.7431%" y="687.50"></text></g><g><title>release_extent_buffer (115 samples, 0.01%)</title><rect x="60.5104%" y="661" width="0.0120%" height="15" fill="rgb(216,118,12)" fg:x="578470" fg:w="115"/><text x="60.7604%" y="671.50"></text></g><g><title>free_extent_buffer (408 samples, 0.04%)</title><rect x="60.4805%" y="693" width="0.0427%" height="15" fill="rgb(252,97,46)" fg:x="578184" fg:w="408"/><text x="60.7305%" y="703.50"></text></g><g><title>btrfs_release_path (537 samples, 0.06%)</title><rect x="60.4703%" y="709" width="0.0562%" height="15" fill="rgb(244,206,19)" fg:x="578086" fg:w="537"/><text x="60.7203%" y="719.50"></text></g><g><title>kmem_cache_free (193 samples, 0.02%)</title><rect x="60.5287%" y="709" width="0.0202%" height="15" fill="rgb(231,84,31)" fg:x="578645" fg:w="193"/><text x="60.7787%" y="719.50"></text></g><g><title>btrfs_free_path (771 samples, 0.08%)</title><rect x="60.4685%" y="725" width="0.0806%" height="15" fill="rgb(244,133,0)" fg:x="578069" fg:w="771"/><text x="60.7185%" y="735.50"></text></g><g><title>btrfs_bin_search (998 samples, 0.10%)</title><rect x="60.6401%" y="693" width="0.1044%" height="15" fill="rgb(223,15,50)" fg:x="579710" fg:w="998"/><text x="60.8901%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (959 samples, 0.10%)</title><rect x="60.6442%" y="677" width="0.1003%" height="15" fill="rgb(250,118,49)" fg:x="579749" fg:w="959"/><text x="60.8942%" y="687.50"></text></g><g><title>btrfs_get_32 (103 samples, 0.01%)</title><rect x="60.7602%" y="661" width="0.0108%" height="15" fill="rgb(248,25,38)" fg:x="580858" fg:w="103"/><text x="61.0102%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (224 samples, 0.02%)</title><rect x="60.7496%" y="693" width="0.0234%" height="15" fill="rgb(215,70,14)" fg:x="580756" fg:w="224"/><text x="60.9996%" y="703.50"></text></g><g><title>leaf_space_used (165 samples, 0.02%)</title><rect x="60.7557%" y="677" width="0.0173%" height="15" fill="rgb(215,28,15)" fg:x="580815" fg:w="165"/><text x="61.0057%" y="687.50"></text></g><g><title>update_curr (126 samples, 0.01%)</title><rect x="60.8281%" y="549" width="0.0132%" height="15" fill="rgb(243,6,28)" fg:x="581507" fg:w="126"/><text x="61.0781%" y="559.50"></text></g><g><title>update_load_avg (110 samples, 0.01%)</title><rect x="60.8413%" y="549" width="0.0115%" height="15" fill="rgb(222,130,1)" fg:x="581633" fg:w="110"/><text x="61.0913%" y="559.50"></text></g><g><title>dequeue_entity (331 samples, 0.03%)</title><rect x="60.8194%" y="565" width="0.0346%" height="15" fill="rgb(236,166,44)" fg:x="581424" fg:w="331"/><text x="61.0694%" y="575.50"></text></g><g><title>dequeue_task_fair (431 samples, 0.05%)</title><rect x="60.8146%" y="581" width="0.0451%" height="15" fill="rgb(221,108,14)" fg:x="581378" fg:w="431"/><text x="61.0646%" y="591.50"></text></g><g><title>dequeue_task (460 samples, 0.05%)</title><rect x="60.8133%" y="597" width="0.0481%" height="15" fill="rgb(252,3,45)" fg:x="581365" fg:w="460"/><text x="61.0633%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (302 samples, 0.03%)</title><rect x="60.8658%" y="581" width="0.0316%" height="15" fill="rgb(237,68,30)" fg:x="581867" fg:w="302"/><text x="61.1158%" y="591.50"></text></g><g><title>x86_pmu_enable (283 samples, 0.03%)</title><rect x="60.8678%" y="565" width="0.0296%" height="15" fill="rgb(211,79,22)" fg:x="581886" fg:w="283"/><text x="61.1178%" y="575.50"></text></g><g><title>intel_pmu_enable_all (282 samples, 0.03%)</title><rect x="60.8679%" y="549" width="0.0295%" height="15" fill="rgb(252,185,21)" fg:x="581887" fg:w="282"/><text x="61.1179%" y="559.50"></text></g><g><title>native_write_msr (278 samples, 0.03%)</title><rect x="60.8683%" y="533" width="0.0291%" height="15" fill="rgb(225,189,26)" fg:x="581891" fg:w="278"/><text x="61.1183%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (374 samples, 0.04%)</title><rect x="60.8617%" y="597" width="0.0391%" height="15" fill="rgb(241,30,40)" fg:x="581828" fg:w="374"/><text x="61.1117%" y="607.50"></text></g><g><title>pick_next_task (211 samples, 0.02%)</title><rect x="60.9015%" y="597" width="0.0221%" height="15" fill="rgb(235,215,44)" fg:x="582209" fg:w="211"/><text x="61.1515%" y="607.50"></text></g><g><title>prepare_task_switch (109 samples, 0.01%)</title><rect x="60.9251%" y="597" width="0.0114%" height="15" fill="rgb(205,8,29)" fg:x="582434" fg:w="109"/><text x="61.1751%" y="607.50"></text></g><g><title>psi_group_change (232 samples, 0.02%)</title><rect x="60.9468%" y="581" width="0.0243%" height="15" fill="rgb(241,137,42)" fg:x="582642" fg:w="232"/><text x="61.1968%" y="591.50"></text></g><g><title>psi_task_switch (332 samples, 0.03%)</title><rect x="60.9377%" y="597" width="0.0347%" height="15" fill="rgb(237,155,2)" fg:x="582555" fg:w="332"/><text x="61.1877%" y="607.50"></text></g><g><title>__schedule (1,632 samples, 0.17%)</title><rect x="60.8072%" y="613" width="0.1707%" height="15" fill="rgb(245,29,42)" fg:x="581307" fg:w="1632"/><text x="61.0572%" y="623.50"></text></g><g><title>schedule (1,661 samples, 0.17%)</title><rect x="60.8060%" y="629" width="0.1737%" height="15" fill="rgb(234,101,35)" fg:x="581296" fg:w="1661"/><text x="61.0560%" y="639.50"></text></g><g><title>rwsem_down_read_slowpath (1,885 samples, 0.20%)</title><rect x="60.7854%" y="645" width="0.1972%" height="15" fill="rgb(228,64,37)" fg:x="581099" fg:w="1885"/><text x="61.0354%" y="655.50"></text></g><g><title>down_read (1,968 samples, 0.21%)</title><rect x="60.7774%" y="661" width="0.2059%" height="15" fill="rgb(217,214,36)" fg:x="581022" fg:w="1968"/><text x="61.0274%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (1,987 samples, 0.21%)</title><rect x="60.7758%" y="677" width="0.2078%" height="15" fill="rgb(243,70,3)" fg:x="581007" fg:w="1987"/><text x="61.0258%" y="687.50"></text></g><g><title>btrfs_root_node (152 samples, 0.02%)</title><rect x="60.9839%" y="677" width="0.0159%" height="15" fill="rgb(253,158,52)" fg:x="582996" fg:w="152"/><text x="61.2339%" y="687.50"></text></g><g><title>btrfs_read_lock_root_node (2,160 samples, 0.23%)</title><rect x="60.7741%" y="693" width="0.2259%" height="15" fill="rgb(234,111,54)" fg:x="580991" fg:w="2160"/><text x="61.0241%" y="703.50"></text></g><g><title>osq_lock (562 samples, 0.06%)</title><rect x="61.0712%" y="613" width="0.0588%" height="15" fill="rgb(217,70,32)" fg:x="583831" fg:w="562"/><text x="61.3212%" y="623.50"></text></g><g><title>rwsem_spin_on_owner (1,197 samples, 0.13%)</title><rect x="61.1322%" y="613" width="0.1252%" height="15" fill="rgb(234,18,33)" fg:x="584414" fg:w="1197"/><text x="61.3822%" y="623.50"></text></g><g><title>rwsem_optimistic_spin (2,251 samples, 0.24%)</title><rect x="61.0232%" y="629" width="0.2355%" height="15" fill="rgb(234,12,49)" fg:x="583372" fg:w="2251"/><text x="61.2732%" y="639.50"></text></g><g><title>__schedule (220 samples, 0.02%)</title><rect x="61.2594%" y="613" width="0.0230%" height="15" fill="rgb(236,10,21)" fg:x="585630" fg:w="220"/><text x="61.5094%" y="623.50"></text></g><g><title>rwsem_down_write_slowpath (2,525 samples, 0.26%)</title><rect x="61.0184%" y="645" width="0.2641%" height="15" fill="rgb(248,182,45)" fg:x="583326" fg:w="2525"/><text x="61.2684%" y="655.50"></text></g><g><title>schedule (221 samples, 0.02%)</title><rect x="61.2594%" y="629" width="0.0231%" height="15" fill="rgb(217,95,36)" fg:x="585630" fg:w="221"/><text x="61.5094%" y="639.50"></text></g><g><title>down_write (2,664 samples, 0.28%)</title><rect x="61.0039%" y="661" width="0.2787%" height="15" fill="rgb(212,110,31)" fg:x="583188" fg:w="2664"/><text x="61.2539%" y="671.50"></text></g><g><title>__btrfs_tree_lock (2,704 samples, 0.28%)</title><rect x="61.0007%" y="677" width="0.2828%" height="15" fill="rgb(206,32,53)" fg:x="583157" fg:w="2704"/><text x="61.2507%" y="687.50"></text></g><g><title>btrfs_tree_lock (2,711 samples, 0.28%)</title><rect x="61.0006%" y="693" width="0.2836%" height="15" fill="rgb(246,141,37)" fg:x="583156" fg:w="2711"/><text x="61.2506%" y="703.50"></text></g><g><title>dequeue_entity (232 samples, 0.02%)</title><rect x="61.3137%" y="565" width="0.0243%" height="15" fill="rgb(219,16,7)" fg:x="586149" fg:w="232"/><text x="61.5637%" y="575.50"></text></g><g><title>dequeue_task_fair (303 samples, 0.03%)</title><rect x="61.3100%" y="581" width="0.0317%" height="15" fill="rgb(230,205,45)" fg:x="586114" fg:w="303"/><text x="61.5600%" y="591.50"></text></g><g><title>dequeue_task (321 samples, 0.03%)</title><rect x="61.3090%" y="597" width="0.0336%" height="15" fill="rgb(231,43,49)" fg:x="586104" fg:w="321"/><text x="61.5590%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (127 samples, 0.01%)</title><rect x="61.3427%" y="597" width="0.0133%" height="15" fill="rgb(212,106,34)" fg:x="586426" fg:w="127"/><text x="61.5927%" y="607.50"></text></g><g><title>pick_next_task (154 samples, 0.02%)</title><rect x="61.3567%" y="597" width="0.0161%" height="15" fill="rgb(206,83,17)" fg:x="586560" fg:w="154"/><text x="61.6067%" y="607.50"></text></g><g><title>psi_group_change (145 samples, 0.02%)</title><rect x="61.3866%" y="581" width="0.0152%" height="15" fill="rgb(244,154,49)" fg:x="586846" fg:w="145"/><text x="61.6366%" y="591.50"></text></g><g><title>psi_task_switch (205 samples, 0.02%)</title><rect x="61.3810%" y="597" width="0.0214%" height="15" fill="rgb(244,149,49)" fg:x="586793" fg:w="205"/><text x="61.6310%" y="607.50"></text></g><g><title>__schedule (1,017 samples, 0.11%)</title><rect x="61.3031%" y="613" width="0.1064%" height="15" fill="rgb(227,134,18)" fg:x="586048" fg:w="1017"/><text x="61.5531%" y="623.50"></text></g><g><title>schedule (1,039 samples, 0.11%)</title><rect x="61.3015%" y="629" width="0.1087%" height="15" fill="rgb(237,116,36)" fg:x="586033" fg:w="1039"/><text x="61.5515%" y="639.50"></text></g><g><title>rwsem_down_read_slowpath (1,111 samples, 0.12%)</title><rect x="61.2949%" y="645" width="0.1162%" height="15" fill="rgb(205,129,40)" fg:x="585969" fg:w="1111"/><text x="61.5449%" y="655.50"></text></g><g><title>down_read (1,193 samples, 0.12%)</title><rect x="61.2864%" y="661" width="0.1248%" height="15" fill="rgb(236,178,4)" fg:x="585888" fg:w="1193"/><text x="61.5364%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (1,217 samples, 0.13%)</title><rect x="61.2842%" y="677" width="0.1273%" height="15" fill="rgb(251,76,53)" fg:x="585867" fg:w="1217"/><text x="61.5342%" y="687.50"></text></g><g><title>btrfs_tree_read_lock (1,221 samples, 0.13%)</title><rect x="61.2842%" y="693" width="0.1277%" height="15" fill="rgb(242,92,40)" fg:x="585867" fg:w="1221"/><text x="61.5342%" y="703.50"></text></g><g><title>btrfs_buffer_uptodate (157 samples, 0.02%)</title><rect x="61.4345%" y="677" width="0.0164%" height="15" fill="rgb(209,45,30)" fg:x="587304" fg:w="157"/><text x="61.6845%" y="687.50"></text></g><g><title>verify_parent_transid (138 samples, 0.01%)</title><rect x="61.4365%" y="661" width="0.0144%" height="15" fill="rgb(218,157,36)" fg:x="587323" fg:w="138"/><text x="61.6865%" y="671.50"></text></g><g><title>btrfs_get_64 (190 samples, 0.02%)</title><rect x="61.4509%" y="677" width="0.0199%" height="15" fill="rgb(222,186,16)" fg:x="587461" fg:w="190"/><text x="61.7009%" y="687.50"></text></g><g><title>btrfs_node_key (271 samples, 0.03%)</title><rect x="61.4708%" y="677" width="0.0283%" height="15" fill="rgb(254,72,35)" fg:x="587651" fg:w="271"/><text x="61.7208%" y="687.50"></text></g><g><title>read_extent_buffer (258 samples, 0.03%)</title><rect x="61.4722%" y="661" width="0.0270%" height="15" fill="rgb(224,25,35)" fg:x="587664" fg:w="258"/><text x="61.7222%" y="671.50"></text></g><g><title>__radix_tree_lookup (705 samples, 0.07%)</title><rect x="61.5745%" y="629" width="0.0737%" height="15" fill="rgb(206,135,52)" fg:x="588642" fg:w="705"/><text x="61.8245%" y="639.50"></text></g><g><title>radix_tree_lookup (706 samples, 0.07%)</title><rect x="61.5745%" y="645" width="0.0739%" height="15" fill="rgb(229,174,47)" fg:x="588642" fg:w="706"/><text x="61.8245%" y="655.50"></text></g><g><title>find_extent_buffer_nolock (1,224 samples, 0.13%)</title><rect x="61.5205%" y="661" width="0.1280%" height="15" fill="rgb(242,184,21)" fg:x="588126" fg:w="1224"/><text x="61.7705%" y="671.50"></text></g><g><title>mark_page_accessed (332 samples, 0.03%)</title><rect x="61.6485%" y="661" width="0.0347%" height="15" fill="rgb(213,22,45)" fg:x="589350" fg:w="332"/><text x="61.8985%" y="671.50"></text></g><g><title>find_extent_buffer (1,682 samples, 0.18%)</title><rect x="61.5094%" y="677" width="0.1759%" height="15" fill="rgb(237,81,54)" fg:x="588020" fg:w="1682"/><text x="61.7594%" y="687.50"></text></g><g><title>read_block_for_search (2,595 samples, 0.27%)</title><rect x="61.4190%" y="693" width="0.2714%" height="15" fill="rgb(248,177,18)" fg:x="587156" fg:w="2595"/><text x="61.6690%" y="703.50"></text></g><g><title>try_to_wake_up (328 samples, 0.03%)</title><rect x="61.7456%" y="613" width="0.0343%" height="15" fill="rgb(254,31,16)" fg:x="590278" fg:w="328"/><text x="61.9956%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (501 samples, 0.05%)</title><rect x="61.7277%" y="677" width="0.0524%" height="15" fill="rgb(235,20,31)" fg:x="590107" fg:w="501"/><text x="61.9777%" y="687.50"></text></g><g><title>up_read (493 samples, 0.05%)</title><rect x="61.7285%" y="661" width="0.0516%" height="15" fill="rgb(240,56,43)" fg:x="590115" fg:w="493"/><text x="61.9785%" y="671.50"></text></g><g><title>rwsem_wake.isra.0 (491 samples, 0.05%)</title><rect x="61.7288%" y="645" width="0.0514%" height="15" fill="rgb(237,197,51)" fg:x="590117" fg:w="491"/><text x="61.9788%" y="655.50"></text></g><g><title>wake_up_q (354 samples, 0.04%)</title><rect x="61.7431%" y="629" width="0.0370%" height="15" fill="rgb(241,162,44)" fg:x="590254" fg:w="354"/><text x="61.9931%" y="639.50"></text></g><g><title>try_to_wake_up (238 samples, 0.02%)</title><rect x="61.7860%" y="613" width="0.0249%" height="15" fill="rgb(224,23,20)" fg:x="590664" fg:w="238"/><text x="62.0360%" y="623.50"></text></g><g><title>btrfs_tree_unlock (295 samples, 0.03%)</title><rect x="61.7801%" y="677" width="0.0309%" height="15" fill="rgb(250,109,34)" fg:x="590608" fg:w="295"/><text x="62.0301%" y="687.50"></text></g><g><title>up_write (280 samples, 0.03%)</title><rect x="61.7817%" y="661" width="0.0293%" height="15" fill="rgb(214,175,50)" fg:x="590623" fg:w="280"/><text x="62.0317%" y="671.50"></text></g><g><title>rwsem_wake.isra.0 (279 samples, 0.03%)</title><rect x="61.7818%" y="645" width="0.0292%" height="15" fill="rgb(213,182,5)" fg:x="590624" fg:w="279"/><text x="62.0318%" y="655.50"></text></g><g><title>wake_up_q (243 samples, 0.03%)</title><rect x="61.7856%" y="629" width="0.0254%" height="15" fill="rgb(209,199,19)" fg:x="590660" fg:w="243"/><text x="62.0356%" y="639.50"></text></g><g><title>up_read (152 samples, 0.02%)</title><rect x="61.8110%" y="677" width="0.0159%" height="15" fill="rgb(236,224,42)" fg:x="590903" fg:w="152"/><text x="62.0610%" y="687.50"></text></g><g><title>btrfs_search_slot (12,046 samples, 1.26%)</title><rect x="60.5711%" y="709" width="1.2601%" height="15" fill="rgb(246,226,29)" fg:x="579050" fg:w="12046"/><text x="60.8211%" y="719.50"></text></g><g><title>unlock_up (1,308 samples, 0.14%)</title><rect x="61.6943%" y="693" width="0.1368%" height="15" fill="rgb(227,223,11)" fg:x="589788" fg:w="1308"/><text x="61.9443%" y="703.50"></text></g><g><title>btrfs_get_32 (163 samples, 0.02%)</title><rect x="61.9002%" y="661" width="0.0171%" height="15" fill="rgb(219,7,51)" fg:x="591756" fg:w="163"/><text x="62.1502%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (294 samples, 0.03%)</title><rect x="61.8901%" y="693" width="0.0308%" height="15" fill="rgb(245,167,10)" fg:x="591659" fg:w="294"/><text x="62.1401%" y="703.50"></text></g><g><title>leaf_space_used (242 samples, 0.03%)</title><rect x="61.8955%" y="677" width="0.0253%" height="15" fill="rgb(237,224,16)" fg:x="591711" fg:w="242"/><text x="62.1455%" y="687.50"></text></g><g><title>btrfs_mark_buffer_dirty (125 samples, 0.01%)</title><rect x="61.9208%" y="693" width="0.0131%" height="15" fill="rgb(226,132,13)" fg:x="591953" fg:w="125"/><text x="62.1708%" y="703.50"></text></g><g><title>btrfs_set_token_32 (111 samples, 0.01%)</title><rect x="61.9339%" y="693" width="0.0116%" height="15" fill="rgb(214,140,3)" fg:x="592078" fg:w="111"/><text x="62.1839%" y="703.50"></text></g><g><title>btrfs_unlock_up_safe (127 samples, 0.01%)</title><rect x="61.9455%" y="693" width="0.0133%" height="15" fill="rgb(221,177,4)" fg:x="592189" fg:w="127"/><text x="62.1955%" y="703.50"></text></g><g><title>memmove_extent_buffer (99 samples, 0.01%)</title><rect x="61.9708%" y="693" width="0.0104%" height="15" fill="rgb(238,139,3)" fg:x="592431" fg:w="99"/><text x="62.2208%" y="703.50"></text></g><g><title>setup_items_for_insert (1,420 samples, 0.15%)</title><rect x="61.8460%" y="709" width="0.1485%" height="15" fill="rgb(216,17,39)" fg:x="591238" fg:w="1420"/><text x="62.0960%" y="719.50"></text></g><g><title>write_extent_buffer (121 samples, 0.01%)</title><rect x="61.9819%" y="693" width="0.0127%" height="15" fill="rgb(238,120,9)" fg:x="592537" fg:w="121"/><text x="62.2319%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (13,856 samples, 1.45%)</title><rect x="60.5491%" y="725" width="1.4494%" height="15" fill="rgb(244,92,53)" fg:x="578840" fg:w="13856"/><text x="60.7991%" y="735.50"></text></g><g><title>btrfs_orphan_add (15,073 samples, 1.58%)</title><rect x="60.4289%" y="757" width="1.5767%" height="15" fill="rgb(224,148,33)" fg:x="577691" fg:w="15073"/><text x="60.6789%" y="767.50"></text></g><g><title>btrfs_insert_orphan_item (14,929 samples, 1.56%)</title><rect x="60.4440%" y="741" width="1.5616%" height="15" fill="rgb(243,6,36)" fg:x="577835" fg:w="14929"/><text x="60.6940%" y="751.50"></text></g><g><title>btrfs_record_unlink_dir (201 samples, 0.02%)</title><rect x="62.0056%" y="757" width="0.0210%" height="15" fill="rgb(230,102,11)" fg:x="592764" fg:w="201"/><text x="62.2556%" y="767.50"></text></g><g><title>mutex_lock (171 samples, 0.02%)</title><rect x="62.0088%" y="741" width="0.0179%" height="15" fill="rgb(234,148,36)" fg:x="592794" fg:w="171"/><text x="62.2588%" y="751.50"></text></g><g><title>_raw_spin_lock (245 samples, 0.03%)</title><rect x="62.0722%" y="725" width="0.0256%" height="15" fill="rgb(251,153,25)" fg:x="593400" fg:w="245"/><text x="62.3222%" y="735.50"></text></g><g><title>need_preemptive_reclaim (351 samples, 0.04%)</title><rect x="62.1334%" y="677" width="0.0367%" height="15" fill="rgb(215,129,8)" fg:x="593985" fg:w="351"/><text x="62.3834%" y="687.50"></text></g><g><title>btrfs_get_alloc_profile (167 samples, 0.02%)</title><rect x="62.1526%" y="661" width="0.0175%" height="15" fill="rgb(224,128,35)" fg:x="594169" fg:w="167"/><text x="62.4026%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (96 samples, 0.01%)</title><rect x="62.1743%" y="661" width="0.0100%" height="15" fill="rgb(237,56,52)" fg:x="594376" fg:w="96"/><text x="62.4243%" y="671.50"></text></g><g><title>idr_find (155 samples, 0.02%)</title><rect x="62.1844%" y="661" width="0.0162%" height="15" fill="rgb(234,213,19)" fg:x="594473" fg:w="155"/><text x="62.4344%" y="671.50"></text></g><g><title>radix_tree_lookup (126 samples, 0.01%)</title><rect x="62.1874%" y="645" width="0.0132%" height="15" fill="rgb(252,82,23)" fg:x="594502" fg:w="126"/><text x="62.4374%" y="655.50"></text></g><g><title>__radix_tree_lookup (126 samples, 0.01%)</title><rect x="62.1874%" y="629" width="0.0132%" height="15" fill="rgb(254,201,21)" fg:x="594502" fg:w="126"/><text x="62.4374%" y="639.50"></text></g><g><title>__reserve_bytes (890 samples, 0.09%)</title><rect x="62.1087%" y="693" width="0.0931%" height="15" fill="rgb(250,186,11)" fg:x="593749" fg:w="890"/><text x="62.3587%" y="703.50"></text></g><g><title>work_busy (302 samples, 0.03%)</title><rect x="62.1702%" y="677" width="0.0316%" height="15" fill="rgb(211,174,5)" fg:x="594337" fg:w="302"/><text x="62.4202%" y="687.50"></text></g><g><title>_raw_spin_lock (126 samples, 0.01%)</title><rect x="62.2018%" y="693" width="0.0132%" height="15" fill="rgb(214,121,10)" fg:x="594639" fg:w="126"/><text x="62.4518%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (1,198 samples, 0.13%)</title><rect x="62.0982%" y="725" width="0.1253%" height="15" fill="rgb(241,66,2)" fg:x="593649" fg:w="1198"/><text x="62.3482%" y="735.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,171 samples, 0.12%)</title><rect x="62.1010%" y="709" width="0.1225%" height="15" fill="rgb(220,167,19)" fg:x="593676" fg:w="1171"/><text x="62.3510%" y="719.50"></text></g><g><title>join_transaction (136 samples, 0.01%)</title><rect x="62.2275%" y="725" width="0.0142%" height="15" fill="rgb(231,54,50)" fg:x="594885" fg:w="136"/><text x="62.4775%" y="735.50"></text></g><g><title>kmem_cache_alloc (152 samples, 0.02%)</title><rect x="62.2417%" y="725" width="0.0159%" height="15" fill="rgb(239,217,53)" fg:x="595021" fg:w="152"/><text x="62.4917%" y="735.50"></text></g><g><title>start_transaction (2,182 samples, 0.23%)</title><rect x="62.0370%" y="741" width="0.2282%" height="15" fill="rgb(248,8,0)" fg:x="593064" fg:w="2182"/><text x="62.2870%" y="751.50"></text></g><g><title>btrfs_start_transaction_fallback_global_rsv (2,279 samples, 0.24%)</title><rect x="62.0306%" y="757" width="0.2384%" height="15" fill="rgb(229,118,37)" fg:x="593003" fg:w="2279"/><text x="62.2806%" y="767.50"></text></g><g><title>_raw_spin_lock (161 samples, 0.02%)</title><rect x="62.3024%" y="725" width="0.0168%" height="15" fill="rgb(253,223,43)" fg:x="595601" fg:w="161"/><text x="62.5524%" y="735.50"></text></g><g><title>fill_stack_inode_item (111 samples, 0.01%)</title><rect x="62.3295%" y="725" width="0.0116%" height="15" fill="rgb(211,77,36)" fg:x="595860" fg:w="111"/><text x="62.5795%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (729 samples, 0.08%)</title><rect x="62.2786%" y="741" width="0.0763%" height="15" fill="rgb(219,3,53)" fg:x="595373" fg:w="729"/><text x="62.5286%" y="751.50"></text></g><g><title>btrfs_update_inode (940 samples, 0.10%)</title><rect x="62.2690%" y="757" width="0.0983%" height="15" fill="rgb(244,45,42)" fg:x="595282" fg:w="940"/><text x="62.5190%" y="767.50"></text></g><g><title>drop_nlink (107 samples, 0.01%)</title><rect x="62.3680%" y="757" width="0.0112%" height="15" fill="rgb(225,95,27)" fg:x="596228" fg:w="107"/><text x="62.6180%" y="767.50"></text></g><g><title>btrfs_unlink (88,341 samples, 9.24%)</title><rect x="53.1476%" y="773" width="9.2408%" height="15" fill="rgb(207,74,8)" fg:x="508083" fg:w="88341"/><text x="53.3976%" y="783.50">btrfs_unlink</text></g><g><title>fsnotify_destroy_marks (235 samples, 0.02%)</title><rect x="62.4018%" y="725" width="0.0246%" height="15" fill="rgb(243,63,36)" fg:x="596551" fg:w="235"/><text x="62.6518%" y="735.50"></text></g><g><title>fsnotify_grab_connector (139 samples, 0.01%)</title><rect x="62.4118%" y="709" width="0.0145%" height="15" fill="rgb(211,180,12)" fg:x="596647" fg:w="139"/><text x="62.6618%" y="719.50"></text></g><g><title>__fsnotify_inode_delete (274 samples, 0.03%)</title><rect x="62.4017%" y="741" width="0.0287%" height="15" fill="rgb(254,166,49)" fg:x="596550" fg:w="274"/><text x="62.6517%" y="751.50"></text></g><g><title>dentry_unlink_inode (496 samples, 0.05%)</title><rect x="62.3934%" y="757" width="0.0519%" height="15" fill="rgb(205,19,0)" fg:x="596471" fg:w="496"/><text x="62.6434%" y="767.50"></text></g><g><title>d_delete (547 samples, 0.06%)</title><rect x="62.3886%" y="773" width="0.0572%" height="15" fill="rgb(224,172,32)" fg:x="596425" fg:w="547"/><text x="62.6386%" y="783.50"></text></g><g><title>down_write (146 samples, 0.02%)</title><rect x="62.4473%" y="773" width="0.0153%" height="15" fill="rgb(254,136,30)" fg:x="596986" fg:w="146"/><text x="62.6973%" y="783.50"></text></g><g><title>fsnotify (164 samples, 0.02%)</title><rect x="62.4667%" y="773" width="0.0172%" height="15" fill="rgb(246,19,35)" fg:x="597172" fg:w="164"/><text x="62.7167%" y="783.50"></text></g><g><title>inode_permission (122 samples, 0.01%)</title><rect x="62.5162%" y="757" width="0.0128%" height="15" fill="rgb(219,24,36)" fg:x="597645" fg:w="122"/><text x="62.7662%" y="767.50"></text></g><g><title>may_delete (342 samples, 0.04%)</title><rect x="62.4933%" y="773" width="0.0358%" height="15" fill="rgb(251,55,1)" fg:x="597426" fg:w="342"/><text x="62.7433%" y="783.50"></text></g><g><title>pinnedhook_security_inode_unlink (235 samples, 0.02%)</title><rect x="62.5459%" y="757" width="0.0246%" height="15" fill="rgb(218,117,39)" fg:x="597929" fg:w="235"/><text x="62.7959%" y="767.50"></text></g><g><title>do_unlinkat (246,079 samples, 25.74%)</title><rect x="36.8316%" y="805" width="25.7409%" height="15" fill="rgb(248,169,11)" fg:x="352104" fg:w="246079"/><text x="37.0816%" y="815.50">do_unlinkat</text></g><g><title>vfs_unlink (90,576 samples, 9.47%)</title><rect x="53.0979%" y="789" width="9.4746%" height="15" fill="rgb(244,40,44)" fg:x="507607" fg:w="90576"/><text x="53.3479%" y="799.50">vfs_unlink</text></g><g><title>security_inode_unlink (370 samples, 0.04%)</title><rect x="62.5338%" y="773" width="0.0387%" height="15" fill="rgb(234,62,37)" fg:x="597813" fg:w="370"/><text x="62.7838%" y="783.50"></text></g><g><title>kmem_cache_alloc (132 samples, 0.01%)</title><rect x="62.5877%" y="773" width="0.0138%" height="15" fill="rgb(207,117,42)" fg:x="598328" fg:w="132"/><text x="62.8377%" y="783.50"></text></g><g><title>memset_erms (301 samples, 0.03%)</title><rect x="62.6017%" y="773" width="0.0315%" height="15" fill="rgb(213,43,2)" fg:x="598462" fg:w="301"/><text x="62.8517%" y="783.50"></text></g><g><title>__check_object_size.part.0 (180 samples, 0.02%)</title><rect x="62.6492%" y="741" width="0.0188%" height="15" fill="rgb(244,202,51)" fg:x="598916" fg:w="180"/><text x="62.8992%" y="751.50"></text></g><g><title>getname_flags.part.0 (845 samples, 0.09%)</title><rect x="62.5836%" y="789" width="0.0884%" height="15" fill="rgb(253,174,46)" fg:x="598289" fg:w="845"/><text x="62.8336%" y="799.50"></text></g><g><title>strncpy_from_user (369 samples, 0.04%)</title><rect x="62.6334%" y="773" width="0.0386%" height="15" fill="rgb(251,23,1)" fg:x="598765" fg:w="369"/><text x="62.8834%" y="783.50"></text></g><g><title>__check_object_size (224 samples, 0.02%)</title><rect x="62.6485%" y="757" width="0.0234%" height="15" fill="rgb(253,26,1)" fg:x="598910" fg:w="224"/><text x="62.8985%" y="767.50"></text></g><g><title>getname_flags (852 samples, 0.09%)</title><rect x="62.5836%" y="805" width="0.0891%" height="15" fill="rgb(216,89,31)" fg:x="598289" fg:w="852"/><text x="62.8336%" y="815.50"></text></g><g><title>mnt_drop_write (178 samples, 0.02%)</title><rect x="62.6759%" y="805" width="0.0186%" height="15" fill="rgb(209,109,5)" fg:x="599172" fg:w="178"/><text x="62.9259%" y="815.50"></text></g><g><title>__x64_sys_unlinkat (270,200 samples, 28.26%)</title><rect x="34.4506%" y="821" width="28.2641%" height="15" fill="rgb(229,63,13)" fg:x="329342" fg:w="270200"/><text x="34.7006%" y="831.50">__x64_sys_unlinkat</text></g><g><title>_raw_spin_lock_irqsave (185 samples, 0.02%)</title><rect x="62.8413%" y="709" width="0.0194%" height="15" fill="rgb(238,137,54)" fg:x="600753" fg:w="185"/><text x="63.0913%" y="719.50"></text></g><g><title>complete (425 samples, 0.04%)</title><rect x="62.8388%" y="725" width="0.0445%" height="15" fill="rgb(228,1,9)" fg:x="600729" fg:w="425"/><text x="63.0888%" y="735.50"></text></g><g><title>swake_up_locked (216 samples, 0.02%)</title><rect x="62.8607%" y="709" width="0.0226%" height="15" fill="rgb(249,120,48)" fg:x="600938" fg:w="216"/><text x="63.1107%" y="719.50"></text></g><g><title>wake_up_process (209 samples, 0.02%)</title><rect x="62.8614%" y="693" width="0.0219%" height="15" fill="rgb(209,72,36)" fg:x="600945" fg:w="209"/><text x="63.1114%" y="703.50"></text></g><g><title>try_to_wake_up (206 samples, 0.02%)</title><rect x="62.8617%" y="677" width="0.0215%" height="15" fill="rgb(247,98,49)" fg:x="600948" fg:w="206"/><text x="63.1117%" y="687.50"></text></g><g><title>[[falcon_kal]] (464 samples, 0.05%)</title><rect x="62.8349%" y="741" width="0.0485%" height="15" fill="rgb(233,75,36)" fg:x="600692" fg:w="464"/><text x="63.0849%" y="751.50"></text></g><g><title>[[falcon_kal]] (160 samples, 0.02%)</title><rect x="62.8870%" y="725" width="0.0167%" height="15" fill="rgb(225,14,24)" fg:x="601190" fg:w="160"/><text x="63.1370%" y="735.50"></text></g><g><title>mutex_lock (150 samples, 0.02%)</title><rect x="62.8881%" y="709" width="0.0157%" height="15" fill="rgb(237,193,20)" fg:x="601200" fg:w="150"/><text x="63.1381%" y="719.50"></text></g><g><title>_ZdlPv (1,134 samples, 0.12%)</title><rect x="62.7903%" y="773" width="0.1186%" height="15" fill="rgb(239,122,19)" fg:x="600265" fg:w="1134"/><text x="63.0403%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (912 samples, 0.10%)</title><rect x="62.8135%" y="757" width="0.0954%" height="15" fill="rgb(231,220,10)" fg:x="600487" fg:w="912"/><text x="63.0635%" y="767.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (215 samples, 0.02%)</title><rect x="62.8864%" y="741" width="0.0225%" height="15" fill="rgb(220,66,15)" fg:x="601184" fg:w="215"/><text x="63.1364%" y="751.50"></text></g><g><title>_raw_spin_lock_bh (161 samples, 0.02%)</title><rect x="62.9089%" y="773" width="0.0168%" height="15" fill="rgb(215,171,52)" fg:x="601399" fg:w="161"/><text x="63.1589%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (125 samples, 0.01%)</title><rect x="62.9257%" y="773" width="0.0131%" height="15" fill="rgb(241,169,50)" fg:x="601560" fg:w="125"/><text x="63.1757%" y="783.50"></text></g><g><title>_ZdlPv (1,695 samples, 0.18%)</title><rect x="62.7707%" y="789" width="0.1773%" height="15" fill="rgb(236,189,0)" fg:x="600078" fg:w="1695"/><text x="63.0207%" y="799.50"></text></g><g><title>_ZdlPv (1,816 samples, 0.19%)</title><rect x="62.7617%" y="805" width="0.1900%" height="15" fill="rgb(217,147,20)" fg:x="599992" fg:w="1816"/><text x="63.0117%" y="815.50"></text></g><g><title>[[falcon_kal]] (135 samples, 0.01%)</title><rect x="62.9586%" y="789" width="0.0141%" height="15" fill="rgb(206,188,39)" fg:x="601874" fg:w="135"/><text x="63.2086%" y="799.50"></text></g><g><title>mutex_lock (121 samples, 0.01%)</title><rect x="62.9600%" y="773" width="0.0127%" height="15" fill="rgb(227,118,25)" fg:x="601888" fg:w="121"/><text x="63.2100%" y="783.50"></text></g><g><title>kfree (190 samples, 0.02%)</title><rect x="62.9912%" y="757" width="0.0199%" height="15" fill="rgb(248,171,40)" fg:x="602186" fg:w="190"/><text x="63.2412%" y="767.50"></text></g><g><title>[[falcon_kal]] (203 samples, 0.02%)</title><rect x="62.9903%" y="773" width="0.0212%" height="15" fill="rgb(251,90,54)" fg:x="602177" fg:w="203"/><text x="63.2403%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (379 samples, 0.04%)</title><rect x="62.9729%" y="789" width="0.0396%" height="15" fill="rgb(234,11,46)" fg:x="602011" fg:w="379"/><text x="63.2229%" y="799.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (681 samples, 0.07%)</title><rect x="62.9525%" y="805" width="0.0712%" height="15" fill="rgb(229,134,13)" fg:x="601816" fg:w="681"/><text x="63.2025%" y="815.50"></text></g><g><title>mutex_unlock (100 samples, 0.01%)</title><rect x="63.0133%" y="789" width="0.0105%" height="15" fill="rgb(223,129,3)" fg:x="602397" fg:w="100"/><text x="63.2633%" y="799.50"></text></g><g><title>cshook_systemcalltable_post_unlinkat (2,850 samples, 0.30%)</title><rect x="62.7299%" y="821" width="0.2981%" height="15" fill="rgb(221,124,13)" fg:x="599688" fg:w="2850"/><text x="62.9799%" y="831.50"></text></g><g><title>[[falcon_kal]] (107 samples, 0.01%)</title><rect x="63.0443%" y="789" width="0.0112%" height="15" fill="rgb(234,3,18)" fg:x="602693" fg:w="107"/><text x="63.2943%" y="799.50"></text></g><g><title>_ZdlPv (119 samples, 0.01%)</title><rect x="63.0554%" y="789" width="0.0124%" height="15" fill="rgb(249,199,20)" fg:x="602800" fg:w="119"/><text x="63.3054%" y="799.50"></text></g><g><title>__kmalloc (236 samples, 0.02%)</title><rect x="63.0921%" y="741" width="0.0247%" height="15" fill="rgb(224,134,6)" fg:x="603150" fg:w="236"/><text x="63.3421%" y="751.50"></text></g><g><title>[[falcon_kal]] (301 samples, 0.03%)</title><rect x="63.0907%" y="757" width="0.0315%" height="15" fill="rgb(254,83,26)" fg:x="603137" fg:w="301"/><text x="63.3407%" y="767.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (430 samples, 0.04%)</title><rect x="63.0784%" y="773" width="0.0450%" height="15" fill="rgb(217,88,9)" fg:x="603019" fg:w="430"/><text x="63.3284%" y="783.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (612 samples, 0.06%)</title><rect x="63.0681%" y="789" width="0.0640%" height="15" fill="rgb(225,73,2)" fg:x="602921" fg:w="612"/><text x="63.3181%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (146 samples, 0.02%)</title><rect x="63.1438%" y="773" width="0.0153%" height="15" fill="rgb(226,44,39)" fg:x="603645" fg:w="146"/><text x="63.3938%" y="783.50"></text></g><g><title>[[falcon_kal]] (161 samples, 0.02%)</title><rect x="63.1948%" y="725" width="0.0168%" height="15" fill="rgb(228,53,17)" fg:x="604132" fg:w="161"/><text x="63.4448%" y="735.50"></text></g><g><title>down_read (146 samples, 0.02%)</title><rect x="63.1964%" y="709" width="0.0153%" height="15" fill="rgb(212,27,27)" fg:x="604147" fg:w="146"/><text x="63.4464%" y="719.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (440 samples, 0.05%)</title><rect x="63.1737%" y="757" width="0.0460%" height="15" fill="rgb(241,50,6)" fg:x="603930" fg:w="440"/><text x="63.4237%" y="767.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (243 samples, 0.03%)</title><rect x="63.1943%" y="741" width="0.0254%" height="15" fill="rgb(225,28,51)" fg:x="604127" fg:w="243"/><text x="63.4443%" y="751.50"></text></g><g><title>cshook_security_file_free_security (641 samples, 0.07%)</title><rect x="63.1591%" y="773" width="0.0671%" height="15" fill="rgb(215,33,16)" fg:x="603791" fg:w="641"/><text x="63.4091%" y="783.50"></text></g><g><title>cshook_security_file_free_security (862 samples, 0.09%)</title><rect x="63.1361%" y="789" width="0.0902%" height="15" fill="rgb(243,40,39)" fg:x="603571" fg:w="862"/><text x="63.3861%" y="799.50"></text></g><g><title>btrfs_dentry_delete (283 samples, 0.03%)</title><rect x="63.3371%" y="725" width="0.0296%" height="15" fill="rgb(225,11,42)" fg:x="605493" fg:w="283"/><text x="63.5871%" y="735.50"></text></g><g><title>dput (452 samples, 0.05%)</title><rect x="63.3222%" y="741" width="0.0473%" height="15" fill="rgb(241,220,38)" fg:x="605350" fg:w="452"/><text x="63.5722%" y="751.50"></text></g><g><title>path_put (565 samples, 0.06%)</title><rect x="63.3158%" y="757" width="0.0591%" height="15" fill="rgb(244,52,35)" fg:x="605289" fg:w="565"/><text x="63.5658%" y="767.50"></text></g><g><title>__legitimize_path (125 samples, 0.01%)</title><rect x="63.4254%" y="677" width="0.0131%" height="15" fill="rgb(246,42,46)" fg:x="606337" fg:w="125"/><text x="63.6754%" y="687.50"></text></g><g><title>complete_walk (313 samples, 0.03%)</title><rect x="63.4084%" y="709" width="0.0327%" height="15" fill="rgb(205,184,13)" fg:x="606174" fg:w="313"/><text x="63.6584%" y="719.50"></text></g><g><title>try_to_unlazy (213 samples, 0.02%)</title><rect x="63.4188%" y="693" width="0.0223%" height="15" fill="rgb(209,48,36)" fg:x="606274" fg:w="213"/><text x="63.6688%" y="703.50"></text></g><g><title>inode_permission (276 samples, 0.03%)</title><rect x="63.4670%" y="693" width="0.0289%" height="15" fill="rgb(244,34,51)" fg:x="606734" fg:w="276"/><text x="63.7170%" y="703.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (508 samples, 0.05%)</title><rect x="63.4446%" y="709" width="0.0531%" height="15" fill="rgb(221,107,33)" fg:x="606520" fg:w="508"/><text x="63.6946%" y="719.50"></text></g><g><title>__fget_files (346 samples, 0.04%)</title><rect x="63.5166%" y="661" width="0.0362%" height="15" fill="rgb(224,203,12)" fg:x="607209" fg:w="346"/><text x="63.7666%" y="671.50"></text></g><g><title>__fdget_raw (362 samples, 0.04%)</title><rect x="63.5153%" y="693" width="0.0379%" height="15" fill="rgb(230,215,18)" fg:x="607196" fg:w="362"/><text x="63.7653%" y="703.50"></text></g><g><title>__fget_light (351 samples, 0.04%)</title><rect x="63.5164%" y="677" width="0.0367%" height="15" fill="rgb(206,185,35)" fg:x="607207" fg:w="351"/><text x="63.7664%" y="687.50"></text></g><g><title>__fget_light (127 samples, 0.01%)</title><rect x="63.5532%" y="693" width="0.0133%" height="15" fill="rgb(228,140,34)" fg:x="607558" fg:w="127"/><text x="63.8032%" y="703.50"></text></g><g><title>path_init (635 samples, 0.07%)</title><rect x="63.5040%" y="709" width="0.0664%" height="15" fill="rgb(208,93,13)" fg:x="607088" fg:w="635"/><text x="63.7540%" y="719.50"></text></g><g><title>terminate_walk (108 samples, 0.01%)</title><rect x="63.5707%" y="709" width="0.0113%" height="15" fill="rgb(221,193,39)" fg:x="607726" fg:w="108"/><text x="63.8207%" y="719.50"></text></g><g><title>lookup_fast (669 samples, 0.07%)</title><rect x="63.5941%" y="693" width="0.0700%" height="15" fill="rgb(241,132,34)" fg:x="607949" fg:w="669"/><text x="63.8441%" y="703.50"></text></g><g><title>__d_lookup_rcu (641 samples, 0.07%)</title><rect x="63.5970%" y="677" width="0.0671%" height="15" fill="rgb(221,141,10)" fg:x="607977" fg:w="641"/><text x="63.8470%" y="687.50"></text></g><g><title>path_lookupat (2,621 samples, 0.27%)</title><rect x="63.3952%" y="725" width="0.2742%" height="15" fill="rgb(226,90,31)" fg:x="606048" fg:w="2621"/><text x="63.6452%" y="735.50"></text></g><g><title>walk_component (797 samples, 0.08%)</title><rect x="63.5860%" y="709" width="0.0834%" height="15" fill="rgb(243,75,5)" fg:x="607872" fg:w="797"/><text x="63.8360%" y="719.50"></text></g><g><title>filename_lookup (2,810 samples, 0.29%)</title><rect x="63.3797%" y="741" width="0.2939%" height="15" fill="rgb(227,156,21)" fg:x="605900" fg:w="2810"/><text x="63.6297%" y="751.50"></text></g><g><title>kmem_cache_alloc (231 samples, 0.02%)</title><rect x="63.6909%" y="709" width="0.0242%" height="15" fill="rgb(250,195,8)" fg:x="608875" fg:w="231"/><text x="63.9409%" y="719.50"></text></g><g><title>memset_erms (486 samples, 0.05%)</title><rect x="63.7156%" y="709" width="0.0508%" height="15" fill="rgb(220,134,5)" fg:x="609111" fg:w="486"/><text x="63.9656%" y="719.50"></text></g><g><title>__check_object_size.part.0 (360 samples, 0.04%)</title><rect x="63.8055%" y="677" width="0.0377%" height="15" fill="rgb(246,106,34)" fg:x="609970" fg:w="360"/><text x="64.0555%" y="687.50"></text></g><g><title>__virt_addr_valid (220 samples, 0.02%)</title><rect x="63.8201%" y="661" width="0.0230%" height="15" fill="rgb(205,1,4)" fg:x="610110" fg:w="220"/><text x="64.0701%" y="671.50"></text></g><g><title>__check_object_size (449 samples, 0.05%)</title><rect x="63.8051%" y="693" width="0.0470%" height="15" fill="rgb(224,151,29)" fg:x="609967" fg:w="449"/><text x="64.0551%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,647 samples, 0.17%)</title><rect x="63.6799%" y="725" width="0.1723%" height="15" fill="rgb(251,196,0)" fg:x="608770" fg:w="1647"/><text x="63.9299%" y="735.50"></text></g><g><title>strncpy_from_user (814 samples, 0.09%)</title><rect x="63.7671%" y="709" width="0.0851%" height="15" fill="rgb(212,127,0)" fg:x="609603" fg:w="814"/><text x="64.0171%" y="719.50"></text></g><g><title>getname_flags (1,670 samples, 0.17%)</title><rect x="63.6799%" y="741" width="0.1747%" height="15" fill="rgb(236,71,53)" fg:x="608770" fg:w="1670"/><text x="63.9299%" y="751.50"></text></g><g><title>kmem_cache_free (177 samples, 0.02%)</title><rect x="63.8593%" y="725" width="0.0185%" height="15" fill="rgb(227,99,0)" fg:x="610485" fg:w="177"/><text x="64.1093%" y="735.50"></text></g><g><title>[[falcon_kal]] (6,073 samples, 0.64%)</title><rect x="63.2429%" y="773" width="0.6353%" height="15" fill="rgb(239,89,21)" fg:x="604592" fg:w="6073"/><text x="63.4929%" y="783.50"></text></g><g><title>user_path_at_empty (4,797 samples, 0.50%)</title><rect x="63.3764%" y="757" width="0.5018%" height="15" fill="rgb(243,122,19)" fg:x="605868" fg:w="4797"/><text x="63.6264%" y="767.50"></text></g><g><title>putname (202 samples, 0.02%)</title><rect x="63.8570%" y="741" width="0.0211%" height="15" fill="rgb(229,192,45)" fg:x="610463" fg:w="202"/><text x="64.1070%" y="751.50"></text></g><g><title>_ZdlPv (319 samples, 0.03%)</title><rect x="63.8782%" y="773" width="0.0334%" height="15" fill="rgb(235,165,35)" fg:x="610665" fg:w="319"/><text x="64.1282%" y="783.50"></text></g><g><title>__kmalloc (416 samples, 0.04%)</title><rect x="63.9516%" y="741" width="0.0435%" height="15" fill="rgb(253,202,0)" fg:x="611367" fg:w="416"/><text x="64.2016%" y="751.50"></text></g><g><title>copy_from_kernel_nofault (1,019 samples, 0.11%)</title><rect x="64.1388%" y="677" width="0.1066%" height="15" fill="rgb(235,51,20)" fg:x="613157" fg:w="1019"/><text x="64.3888%" y="687.50"></text></g><g><title>copy_from_kernel_nofault_allowed (198 samples, 0.02%)</title><rect x="64.2247%" y="661" width="0.0207%" height="15" fill="rgb(218,95,46)" fg:x="613978" fg:w="198"/><text x="64.4747%" y="671.50"></text></g><g><title>prepend (1,494 samples, 0.16%)</title><rect x="64.1035%" y="709" width="0.1563%" height="15" fill="rgb(212,81,10)" fg:x="612819" fg:w="1494"/><text x="64.3535%" y="719.50"></text></g><g><title>prepend_copy (1,262 samples, 0.13%)</title><rect x="64.1277%" y="693" width="0.1320%" height="15" fill="rgb(240,59,0)" fg:x="613051" fg:w="1262"/><text x="64.3777%" y="703.50"></text></g><g><title>copy_from_kernel_nofault_allowed (137 samples, 0.01%)</title><rect x="64.2454%" y="677" width="0.0143%" height="15" fill="rgb(212,191,42)" fg:x="614176" fg:w="137"/><text x="64.4954%" y="687.50"></text></g><g><title>prepend_path (2,482 samples, 0.26%)</title><rect x="64.0093%" y="725" width="0.2596%" height="15" fill="rgb(233,140,3)" fg:x="611919" fg:w="2482"/><text x="64.2593%" y="735.50"></text></g><g><title>d_path (2,628 samples, 0.27%)</title><rect x="63.9951%" y="741" width="0.2749%" height="15" fill="rgb(215,69,23)" fg:x="611783" fg:w="2628"/><text x="64.2451%" y="751.50"></text></g><g><title>[[falcon_kal]] (3,204 samples, 0.34%)</title><rect x="63.9470%" y="757" width="0.3352%" height="15" fill="rgb(240,202,20)" fg:x="611323" fg:w="3204"/><text x="64.1970%" y="767.50"></text></g><g><title>clear_page_erms (158 samples, 0.02%)</title><rect x="64.3824%" y="613" width="0.0165%" height="15" fill="rgb(209,146,50)" fg:x="615485" fg:w="158"/><text x="64.6324%" y="623.50"></text></g><g><title>__alloc_pages (202 samples, 0.02%)</title><rect x="64.3803%" y="645" width="0.0211%" height="15" fill="rgb(253,102,54)" fg:x="615465" fg:w="202"/><text x="64.6303%" y="655.50"></text></g><g><title>get_page_from_freelist (190 samples, 0.02%)</title><rect x="64.3815%" y="629" width="0.0199%" height="15" fill="rgb(250,173,47)" fg:x="615477" fg:w="190"/><text x="64.6315%" y="639.50"></text></g><g><title>alloc_pages (208 samples, 0.02%)</title><rect x="64.3799%" y="661" width="0.0218%" height="15" fill="rgb(232,142,7)" fg:x="615462" fg:w="208"/><text x="64.6299%" y="671.50"></text></g><g><title>allocate_slab (238 samples, 0.02%)</title><rect x="64.3786%" y="677" width="0.0249%" height="15" fill="rgb(230,157,47)" fg:x="615449" fg:w="238"/><text x="64.6286%" y="687.50"></text></g><g><title>new_slab (242 samples, 0.03%)</title><rect x="64.3784%" y="693" width="0.0253%" height="15" fill="rgb(214,177,35)" fg:x="615447" fg:w="242"/><text x="64.6284%" y="703.50"></text></g><g><title>___slab_alloc (555 samples, 0.06%)</title><rect x="64.3457%" y="709" width="0.0581%" height="15" fill="rgb(234,119,46)" fg:x="615135" fg:w="555"/><text x="64.5957%" y="719.50"></text></g><g><title>__kmalloc (891 samples, 0.09%)</title><rect x="64.3178%" y="725" width="0.0932%" height="15" fill="rgb(241,180,50)" fg:x="614868" fg:w="891"/><text x="64.5678%" y="735.50"></text></g><g><title>memset_erms (1,072 samples, 0.11%)</title><rect x="64.4114%" y="725" width="0.1121%" height="15" fill="rgb(221,54,25)" fg:x="615763" fg:w="1072"/><text x="64.6614%" y="735.50"></text></g><g><title>[[falcon_kal]] (1,997 samples, 0.21%)</title><rect x="64.3151%" y="741" width="0.2089%" height="15" fill="rgb(209,157,44)" fg:x="614842" fg:w="1997"/><text x="64.5651%" y="751.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (5,834 samples, 0.61%)</title><rect x="63.9138%" y="773" width="0.6103%" height="15" fill="rgb(246,115,41)" fg:x="611006" fg:w="5834"/><text x="64.1638%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,267 samples, 0.24%)</title><rect x="64.2870%" y="757" width="0.2371%" height="15" fill="rgb(229,86,1)" fg:x="614573" fg:w="2267"/><text x="64.5370%" y="767.50"></text></g><g><title>memmove (148 samples, 0.02%)</title><rect x="64.5241%" y="773" width="0.0155%" height="15" fill="rgb(240,108,53)" fg:x="616840" fg:w="148"/><text x="64.7741%" y="783.50"></text></g><g><title>strlen (1,051 samples, 0.11%)</title><rect x="64.5440%" y="773" width="0.1099%" height="15" fill="rgb(227,134,2)" fg:x="617030" fg:w="1051"/><text x="64.7940%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (15,586 samples, 1.63%)</title><rect x="63.0308%" y="805" width="1.6304%" height="15" fill="rgb(213,129,25)" fg:x="602564" fg:w="15586"/><text x="63.2808%" y="815.50"></text></g><g><title>fshook_syscalltable_pre_lchown (13,670 samples, 1.43%)</title><rect x="63.2312%" y="789" width="1.4299%" height="15" fill="rgb(226,35,21)" fg:x="604480" fg:w="13670"/><text x="63.4812%" y="799.50"></text></g><g><title>cshook_systemcalltable_pre_unlinkat (15,727 samples, 1.65%)</title><rect x="63.0280%" y="821" width="1.6451%" height="15" fill="rgb(208,129,26)" fg:x="602538" fg:w="15727"/><text x="63.2780%" y="831.50"></text></g><g><title>do_syscall_64 (290,869 samples, 30.43%)</title><rect x="34.2503%" y="853" width="30.4261%" height="15" fill="rgb(224,83,6)" fg:x="327427" fg:w="290869"/><text x="34.5003%" y="863.50">do_syscall_64</text></g><g><title>unload_network_ops_symbols (289,266 samples, 30.26%)</title><rect x="34.4179%" y="837" width="30.2585%" height="15" fill="rgb(227,52,39)" fg:x="329030" fg:w="289266"/><text x="34.6679%" y="847.50">unload_network_ops_symbols</text></g><g><title>entry_SYSCALL_64_after_hwframe (291,112 samples, 30.45%)</title><rect x="34.2419%" y="869" width="30.4516%" height="15" fill="rgb(241,30,17)" fg:x="327347" fg:w="291112"/><text x="34.4919%" y="879.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>__GI_unlinkat (291,883 samples, 30.53%)</title><rect x="34.1778%" y="885" width="30.5322%" height="15" fill="rgb(246,186,42)" fg:x="326734" fg:w="291883"/><text x="34.4278%" y="895.50">__GI_unlinkat</text></g><g><title>link_path_walk.part.0.constprop.0 (134 samples, 0.01%)</title><rect x="64.7150%" y="741" width="0.0140%" height="15" fill="rgb(221,169,15)" fg:x="618665" fg:w="134"/><text x="64.9650%" y="751.50"></text></g><g><title>path_lookupat (166 samples, 0.02%)</title><rect x="64.7137%" y="757" width="0.0174%" height="15" fill="rgb(235,108,21)" fg:x="618653" fg:w="166"/><text x="64.9637%" y="767.50"></text></g><g><title>filename_lookup (169 samples, 0.02%)</title><rect x="64.7135%" y="773" width="0.0177%" height="15" fill="rgb(219,148,30)" fg:x="618651" fg:w="169"/><text x="64.9635%" y="783.50"></text></g><g><title>user_path_at_empty (211 samples, 0.02%)</title><rect x="64.7135%" y="789" width="0.0221%" height="15" fill="rgb(220,109,5)" fg:x="618651" fg:w="211"/><text x="64.9635%" y="799.50"></text></g><g><title>__do_sys_newlstat (245 samples, 0.03%)</title><rect x="64.7109%" y="821" width="0.0256%" height="15" fill="rgb(213,203,48)" fg:x="618626" fg:w="245"/><text x="64.9609%" y="831.50"></text></g><g><title>vfs_statx (228 samples, 0.02%)</title><rect x="64.7127%" y="805" width="0.0238%" height="15" fill="rgb(244,71,33)" fg:x="618643" fg:w="228"/><text x="64.9627%" y="815.50"></text></g><g><title>__x64_sys_newlstat (248 samples, 0.03%)</title><rect x="64.7108%" y="837" width="0.0259%" height="15" fill="rgb(209,23,2)" fg:x="618625" fg:w="248"/><text x="64.9608%" y="847.50"></text></g><g><title>do_syscall_64 (256 samples, 0.03%)</title><rect x="64.7106%" y="853" width="0.0268%" height="15" fill="rgb(219,97,7)" fg:x="618623" fg:w="256"/><text x="64.9606%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (257 samples, 0.03%)</title><rect x="64.7106%" y="869" width="0.0269%" height="15" fill="rgb(216,161,23)" fg:x="618623" fg:w="257"/><text x="64.9606%" y="879.50"></text></g><g><title>___lxstat64 (265 samples, 0.03%)</title><rect x="64.7100%" y="885" width="0.0277%" height="15" fill="rgb(207,45,42)" fg:x="618617" fg:w="265"/><text x="64.9600%" y="895.50"></text></g><g><title>user_path_at_empty (97 samples, 0.01%)</title><rect x="64.7394%" y="789" width="0.0101%" height="15" fill="rgb(241,61,4)" fg:x="618898" fg:w="97"/><text x="64.9894%" y="799.50"></text></g><g><title>__do_sys_newstat (119 samples, 0.01%)</title><rect x="64.7380%" y="821" width="0.0124%" height="15" fill="rgb(236,170,1)" fg:x="618885" fg:w="119"/><text x="64.9880%" y="831.50"></text></g><g><title>vfs_statx (110 samples, 0.01%)</title><rect x="64.7389%" y="805" width="0.0115%" height="15" fill="rgb(239,72,5)" fg:x="618894" fg:w="110"/><text x="64.9889%" y="815.50"></text></g><g><title>__x64_sys_newstat (120 samples, 0.01%)</title><rect x="64.7380%" y="837" width="0.0126%" height="15" fill="rgb(214,13,50)" fg:x="618885" fg:w="120"/><text x="64.9880%" y="847.50"></text></g><g><title>___xstat64 (126 samples, 0.01%)</title><rect x="64.7377%" y="885" width="0.0132%" height="15" fill="rgb(224,88,9)" fg:x="618882" fg:w="126"/><text x="64.9877%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (125 samples, 0.01%)</title><rect x="64.7378%" y="869" width="0.0131%" height="15" fill="rgb(238,192,34)" fg:x="618883" fg:w="125"/><text x="64.9878%" y="879.50"></text></g><g><title>do_syscall_64 (124 samples, 0.01%)</title><rect x="64.7379%" y="853" width="0.0130%" height="15" fill="rgb(217,203,50)" fg:x="618884" fg:w="124"/><text x="64.9879%" y="863.50"></text></g><g><title>__closedir (99 samples, 0.01%)</title><rect x="64.7535%" y="885" width="0.0104%" height="15" fill="rgb(241,123,32)" fg:x="619033" fg:w="99"/><text x="65.0035%" y="895.50"></text></g><g><title>__dirfd (106 samples, 0.01%)</title><rect x="64.7638%" y="885" width="0.0111%" height="15" fill="rgb(248,151,39)" fg:x="619132" fg:w="106"/><text x="65.0138%" y="895.50"></text></g><g><title>getname_flags (104 samples, 0.01%)</title><rect x="64.8083%" y="757" width="0.0109%" height="15" fill="rgb(208,89,6)" fg:x="619557" fg:w="104"/><text x="65.0583%" y="767.50"></text></g><g><title>getname_flags.part.0 (104 samples, 0.01%)</title><rect x="64.8083%" y="741" width="0.0109%" height="15" fill="rgb(254,43,26)" fg:x="619557" fg:w="104"/><text x="65.0583%" y="751.50"></text></g><g><title>user_path_at_empty (203 samples, 0.02%)</title><rect x="64.7993%" y="773" width="0.0212%" height="15" fill="rgb(216,158,13)" fg:x="619471" fg:w="203"/><text x="65.0493%" y="783.50"></text></g><g><title>__do_sys_newfstatat (358 samples, 0.04%)</title><rect x="64.7872%" y="805" width="0.0374%" height="15" fill="rgb(212,47,37)" fg:x="619355" fg:w="358"/><text x="65.0372%" y="815.50"></text></g><g><title>vfs_statx (288 samples, 0.03%)</title><rect x="64.7945%" y="789" width="0.0301%" height="15" fill="rgb(254,16,10)" fg:x="619425" fg:w="288"/><text x="65.0445%" y="799.50"></text></g><g><title>__x64_sys_newfstatat (370 samples, 0.04%)</title><rect x="64.7872%" y="821" width="0.0387%" height="15" fill="rgb(223,228,16)" fg:x="619355" fg:w="370"/><text x="65.0372%" y="831.50"></text></g><g><title>do_syscall_64 (383 samples, 0.04%)</title><rect x="64.7863%" y="837" width="0.0401%" height="15" fill="rgb(249,108,50)" fg:x="619347" fg:w="383"/><text x="65.0363%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (393 samples, 0.04%)</title><rect x="64.7855%" y="853" width="0.0411%" height="15" fill="rgb(208,220,5)" fg:x="619339" fg:w="393"/><text x="65.0355%" y="863.50"></text></g><g><title>__GI___fstatat64 (406 samples, 0.04%)</title><rect x="64.7851%" y="869" width="0.0425%" height="15" fill="rgb(217,89,48)" fg:x="619335" fg:w="406"/><text x="65.0351%" y="879.50"></text></g><g><title>_int_malloc (170 samples, 0.02%)</title><rect x="64.8391%" y="837" width="0.0178%" height="15" fill="rgb(212,113,41)" fg:x="619851" fg:w="170"/><text x="65.0891%" y="847.50"></text></g><g><title>__fdopendir (785 samples, 0.08%)</title><rect x="64.7749%" y="885" width="0.0821%" height="15" fill="rgb(231,127,5)" fg:x="619238" fg:w="785"/><text x="65.0249%" y="895.50"></text></g><g><title>__alloc_dir (282 samples, 0.03%)</title><rect x="64.8275%" y="869" width="0.0295%" height="15" fill="rgb(217,141,17)" fg:x="619741" fg:w="282"/><text x="65.0775%" y="879.50"></text></g><g><title>__GI___libc_malloc (215 samples, 0.02%)</title><rect x="64.8346%" y="853" width="0.0225%" height="15" fill="rgb(245,125,54)" fg:x="619808" fg:w="215"/><text x="65.0846%" y="863.50"></text></g><g><title>kmem_cache_alloc (137 samples, 0.01%)</title><rect x="64.8888%" y="725" width="0.0143%" height="15" fill="rgb(248,125,3)" fg:x="620327" fg:w="137"/><text x="65.1388%" y="735.50"></text></g><g><title>__alloc_file (211 samples, 0.02%)</title><rect x="64.8852%" y="741" width="0.0221%" height="15" fill="rgb(236,119,51)" fg:x="620292" fg:w="211"/><text x="65.1352%" y="751.50"></text></g><g><title>alloc_empty_file (216 samples, 0.02%)</title><rect x="64.8849%" y="757" width="0.0226%" height="15" fill="rgb(239,99,8)" fg:x="620289" fg:w="216"/><text x="65.1349%" y="767.50"></text></g><g><title>btrfs_opendir (102 samples, 0.01%)</title><rect x="64.9254%" y="709" width="0.0107%" height="15" fill="rgb(224,228,4)" fg:x="620676" fg:w="102"/><text x="65.1754%" y="719.50"></text></g><g><title>do_dentry_open (297 samples, 0.03%)</title><rect x="64.9206%" y="725" width="0.0311%" height="15" fill="rgb(220,131,45)" fg:x="620631" fg:w="297"/><text x="65.1706%" y="735.50"></text></g><g><title>security_file_open (116 samples, 0.01%)</title><rect x="64.9396%" y="709" width="0.0121%" height="15" fill="rgb(215,62,5)" fg:x="620812" fg:w="116"/><text x="65.1896%" y="719.50"></text></g><g><title>do_open (460 samples, 0.05%)</title><rect x="64.9075%" y="757" width="0.0481%" height="15" fill="rgb(253,12,24)" fg:x="620505" fg:w="460"/><text x="65.1575%" y="767.50"></text></g><g><title>vfs_open (345 samples, 0.04%)</title><rect x="64.9195%" y="741" width="0.0361%" height="15" fill="rgb(248,120,50)" fg:x="620620" fg:w="345"/><text x="65.1695%" y="751.50"></text></g><g><title>path_openat (850 samples, 0.09%)</title><rect x="64.8834%" y="773" width="0.0889%" height="15" fill="rgb(245,194,10)" fg:x="620275" fg:w="850"/><text x="65.1334%" y="783.50"></text></g><g><title>do_filp_open (890 samples, 0.09%)</title><rect x="64.8794%" y="789" width="0.0931%" height="15" fill="rgb(241,149,38)" fg:x="620237" fg:w="890"/><text x="65.1294%" y="799.50"></text></g><g><title>getname_flags.part.0 (110 samples, 0.01%)</title><rect x="64.9793%" y="773" width="0.0115%" height="15" fill="rgb(219,215,7)" fg:x="621192" fg:w="110"/><text x="65.2293%" y="783.50"></text></g><g><title>getname (114 samples, 0.01%)</title><rect x="64.9791%" y="789" width="0.0119%" height="15" fill="rgb(208,120,31)" fg:x="621190" fg:w="114"/><text x="65.2291%" y="799.50"></text></g><g><title>do_sys_openat2 (1,103 samples, 0.12%)</title><rect x="64.8785%" y="805" width="0.1154%" height="15" fill="rgb(244,30,8)" fg:x="620228" fg:w="1103"/><text x="65.1285%" y="815.50"></text></g><g><title>__x64_sys_openat (1,147 samples, 0.12%)</title><rect x="64.8756%" y="821" width="0.1200%" height="15" fill="rgb(238,35,44)" fg:x="620200" fg:w="1147"/><text x="65.1256%" y="831.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (108 samples, 0.01%)</title><rect x="65.0078%" y="757" width="0.0113%" height="15" fill="rgb(243,218,37)" fg:x="621464" fg:w="108"/><text x="65.2578%" y="767.50"></text></g><g><title>cshook_security_file_free_security (112 samples, 0.01%)</title><rect x="65.0078%" y="773" width="0.0117%" height="15" fill="rgb(218,169,10)" fg:x="621464" fg:w="112"/><text x="65.2578%" y="783.50"></text></g><g><title>cshook_security_file_free_security (183 samples, 0.02%)</title><rect x="65.0011%" y="805" width="0.0191%" height="15" fill="rgb(221,144,10)" fg:x="621400" fg:w="183"/><text x="65.2511%" y="815.50"></text></g><g><title>cshook_security_file_free_security (165 samples, 0.02%)</title><rect x="65.0030%" y="789" width="0.0173%" height="15" fill="rgb(226,41,38)" fg:x="621418" fg:w="165"/><text x="65.2530%" y="799.50"></text></g><g><title>_ZdlPv (100 samples, 0.01%)</title><rect x="65.0266%" y="789" width="0.0105%" height="15" fill="rgb(228,3,1)" fg:x="621644" fg:w="100"/><text x="65.2766%" y="799.50"></text></g><g><title>d_path (168 samples, 0.02%)</title><rect x="65.0453%" y="757" width="0.0176%" height="15" fill="rgb(209,129,12)" fg:x="621823" fg:w="168"/><text x="65.2953%" y="767.50"></text></g><g><title>prepend_path (158 samples, 0.02%)</title><rect x="65.0464%" y="741" width="0.0165%" height="15" fill="rgb(213,136,33)" fg:x="621833" fg:w="158"/><text x="65.2964%" y="751.50"></text></g><g><title>[[falcon_kal]] (214 samples, 0.02%)</title><rect x="65.0410%" y="773" width="0.0224%" height="15" fill="rgb(209,181,29)" fg:x="621782" fg:w="214"/><text x="65.2910%" y="783.50"></text></g><g><title>[[falcon_kal]] (154 samples, 0.02%)</title><rect x="65.0660%" y="757" width="0.0161%" height="15" fill="rgb(234,173,18)" fg:x="622021" fg:w="154"/><text x="65.3160%" y="767.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (430 samples, 0.04%)</title><rect x="65.0374%" y="789" width="0.0450%" height="15" fill="rgb(227,73,47)" fg:x="621747" fg:w="430"/><text x="65.2874%" y="799.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (174 samples, 0.02%)</title><rect x="65.0642%" y="773" width="0.0182%" height="15" fill="rgb(234,9,34)" fg:x="622003" fg:w="174"/><text x="65.3142%" y="783.50"></text></g><g><title>cshook_systemcalltable_post_openat (912 samples, 0.10%)</title><rect x="64.9964%" y="821" width="0.0954%" height="15" fill="rgb(235,172,15)" fg:x="621355" fg:w="912"/><text x="65.2464%" y="831.50"></text></g><g><title>fshook_syscalltable_pre_lchown (680 samples, 0.07%)</title><rect x="65.0206%" y="805" width="0.0711%" height="15" fill="rgb(245,61,2)" fg:x="621587" fg:w="680"/><text x="65.2706%" y="815.50"></text></g><g><title>do_syscall_64 (2,220 samples, 0.23%)</title><rect x="64.8681%" y="853" width="0.2322%" height="15" fill="rgb(238,39,47)" fg:x="620129" fg:w="2220"/><text x="65.1181%" y="863.50"></text></g><g><title>unload_network_ops_symbols (2,165 samples, 0.23%)</title><rect x="64.8739%" y="837" width="0.2265%" height="15" fill="rgb(234,37,24)" fg:x="620184" fg:w="2165"/><text x="65.1239%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,225 samples, 0.23%)</title><rect x="64.8680%" y="869" width="0.2327%" height="15" fill="rgb(248,223,24)" fg:x="620128" fg:w="2225"/><text x="65.1180%" y="879.50"></text></g><g><title>__libc_openat64 (2,295 samples, 0.24%)</title><rect x="64.8611%" y="885" width="0.2401%" height="15" fill="rgb(223,12,15)" fg:x="620062" fg:w="2295"/><text x="65.1111%" y="895.50"></text></g><g><title>do_syscall_64 (127 samples, 0.01%)</title><rect x="65.1012%" y="837" width="0.0133%" height="15" fill="rgb(249,6,3)" fg:x="622357" fg:w="127"/><text x="65.3512%" y="847.50"></text></g><g><title>unload_network_ops_symbols (119 samples, 0.01%)</title><rect x="65.1020%" y="821" width="0.0124%" height="15" fill="rgb(237,105,33)" fg:x="622365" fg:w="119"/><text x="65.3520%" y="831.50"></text></g><g><title>__GI___open64_nocancel (128 samples, 0.01%)</title><rect x="65.1012%" y="869" width="0.0134%" height="15" fill="rgb(252,208,35)" fg:x="622357" fg:w="128"/><text x="65.3512%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (128 samples, 0.01%)</title><rect x="65.1012%" y="853" width="0.0134%" height="15" fill="rgb(215,181,35)" fg:x="622357" fg:w="128"/><text x="65.3512%" y="863.50"></text></g><g><title>__opendir (157 samples, 0.02%)</title><rect x="65.1012%" y="885" width="0.0164%" height="15" fill="rgb(246,212,3)" fg:x="622357" fg:w="157"/><text x="65.3512%" y="895.50"></text></g><g><title>jni_ExceptionOccurred (184 samples, 0.02%)</title><rect x="65.1191%" y="885" width="0.0192%" height="15" fill="rgb(247,156,24)" fg:x="622528" fg:w="184"/><text x="65.3691%" y="895.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (146 samples, 0.02%)</title><rect x="65.1515%" y="869" width="0.0153%" height="15" fill="rgb(248,9,31)" fg:x="622838" fg:w="146"/><text x="65.4015%" y="879.50"></text></g><g><title>ThreadStateTransition::transition_from_native (97 samples, 0.01%)</title><rect x="65.1668%" y="869" width="0.0101%" height="15" fill="rgb(234,26,45)" fg:x="622984" fg:w="97"/><text x="65.4168%" y="879.50"></text></g><g><title>[libc.so.6] (132 samples, 0.01%)</title><rect x="65.1769%" y="869" width="0.0138%" height="15" fill="rgb(249,11,32)" fg:x="623081" fg:w="132"/><text x="65.4269%" y="879.50"></text></g><g><title>check_bounds (268 samples, 0.03%)</title><rect x="65.1908%" y="869" width="0.0280%" height="15" fill="rgb(249,162,33)" fg:x="623214" fg:w="268"/><text x="65.4408%" y="879.50"></text></g><g><title>jni_GetByteArrayRegion (831 samples, 0.09%)</title><rect x="65.1383%" y="885" width="0.0869%" height="15" fill="rgb(232,4,32)" fg:x="622712" fg:w="831"/><text x="65.3883%" y="895.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (258 samples, 0.03%)</title><rect x="65.2419%" y="869" width="0.0270%" height="15" fill="rgb(212,5,45)" fg:x="623702" fg:w="258"/><text x="65.4919%" y="879.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (230 samples, 0.02%)</title><rect x="65.2448%" y="853" width="0.0241%" height="15" fill="rgb(227,95,13)" fg:x="623730" fg:w="230"/><text x="65.4948%" y="863.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (215 samples, 0.02%)</title><rect x="65.2464%" y="837" width="0.0225%" height="15" fill="rgb(223,205,10)" fg:x="623745" fg:w="215"/><text x="65.4964%" y="847.50"></text></g><g><title>HandleMark::pop_and_restore (201 samples, 0.02%)</title><rect x="65.2689%" y="869" width="0.0210%" height="15" fill="rgb(222,178,8)" fg:x="623960" fg:w="201"/><text x="65.5189%" y="879.50"></text></g><g><title>JNIHandles::make_local (202 samples, 0.02%)</title><rect x="65.2899%" y="869" width="0.0211%" height="15" fill="rgb(216,13,22)" fg:x="624161" fg:w="202"/><text x="65.5399%" y="879.50"></text></g><g><title>ThreadStateTransition::transition_from_native (119 samples, 0.01%)</title><rect x="65.3191%" y="869" width="0.0124%" height="15" fill="rgb(240,167,12)" fg:x="624440" fg:w="119"/><text x="65.5691%" y="879.50"></text></g><g><title>jni_GetObjectField (1,017 samples, 0.11%)</title><rect x="65.2255%" y="885" width="0.1064%" height="15" fill="rgb(235,68,35)" fg:x="623545" fg:w="1017"/><text x="65.4755%" y="895.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (97 samples, 0.01%)</title><rect x="65.3647%" y="869" width="0.0101%" height="15" fill="rgb(253,40,27)" fg:x="624876" fg:w="97"/><text x="65.6147%" y="879.50"></text></g><g><title>jni_GetStringLength (592 samples, 0.06%)</title><rect x="65.3318%" y="885" width="0.0619%" height="15" fill="rgb(214,19,28)" fg:x="624562" fg:w="592"/><text x="65.5818%" y="895.50"></text></g><g><title>ThreadStateTransition::transition_from_native (181 samples, 0.02%)</title><rect x="65.3748%" y="869" width="0.0189%" height="15" fill="rgb(210,167,45)" fg:x="624973" fg:w="181"/><text x="65.6248%" y="879.50"></text></g><g><title>jni_NewObjectV (151 samples, 0.02%)</title><rect x="65.3942%" y="885" width="0.0158%" height="15" fill="rgb(232,97,40)" fg:x="625158" fg:w="151"/><text x="65.6442%" y="895.50"></text></g><g><title>operator new (356 samples, 0.04%)</title><rect x="65.4238%" y="885" width="0.0372%" height="15" fill="rgb(250,35,23)" fg:x="625441" fg:w="356"/><text x="65.6738%" y="895.50"></text></g><g><title>__GI___libc_malloc (248 samples, 0.03%)</title><rect x="65.4351%" y="869" width="0.0259%" height="15" fill="rgb(248,47,53)" fg:x="625549" fg:w="248"/><text x="65.6851%" y="879.50"></text></g><g><title>tcache_get (125 samples, 0.01%)</title><rect x="65.4480%" y="853" width="0.0131%" height="15" fill="rgb(226,58,50)" fg:x="625672" fg:w="125"/><text x="65.6980%" y="863.50"></text></g><g><title>__btrfs_unlink_inode (101 samples, 0.01%)</title><rect x="65.4689%" y="741" width="0.0106%" height="15" fill="rgb(217,105,26)" fg:x="625872" fg:w="101"/><text x="65.7189%" y="751.50"></text></g><g><title>do_renameat2 (324 samples, 0.03%)</title><rect x="65.4671%" y="805" width="0.0339%" height="15" fill="rgb(208,64,1)" fg:x="625855" fg:w="324"/><text x="65.7171%" y="815.50"></text></g><g><title>vfs_rename (308 samples, 0.03%)</title><rect x="65.4688%" y="789" width="0.0322%" height="15" fill="rgb(214,80,1)" fg:x="625871" fg:w="308"/><text x="65.7188%" y="799.50"></text></g><g><title>btrfs_rename2 (307 samples, 0.03%)</title><rect x="65.4689%" y="773" width="0.0321%" height="15" fill="rgb(206,175,26)" fg:x="625872" fg:w="307"/><text x="65.7189%" y="783.50"></text></g><g><title>btrfs_rename (307 samples, 0.03%)</title><rect x="65.4689%" y="757" width="0.0321%" height="15" fill="rgb(235,156,37)" fg:x="625872" fg:w="307"/><text x="65.7189%" y="767.50"></text></g><g><title>__x64_sys_rename (328 samples, 0.03%)</title><rect x="65.4671%" y="821" width="0.0343%" height="15" fill="rgb(213,100,9)" fg:x="625855" fg:w="328"/><text x="65.7171%" y="831.50"></text></g><g><title>rename (341 samples, 0.04%)</title><rect x="65.4670%" y="885" width="0.0357%" height="15" fill="rgb(241,15,13)" fg:x="625854" fg:w="341"/><text x="65.7170%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (341 samples, 0.04%)</title><rect x="65.4670%" y="869" width="0.0357%" height="15" fill="rgb(205,97,43)" fg:x="625854" fg:w="341"/><text x="65.7170%" y="879.50"></text></g><g><title>do_syscall_64 (341 samples, 0.04%)</title><rect x="65.4670%" y="853" width="0.0357%" height="15" fill="rgb(216,106,32)" fg:x="625854" fg:w="341"/><text x="65.7170%" y="863.50"></text></g><g><title>unload_network_ops_symbols (340 samples, 0.04%)</title><rect x="65.4671%" y="837" width="0.0356%" height="15" fill="rgb(226,200,8)" fg:x="625855" fg:w="340"/><text x="65.7171%" y="847.50"></text></g><g><title>_int_malloc (111 samples, 0.01%)</title><rect x="65.5226%" y="837" width="0.0116%" height="15" fill="rgb(244,54,29)" fg:x="626386" fg:w="111"/><text x="65.7726%" y="847.50"></text></g><g><title>std::string::_Rep::_S_create (326 samples, 0.03%)</title><rect x="65.5033%" y="885" width="0.0341%" height="15" fill="rgb(252,169,12)" fg:x="626201" fg:w="326"/><text x="65.7533%" y="895.50"></text></g><g><title>operator new (272 samples, 0.03%)</title><rect x="65.5089%" y="869" width="0.0285%" height="15" fill="rgb(231,199,11)" fg:x="626255" fg:w="272"/><text x="65.7589%" y="879.50"></text></g><g><title>__GI___libc_malloc (237 samples, 0.02%)</title><rect x="65.5126%" y="853" width="0.0248%" height="15" fill="rgb(233,191,18)" fg:x="626290" fg:w="237"/><text x="65.7626%" y="863.50"></text></g><g><title>[libunix_jni.so] (446,241 samples, 46.68%)</title><rect x="18.8589%" y="901" width="46.6787%" height="15" fill="rgb(215,83,47)" fg:x="180288" fg:w="446241"/><text x="19.1089%" y="911.50">[libunix_jni.so]</text></g><g><title>InterpreterRuntime::_new (137 samples, 0.01%)</title><rect x="70.8142%" y="885" width="0.0143%" height="15" fill="rgb(251,67,19)" fg:x="676972" fg:w="137"/><text x="71.0642%" y="895.50"></text></g><g><title>InterpreterRuntime::anewarray (135 samples, 0.01%)</title><rect x="70.8285%" y="885" width="0.0141%" height="15" fill="rgb(240,7,20)" fg:x="677109" fg:w="135"/><text x="71.0785%" y="895.50"></text></g><g><title>TieredThresholdPolicy::event (234 samples, 0.02%)</title><rect x="70.8488%" y="853" width="0.0245%" height="15" fill="rgb(210,150,26)" fg:x="677303" fg:w="234"/><text x="71.0988%" y="863.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (215 samples, 0.02%)</title><rect x="70.8508%" y="837" width="0.0225%" height="15" fill="rgb(228,75,42)" fg:x="677322" fg:w="215"/><text x="71.1008%" y="847.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (262 samples, 0.03%)</title><rect x="70.8461%" y="885" width="0.0274%" height="15" fill="rgb(237,134,48)" fg:x="677277" fg:w="262"/><text x="71.0961%" y="895.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (261 samples, 0.03%)</title><rect x="70.8462%" y="869" width="0.0273%" height="15" fill="rgb(205,80,50)" fg:x="677278" fg:w="261"/><text x="71.0962%" y="879.50"></text></g><g><title>InterpreterRuntime::ldc (110 samples, 0.01%)</title><rect x="70.8735%" y="885" width="0.0115%" height="15" fill="rgb(217,74,48)" fg:x="677539" fg:w="110"/><text x="71.1235%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (236 samples, 0.02%)</title><rect x="70.9074%" y="853" width="0.0247%" height="15" fill="rgb(205,82,50)" fg:x="677863" fg:w="236"/><text x="71.1574%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (332 samples, 0.03%)</title><rect x="70.9013%" y="869" width="0.0347%" height="15" fill="rgb(228,1,33)" fg:x="677805" fg:w="332"/><text x="71.1513%" y="879.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (487 samples, 0.05%)</title><rect x="70.8960%" y="885" width="0.0509%" height="15" fill="rgb(214,50,23)" fg:x="677754" fg:w="487"/><text x="71.1460%" y="895.50"></text></g><g><title>ObjectMonitor::wait (103 samples, 0.01%)</title><rect x="70.9940%" y="853" width="0.0108%" height="15" fill="rgb(210,62,9)" fg:x="678691" fg:w="103"/><text x="71.2440%" y="863.50"></text></g><g><title>os::PlatformEvent::park (96 samples, 0.01%)</title><rect x="70.9947%" y="837" width="0.0100%" height="15" fill="rgb(210,104,37)" fg:x="678698" fg:w="96"/><text x="71.2447%" y="847.50"></text></g><g><title>JVM_MonitorWait (108 samples, 0.01%)</title><rect x="70.9936%" y="885" width="0.0113%" height="15" fill="rgb(232,104,43)" fg:x="678687" fg:w="108"/><text x="71.2436%" y="895.50"></text></g><g><title>ObjectSynchronizer::wait (108 samples, 0.01%)</title><rect x="70.9936%" y="869" width="0.0113%" height="15" fill="rgb(244,52,6)" fg:x="678687" fg:w="108"/><text x="71.2436%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (347 samples, 0.04%)</title><rect x="71.0179%" y="757" width="0.0363%" height="15" fill="rgb(211,174,52)" fg:x="678920" fg:w="347"/><text x="71.2679%" y="767.50"></text></g><g><title>SymbolTable::lookup_only (307 samples, 0.03%)</title><rect x="71.0221%" y="741" width="0.0321%" height="15" fill="rgb(229,48,4)" fg:x="678960" fg:w="307"/><text x="71.2721%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool (357 samples, 0.04%)</title><rect x="71.0171%" y="773" width="0.0373%" height="15" fill="rgb(205,155,16)" fg:x="678912" fg:w="357"/><text x="71.2671%" y="783.50"></text></g><g><title>ClassFileParser::ClassFileParser (478 samples, 0.05%)</title><rect x="71.0160%" y="805" width="0.0500%" height="15" fill="rgb(211,141,53)" fg:x="678902" fg:w="478"/><text x="71.2660%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (478 samples, 0.05%)</title><rect x="71.0160%" y="789" width="0.0500%" height="15" fill="rgb(240,148,11)" fg:x="678902" fg:w="478"/><text x="71.2660%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (605 samples, 0.06%)</title><rect x="71.0159%" y="821" width="0.0633%" height="15" fill="rgb(214,45,23)" fg:x="678901" fg:w="605"/><text x="71.2659%" y="831.50"></text></g><g><title>JVM_DefineClassWithSource (628 samples, 0.07%)</title><rect x="71.0153%" y="869" width="0.0657%" height="15" fill="rgb(248,74,26)" fg:x="678895" fg:w="628"/><text x="71.2653%" y="879.50"></text></g><g><title>jvm_define_class_common (628 samples, 0.07%)</title><rect x="71.0153%" y="853" width="0.0657%" height="15" fill="rgb(218,121,16)" fg:x="678895" fg:w="628"/><text x="71.2653%" y="863.50"></text></g><g><title>SystemDictionary::resolve_from_stream (624 samples, 0.07%)</title><rect x="71.0157%" y="837" width="0.0653%" height="15" fill="rgb(218,10,47)" fg:x="678899" fg:w="624"/><text x="71.2657%" y="847.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (649 samples, 0.07%)</title><rect x="71.0150%" y="885" width="0.0679%" height="15" fill="rgb(227,99,14)" fg:x="678892" fg:w="649"/><text x="71.2650%" y="895.50"></text></g><g><title>kernel_clone (141 samples, 0.01%)</title><rect x="71.1029%" y="789" width="0.0147%" height="15" fill="rgb(229,83,46)" fg:x="679732" fg:w="141"/><text x="71.3529%" y="799.50"></text></g><g><title>__x64_sys_vfork (143 samples, 0.01%)</title><rect x="71.1028%" y="805" width="0.0150%" height="15" fill="rgb(228,25,1)" fg:x="679731" fg:w="143"/><text x="71.3528%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (147 samples, 0.02%)</title><rect x="71.1028%" y="837" width="0.0154%" height="15" fill="rgb(252,190,15)" fg:x="679731" fg:w="147"/><text x="71.3528%" y="847.50"></text></g><g><title>do_syscall_64 (147 samples, 0.02%)</title><rect x="71.1028%" y="821" width="0.0154%" height="15" fill="rgb(213,103,51)" fg:x="679731" fg:w="147"/><text x="71.3528%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (297 samples, 0.03%)</title><rect x="71.1204%" y="789" width="0.0311%" height="15" fill="rgb(220,38,44)" fg:x="679900" fg:w="297"/><text x="71.3704%" y="799.50"></text></g><g><title>x86_pmu_enable (292 samples, 0.03%)</title><rect x="71.1210%" y="773" width="0.0305%" height="15" fill="rgb(210,45,26)" fg:x="679905" fg:w="292"/><text x="71.3710%" y="783.50"></text></g><g><title>intel_pmu_enable_all (292 samples, 0.03%)</title><rect x="71.1210%" y="757" width="0.0305%" height="15" fill="rgb(205,95,48)" fg:x="679905" fg:w="292"/><text x="71.3710%" y="767.50"></text></g><g><title>native_write_msr (289 samples, 0.03%)</title><rect x="71.1213%" y="741" width="0.0302%" height="15" fill="rgb(225,179,37)" fg:x="679908" fg:w="289"/><text x="71.3713%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (318 samples, 0.03%)</title><rect x="71.1193%" y="805" width="0.0333%" height="15" fill="rgb(230,209,3)" fg:x="679889" fg:w="318"/><text x="71.3693%" y="815.50"></text></g><g><title>schedule_tail (328 samples, 0.03%)</title><rect x="71.1183%" y="821" width="0.0343%" height="15" fill="rgb(248,12,46)" fg:x="679880" fg:w="328"/><text x="71.3683%" y="831.50"></text></g><g><title>__libc_vfork (483 samples, 0.05%)</title><rect x="71.1024%" y="853" width="0.0505%" height="15" fill="rgb(234,18,0)" fg:x="679728" fg:w="483"/><text x="71.3524%" y="863.50"></text></g><g><title>ret_from_fork (333 samples, 0.03%)</title><rect x="71.1181%" y="837" width="0.0348%" height="15" fill="rgb(238,197,14)" fg:x="679878" fg:w="333"/><text x="71.3681%" y="847.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (161 samples, 0.02%)</title><rect x="71.1668%" y="485" width="0.0168%" height="15" fill="rgb(251,162,48)" fg:x="680343" fg:w="161"/><text x="71.4168%" y="495.50"></text></g><g><title>_ZdlPv (160 samples, 0.02%)</title><rect x="71.1669%" y="469" width="0.0167%" height="15" fill="rgb(237,73,42)" fg:x="680344" fg:w="160"/><text x="71.4169%" y="479.50"></text></g><g><title>_ZdlPv (158 samples, 0.02%)</title><rect x="71.1671%" y="453" width="0.0165%" height="15" fill="rgb(211,108,8)" fg:x="680346" fg:w="158"/><text x="71.4171%" y="463.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (157 samples, 0.02%)</title><rect x="71.1672%" y="437" width="0.0164%" height="15" fill="rgb(213,45,22)" fg:x="680347" fg:w="157"/><text x="71.4172%" y="447.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (141 samples, 0.01%)</title><rect x="71.1689%" y="421" width="0.0147%" height="15" fill="rgb(252,154,5)" fg:x="680363" fg:w="141"/><text x="71.4189%" y="431.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (216 samples, 0.02%)</title><rect x="71.1644%" y="517" width="0.0226%" height="15" fill="rgb(221,79,52)" fg:x="680320" fg:w="216"/><text x="71.4144%" y="527.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (200 samples, 0.02%)</title><rect x="71.1660%" y="501" width="0.0209%" height="15" fill="rgb(229,220,36)" fg:x="680336" fg:w="200"/><text x="71.4160%" y="511.50"></text></g><g><title>_ZdlPv (104 samples, 0.01%)</title><rect x="71.1874%" y="501" width="0.0109%" height="15" fill="rgb(211,17,16)" fg:x="680540" fg:w="104"/><text x="71.4374%" y="511.50"></text></g><g><title>_ZdlPv (123 samples, 0.01%)</title><rect x="71.1870%" y="517" width="0.0129%" height="15" fill="rgb(222,55,31)" fg:x="680536" fg:w="123"/><text x="71.4370%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (115 samples, 0.01%)</title><rect x="71.2296%" y="357" width="0.0120%" height="15" fill="rgb(221,221,31)" fg:x="680944" fg:w="115"/><text x="71.4796%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (122 samples, 0.01%)</title><rect x="71.2291%" y="373" width="0.0128%" height="15" fill="rgb(227,168,26)" fg:x="680939" fg:w="122"/><text x="71.4791%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (159 samples, 0.02%)</title><rect x="71.2255%" y="405" width="0.0166%" height="15" fill="rgb(224,139,9)" fg:x="680904" fg:w="159"/><text x="71.4755%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (137 samples, 0.01%)</title><rect x="71.2278%" y="389" width="0.0143%" height="15" fill="rgb(254,172,0)" fg:x="680926" fg:w="137"/><text x="71.4778%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (177 samples, 0.02%)</title><rect x="71.2237%" y="421" width="0.0185%" height="15" fill="rgb(235,203,1)" fg:x="680887" fg:w="177"/><text x="71.4737%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (204 samples, 0.02%)</title><rect x="71.2216%" y="437" width="0.0213%" height="15" fill="rgb(216,205,24)" fg:x="680867" fg:w="204"/><text x="71.4716%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (239 samples, 0.03%)</title><rect x="71.2180%" y="469" width="0.0250%" height="15" fill="rgb(233,24,6)" fg:x="680833" fg:w="239"/><text x="71.4680%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (210 samples, 0.02%)</title><rect x="71.2211%" y="453" width="0.0220%" height="15" fill="rgb(244,110,9)" fg:x="680862" fg:w="210"/><text x="71.4711%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (283 samples, 0.03%)</title><rect x="71.2140%" y="485" width="0.0296%" height="15" fill="rgb(239,222,42)" fg:x="680794" fg:w="283"/><text x="71.4640%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (339 samples, 0.04%)</title><rect x="71.2092%" y="501" width="0.0355%" height="15" fill="rgb(218,145,13)" fg:x="680749" fg:w="339"/><text x="71.4592%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (425 samples, 0.04%)</title><rect x="71.2004%" y="517" width="0.0445%" height="15" fill="rgb(207,69,11)" fg:x="680664" fg:w="425"/><text x="71.4504%" y="527.50"></text></g><g><title>_ZdlPv (804 samples, 0.08%)</title><rect x="71.1608%" y="533" width="0.0841%" height="15" fill="rgb(220,223,22)" fg:x="680286" fg:w="804"/><text x="71.4108%" y="543.50"></text></g><g><title>_ZdlPv (815 samples, 0.09%)</title><rect x="71.1602%" y="565" width="0.0853%" height="15" fill="rgb(245,102,5)" fg:x="680280" fg:w="815"/><text x="71.4102%" y="575.50"></text></g><g><title>_ZdlPv (815 samples, 0.09%)</title><rect x="71.1602%" y="549" width="0.0853%" height="15" fill="rgb(211,148,2)" fg:x="680280" fg:w="815"/><text x="71.4102%" y="559.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (104 samples, 0.01%)</title><rect x="71.2482%" y="469" width="0.0109%" height="15" fill="rgb(241,13,44)" fg:x="681121" fg:w="104"/><text x="71.4982%" y="479.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (108 samples, 0.01%)</title><rect x="71.2478%" y="485" width="0.0113%" height="15" fill="rgb(219,137,21)" fg:x="681118" fg:w="108"/><text x="71.4978%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (100 samples, 0.01%)</title><rect x="71.2847%" y="389" width="0.0105%" height="15" fill="rgb(242,206,5)" fg:x="681470" fg:w="100"/><text x="71.5347%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (169 samples, 0.02%)</title><rect x="71.2784%" y="453" width="0.0177%" height="15" fill="rgb(217,114,22)" fg:x="681410" fg:w="169"/><text x="71.5284%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (142 samples, 0.01%)</title><rect x="71.2812%" y="437" width="0.0149%" height="15" fill="rgb(253,206,42)" fg:x="681437" fg:w="142"/><text x="71.5312%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (125 samples, 0.01%)</title><rect x="71.2830%" y="421" width="0.0131%" height="15" fill="rgb(236,102,18)" fg:x="681454" fg:w="125"/><text x="71.5330%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (117 samples, 0.01%)</title><rect x="71.2838%" y="405" width="0.0122%" height="15" fill="rgb(208,59,49)" fg:x="681462" fg:w="117"/><text x="71.5338%" y="415.50"></text></g><g><title>_ZdlPv (476 samples, 0.05%)</title><rect x="71.2466%" y="501" width="0.0498%" height="15" fill="rgb(215,194,28)" fg:x="681106" fg:w="476"/><text x="71.4966%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (296 samples, 0.03%)</title><rect x="71.2654%" y="485" width="0.0310%" height="15" fill="rgb(243,207,11)" fg:x="681286" fg:w="296"/><text x="71.5154%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (200 samples, 0.02%)</title><rect x="71.2755%" y="469" width="0.0209%" height="15" fill="rgb(254,179,35)" fg:x="681382" fg:w="200"/><text x="71.5255%" y="479.50"></text></g><g><title>_ZdlPv (480 samples, 0.05%)</title><rect x="71.2463%" y="517" width="0.0502%" height="15" fill="rgb(235,97,3)" fg:x="681103" fg:w="480"/><text x="71.4963%" y="527.50"></text></g><g><title>_ZdlPv (485 samples, 0.05%)</title><rect x="71.2459%" y="549" width="0.0507%" height="15" fill="rgb(215,155,33)" fg:x="681099" fg:w="485"/><text x="71.4959%" y="559.50"></text></g><g><title>_ZdlPv (481 samples, 0.05%)</title><rect x="71.2463%" y="533" width="0.0503%" height="15" fill="rgb(223,128,12)" fg:x="681103" fg:w="481"/><text x="71.4963%" y="543.50"></text></g><g><title>cshook_security_sb_free_security (512 samples, 0.05%)</title><rect x="71.2456%" y="565" width="0.0536%" height="15" fill="rgb(208,157,18)" fg:x="681097" fg:w="512"/><text x="71.4956%" y="575.50"></text></g><g><title>cshook_security_file_permission (1,340 samples, 0.14%)</title><rect x="71.1599%" y="613" width="0.1402%" height="15" fill="rgb(249,70,54)" fg:x="680277" fg:w="1340"/><text x="71.4099%" y="623.50"></text></g><g><title>cshook_security_sb_free_security (1,338 samples, 0.14%)</title><rect x="71.1601%" y="597" width="0.1400%" height="15" fill="rgb(244,118,24)" fg:x="680279" fg:w="1338"/><text x="71.4101%" y="607.50"></text></g><g><title>cshook_security_sb_free_security (1,337 samples, 0.14%)</title><rect x="71.1602%" y="581" width="0.1399%" height="15" fill="rgb(211,54,0)" fg:x="680280" fg:w="1337"/><text x="71.4102%" y="591.50"></text></g><g><title>cshook_security_bprm_check_security (1,355 samples, 0.14%)</title><rect x="71.1586%" y="645" width="0.1417%" height="15" fill="rgb(245,137,45)" fg:x="680265" fg:w="1355"/><text x="71.4086%" y="655.50"></text></g><g><title>cshook_security_file_permission (1,355 samples, 0.14%)</title><rect x="71.1586%" y="629" width="0.1417%" height="15" fill="rgb(232,154,31)" fg:x="680265" fg:w="1355"/><text x="71.4086%" y="639.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,356 samples, 0.14%)</title><rect x="71.1586%" y="661" width="0.1418%" height="15" fill="rgb(253,6,39)" fg:x="680265" fg:w="1356"/><text x="71.4086%" y="671.50"></text></g><g><title>security_bprm_check (1,358 samples, 0.14%)</title><rect x="71.1585%" y="677" width="0.1421%" height="15" fill="rgb(234,183,24)" fg:x="680264" fg:w="1358"/><text x="71.4085%" y="687.50"></text></g><g><title>exec_binprm (1,397 samples, 0.15%)</title><rect x="71.1545%" y="709" width="0.1461%" height="15" fill="rgb(252,84,40)" fg:x="680226" fg:w="1397"/><text x="71.4045%" y="719.50"></text></g><g><title>search_binary_handler (1,396 samples, 0.15%)</title><rect x="71.1546%" y="693" width="0.1460%" height="15" fill="rgb(224,65,2)" fg:x="680227" fg:w="1396"/><text x="71.4046%" y="703.50"></text></g><g><title>bprm_execve.part.0 (1,433 samples, 0.15%)</title><rect x="71.1540%" y="725" width="0.1499%" height="15" fill="rgb(229,38,24)" fg:x="680221" fg:w="1433"/><text x="71.4040%" y="735.50"></text></g><g><title>bprm_execve (1,434 samples, 0.15%)</title><rect x="71.1540%" y="741" width="0.1500%" height="15" fill="rgb(218,131,50)" fg:x="680221" fg:w="1434"/><text x="71.4040%" y="751.50"></text></g><g><title>JDK_execvpe (1,456 samples, 0.15%)</title><rect x="71.1531%" y="837" width="0.1523%" height="15" fill="rgb(233,106,18)" fg:x="680212" fg:w="1456"/><text x="71.4031%" y="847.50"></text></g><g><title>__GI_execve (1,455 samples, 0.15%)</title><rect x="71.1532%" y="821" width="0.1522%" height="15" fill="rgb(220,216,11)" fg:x="680213" fg:w="1455"/><text x="71.4032%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,455 samples, 0.15%)</title><rect x="71.1532%" y="805" width="0.1522%" height="15" fill="rgb(251,100,45)" fg:x="680213" fg:w="1455"/><text x="71.4032%" y="815.50"></text></g><g><title>do_syscall_64 (1,455 samples, 0.15%)</title><rect x="71.1532%" y="789" width="0.1522%" height="15" fill="rgb(235,143,32)" fg:x="680213" fg:w="1455"/><text x="71.4032%" y="799.50"></text></g><g><title>__x64_sys_execve (1,455 samples, 0.15%)</title><rect x="71.1532%" y="773" width="0.1522%" height="15" fill="rgb(248,124,34)" fg:x="680213" fg:w="1455"/><text x="71.4032%" y="783.50"></text></g><g><title>do_execveat_common.isra.0 (1,455 samples, 0.15%)</title><rect x="71.1532%" y="757" width="0.1522%" height="15" fill="rgb(225,221,4)" fg:x="680213" fg:w="1455"/><text x="71.4032%" y="767.50"></text></g><g><title>closeDescriptors (122 samples, 0.01%)</title><rect x="71.3090%" y="837" width="0.0128%" height="15" fill="rgb(242,27,43)" fg:x="681703" fg:w="122"/><text x="71.5590%" y="847.50"></text></g><g><title>childProcess (1,623 samples, 0.17%)</title><rect x="71.1530%" y="853" width="0.1698%" height="15" fill="rgb(227,54,8)" fg:x="680211" fg:w="1623"/><text x="71.4030%" y="863.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (2,182 samples, 0.23%)</title><rect x="71.0946%" y="885" width="0.2282%" height="15" fill="rgb(253,139,49)" fg:x="679653" fg:w="2182"/><text x="71.3446%" y="895.50"></text></g><g><title>vforkChild (2,107 samples, 0.22%)</title><rect x="71.1024%" y="869" width="0.2204%" height="15" fill="rgb(231,26,43)" fg:x="679728" fg:w="2107"/><text x="71.3524%" y="879.50"></text></g><g><title>Runtime1::counter_overflow (153 samples, 0.02%)</title><rect x="71.3382%" y="885" width="0.0160%" height="15" fill="rgb(207,121,39)" fg:x="681982" fg:w="153"/><text x="71.5882%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (178 samples, 0.02%)</title><rect x="71.3946%" y="629" width="0.0186%" height="15" fill="rgb(223,101,35)" fg:x="682521" fg:w="178"/><text x="71.6446%" y="639.50"></text></g><g><title>x86_pmu_enable (170 samples, 0.02%)</title><rect x="71.3954%" y="613" width="0.0178%" height="15" fill="rgb(232,87,23)" fg:x="682529" fg:w="170"/><text x="71.6454%" y="623.50"></text></g><g><title>intel_pmu_enable_all (167 samples, 0.02%)</title><rect x="71.3958%" y="597" width="0.0175%" height="15" fill="rgb(225,180,29)" fg:x="682532" fg:w="167"/><text x="71.6458%" y="607.50"></text></g><g><title>native_write_msr (166 samples, 0.02%)</title><rect x="71.3959%" y="581" width="0.0174%" height="15" fill="rgb(225,25,17)" fg:x="682533" fg:w="166"/><text x="71.6459%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (185 samples, 0.02%)</title><rect x="71.3943%" y="645" width="0.0194%" height="15" fill="rgb(223,8,52)" fg:x="682518" fg:w="185"/><text x="71.6443%" y="655.50"></text></g><g><title>futex_wait_queue_me (231 samples, 0.02%)</title><rect x="71.3920%" y="693" width="0.0242%" height="15" fill="rgb(246,42,21)" fg:x="682496" fg:w="231"/><text x="71.6420%" y="703.50"></text></g><g><title>schedule (230 samples, 0.02%)</title><rect x="71.3921%" y="677" width="0.0241%" height="15" fill="rgb(205,64,43)" fg:x="682497" fg:w="230"/><text x="71.6421%" y="687.50"></text></g><g><title>__schedule (230 samples, 0.02%)</title><rect x="71.3921%" y="661" width="0.0241%" height="15" fill="rgb(221,160,13)" fg:x="682497" fg:w="230"/><text x="71.6421%" y="671.50"></text></g><g><title>__x64_sys_futex (239 samples, 0.03%)</title><rect x="71.3916%" y="741" width="0.0250%" height="15" fill="rgb(239,58,35)" fg:x="682492" fg:w="239"/><text x="71.6416%" y="751.50"></text></g><g><title>do_futex (237 samples, 0.02%)</title><rect x="71.3918%" y="725" width="0.0248%" height="15" fill="rgb(251,26,40)" fg:x="682494" fg:w="237"/><text x="71.6418%" y="735.50"></text></g><g><title>futex_wait (236 samples, 0.02%)</title><rect x="71.3919%" y="709" width="0.0247%" height="15" fill="rgb(247,0,4)" fg:x="682495" fg:w="236"/><text x="71.6419%" y="719.50"></text></g><g><title>do_syscall_64 (247 samples, 0.03%)</title><rect x="71.3916%" y="757" width="0.0258%" height="15" fill="rgb(218,130,10)" fg:x="682492" fg:w="247"/><text x="71.6416%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (249 samples, 0.03%)</title><rect x="71.3915%" y="773" width="0.0260%" height="15" fill="rgb(239,32,7)" fg:x="682491" fg:w="249"/><text x="71.6415%" y="783.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (254 samples, 0.03%)</title><rect x="71.3912%" y="821" width="0.0266%" height="15" fill="rgb(210,192,24)" fg:x="682488" fg:w="254"/><text x="71.6412%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (254 samples, 0.03%)</title><rect x="71.3912%" y="805" width="0.0266%" height="15" fill="rgb(226,212,17)" fg:x="682488" fg:w="254"/><text x="71.6412%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (253 samples, 0.03%)</title><rect x="71.3913%" y="789" width="0.0265%" height="15" fill="rgb(219,201,28)" fg:x="682489" fg:w="253"/><text x="71.6413%" y="799.50"></text></g><g><title>___pthread_cond_wait (255 samples, 0.03%)</title><rect x="71.3912%" y="853" width="0.0267%" height="15" fill="rgb(235,207,41)" fg:x="682488" fg:w="255"/><text x="71.6412%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (255 samples, 0.03%)</title><rect x="71.3912%" y="837" width="0.0267%" height="15" fill="rgb(241,95,54)" fg:x="682488" fg:w="255"/><text x="71.6412%" y="847.50"></text></g><g><title>Parker::park (282 samples, 0.03%)</title><rect x="71.3901%" y="869" width="0.0295%" height="15" fill="rgb(248,12,23)" fg:x="682478" fg:w="282"/><text x="71.6401%" y="879.50"></text></g><g><title>Unsafe_Park (289 samples, 0.03%)</title><rect x="71.3895%" y="885" width="0.0302%" height="15" fill="rgb(228,173,4)" fg:x="682472" fg:w="289"/><text x="71.6395%" y="895.50"></text></g><g><title>try_to_wake_up (105 samples, 0.01%)</title><rect x="71.4268%" y="741" width="0.0110%" height="15" fill="rgb(254,99,5)" fg:x="682829" fg:w="105"/><text x="71.6768%" y="751.50"></text></g><g><title>futex_wake (126 samples, 0.01%)</title><rect x="71.4247%" y="773" width="0.0132%" height="15" fill="rgb(212,184,17)" fg:x="682809" fg:w="126"/><text x="71.6747%" y="783.50"></text></g><g><title>wake_up_q (108 samples, 0.01%)</title><rect x="71.4266%" y="757" width="0.0113%" height="15" fill="rgb(252,174,1)" fg:x="682827" fg:w="108"/><text x="71.6766%" y="767.50"></text></g><g><title>do_futex (128 samples, 0.01%)</title><rect x="71.4246%" y="789" width="0.0134%" height="15" fill="rgb(241,118,51)" fg:x="682808" fg:w="128"/><text x="71.6746%" y="799.50"></text></g><g><title>__x64_sys_futex (129 samples, 0.01%)</title><rect x="71.4246%" y="805" width="0.0135%" height="15" fill="rgb(227,94,47)" fg:x="682808" fg:w="129"/><text x="71.6746%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (166 samples, 0.02%)</title><rect x="71.4245%" y="837" width="0.0174%" height="15" fill="rgb(229,104,2)" fg:x="682807" fg:w="166"/><text x="71.6745%" y="847.50"></text></g><g><title>do_syscall_64 (165 samples, 0.02%)</title><rect x="71.4246%" y="821" width="0.0173%" height="15" fill="rgb(219,28,31)" fg:x="682808" fg:w="165"/><text x="71.6746%" y="831.50"></text></g><g><title>___pthread_cond_signal (176 samples, 0.02%)</title><rect x="71.4238%" y="869" width="0.0184%" height="15" fill="rgb(233,109,36)" fg:x="682800" fg:w="176"/><text x="71.6738%" y="879.50"></text></g><g><title>futex_wake (172 samples, 0.02%)</title><rect x="71.4242%" y="853" width="0.0180%" height="15" fill="rgb(246,88,11)" fg:x="682804" fg:w="172"/><text x="71.6742%" y="863.50"></text></g><g><title>Unsafe_Unpark (217 samples, 0.02%)</title><rect x="71.4201%" y="885" width="0.0227%" height="15" fill="rgb(209,212,17)" fg:x="682765" fg:w="217"/><text x="71.6701%" y="895.50"></text></g><g><title>__mem_cgroup_charge (102 samples, 0.01%)</title><rect x="71.4926%" y="773" width="0.0107%" height="15" fill="rgb(243,59,29)" fg:x="683458" fg:w="102"/><text x="71.7426%" y="783.50"></text></g><g><title>clear_page_erms (106 samples, 0.01%)</title><rect x="71.5112%" y="725" width="0.0111%" height="15" fill="rgb(244,205,48)" fg:x="683636" fg:w="106"/><text x="71.7612%" y="735.50"></text></g><g><title>get_page_from_freelist (176 samples, 0.02%)</title><rect x="71.5103%" y="741" width="0.0184%" height="15" fill="rgb(227,30,6)" fg:x="683627" fg:w="176"/><text x="71.7603%" y="751.50"></text></g><g><title>__alloc_pages (219 samples, 0.02%)</title><rect x="71.5067%" y="757" width="0.0229%" height="15" fill="rgb(220,205,48)" fg:x="683593" fg:w="219"/><text x="71.7567%" y="767.50"></text></g><g><title>alloc_pages_vma (252 samples, 0.03%)</title><rect x="71.5050%" y="773" width="0.0264%" height="15" fill="rgb(250,94,14)" fg:x="683576" fg:w="252"/><text x="71.7550%" y="783.50"></text></g><g><title>do_anonymous_page (572 samples, 0.06%)</title><rect x="71.4878%" y="789" width="0.0598%" height="15" fill="rgb(216,119,42)" fg:x="683412" fg:w="572"/><text x="71.7378%" y="799.50"></text></g><g><title>handle_pte_fault (650 samples, 0.07%)</title><rect x="71.4815%" y="805" width="0.0680%" height="15" fill="rgb(232,155,0)" fg:x="683352" fg:w="650"/><text x="71.7315%" y="815.50"></text></g><g><title>__handle_mm_fault (723 samples, 0.08%)</title><rect x="71.4742%" y="821" width="0.0756%" height="15" fill="rgb(212,24,32)" fg:x="683282" fg:w="723"/><text x="71.7242%" y="831.50"></text></g><g><title>handle_mm_fault (833 samples, 0.09%)</title><rect x="71.4651%" y="837" width="0.0871%" height="15" fill="rgb(216,69,20)" fg:x="683195" fg:w="833"/><text x="71.7151%" y="847.50"></text></g><g><title>do_user_addr_fault (934 samples, 0.10%)</title><rect x="71.4561%" y="853" width="0.0977%" height="15" fill="rgb(229,73,31)" fg:x="683109" fg:w="934"/><text x="71.7061%" y="863.50"></text></g><g><title>exc_page_fault (988 samples, 0.10%)</title><rect x="71.4543%" y="869" width="0.1033%" height="15" fill="rgb(224,219,20)" fg:x="683092" fg:w="988"/><text x="71.7043%" y="879.50"></text></g><g><title>asm_exc_page_fault (997 samples, 0.10%)</title><rect x="71.4539%" y="885" width="0.1043%" height="15" fill="rgb(215,146,41)" fg:x="683088" fg:w="997"/><text x="71.7039%" y="895.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (156 samples, 0.02%)</title><rect x="71.5582%" y="885" width="0.0163%" height="15" fill="rgb(244,71,31)" fg:x="684085" fg:w="156"/><text x="71.8082%" y="895.50"></text></g><g><title>sysvec_apic_timer_interrupt (155 samples, 0.02%)</title><rect x="71.5583%" y="869" width="0.0162%" height="15" fill="rgb(224,24,11)" fg:x="684086" fg:w="155"/><text x="71.8083%" y="879.50"></text></g><g><title>exit_to_user_mode_loop (134 samples, 0.01%)</title><rect x="71.5768%" y="805" width="0.0140%" height="15" fill="rgb(229,76,15)" fg:x="684263" fg:w="134"/><text x="71.8268%" y="815.50"></text></g><g><title>schedule (125 samples, 0.01%)</title><rect x="71.5778%" y="789" width="0.0131%" height="15" fill="rgb(209,93,2)" fg:x="684272" fg:w="125"/><text x="71.8278%" y="799.50"></text></g><g><title>__schedule (123 samples, 0.01%)</title><rect x="71.5780%" y="773" width="0.0129%" height="15" fill="rgb(216,200,50)" fg:x="684274" fg:w="123"/><text x="71.8280%" y="783.50"></text></g><g><title>irqentry_exit (142 samples, 0.01%)</title><rect x="71.5763%" y="853" width="0.0149%" height="15" fill="rgb(211,67,34)" fg:x="684258" fg:w="142"/><text x="71.8263%" y="863.50"></text></g><g><title>irqentry_exit_to_user_mode (141 samples, 0.01%)</title><rect x="71.5764%" y="837" width="0.0147%" height="15" fill="rgb(225,87,47)" fg:x="684259" fg:w="141"/><text x="71.8264%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (141 samples, 0.01%)</title><rect x="71.5764%" y="821" width="0.0147%" height="15" fill="rgb(217,185,16)" fg:x="684259" fg:w="141"/><text x="71.8264%" y="831.50"></text></g><g><title>asm_sysvec_reschedule_ipi (155 samples, 0.02%)</title><rect x="71.5752%" y="885" width="0.0162%" height="15" fill="rgb(205,0,0)" fg:x="684247" fg:w="155"/><text x="71.8252%" y="895.50"></text></g><g><title>sysvec_reschedule_ipi (150 samples, 0.02%)</title><rect x="71.5757%" y="869" width="0.0157%" height="15" fill="rgb(207,116,45)" fg:x="684252" fg:w="150"/><text x="71.8257%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (119 samples, 0.01%)</title><rect x="71.5934%" y="853" width="0.0124%" height="15" fill="rgb(221,156,26)" fg:x="684421" fg:w="119"/><text x="71.8434%" y="863.50"></text></g><g><title>do_syscall_64 (117 samples, 0.01%)</title><rect x="71.5936%" y="837" width="0.0122%" height="15" fill="rgb(213,140,4)" fg:x="684423" fg:w="117"/><text x="71.8436%" y="847.50"></text></g><g><title>__GI___close (125 samples, 0.01%)</title><rect x="71.5928%" y="869" width="0.0131%" height="15" fill="rgb(231,224,15)" fg:x="684416" fg:w="125"/><text x="71.8428%" y="879.50"></text></g><g><title>fileDescriptorClose (141 samples, 0.01%)</title><rect x="71.5925%" y="885" width="0.0147%" height="15" fill="rgb(244,76,20)" fg:x="684413" fg:w="141"/><text x="71.8425%" y="895.50"></text></g><g><title>do_filp_open (170 samples, 0.02%)</title><rect x="71.6168%" y="773" width="0.0178%" height="15" fill="rgb(238,117,7)" fg:x="684645" fg:w="170"/><text x="71.8668%" y="783.50"></text></g><g><title>path_openat (169 samples, 0.02%)</title><rect x="71.6169%" y="757" width="0.0177%" height="15" fill="rgb(235,1,10)" fg:x="684646" fg:w="169"/><text x="71.8669%" y="767.50"></text></g><g><title>do_sys_openat2 (195 samples, 0.02%)</title><rect x="71.6165%" y="789" width="0.0204%" height="15" fill="rgb(216,165,6)" fg:x="684642" fg:w="195"/><text x="71.8665%" y="799.50"></text></g><g><title>__x64_sys_openat (205 samples, 0.02%)</title><rect x="71.6161%" y="805" width="0.0214%" height="15" fill="rgb(246,91,35)" fg:x="684638" fg:w="205"/><text x="71.8661%" y="815.50"></text></g><g><title>cshook_systemcalltable_post_openat (184 samples, 0.02%)</title><rect x="71.6376%" y="805" width="0.0192%" height="15" fill="rgb(228,96,24)" fg:x="684844" fg:w="184"/><text x="71.8876%" y="815.50"></text></g><g><title>fshook_syscalltable_pre_lchown (129 samples, 0.01%)</title><rect x="71.6434%" y="789" width="0.0135%" height="15" fill="rgb(254,217,53)" fg:x="684899" fg:w="129"/><text x="71.8934%" y="799.50"></text></g><g><title>do_syscall_64 (419 samples, 0.04%)</title><rect x="71.6151%" y="837" width="0.0438%" height="15" fill="rgb(209,60,0)" fg:x="684629" fg:w="419"/><text x="71.8651%" y="847.50"></text></g><g><title>unload_network_ops_symbols (410 samples, 0.04%)</title><rect x="71.6161%" y="821" width="0.0429%" height="15" fill="rgb(250,93,26)" fg:x="684638" fg:w="410"/><text x="71.8661%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (420 samples, 0.04%)</title><rect x="71.6151%" y="853" width="0.0439%" height="15" fill="rgb(211,9,40)" fg:x="684629" fg:w="420"/><text x="71.8651%" y="863.50"></text></g><g><title>__libc_open64 (429 samples, 0.04%)</title><rect x="71.6143%" y="869" width="0.0449%" height="15" fill="rgb(242,57,20)" fg:x="684621" fg:w="429"/><text x="71.8643%" y="879.50"></text></g><g><title>fileOpen (508 samples, 0.05%)</title><rect x="71.6073%" y="885" width="0.0531%" height="15" fill="rgb(248,85,48)" fg:x="684554" fg:w="508"/><text x="71.8573%" y="895.50"></text></g><g><title>[perf-722681.map] (58,773 samples, 6.15%)</title><rect x="65.5376%" y="901" width="6.1479%" height="15" fill="rgb(212,117,2)" fg:x="626529" fg:w="58773"/><text x="65.7876%" y="911.50">[perf-72..</text></g><g><title>SharedRuntime::find_callee_info_helper (171 samples, 0.02%)</title><rect x="71.7118%" y="869" width="0.0179%" height="15" fill="rgb(243,19,3)" fg:x="685553" fg:w="171"/><text x="71.9618%" y="879.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (290 samples, 0.03%)</title><rect x="71.7019%" y="885" width="0.0303%" height="15" fill="rgb(232,217,24)" fg:x="685459" fg:w="290"/><text x="71.9519%" y="895.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (103 samples, 0.01%)</title><rect x="71.7324%" y="885" width="0.0108%" height="15" fill="rgb(224,175,40)" fg:x="685750" fg:w="103"/><text x="71.9824%" y="895.50"></text></g><g><title>SafepointSynchronize::block (103 samples, 0.01%)</title><rect x="71.7324%" y="869" width="0.0108%" height="15" fill="rgb(212,162,32)" fg:x="685750" fg:w="103"/><text x="71.9824%" y="879.50"></text></g><g><title>copy_user_enhanced_fast_string (113 samples, 0.01%)</title><rect x="71.7620%" y="677" width="0.0118%" height="15" fill="rgb(215,9,4)" fg:x="686033" fg:w="113"/><text x="72.0120%" y="687.50"></text></g><g><title>filemap_read (193 samples, 0.02%)</title><rect x="71.7596%" y="693" width="0.0202%" height="15" fill="rgb(242,42,7)" fg:x="686010" fg:w="193"/><text x="72.0096%" y="703.50"></text></g><g><title>btrfs_file_read_iter (197 samples, 0.02%)</title><rect x="71.7593%" y="709" width="0.0206%" height="15" fill="rgb(242,184,45)" fg:x="686007" fg:w="197"/><text x="72.0093%" y="719.50"></text></g><g><title>new_sync_read (205 samples, 0.02%)</title><rect x="71.7585%" y="725" width="0.0214%" height="15" fill="rgb(228,111,51)" fg:x="686000" fg:w="205"/><text x="72.0085%" y="735.50"></text></g><g><title>__x64_sys_read (281 samples, 0.03%)</title><rect x="71.7556%" y="773" width="0.0294%" height="15" fill="rgb(236,147,17)" fg:x="685972" fg:w="281"/><text x="72.0056%" y="783.50"></text></g><g><title>ksys_read (279 samples, 0.03%)</title><rect x="71.7558%" y="757" width="0.0292%" height="15" fill="rgb(210,75,22)" fg:x="685974" fg:w="279"/><text x="72.0058%" y="767.50"></text></g><g><title>vfs_read (262 samples, 0.03%)</title><rect x="71.7576%" y="741" width="0.0274%" height="15" fill="rgb(217,159,45)" fg:x="685991" fg:w="262"/><text x="72.0076%" y="751.50"></text></g><g><title>do_syscall_64 (320 samples, 0.03%)</title><rect x="71.7529%" y="805" width="0.0335%" height="15" fill="rgb(245,165,53)" fg:x="685946" fg:w="320"/><text x="72.0029%" y="815.50"></text></g><g><title>unload_network_ops_symbols (297 samples, 0.03%)</title><rect x="71.7553%" y="789" width="0.0311%" height="15" fill="rgb(251,190,50)" fg:x="685969" fg:w="297"/><text x="72.0053%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (323 samples, 0.03%)</title><rect x="71.7528%" y="821" width="0.0338%" height="15" fill="rgb(208,203,29)" fg:x="685945" fg:w="323"/><text x="72.0028%" y="831.50"></text></g><g><title>__GI___libc_read (338 samples, 0.04%)</title><rect x="71.7514%" y="853" width="0.0354%" height="15" fill="rgb(207,209,35)" fg:x="685932" fg:w="338"/><text x="72.0014%" y="863.50"></text></g><g><title>__GI___libc_read (337 samples, 0.04%)</title><rect x="71.7515%" y="837" width="0.0353%" height="15" fill="rgb(230,144,49)" fg:x="685933" fg:w="337"/><text x="72.0015%" y="847.50"></text></g><g><title>handleRead (343 samples, 0.04%)</title><rect x="71.7511%" y="869" width="0.0359%" height="15" fill="rgb(229,31,6)" fg:x="685929" fg:w="343"/><text x="72.0011%" y="879.50"></text></g><g><title>readBytes (449 samples, 0.05%)</title><rect x="71.7503%" y="885" width="0.0470%" height="15" fill="rgb(251,129,24)" fg:x="685921" fg:w="449"/><text x="72.0003%" y="895.50"></text></g><g><title>[unknown] (1,091 samples, 0.11%)</title><rect x="71.6855%" y="901" width="0.1141%" height="15" fill="rgb(235,105,15)" fg:x="685302" fg:w="1091"/><text x="71.9355%" y="911.50"></text></g><g><title>__clone3 (112 samples, 0.01%)</title><rect x="71.7996%" y="901" width="0.0117%" height="15" fill="rgb(216,52,43)" fg:x="686393" fg:w="112"/><text x="72.0496%" y="911.50"></text></g><g><title>asm_exc_page_fault (201 samples, 0.02%)</title><rect x="71.8133%" y="901" width="0.0210%" height="15" fill="rgb(238,144,41)" fg:x="686524" fg:w="201"/><text x="72.0633%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (165 samples, 0.02%)</title><rect x="71.8369%" y="901" width="0.0173%" height="15" fill="rgb(243,63,9)" fg:x="686749" fg:w="165"/><text x="72.0869%" y="911.50"></text></g><g><title>do_syscall_64 (131 samples, 0.01%)</title><rect x="71.8404%" y="885" width="0.0137%" height="15" fill="rgb(246,208,1)" fg:x="686783" fg:w="131"/><text x="72.0904%" y="895.50"></text></g><g><title>unload_network_ops_symbols (120 samples, 0.01%)</title><rect x="71.8416%" y="869" width="0.0126%" height="15" fill="rgb(233,182,18)" fg:x="686794" fg:w="120"/><text x="72.0916%" y="879.50"></text></g><g><title>skyframe-evalua (508,483 samples, 53.19%)</title><rect x="18.6874%" y="917" width="53.1895%" height="15" fill="rgb(242,224,8)" fg:x="178649" fg:w="508483"/><text x="18.9374%" y="927.50">skyframe-evalua</text></g><g><title>[perf-722681.map] (130 samples, 0.01%)</title><rect x="71.8772%" y="901" width="0.0136%" height="15" fill="rgb(243,54,37)" fg:x="687135" fg:w="130"/><text x="72.1272%" y="911.50"></text></g><g><title>skyframe-invali (140 samples, 0.01%)</title><rect x="71.8769%" y="917" width="0.0146%" height="15" fill="rgb(233,192,12)" fg:x="687132" fg:w="140"/><text x="72.1269%" y="927.50"></text></g><g><title>[unknown] (288 samples, 0.03%)</title><rect x="71.8980%" y="901" width="0.0301%" height="15" fill="rgb(251,192,53)" fg:x="687333" fg:w="288"/><text x="72.1480%" y="911.50"></text></g><g><title>[zig] (288 samples, 0.03%)</title><rect x="71.8980%" y="885" width="0.0301%" height="15" fill="rgb(246,141,26)" fg:x="687333" fg:w="288"/><text x="72.1480%" y="895.50"></text></g><g><title>__entry_text_start (2,440 samples, 0.26%)</title><rect x="78.2778%" y="885" width="0.2552%" height="15" fill="rgb(239,195,19)" fg:x="748323" fg:w="2440"/><text x="78.5278%" y="895.50"></text></g><g><title>find_vma (113 samples, 0.01%)</title><rect x="78.5779%" y="837" width="0.0118%" height="15" fill="rgb(241,16,39)" fg:x="751192" fg:w="113"/><text x="78.8279%" y="847.50"></text></g><g><title>charge_memcg (232 samples, 0.02%)</title><rect x="78.6849%" y="757" width="0.0243%" height="15" fill="rgb(223,13,53)" fg:x="752215" fg:w="232"/><text x="78.9349%" y="767.50"></text></g><g><title>try_charge_memcg (126 samples, 0.01%)</title><rect x="78.6960%" y="741" width="0.0132%" height="15" fill="rgb(214,227,0)" fg:x="752321" fg:w="126"/><text x="78.9460%" y="751.50"></text></g><g><title>__mem_cgroup_charge (337 samples, 0.04%)</title><rect x="78.6835%" y="773" width="0.0353%" height="15" fill="rgb(228,103,26)" fg:x="752202" fg:w="337"/><text x="78.9335%" y="783.50"></text></g><g><title>clear_page_erms (492 samples, 0.05%)</title><rect x="78.7504%" y="725" width="0.0515%" height="15" fill="rgb(254,177,53)" fg:x="752841" fg:w="492"/><text x="79.0004%" y="735.50"></text></g><g><title>rmqueue (182 samples, 0.02%)</title><rect x="78.8031%" y="725" width="0.0190%" height="15" fill="rgb(208,201,34)" fg:x="753345" fg:w="182"/><text x="79.0531%" y="735.50"></text></g><g><title>get_page_from_freelist (758 samples, 0.08%)</title><rect x="78.7429%" y="741" width="0.0793%" height="15" fill="rgb(212,39,5)" fg:x="752770" fg:w="758"/><text x="78.9929%" y="751.50"></text></g><g><title>__alloc_pages (880 samples, 0.09%)</title><rect x="78.7309%" y="757" width="0.0921%" height="15" fill="rgb(246,117,3)" fg:x="752655" fg:w="880"/><text x="78.9809%" y="767.50"></text></g><g><title>alloc_pages_vma (976 samples, 0.10%)</title><rect x="78.7242%" y="773" width="0.1021%" height="15" fill="rgb(244,118,39)" fg:x="752591" fg:w="976"/><text x="78.9742%" y="783.50"></text></g><g><title>__pagevec_lru_add_fn (215 samples, 0.02%)</title><rect x="78.8366%" y="725" width="0.0225%" height="15" fill="rgb(241,64,10)" fg:x="753665" fg:w="215"/><text x="79.0866%" y="735.50"></text></g><g><title>__pagevec_lru_add (299 samples, 0.03%)</title><rect x="78.8335%" y="741" width="0.0313%" height="15" fill="rgb(229,39,44)" fg:x="753636" fg:w="299"/><text x="79.0835%" y="751.50"></text></g><g><title>lru_cache_add_inactive_or_unevictable (351 samples, 0.04%)</title><rect x="78.8285%" y="773" width="0.0367%" height="15" fill="rgb(230,226,3)" fg:x="753588" fg:w="351"/><text x="79.0785%" y="783.50"></text></g><g><title>lru_cache_add (342 samples, 0.04%)</title><rect x="78.8295%" y="757" width="0.0358%" height="15" fill="rgb(222,13,42)" fg:x="753597" fg:w="342"/><text x="79.0795%" y="767.50"></text></g><g><title>__mod_lruvec_page_state (137 samples, 0.01%)</title><rect x="78.8672%" y="757" width="0.0143%" height="15" fill="rgb(247,180,54)" fg:x="753958" fg:w="137"/><text x="79.1172%" y="767.50"></text></g><g><title>page_add_new_anon_rmap (168 samples, 0.02%)</title><rect x="78.8659%" y="773" width="0.0176%" height="15" fill="rgb(205,96,16)" fg:x="753945" fg:w="168"/><text x="79.1159%" y="783.50"></text></g><g><title>do_anonymous_page (2,158 samples, 0.23%)</title><rect x="78.6629%" y="789" width="0.2257%" height="15" fill="rgb(205,100,21)" fg:x="752005" fg:w="2158"/><text x="78.9129%" y="799.50"></text></g><g><title>btrfs_page_mkwrite (98 samples, 0.01%)</title><rect x="78.8978%" y="757" width="0.0103%" height="15" fill="rgb(248,51,4)" fg:x="754250" fg:w="98"/><text x="79.1478%" y="767.50"></text></g><g><title>do_page_mkwrite (101 samples, 0.01%)</title><rect x="78.8978%" y="773" width="0.0106%" height="15" fill="rgb(217,197,30)" fg:x="754250" fg:w="101"/><text x="79.1478%" y="783.50"></text></g><g><title>page_add_file_rmap (267 samples, 0.03%)</title><rect x="78.9422%" y="725" width="0.0279%" height="15" fill="rgb(240,179,40)" fg:x="754675" fg:w="267"/><text x="79.1922%" y="735.50"></text></g><g><title>do_set_pte (445 samples, 0.05%)</title><rect x="78.9253%" y="741" width="0.0465%" height="15" fill="rgb(212,185,35)" fg:x="754513" fg:w="445"/><text x="79.1753%" y="751.50"></text></g><g><title>next_uptodate_page (591 samples, 0.06%)</title><rect x="78.9740%" y="741" width="0.0618%" height="15" fill="rgb(251,222,31)" fg:x="754979" fg:w="591"/><text x="79.2240%" y="751.50"></text></g><g><title>xas_find (114 samples, 0.01%)</title><rect x="79.0375%" y="741" width="0.0119%" height="15" fill="rgb(208,140,36)" fg:x="755586" fg:w="114"/><text x="79.2875%" y="751.50"></text></g><g><title>filemap_map_pages (1,310 samples, 0.14%)</title><rect x="78.9126%" y="757" width="0.1370%" height="15" fill="rgb(220,148,1)" fg:x="754392" fg:w="1310"/><text x="79.1626%" y="767.50"></text></g><g><title>unlock_page (98 samples, 0.01%)</title><rect x="79.0548%" y="757" width="0.0103%" height="15" fill="rgb(254,4,28)" fg:x="755751" fg:w="98"/><text x="79.3048%" y="767.50"></text></g><g><title>do_read_fault (1,552 samples, 0.16%)</title><rect x="78.9083%" y="773" width="0.1623%" height="15" fill="rgb(222,185,44)" fg:x="754351" fg:w="1552"/><text x="79.1583%" y="783.50"></text></g><g><title>do_fault (1,764 samples, 0.18%)</title><rect x="78.8887%" y="789" width="0.1845%" height="15" fill="rgb(215,74,39)" fg:x="754163" fg:w="1764"/><text x="79.1387%" y="799.50"></text></g><g><title>handle_pte_fault (4,205 samples, 0.44%)</title><rect x="78.6446%" y="805" width="0.4399%" height="15" fill="rgb(247,86,4)" fg:x="751830" fg:w="4205"/><text x="78.8946%" y="815.50"></text></g><g><title>__handle_mm_fault (4,527 samples, 0.47%)</title><rect x="78.6145%" y="821" width="0.4735%" height="15" fill="rgb(231,105,32)" fg:x="751542" fg:w="4527"/><text x="78.8645%" y="831.50"></text></g><g><title>handle_mm_fault (4,842 samples, 0.51%)</title><rect x="78.5897%" y="837" width="0.5065%" height="15" fill="rgb(222,65,35)" fg:x="751305" fg:w="4842"/><text x="78.8397%" y="847.50"></text></g><g><title>do_user_addr_fault (5,177 samples, 0.54%)</title><rect x="78.5599%" y="853" width="0.5415%" height="15" fill="rgb(218,145,35)" fg:x="751020" fg:w="5177"/><text x="78.8099%" y="863.50"></text></g><g><title>irqentry_exit (96 samples, 0.01%)</title><rect x="79.1032%" y="853" width="0.0100%" height="15" fill="rgb(208,7,15)" fg:x="756214" fg:w="96"/><text x="79.3532%" y="863.50"></text></g><g><title>exc_page_fault (5,390 samples, 0.56%)</title><rect x="78.5542%" y="869" width="0.5638%" height="15" fill="rgb(209,83,13)" fg:x="750966" fg:w="5390"/><text x="78.8042%" y="879.50"></text></g><g><title>asm_exc_page_fault (5,448 samples, 0.57%)</title><rect x="78.5484%" y="885" width="0.5699%" height="15" fill="rgb(218,3,10)" fg:x="750910" fg:w="5448"/><text x="78.7984%" y="895.50"></text></g><g><title>__hrtimer_run_queues (98 samples, 0.01%)</title><rect x="79.1192%" y="821" width="0.0103%" height="15" fill="rgb(211,219,4)" fg:x="756367" fg:w="98"/><text x="79.3692%" y="831.50"></text></g><g><title>__sysvec_apic_timer_interrupt (118 samples, 0.01%)</title><rect x="79.1184%" y="853" width="0.0123%" height="15" fill="rgb(228,194,12)" fg:x="756359" fg:w="118"/><text x="79.3684%" y="863.50"></text></g><g><title>hrtimer_interrupt (113 samples, 0.01%)</title><rect x="79.1189%" y="837" width="0.0118%" height="15" fill="rgb(210,175,7)" fg:x="756364" fg:w="113"/><text x="79.3689%" y="847.50"></text></g><g><title>kmem_cache_free (107 samples, 0.01%)</title><rect x="79.1358%" y="757" width="0.0112%" height="15" fill="rgb(243,132,6)" fg:x="756526" fg:w="107"/><text x="79.3858%" y="767.50"></text></g><g><title>file_free_rcu (126 samples, 0.01%)</title><rect x="79.1341%" y="773" width="0.0132%" height="15" fill="rgb(207,72,18)" fg:x="756509" fg:w="126"/><text x="79.3841%" y="783.50"></text></g><g><title>rcu_do_batch (198 samples, 0.02%)</title><rect x="79.1320%" y="789" width="0.0207%" height="15" fill="rgb(236,1,18)" fg:x="756489" fg:w="198"/><text x="79.3820%" y="799.50"></text></g><g><title>rcu_core_si (205 samples, 0.02%)</title><rect x="79.1313%" y="821" width="0.0214%" height="15" fill="rgb(227,0,18)" fg:x="756483" fg:w="205"/><text x="79.3813%" y="831.50"></text></g><g><title>rcu_core (205 samples, 0.02%)</title><rect x="79.1313%" y="805" width="0.0214%" height="15" fill="rgb(247,37,5)" fg:x="756483" fg:w="205"/><text x="79.3813%" y="815.50"></text></g><g><title>irq_exit_rcu (234 samples, 0.02%)</title><rect x="79.1310%" y="853" width="0.0245%" height="15" fill="rgb(237,179,24)" fg:x="756480" fg:w="234"/><text x="79.3810%" y="863.50"></text></g><g><title>__softirqentry_text_start (232 samples, 0.02%)</title><rect x="79.1312%" y="837" width="0.0243%" height="15" fill="rgb(226,53,20)" fg:x="756482" fg:w="232"/><text x="79.3812%" y="847.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (412 samples, 0.04%)</title><rect x="79.1183%" y="885" width="0.0431%" height="15" fill="rgb(247,75,7)" fg:x="756358" fg:w="412"/><text x="79.3683%" y="895.50"></text></g><g><title>sysvec_apic_timer_interrupt (412 samples, 0.04%)</title><rect x="79.1183%" y="869" width="0.0431%" height="15" fill="rgb(233,96,12)" fg:x="756358" fg:w="412"/><text x="79.3683%" y="879.50"></text></g><g><title>exit_to_user_mode_loop (136 samples, 0.01%)</title><rect x="79.1632%" y="805" width="0.0142%" height="15" fill="rgb(224,125,0)" fg:x="756788" fg:w="136"/><text x="79.4132%" y="815.50"></text></g><g><title>schedule (132 samples, 0.01%)</title><rect x="79.1637%" y="789" width="0.0138%" height="15" fill="rgb(224,92,25)" fg:x="756792" fg:w="132"/><text x="79.4137%" y="799.50"></text></g><g><title>__schedule (132 samples, 0.01%)</title><rect x="79.1637%" y="773" width="0.0138%" height="15" fill="rgb(224,42,24)" fg:x="756792" fg:w="132"/><text x="79.4137%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (143 samples, 0.01%)</title><rect x="79.1629%" y="821" width="0.0150%" height="15" fill="rgb(234,132,49)" fg:x="756785" fg:w="143"/><text x="79.4129%" y="831.50"></text></g><g><title>asm_sysvec_reschedule_ipi (152 samples, 0.02%)</title><rect x="79.1621%" y="885" width="0.0159%" height="15" fill="rgb(248,100,35)" fg:x="756777" fg:w="152"/><text x="79.4121%" y="895.50"></text></g><g><title>sysvec_reschedule_ipi (147 samples, 0.02%)</title><rect x="79.1626%" y="869" width="0.0154%" height="15" fill="rgb(239,94,40)" fg:x="756782" fg:w="147"/><text x="79.4126%" y="879.50"></text></g><g><title>irqentry_exit (144 samples, 0.02%)</title><rect x="79.1629%" y="853" width="0.0151%" height="15" fill="rgb(235,139,28)" fg:x="756785" fg:w="144"/><text x="79.4129%" y="863.50"></text></g><g><title>irqentry_exit_to_user_mode (144 samples, 0.02%)</title><rect x="79.1629%" y="837" width="0.0151%" height="15" fill="rgb(217,144,7)" fg:x="756785" fg:w="144"/><text x="79.4129%" y="847.50"></text></g><g><title>do_syscall_64 (105 samples, 0.01%)</title><rect x="79.1780%" y="885" width="0.0110%" height="15" fill="rgb(227,55,4)" fg:x="756929" fg:w="105"/><text x="79.4280%" y="895.50"></text></g><g><title>__x64_sys_newfstat (97 samples, 0.01%)</title><rect x="79.2879%" y="869" width="0.0101%" height="15" fill="rgb(252,82,54)" fg:x="757980" fg:w="97"/><text x="79.5379%" y="879.50"></text></g><g><title>copy_process (169 samples, 0.02%)</title><rect x="79.4015%" y="805" width="0.0177%" height="15" fill="rgb(245,172,4)" fg:x="759066" fg:w="169"/><text x="79.6515%" y="815.50"></text></g><g><title>kernel_clone (203 samples, 0.02%)</title><rect x="79.4014%" y="821" width="0.0212%" height="15" fill="rgb(207,26,27)" fg:x="759065" fg:w="203"/><text x="79.6514%" y="831.50"></text></g><g><title>__x64_sys_clone (204 samples, 0.02%)</title><rect x="79.4014%" y="853" width="0.0213%" height="15" fill="rgb(252,98,18)" fg:x="759065" fg:w="204"/><text x="79.6514%" y="863.50"></text></g><g><title>__do_sys_clone (204 samples, 0.02%)</title><rect x="79.4014%" y="837" width="0.0213%" height="15" fill="rgb(244,8,26)" fg:x="759065" fg:w="204"/><text x="79.6514%" y="847.50"></text></g><g><title>begin_new_exec (104 samples, 0.01%)</title><rect x="79.4292%" y="741" width="0.0109%" height="15" fill="rgb(237,173,45)" fg:x="759330" fg:w="104"/><text x="79.6792%" y="751.50"></text></g><g><title>load_elf_binary (107 samples, 0.01%)</title><rect x="79.4290%" y="757" width="0.0112%" height="15" fill="rgb(208,213,49)" fg:x="759329" fg:w="107"/><text x="79.6790%" y="767.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (288 samples, 0.03%)</title><rect x="79.4458%" y="565" width="0.0301%" height="15" fill="rgb(212,122,37)" fg:x="759489" fg:w="288"/><text x="79.6958%" y="575.50"></text></g><g><title>_ZdlPv (286 samples, 0.03%)</title><rect x="79.4460%" y="549" width="0.0299%" height="15" fill="rgb(213,80,17)" fg:x="759491" fg:w="286"/><text x="79.6960%" y="559.50"></text></g><g><title>_ZdlPv (284 samples, 0.03%)</title><rect x="79.4462%" y="533" width="0.0297%" height="15" fill="rgb(206,210,43)" fg:x="759493" fg:w="284"/><text x="79.6962%" y="543.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (282 samples, 0.03%)</title><rect x="79.4464%" y="517" width="0.0295%" height="15" fill="rgb(229,214,3)" fg:x="759495" fg:w="282"/><text x="79.6964%" y="527.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (259 samples, 0.03%)</title><rect x="79.4488%" y="501" width="0.0271%" height="15" fill="rgb(235,213,29)" fg:x="759518" fg:w="259"/><text x="79.6988%" y="511.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (314 samples, 0.03%)</title><rect x="79.4446%" y="597" width="0.0328%" height="15" fill="rgb(248,135,26)" fg:x="759478" fg:w="314"/><text x="79.6946%" y="607.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (306 samples, 0.03%)</title><rect x="79.4455%" y="581" width="0.0320%" height="15" fill="rgb(242,188,12)" fg:x="759486" fg:w="306"/><text x="79.6955%" y="591.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (156 samples, 0.02%)</title><rect x="79.4857%" y="549" width="0.0163%" height="15" fill="rgb(245,38,12)" fg:x="759871" fg:w="156"/><text x="79.7357%" y="559.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (130 samples, 0.01%)</title><rect x="79.4885%" y="533" width="0.0136%" height="15" fill="rgb(218,42,13)" fg:x="759897" fg:w="130"/><text x="79.7385%" y="543.50"></text></g><g><title>_ZdlPv (163 samples, 0.02%)</title><rect x="79.4854%" y="581" width="0.0171%" height="15" fill="rgb(238,132,49)" fg:x="759868" fg:w="163"/><text x="79.7354%" y="591.50"></text></g><g><title>_ZdlPv (162 samples, 0.02%)</title><rect x="79.4855%" y="565" width="0.0169%" height="15" fill="rgb(209,196,19)" fg:x="759869" fg:w="162"/><text x="79.7355%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (137 samples, 0.01%)</title><rect x="79.5112%" y="501" width="0.0143%" height="15" fill="rgb(244,131,22)" fg:x="760114" fg:w="137"/><text x="79.7612%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (117 samples, 0.01%)</title><rect x="79.5133%" y="485" width="0.0122%" height="15" fill="rgb(223,18,34)" fg:x="760134" fg:w="117"/><text x="79.7633%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (101 samples, 0.01%)</title><rect x="79.5149%" y="469" width="0.0106%" height="15" fill="rgb(252,124,54)" fg:x="760150" fg:w="101"/><text x="79.7649%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (174 samples, 0.02%)</title><rect x="79.5076%" y="549" width="0.0182%" height="15" fill="rgb(229,106,42)" fg:x="760080" fg:w="174"/><text x="79.7576%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (158 samples, 0.02%)</title><rect x="79.5093%" y="533" width="0.0165%" height="15" fill="rgb(221,129,1)" fg:x="760096" fg:w="158"/><text x="79.7593%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (149 samples, 0.02%)</title><rect x="79.5102%" y="517" width="0.0156%" height="15" fill="rgb(229,74,15)" fg:x="760105" fg:w="149"/><text x="79.7602%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (207 samples, 0.02%)</title><rect x="79.5048%" y="565" width="0.0217%" height="15" fill="rgb(210,206,50)" fg:x="760053" fg:w="207"/><text x="79.7548%" y="575.50"></text></g><g><title>_ZdlPv (805 samples, 0.08%)</title><rect x="79.4429%" y="613" width="0.0842%" height="15" fill="rgb(251,114,31)" fg:x="759461" fg:w="805"/><text x="79.6929%" y="623.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (400 samples, 0.04%)</title><rect x="79.4852%" y="597" width="0.0418%" height="15" fill="rgb(215,225,28)" fg:x="759866" fg:w="400"/><text x="79.7352%" y="607.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (235 samples, 0.02%)</title><rect x="79.5025%" y="581" width="0.0246%" height="15" fill="rgb(237,109,14)" fg:x="760031" fg:w="235"/><text x="79.7525%" y="591.50"></text></g><g><title>_ZdlPv (809 samples, 0.08%)</title><rect x="79.4428%" y="645" width="0.0846%" height="15" fill="rgb(230,13,37)" fg:x="759460" fg:w="809"/><text x="79.6928%" y="655.50"></text></g><g><title>_ZdlPv (809 samples, 0.08%)</title><rect x="79.4428%" y="629" width="0.0846%" height="15" fill="rgb(231,40,28)" fg:x="759460" fg:w="809"/><text x="79.6928%" y="639.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (115 samples, 0.01%)</title><rect x="79.5297%" y="533" width="0.0120%" height="15" fill="rgb(231,202,18)" fg:x="760291" fg:w="115"/><text x="79.7797%" y="543.50"></text></g><g><title>_ZdlPv (114 samples, 0.01%)</title><rect x="79.5298%" y="517" width="0.0119%" height="15" fill="rgb(225,33,18)" fg:x="760292" fg:w="114"/><text x="79.7798%" y="527.50"></text></g><g><title>_ZdlPv (113 samples, 0.01%)</title><rect x="79.5299%" y="501" width="0.0118%" height="15" fill="rgb(223,64,47)" fg:x="760293" fg:w="113"/><text x="79.7799%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (113 samples, 0.01%)</title><rect x="79.5299%" y="485" width="0.0118%" height="15" fill="rgb(234,114,13)" fg:x="760293" fg:w="113"/><text x="79.7799%" y="495.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (152 samples, 0.02%)</title><rect x="79.5295%" y="549" width="0.0159%" height="15" fill="rgb(248,56,40)" fg:x="760289" fg:w="152"/><text x="79.7795%" y="559.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (157 samples, 0.02%)</title><rect x="79.5291%" y="565" width="0.0164%" height="15" fill="rgb(221,194,21)" fg:x="760285" fg:w="157"/><text x="79.7791%" y="575.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (200 samples, 0.02%)</title><rect x="79.5529%" y="501" width="0.0209%" height="15" fill="rgb(242,108,46)" fg:x="760513" fg:w="200"/><text x="79.8029%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (231 samples, 0.02%)</title><rect x="79.5505%" y="517" width="0.0242%" height="15" fill="rgb(220,106,10)" fg:x="760490" fg:w="231"/><text x="79.8005%" y="527.50"></text></g><g><title>_ZdlPv (234 samples, 0.02%)</title><rect x="79.5503%" y="533" width="0.0245%" height="15" fill="rgb(211,88,4)" fg:x="760488" fg:w="234"/><text x="79.8003%" y="543.50"></text></g><g><title>_ZdlPv (235 samples, 0.02%)</title><rect x="79.5503%" y="549" width="0.0246%" height="15" fill="rgb(214,95,34)" fg:x="760488" fg:w="235"/><text x="79.8003%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (114 samples, 0.01%)</title><rect x="79.5762%" y="533" width="0.0119%" height="15" fill="rgb(250,160,33)" fg:x="760736" fg:w="114"/><text x="79.8262%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (127 samples, 0.01%)</title><rect x="79.5750%" y="549" width="0.0133%" height="15" fill="rgb(225,29,10)" fg:x="760724" fg:w="127"/><text x="79.8250%" y="559.50"></text></g><g><title>_ZdlPv (577 samples, 0.06%)</title><rect x="79.5280%" y="581" width="0.0604%" height="15" fill="rgb(224,28,30)" fg:x="760275" fg:w="577"/><text x="79.7780%" y="591.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (367 samples, 0.04%)</title><rect x="79.5500%" y="565" width="0.0384%" height="15" fill="rgb(231,77,4)" fg:x="760485" fg:w="367"/><text x="79.8000%" y="575.50"></text></g><g><title>_ZdlPv (583 samples, 0.06%)</title><rect x="79.5276%" y="629" width="0.0610%" height="15" fill="rgb(209,63,21)" fg:x="760271" fg:w="583"/><text x="79.7776%" y="639.50"></text></g><g><title>_ZdlPv (583 samples, 0.06%)</title><rect x="79.5276%" y="613" width="0.0610%" height="15" fill="rgb(226,22,11)" fg:x="760271" fg:w="583"/><text x="79.7776%" y="623.50"></text></g><g><title>_ZdlPv (583 samples, 0.06%)</title><rect x="79.5276%" y="597" width="0.0610%" height="15" fill="rgb(216,82,30)" fg:x="760271" fg:w="583"/><text x="79.7776%" y="607.50"></text></g><g><title>cshook_security_sb_free_security (596 samples, 0.06%)</title><rect x="79.5274%" y="645" width="0.0623%" height="15" fill="rgb(246,227,38)" fg:x="760269" fg:w="596"/><text x="79.7774%" y="655.50"></text></g><g><title>cshook_security_file_permission (1,424 samples, 0.15%)</title><rect x="79.4423%" y="693" width="0.1490%" height="15" fill="rgb(251,203,53)" fg:x="759456" fg:w="1424"/><text x="79.6923%" y="703.50"></text></g><g><title>cshook_security_sb_free_security (1,423 samples, 0.15%)</title><rect x="79.4424%" y="677" width="0.1489%" height="15" fill="rgb(254,101,1)" fg:x="759457" fg:w="1423"/><text x="79.6924%" y="687.50"></text></g><g><title>cshook_security_sb_free_security (1,420 samples, 0.15%)</title><rect x="79.4428%" y="661" width="0.1485%" height="15" fill="rgb(241,180,5)" fg:x="759460" fg:w="1420"/><text x="79.6928%" y="671.50"></text></g><g><title>exec_binprm (1,559 samples, 0.16%)</title><rect x="79.4284%" y="789" width="0.1631%" height="15" fill="rgb(218,168,4)" fg:x="759323" fg:w="1559"/><text x="79.6784%" y="799.50"></text></g><g><title>search_binary_handler (1,556 samples, 0.16%)</title><rect x="79.4287%" y="773" width="0.1628%" height="15" fill="rgb(224,223,32)" fg:x="759326" fg:w="1556"/><text x="79.6787%" y="783.50"></text></g><g><title>security_bprm_check (1,445 samples, 0.15%)</title><rect x="79.4403%" y="757" width="0.1512%" height="15" fill="rgb(236,106,22)" fg:x="759437" fg:w="1445"/><text x="79.6903%" y="767.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,443 samples, 0.15%)</title><rect x="79.4406%" y="741" width="0.1509%" height="15" fill="rgb(206,121,5)" fg:x="759439" fg:w="1443"/><text x="79.6906%" y="751.50"></text></g><g><title>cshook_security_bprm_check_security (1,443 samples, 0.15%)</title><rect x="79.4406%" y="725" width="0.1509%" height="15" fill="rgb(233,87,28)" fg:x="759439" fg:w="1443"/><text x="79.6906%" y="735.50"></text></g><g><title>cshook_security_file_permission (1,442 samples, 0.15%)</title><rect x="79.4407%" y="709" width="0.1508%" height="15" fill="rgb(236,137,17)" fg:x="759440" fg:w="1442"/><text x="79.6907%" y="719.50"></text></g><g><title>bprm_execve (1,626 samples, 0.17%)</title><rect x="79.4279%" y="821" width="0.1701%" height="15" fill="rgb(209,183,38)" fg:x="759318" fg:w="1626"/><text x="79.6779%" y="831.50"></text></g><g><title>bprm_execve.part.0 (1,626 samples, 0.17%)</title><rect x="79.4279%" y="805" width="0.1701%" height="15" fill="rgb(206,162,44)" fg:x="759318" fg:w="1626"/><text x="79.6779%" y="815.50"></text></g><g><title>do_execveat_common.isra.0 (1,664 samples, 0.17%)</title><rect x="79.4269%" y="837" width="0.1741%" height="15" fill="rgb(237,70,39)" fg:x="759308" fg:w="1664"/><text x="79.6769%" y="847.50"></text></g><g><title>__x64_sys_execve (1,666 samples, 0.17%)</title><rect x="79.4267%" y="853" width="0.1743%" height="15" fill="rgb(212,176,5)" fg:x="759307" fg:w="1666"/><text x="79.6767%" y="863.50"></text></g><g><title>dequeue_task (96 samples, 0.01%)</title><rect x="79.6294%" y="757" width="0.0100%" height="15" fill="rgb(232,95,16)" fg:x="761244" fg:w="96"/><text x="79.8794%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (2,699 samples, 0.28%)</title><rect x="79.6435%" y="741" width="0.2823%" height="15" fill="rgb(219,115,35)" fg:x="761379" fg:w="2699"/><text x="79.8935%" y="751.50"></text></g><g><title>x86_pmu_enable (2,655 samples, 0.28%)</title><rect x="79.6481%" y="725" width="0.2777%" height="15" fill="rgb(251,67,27)" fg:x="761423" fg:w="2655"/><text x="79.8981%" y="735.50"></text></g><g><title>intel_pmu_enable_all (2,632 samples, 0.28%)</title><rect x="79.6505%" y="709" width="0.2753%" height="15" fill="rgb(222,95,40)" fg:x="761446" fg:w="2632"/><text x="79.9005%" y="719.50"></text></g><g><title>native_write_msr (2,616 samples, 0.27%)</title><rect x="79.6522%" y="693" width="0.2736%" height="15" fill="rgb(250,35,16)" fg:x="761462" fg:w="2616"/><text x="79.9022%" y="703.50"></text></g><g><title>finish_task_switch.isra.0 (2,811 samples, 0.29%)</title><rect x="79.6394%" y="757" width="0.2940%" height="15" fill="rgb(224,86,44)" fg:x="761340" fg:w="2811"/><text x="79.8894%" y="767.50"></text></g><g><title>__schedule (3,133 samples, 0.33%)</title><rect x="79.6236%" y="773" width="0.3277%" height="15" fill="rgb(237,53,53)" fg:x="761189" fg:w="3133"/><text x="79.8736%" y="783.50"></text></g><g><title>futex_wait_queue_me (3,166 samples, 0.33%)</title><rect x="79.6205%" y="805" width="0.3312%" height="15" fill="rgb(208,171,33)" fg:x="761159" fg:w="3166"/><text x="79.8705%" y="815.50"></text></g><g><title>schedule (3,146 samples, 0.33%)</title><rect x="79.6226%" y="789" width="0.3291%" height="15" fill="rgb(222,64,27)" fg:x="761179" fg:w="3146"/><text x="79.8726%" y="799.50"></text></g><g><title>futex_wait (3,225 samples, 0.34%)</title><rect x="79.6180%" y="821" width="0.3373%" height="15" fill="rgb(221,121,35)" fg:x="761135" fg:w="3225"/><text x="79.8680%" y="831.50"></text></g><g><title>futex_wake (217 samples, 0.02%)</title><rect x="79.9553%" y="821" width="0.0227%" height="15" fill="rgb(228,137,42)" fg:x="764360" fg:w="217"/><text x="80.2053%" y="831.50"></text></g><g><title>wake_up_q (185 samples, 0.02%)</title><rect x="79.9587%" y="805" width="0.0194%" height="15" fill="rgb(227,54,21)" fg:x="764392" fg:w="185"/><text x="80.2087%" y="815.50"></text></g><g><title>try_to_wake_up (182 samples, 0.02%)</title><rect x="79.9590%" y="789" width="0.0190%" height="15" fill="rgb(240,168,33)" fg:x="764395" fg:w="182"/><text x="80.2090%" y="799.50"></text></g><g><title>do_futex (3,470 samples, 0.36%)</title><rect x="79.6156%" y="837" width="0.3630%" height="15" fill="rgb(243,159,6)" fg:x="761112" fg:w="3470"/><text x="79.8656%" y="847.50"></text></g><g><title>__x64_sys_futex (3,481 samples, 0.36%)</title><rect x="79.6145%" y="853" width="0.3641%" height="15" fill="rgb(205,211,41)" fg:x="761102" fg:w="3481"/><text x="79.8645%" y="863.50"></text></g><g><title>__split_vma (174 samples, 0.02%)</title><rect x="79.9862%" y="805" width="0.0182%" height="15" fill="rgb(253,30,1)" fg:x="764655" fg:w="174"/><text x="80.2362%" y="815.50"></text></g><g><title>free_unref_page_list (150 samples, 0.02%)</title><rect x="80.0624%" y="741" width="0.0157%" height="15" fill="rgb(226,80,18)" fg:x="765384" fg:w="150"/><text x="80.3124%" y="751.50"></text></g><g><title>free_pages_and_swap_cache (442 samples, 0.05%)</title><rect x="80.0349%" y="773" width="0.0462%" height="15" fill="rgb(253,156,46)" fg:x="765121" fg:w="442"/><text x="80.2849%" y="783.50"></text></g><g><title>release_pages (429 samples, 0.04%)</title><rect x="80.0363%" y="757" width="0.0449%" height="15" fill="rgb(248,87,27)" fg:x="765134" fg:w="429"/><text x="80.2863%" y="767.50"></text></g><g><title>tlb_finish_mmu (547 samples, 0.06%)</title><rect x="80.0259%" y="789" width="0.0572%" height="15" fill="rgb(227,122,2)" fg:x="765035" fg:w="547"/><text x="80.2759%" y="799.50"></text></g><g><title>page_remove_rmap (142 samples, 0.01%)</title><rect x="80.1119%" y="709" width="0.0149%" height="15" fill="rgb(229,94,39)" fg:x="765857" fg:w="142"/><text x="80.3619%" y="719.50"></text></g><g><title>unmap_single_vma (422 samples, 0.04%)</title><rect x="80.0847%" y="773" width="0.0441%" height="15" fill="rgb(225,173,31)" fg:x="765597" fg:w="422"/><text x="80.3347%" y="783.50"></text></g><g><title>unmap_page_range (417 samples, 0.04%)</title><rect x="80.0852%" y="757" width="0.0436%" height="15" fill="rgb(239,176,30)" fg:x="765602" fg:w="417"/><text x="80.3352%" y="767.50"></text></g><g><title>zap_pmd_range.isra.0 (409 samples, 0.04%)</title><rect x="80.0861%" y="741" width="0.0428%" height="15" fill="rgb(212,104,21)" fg:x="765610" fg:w="409"/><text x="80.3361%" y="751.50"></text></g><g><title>zap_pte_range (374 samples, 0.04%)</title><rect x="80.0897%" y="725" width="0.0391%" height="15" fill="rgb(240,209,40)" fg:x="765645" fg:w="374"/><text x="80.3397%" y="735.50"></text></g><g><title>unmap_region (1,123 samples, 0.12%)</title><rect x="80.0115%" y="805" width="0.1175%" height="15" fill="rgb(234,195,5)" fg:x="764897" fg:w="1123"/><text x="80.2615%" y="815.50"></text></g><g><title>unmap_vmas (436 samples, 0.05%)</title><rect x="80.0833%" y="789" width="0.0456%" height="15" fill="rgb(238,213,1)" fg:x="765584" fg:w="436"/><text x="80.3333%" y="799.50"></text></g><g><title>__do_munmap (1,384 samples, 0.14%)</title><rect x="79.9850%" y="821" width="0.1448%" height="15" fill="rgb(235,182,54)" fg:x="764644" fg:w="1384"/><text x="80.2350%" y="831.50"></text></g><g><title>__vm_munmap (1,396 samples, 0.15%)</title><rect x="79.9847%" y="837" width="0.1460%" height="15" fill="rgb(229,50,46)" fg:x="764641" fg:w="1396"/><text x="80.2347%" y="847.50"></text></g><g><title>__x64_sys_munmap (1,409 samples, 0.15%)</title><rect x="79.9846%" y="853" width="0.1474%" height="15" fill="rgb(219,145,13)" fg:x="764640" fg:w="1409"/><text x="80.2346%" y="863.50"></text></g><g><title>copy_user_enhanced_fast_string (358 samples, 0.04%)</title><rect x="80.1650%" y="805" width="0.0374%" height="15" fill="rgb(220,226,10)" fg:x="766365" fg:w="358"/><text x="80.4150%" y="815.50"></text></g><g><title>from_kuid_munged (115 samples, 0.01%)</title><rect x="80.2100%" y="805" width="0.0120%" height="15" fill="rgb(248,47,30)" fg:x="766795" fg:w="115"/><text x="80.4600%" y="815.50"></text></g><g><title>map_id_up (114 samples, 0.01%)</title><rect x="80.2101%" y="789" width="0.0119%" height="15" fill="rgb(231,209,44)" fg:x="766796" fg:w="114"/><text x="80.4601%" y="799.50"></text></g><g><title>cp_new_stat (750 samples, 0.08%)</title><rect x="80.1466%" y="821" width="0.0785%" height="15" fill="rgb(209,80,30)" fg:x="766189" fg:w="750"/><text x="80.3966%" y="831.50"></text></g><g><title>__fget_files (180 samples, 0.02%)</title><rect x="80.2406%" y="773" width="0.0188%" height="15" fill="rgb(232,9,14)" fg:x="767087" fg:w="180"/><text x="80.4906%" y="783.50"></text></g><g><title>__fdget_raw (195 samples, 0.02%)</title><rect x="80.2391%" y="805" width="0.0204%" height="15" fill="rgb(243,91,43)" fg:x="767073" fg:w="195"/><text x="80.4891%" y="815.50"></text></g><g><title>__fget_light (186 samples, 0.02%)</title><rect x="80.2400%" y="789" width="0.0195%" height="15" fill="rgb(231,90,52)" fg:x="767082" fg:w="186"/><text x="80.4900%" y="799.50"></text></g><g><title>apparmor_inode_getattr (113 samples, 0.01%)</title><rect x="80.2655%" y="805" width="0.0118%" height="15" fill="rgb(253,192,44)" fg:x="767325" fg:w="113"/><text x="80.5155%" y="815.50"></text></g><g><title>fput_many (106 samples, 0.01%)</title><rect x="80.2848%" y="805" width="0.0111%" height="15" fill="rgb(241,66,31)" fg:x="767510" fg:w="106"/><text x="80.5348%" y="815.50"></text></g><g><title>apparmor_inode_getattr (454 samples, 0.05%)</title><rect x="80.3031%" y="789" width="0.0475%" height="15" fill="rgb(235,81,37)" fg:x="767685" fg:w="454"/><text x="80.5531%" y="799.50"></text></g><g><title>common_perm_cond (448 samples, 0.05%)</title><rect x="80.3037%" y="773" width="0.0469%" height="15" fill="rgb(223,221,9)" fg:x="767691" fg:w="448"/><text x="80.5537%" y="783.50"></text></g><g><title>security_inode_getattr (597 samples, 0.06%)</title><rect x="80.2959%" y="805" width="0.0624%" height="15" fill="rgb(242,180,7)" fg:x="767616" fg:w="597"/><text x="80.5459%" y="815.50"></text></g><g><title>_raw_spin_lock (252 samples, 0.03%)</title><rect x="80.3849%" y="789" width="0.0264%" height="15" fill="rgb(243,78,19)" fg:x="768467" fg:w="252"/><text x="80.6349%" y="799.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.01%)</title><rect x="80.5039%" y="773" width="0.0121%" height="15" fill="rgb(233,23,17)" fg:x="769604" fg:w="116"/><text x="80.7539%" y="783.50"></text></g><g><title>btrfs_getattr (1,095 samples, 0.11%)</title><rect x="80.4116%" y="789" width="0.1145%" height="15" fill="rgb(252,122,45)" fg:x="768722" fg:w="1095"/><text x="80.6616%" y="799.50"></text></g><g><title>vfs_getattr_nosec (1,614 samples, 0.17%)</title><rect x="80.3584%" y="805" width="0.1688%" height="15" fill="rgb(247,108,20)" fg:x="768213" fg:w="1614"/><text x="80.6084%" y="815.50"></text></g><g><title>vfs_fstat (2,797 samples, 0.29%)</title><rect x="80.2347%" y="821" width="0.2926%" height="15" fill="rgb(235,84,21)" fg:x="767031" fg:w="2797"/><text x="80.4847%" y="831.50"></text></g><g><title>__do_sys_newfstat (3,795 samples, 0.40%)</title><rect x="80.1323%" y="837" width="0.3970%" height="15" fill="rgb(247,129,10)" fg:x="766052" fg:w="3795"/><text x="80.3823%" y="847.50"></text></g><g><title>__x64_sys_newfstat (3,846 samples, 0.40%)</title><rect x="80.1320%" y="853" width="0.4023%" height="15" fill="rgb(208,173,14)" fg:x="766049" fg:w="3846"/><text x="80.3820%" y="863.50"></text></g><g><title>path_lookupat (113 samples, 0.01%)</title><rect x="80.5346%" y="773" width="0.0118%" height="15" fill="rgb(236,31,38)" fg:x="769898" fg:w="113"/><text x="80.7846%" y="783.50"></text></g><g><title>filename_lookup (114 samples, 0.01%)</title><rect x="80.5346%" y="789" width="0.0119%" height="15" fill="rgb(232,65,17)" fg:x="769898" fg:w="114"/><text x="80.7846%" y="799.50"></text></g><g><title>user_path_at_empty (125 samples, 0.01%)</title><rect x="80.5346%" y="805" width="0.0131%" height="15" fill="rgb(224,45,49)" fg:x="769898" fg:w="125"/><text x="80.7846%" y="815.50"></text></g><g><title>__x64_sys_newstat (131 samples, 0.01%)</title><rect x="80.5343%" y="853" width="0.0137%" height="15" fill="rgb(225,2,53)" fg:x="769895" fg:w="131"/><text x="80.7843%" y="863.50"></text></g><g><title>__do_sys_newstat (131 samples, 0.01%)</title><rect x="80.5343%" y="837" width="0.0137%" height="15" fill="rgb(248,210,53)" fg:x="769895" fg:w="131"/><text x="80.7843%" y="847.50"></text></g><g><title>vfs_statx (128 samples, 0.01%)</title><rect x="80.5346%" y="821" width="0.0134%" height="15" fill="rgb(211,1,30)" fg:x="769898" fg:w="128"/><text x="80.7846%" y="831.50"></text></g><g><title>__x64_sys_read (120 samples, 0.01%)</title><rect x="80.5507%" y="853" width="0.0126%" height="15" fill="rgb(224,96,15)" fg:x="770052" fg:w="120"/><text x="80.8007%" y="863.50"></text></g><g><title>__x86_indirect_thunk_rax (109 samples, 0.01%)</title><rect x="80.5798%" y="853" width="0.0114%" height="15" fill="rgb(252,45,11)" fg:x="770330" fg:w="109"/><text x="80.8298%" y="863.50"></text></g><g><title>acquire_rundown (565 samples, 0.06%)</title><rect x="80.5916%" y="853" width="0.0591%" height="15" fill="rgb(220,125,38)" fg:x="770443" fg:w="565"/><text x="80.8416%" y="863.50"></text></g><g><title>cshook_systemcalltable_post_read (112 samples, 0.01%)</title><rect x="80.6622%" y="853" width="0.0117%" height="15" fill="rgb(243,161,33)" fg:x="771118" fg:w="112"/><text x="80.9122%" y="863.50"></text></g><g><title>cshook_systemcalltable_pre_read (136 samples, 0.01%)</title><rect x="80.6835%" y="853" width="0.0142%" height="15" fill="rgb(248,197,34)" fg:x="771321" fg:w="136"/><text x="80.9335%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (108 samples, 0.01%)</title><rect x="80.6986%" y="853" width="0.0113%" height="15" fill="rgb(228,165,23)" fg:x="771466" fg:w="108"/><text x="80.9486%" y="863.50"></text></g><g><title>release_rundown (699 samples, 0.07%)</title><rect x="80.7100%" y="853" width="0.0731%" height="15" fill="rgb(236,94,38)" fg:x="771575" fg:w="699"/><text x="80.9600%" y="863.50"></text></g><g><title>syscall_enter_from_user_mode (266 samples, 0.03%)</title><rect x="80.7834%" y="853" width="0.0278%" height="15" fill="rgb(220,13,23)" fg:x="772276" fg:w="266"/><text x="81.0334%" y="863.50"></text></g><g><title>____fput (120 samples, 0.01%)</title><rect x="81.0020%" y="805" width="0.0126%" height="15" fill="rgb(234,26,39)" fg:x="774366" fg:w="120"/><text x="81.2520%" y="815.50"></text></g><g><title>__schedule (152 samples, 0.02%)</title><rect x="81.0425%" y="789" width="0.0159%" height="15" fill="rgb(205,117,44)" fg:x="774753" fg:w="152"/><text x="81.2925%" y="799.50"></text></g><g><title>schedule (157 samples, 0.02%)</title><rect x="81.0424%" y="805" width="0.0164%" height="15" fill="rgb(250,42,2)" fg:x="774752" fg:w="157"/><text x="81.2924%" y="815.50"></text></g><g><title>__fsnotify_parent (108 samples, 0.01%)</title><rect x="81.1205%" y="757" width="0.0113%" height="15" fill="rgb(223,83,14)" fg:x="775499" fg:w="108"/><text x="81.3705%" y="767.50"></text></g><g><title>apparmor_file_free_security (160 samples, 0.02%)</title><rect x="81.1334%" y="757" width="0.0167%" height="15" fill="rgb(241,147,50)" fg:x="775622" fg:w="160"/><text x="81.3834%" y="767.50"></text></g><g><title>btrfs_release_file (479 samples, 0.05%)</title><rect x="81.1583%" y="757" width="0.0501%" height="15" fill="rgb(218,90,6)" fg:x="775860" fg:w="479"/><text x="81.4083%" y="767.50"></text></g><g><title>__call_rcu (545 samples, 0.06%)</title><rect x="81.2086%" y="741" width="0.0570%" height="15" fill="rgb(210,191,5)" fg:x="776341" fg:w="545"/><text x="81.4586%" y="751.50"></text></g><g><title>rcu_segcblist_enqueue (215 samples, 0.02%)</title><rect x="81.2431%" y="725" width="0.0225%" height="15" fill="rgb(225,139,19)" fg:x="776671" fg:w="215"/><text x="81.4931%" y="735.50"></text></g><g><title>call_rcu (590 samples, 0.06%)</title><rect x="81.2084%" y="757" width="0.0617%" height="15" fill="rgb(210,1,33)" fg:x="776339" fg:w="590"/><text x="81.4584%" y="767.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.01%)</title><rect x="81.2797%" y="741" width="0.0107%" height="15" fill="rgb(213,50,3)" fg:x="777021" fg:w="102"/><text x="81.5297%" y="751.50"></text></g><g><title>btrfs_dentry_delete (137 samples, 0.01%)</title><rect x="81.2906%" y="741" width="0.0143%" height="15" fill="rgb(234,227,4)" fg:x="777125" fg:w="137"/><text x="81.5406%" y="751.50"></text></g><g><title>dput (369 samples, 0.04%)</title><rect x="81.2701%" y="757" width="0.0386%" height="15" fill="rgb(246,63,5)" fg:x="776929" fg:w="369"/><text x="81.5201%" y="767.50"></text></g><g><title>locks_remove_file (143 samples, 0.01%)</title><rect x="81.3195%" y="757" width="0.0150%" height="15" fill="rgb(245,136,27)" fg:x="777401" fg:w="143"/><text x="81.5695%" y="767.50"></text></g><g><title>mntput_no_expire (172 samples, 0.02%)</title><rect x="81.3348%" y="741" width="0.0180%" height="15" fill="rgb(247,199,27)" fg:x="777548" fg:w="172"/><text x="81.5848%" y="751.50"></text></g><g><title>mntput (184 samples, 0.02%)</title><rect x="81.3344%" y="757" width="0.0192%" height="15" fill="rgb(252,158,49)" fg:x="777544" fg:w="184"/><text x="81.5844%" y="767.50"></text></g><g><title>percpu_counter_add_batch (106 samples, 0.01%)</title><rect x="81.3564%" y="757" width="0.0111%" height="15" fill="rgb(254,73,1)" fg:x="777754" fg:w="106"/><text x="81.6064%" y="767.50"></text></g><g><title>apparmor_file_free_security (470 samples, 0.05%)</title><rect x="81.3880%" y="741" width="0.0492%" height="15" fill="rgb(248,93,19)" fg:x="778056" fg:w="470"/><text x="81.6380%" y="751.50"></text></g><g><title>kmem_cache_free (679 samples, 0.07%)</title><rect x="81.4437%" y="741" width="0.0710%" height="15" fill="rgb(206,67,5)" fg:x="778589" fg:w="679"/><text x="81.6937%" y="751.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (105 samples, 0.01%)</title><rect x="81.5038%" y="725" width="0.0110%" height="15" fill="rgb(209,210,4)" fg:x="779163" fg:w="105"/><text x="81.7538%" y="735.50"></text></g><g><title>[[falcon_kal]] (115 samples, 0.01%)</title><rect x="81.5197%" y="725" width="0.0120%" height="15" fill="rgb(214,185,36)" fg:x="779315" fg:w="115"/><text x="81.7697%" y="735.50"></text></g><g><title>down_read (173 samples, 0.02%)</title><rect x="81.7143%" y="629" width="0.0181%" height="15" fill="rgb(233,191,26)" fg:x="781176" fg:w="173"/><text x="81.9643%" y="639.50"></text></g><g><title>[[falcon_kal]] (392 samples, 0.04%)</title><rect x="81.7047%" y="645" width="0.0410%" height="15" fill="rgb(248,94,17)" fg:x="781084" fg:w="392"/><text x="81.9547%" y="655.50"></text></g><g><title>down_write (127 samples, 0.01%)</title><rect x="81.7324%" y="629" width="0.0133%" height="15" fill="rgb(250,64,4)" fg:x="781349" fg:w="127"/><text x="81.9824%" y="639.50"></text></g><g><title>up_read (101 samples, 0.01%)</title><rect x="81.7518%" y="645" width="0.0106%" height="15" fill="rgb(218,41,53)" fg:x="781534" fg:w="101"/><text x="82.0018%" y="655.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (1,528 samples, 0.16%)</title><rect x="81.6176%" y="677" width="0.1598%" height="15" fill="rgb(251,176,28)" fg:x="780251" fg:w="1528"/><text x="81.8676%" y="687.50"></text></g><g><title>cshook_security_inode_free_security (1,251 samples, 0.13%)</title><rect x="81.6466%" y="661" width="0.1309%" height="15" fill="rgb(247,22,9)" fg:x="780528" fg:w="1251"/><text x="81.8966%" y="671.50"></text></g><g><title>up_write (144 samples, 0.02%)</title><rect x="81.7624%" y="645" width="0.0151%" height="15" fill="rgb(218,201,14)" fg:x="781635" fg:w="144"/><text x="82.0124%" y="655.50"></text></g><g><title>cshook_security_inode_free_security (114 samples, 0.01%)</title><rect x="81.7774%" y="677" width="0.0119%" height="15" fill="rgb(218,94,10)" fg:x="781779" fg:w="114"/><text x="82.0274%" y="687.50"></text></g><g><title>cshook_security_file_free_security (1,890 samples, 0.20%)</title><rect x="81.5917%" y="709" width="0.1977%" height="15" fill="rgb(222,183,52)" fg:x="780004" fg:w="1890"/><text x="81.8417%" y="719.50"></text></g><g><title>cshook_security_file_free_security (1,654 samples, 0.17%)</title><rect x="81.6164%" y="693" width="0.1730%" height="15" fill="rgb(242,140,25)" fg:x="780240" fg:w="1654"/><text x="81.8664%" y="703.50"></text></g><g><title>pinnedhook_security_file_free_security (2,605 samples, 0.27%)</title><rect x="81.5174%" y="741" width="0.2725%" height="15" fill="rgb(235,197,38)" fg:x="779293" fg:w="2605"/><text x="81.7674%" y="751.50"></text></g><g><title>cshook_security_file_free_security (2,372 samples, 0.25%)</title><rect x="81.5417%" y="725" width="0.2481%" height="15" fill="rgb(237,136,15)" fg:x="779526" fg:w="2372"/><text x="81.7917%" y="735.50"></text></g><g><title>security_file_free (4,046 samples, 0.42%)</title><rect x="81.3730%" y="757" width="0.4232%" height="15" fill="rgb(223,44,49)" fg:x="777913" fg:w="4046"/><text x="81.6230%" y="767.50"></text></g><g><title>__fput (6,876 samples, 0.72%)</title><rect x="81.0781%" y="773" width="0.7193%" height="15" fill="rgb(227,71,15)" fg:x="775094" fg:w="6876"/><text x="81.3281%" y="783.50"></text></g><g><title>ima_file_free (135 samples, 0.01%)</title><rect x="81.8140%" y="773" width="0.0141%" height="15" fill="rgb(225,153,20)" fg:x="782129" fg:w="135"/><text x="82.0640%" y="783.50"></text></g><g><title>locks_remove_file (149 samples, 0.02%)</title><rect x="81.8281%" y="773" width="0.0156%" height="15" fill="rgb(210,190,26)" fg:x="782264" fg:w="149"/><text x="82.0781%" y="783.50"></text></g><g><title>____fput (7,404 samples, 0.77%)</title><rect x="81.0752%" y="789" width="0.7745%" height="15" fill="rgb(223,147,5)" fg:x="775066" fg:w="7404"/><text x="81.3252%" y="799.50"></text></g><g><title>_raw_spin_lock_irq (106 samples, 0.01%)</title><rect x="81.8559%" y="789" width="0.0111%" height="15" fill="rgb(207,14,23)" fg:x="782529" fg:w="106"/><text x="82.1059%" y="799.50"></text></g><g><title>exit_to_user_mode_loop (8,564 samples, 0.90%)</title><rect x="80.9722%" y="821" width="0.8958%" height="15" fill="rgb(211,195,53)" fg:x="774081" fg:w="8564"/><text x="81.2222%" y="831.50"></text></g><g><title>task_work_run (7,736 samples, 0.81%)</title><rect x="81.0588%" y="805" width="0.8092%" height="15" fill="rgb(237,75,46)" fg:x="774909" fg:w="7736"/><text x="81.3088%" y="815.50"></text></g><g><title>fpregs_assert_state_consistent (288 samples, 0.03%)</title><rect x="81.8680%" y="821" width="0.0301%" height="15" fill="rgb(254,55,14)" fg:x="782645" fg:w="288"/><text x="82.1180%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (10,145 samples, 1.06%)</title><rect x="80.8517%" y="837" width="1.0612%" height="15" fill="rgb(230,185,30)" fg:x="772929" fg:w="10145"/><text x="81.1017%" y="847.50"></text></g><g><title>fpregs_assert_state_consistent (188 samples, 0.02%)</title><rect x="81.9129%" y="837" width="0.0197%" height="15" fill="rgb(220,14,11)" fg:x="783074" fg:w="188"/><text x="82.1629%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (10,729 samples, 1.12%)</title><rect x="80.8112%" y="853" width="1.1223%" height="15" fill="rgb(215,169,44)" fg:x="772542" fg:w="10729"/><text x="81.0612%" y="863.50"></text></g><g><title>_raw_spin_lock (171 samples, 0.02%)</title><rect x="82.0719%" y="805" width="0.0179%" height="15" fill="rgb(253,203,20)" fg:x="784594" fg:w="171"/><text x="82.3219%" y="815.50"></text></g><g><title>fput_many (158 samples, 0.02%)</title><rect x="82.1048%" y="773" width="0.0165%" height="15" fill="rgb(229,225,17)" fg:x="784909" fg:w="158"/><text x="82.3548%" y="783.50"></text></g><g><title>task_work_add (132 samples, 0.01%)</title><rect x="82.1075%" y="757" width="0.0138%" height="15" fill="rgb(236,76,26)" fg:x="784935" fg:w="132"/><text x="82.3575%" y="767.50"></text></g><g><title>fput (332 samples, 0.03%)</title><rect x="82.1045%" y="789" width="0.0347%" height="15" fill="rgb(234,15,30)" fg:x="784906" fg:w="332"/><text x="82.3545%" y="799.50"></text></g><g><title>task_work_add (171 samples, 0.02%)</title><rect x="82.1214%" y="773" width="0.0179%" height="15" fill="rgb(211,113,48)" fg:x="785067" fg:w="171"/><text x="82.3714%" y="783.50"></text></g><g><title>fput_many (118 samples, 0.01%)</title><rect x="82.1392%" y="789" width="0.0123%" height="15" fill="rgb(221,31,36)" fg:x="785238" fg:w="118"/><text x="82.3892%" y="799.50"></text></g><g><title>filp_close (643 samples, 0.07%)</title><rect x="82.0936%" y="805" width="0.0673%" height="15" fill="rgb(215,118,52)" fg:x="784802" fg:w="643"/><text x="82.3436%" y="815.50"></text></g><g><title>close_fd (1,026 samples, 0.11%)</title><rect x="82.0692%" y="821" width="0.1073%" height="15" fill="rgb(241,151,27)" fg:x="784568" fg:w="1026"/><text x="82.3192%" y="831.50"></text></g><g><title>__x64_sys_close (1,069 samples, 0.11%)</title><rect x="82.0686%" y="837" width="0.1118%" height="15" fill="rgb(253,51,3)" fg:x="784563" fg:w="1069"/><text x="82.3186%" y="847.50"></text></g><g><title>perf_iterate_ctx (172 samples, 0.02%)</title><rect x="82.2095%" y="709" width="0.0180%" height="15" fill="rgb(216,201,24)" fg:x="785910" fg:w="172"/><text x="82.4595%" y="719.50"></text></g><g><title>perf_iterate_sb (196 samples, 0.02%)</title><rect x="82.2072%" y="725" width="0.0205%" height="15" fill="rgb(231,107,4)" fg:x="785888" fg:w="196"/><text x="82.4572%" y="735.50"></text></g><g><title>perf_event_mmap_event (214 samples, 0.02%)</title><rect x="82.2055%" y="741" width="0.0224%" height="15" fill="rgb(243,97,54)" fg:x="785871" fg:w="214"/><text x="82.4555%" y="751.50"></text></g><g><title>perf_event_mmap (228 samples, 0.02%)</title><rect x="82.2042%" y="757" width="0.0238%" height="15" fill="rgb(221,32,51)" fg:x="785859" fg:w="228"/><text x="82.4542%" y="767.50"></text></g><g><title>vma_merge (98 samples, 0.01%)</title><rect x="82.2317%" y="757" width="0.0103%" height="15" fill="rgb(218,171,35)" fg:x="786122" fg:w="98"/><text x="82.4817%" y="767.50"></text></g><g><title>mmap_region (401 samples, 0.04%)</title><rect x="82.2002%" y="773" width="0.0419%" height="15" fill="rgb(214,20,53)" fg:x="785821" fg:w="401"/><text x="82.4502%" y="783.50"></text></g><g><title>do_mmap (514 samples, 0.05%)</title><rect x="82.1890%" y="789" width="0.0538%" height="15" fill="rgb(239,9,52)" fg:x="785714" fg:w="514"/><text x="82.4390%" y="799.50"></text></g><g><title>ksys_mmap_pgoff (596 samples, 0.06%)</title><rect x="82.1863%" y="821" width="0.0623%" height="15" fill="rgb(215,114,45)" fg:x="785688" fg:w="596"/><text x="82.4363%" y="831.50"></text></g><g><title>vm_mmap_pgoff (581 samples, 0.06%)</title><rect x="82.1879%" y="805" width="0.0608%" height="15" fill="rgb(208,118,9)" fg:x="785703" fg:w="581"/><text x="82.4379%" y="815.50"></text></g><g><title>__x64_sys_mmap (599 samples, 0.06%)</title><rect x="82.1863%" y="837" width="0.0627%" height="15" fill="rgb(235,7,39)" fg:x="785688" fg:w="599"/><text x="82.4363%" y="847.50"></text></g><g><title>btrfs_create (102 samples, 0.01%)</title><rect x="82.2653%" y="741" width="0.0107%" height="15" fill="rgb(243,225,15)" fg:x="786443" fg:w="102"/><text x="82.5153%" y="751.50"></text></g><g><title>lookup_open.isra.0 (184 samples, 0.02%)</title><rect x="82.2653%" y="757" width="0.0192%" height="15" fill="rgb(225,216,18)" fg:x="786443" fg:w="184"/><text x="82.5153%" y="767.50"></text></g><g><title>btrfs_search_slot (119 samples, 0.01%)</title><rect x="82.2907%" y="613" width="0.0124%" height="15" fill="rgb(233,36,38)" fg:x="786686" fg:w="119"/><text x="82.5407%" y="623.50"></text></g><g><title>btrfs_lookup_file_extent (120 samples, 0.01%)</title><rect x="82.2907%" y="629" width="0.0126%" height="15" fill="rgb(239,88,23)" fg:x="786686" fg:w="120"/><text x="82.5407%" y="639.50"></text></g><g><title>btrfs_get_extent (150 samples, 0.02%)</title><rect x="82.2890%" y="645" width="0.0157%" height="15" fill="rgb(219,181,35)" fg:x="786670" fg:w="150"/><text x="82.5390%" y="655.50"></text></g><g><title>btrfs_do_readpage (159 samples, 0.02%)</title><rect x="82.2884%" y="661" width="0.0166%" height="15" fill="rgb(215,18,46)" fg:x="786664" fg:w="159"/><text x="82.5384%" y="671.50"></text></g><g><title>btrfs_readpage (168 samples, 0.02%)</title><rect x="82.2883%" y="677" width="0.0176%" height="15" fill="rgb(241,38,11)" fg:x="786663" fg:w="168"/><text x="82.5383%" y="687.50"></text></g><g><title>page_get_link (189 samples, 0.02%)</title><rect x="82.2863%" y="725" width="0.0198%" height="15" fill="rgb(248,169,45)" fg:x="786644" fg:w="189"/><text x="82.5363%" y="735.50"></text></g><g><title>read_cache_page (188 samples, 0.02%)</title><rect x="82.2864%" y="709" width="0.0197%" height="15" fill="rgb(239,50,49)" fg:x="786645" fg:w="188"/><text x="82.5364%" y="719.50"></text></g><g><title>do_read_cache_page (188 samples, 0.02%)</title><rect x="82.2864%" y="693" width="0.0197%" height="15" fill="rgb(231,96,31)" fg:x="786645" fg:w="188"/><text x="82.5364%" y="703.50"></text></g><g><title>step_into (242 samples, 0.03%)</title><rect x="82.2846%" y="757" width="0.0253%" height="15" fill="rgb(224,193,37)" fg:x="786628" fg:w="242"/><text x="82.5346%" y="767.50"></text></g><g><title>pick_link (231 samples, 0.02%)</title><rect x="82.2858%" y="741" width="0.0242%" height="15" fill="rgb(227,153,50)" fg:x="786639" fg:w="231"/><text x="82.5358%" y="751.50"></text></g><g><title>open_last_lookups (443 samples, 0.05%)</title><rect x="82.2637%" y="773" width="0.0463%" height="15" fill="rgb(249,228,3)" fg:x="786428" fg:w="443"/><text x="82.5137%" y="783.50"></text></g><g><title>path_openat (585 samples, 0.06%)</title><rect x="82.2497%" y="789" width="0.0612%" height="15" fill="rgb(219,164,43)" fg:x="786294" fg:w="585"/><text x="82.4997%" y="799.50"></text></g><g><title>do_filp_open (591 samples, 0.06%)</title><rect x="82.2493%" y="805" width="0.0618%" height="15" fill="rgb(216,45,41)" fg:x="786290" fg:w="591"/><text x="82.4993%" y="815.50"></text></g><g><title>do_sys_openat2 (620 samples, 0.06%)</title><rect x="82.2492%" y="821" width="0.0649%" height="15" fill="rgb(210,226,51)" fg:x="786289" fg:w="620"/><text x="82.4992%" y="831.50"></text></g><g><title>__x64_sys_open (624 samples, 0.07%)</title><rect x="82.2490%" y="837" width="0.0653%" height="15" fill="rgb(209,117,49)" fg:x="786287" fg:w="624"/><text x="82.4990%" y="847.50"></text></g><g><title>build_open_flags (347 samples, 0.04%)</title><rect x="82.3284%" y="821" width="0.0363%" height="15" fill="rgb(206,196,24)" fg:x="787046" fg:w="347"/><text x="82.5784%" y="831.50"></text></g><g><title>alloc_empty_file (138 samples, 0.01%)</title><rect x="82.4204%" y="789" width="0.0144%" height="15" fill="rgb(253,218,3)" fg:x="787926" fg:w="138"/><text x="82.6704%" y="799.50"></text></g><g><title>get_page_from_freelist (130 samples, 0.01%)</title><rect x="82.5673%" y="645" width="0.0136%" height="15" fill="rgb(252,166,2)" fg:x="789330" fg:w="130"/><text x="82.8173%" y="655.50"></text></g><g><title>__alloc_pages (144 samples, 0.02%)</title><rect x="82.5661%" y="661" width="0.0151%" height="15" fill="rgb(236,218,26)" fg:x="789319" fg:w="144"/><text x="82.8161%" y="671.50"></text></g><g><title>alloc_pages (161 samples, 0.02%)</title><rect x="82.5652%" y="677" width="0.0168%" height="15" fill="rgb(254,84,19)" fg:x="789310" fg:w="161"/><text x="82.8152%" y="687.50"></text></g><g><title>allocate_slab (282 samples, 0.03%)</title><rect x="82.5588%" y="693" width="0.0295%" height="15" fill="rgb(219,137,29)" fg:x="789249" fg:w="282"/><text x="82.8088%" y="703.50"></text></g><g><title>___slab_alloc (489 samples, 0.05%)</title><rect x="82.5383%" y="725" width="0.0512%" height="15" fill="rgb(227,47,52)" fg:x="789053" fg:w="489"/><text x="82.7883%" y="735.50"></text></g><g><title>new_slab (293 samples, 0.03%)</title><rect x="82.5588%" y="709" width="0.0306%" height="15" fill="rgb(229,167,24)" fg:x="789249" fg:w="293"/><text x="82.8088%" y="719.50"></text></g><g><title>get_obj_cgroup_from_current (723 samples, 0.08%)</title><rect x="82.5928%" y="725" width="0.0756%" height="15" fill="rgb(233,164,1)" fg:x="789574" fg:w="723"/><text x="82.8428%" y="735.50"></text></g><g><title>mod_objcg_state (212 samples, 0.02%)</title><rect x="82.7152%" y="709" width="0.0222%" height="15" fill="rgb(218,88,48)" fg:x="790744" fg:w="212"/><text x="82.9652%" y="719.50"></text></g><g><title>memcg_slab_post_alloc_hook (660 samples, 0.07%)</title><rect x="82.6684%" y="725" width="0.0690%" height="15" fill="rgb(226,214,24)" fg:x="790297" fg:w="660"/><text x="82.9184%" y="735.50"></text></g><g><title>obj_cgroup_charge (140 samples, 0.01%)</title><rect x="82.7390%" y="725" width="0.0146%" height="15" fill="rgb(233,29,12)" fg:x="790972" fg:w="140"/><text x="82.9890%" y="735.50"></text></g><g><title>kmem_cache_alloc (2,399 samples, 0.25%)</title><rect x="82.5077%" y="741" width="0.2509%" height="15" fill="rgb(219,120,34)" fg:x="788760" fg:w="2399"/><text x="82.7577%" y="751.50"></text></g><g><title>memset_erms (156 samples, 0.02%)</title><rect x="82.7609%" y="741" width="0.0163%" height="15" fill="rgb(226,78,44)" fg:x="791181" fg:w="156"/><text x="83.0109%" y="751.50"></text></g><g><title>apparmor_file_alloc_security (605 samples, 0.06%)</title><rect x="82.7889%" y="725" width="0.0633%" height="15" fill="rgb(240,15,48)" fg:x="791449" fg:w="605"/><text x="83.0389%" y="735.50"></text></g><g><title>kmem_cache_alloc (274 samples, 0.03%)</title><rect x="82.8522%" y="725" width="0.0287%" height="15" fill="rgb(253,176,7)" fg:x="792054" fg:w="274"/><text x="83.1022%" y="735.50"></text></g><g><title>memset_erms (114 samples, 0.01%)</title><rect x="82.8836%" y="725" width="0.0119%" height="15" fill="rgb(206,166,28)" fg:x="792354" fg:w="114"/><text x="83.1336%" y="735.50"></text></g><g><title>security_file_alloc (1,127 samples, 0.12%)</title><rect x="82.7782%" y="741" width="0.1179%" height="15" fill="rgb(241,53,51)" fg:x="791346" fg:w="1127"/><text x="83.0282%" y="751.50"></text></g><g><title>__alloc_file (4,131 samples, 0.43%)</title><rect x="82.4651%" y="757" width="0.4321%" height="15" fill="rgb(249,112,30)" fg:x="788353" fg:w="4131"/><text x="82.7151%" y="767.50"></text></g><g><title>alloc_empty_file (4,212 samples, 0.44%)</title><rect x="82.4627%" y="773" width="0.4406%" height="15" fill="rgb(217,85,30)" fg:x="788330" fg:w="4212"/><text x="82.7127%" y="783.50"></text></g><g><title>aa_get_task_label (161 samples, 0.02%)</title><rect x="82.9940%" y="709" width="0.0168%" height="15" fill="rgb(233,49,7)" fg:x="793409" fg:w="161"/><text x="83.2440%" y="719.50"></text></g><g><title>apparmor_task_getsecid (316 samples, 0.03%)</title><rect x="82.9783%" y="725" width="0.0331%" height="15" fill="rgb(234,109,9)" fg:x="793259" fg:w="316"/><text x="83.2283%" y="735.50"></text></g><g><title>ima_file_check (706 samples, 0.07%)</title><rect x="82.9376%" y="757" width="0.0739%" height="15" fill="rgb(253,95,22)" fg:x="792870" fg:w="706"/><text x="83.1876%" y="767.50"></text></g><g><title>security_task_getsecid_subj (587 samples, 0.06%)</title><rect x="82.9500%" y="741" width="0.0614%" height="15" fill="rgb(233,176,25)" fg:x="792989" fg:w="587"/><text x="83.2000%" y="751.50"></text></g><g><title>inode_permission (258 samples, 0.03%)</title><rect x="83.1064%" y="741" width="0.0270%" height="15" fill="rgb(236,33,39)" fg:x="794484" fg:w="258"/><text x="83.3564%" y="751.50"></text></g><g><title>may_open (1,165 samples, 0.12%)</title><rect x="83.0122%" y="757" width="0.1219%" height="15" fill="rgb(223,226,42)" fg:x="793583" fg:w="1165"/><text x="83.2622%" y="767.50"></text></g><g><title>file_ra_state_init (175 samples, 0.02%)</title><rect x="83.2021%" y="725" width="0.0183%" height="15" fill="rgb(216,99,33)" fg:x="795399" fg:w="175"/><text x="83.4521%" y="735.50"></text></g><g><title>lockref_get (161 samples, 0.02%)</title><rect x="83.2379%" y="709" width="0.0168%" height="15" fill="rgb(235,84,23)" fg:x="795741" fg:w="161"/><text x="83.4879%" y="719.50"></text></g><g><title>path_get (212 samples, 0.02%)</title><rect x="83.2357%" y="725" width="0.0222%" height="15" fill="rgb(232,2,27)" fg:x="795720" fg:w="212"/><text x="83.4857%" y="735.50"></text></g><g><title>apparmor_file_open (595 samples, 0.06%)</title><rect x="83.2811%" y="709" width="0.0622%" height="15" fill="rgb(241,23,22)" fg:x="796154" fg:w="595"/><text x="83.5311%" y="719.50"></text></g><g><title>fsnotify_perm.part.0 (249 samples, 0.03%)</title><rect x="83.3454%" y="709" width="0.0260%" height="15" fill="rgb(211,73,27)" fg:x="796769" fg:w="249"/><text x="83.5954%" y="719.50"></text></g><g><title>__fsnotify_parent (191 samples, 0.02%)</title><rect x="83.3515%" y="693" width="0.0200%" height="15" fill="rgb(235,109,49)" fg:x="796827" fg:w="191"/><text x="83.6015%" y="703.50"></text></g><g><title>cshook_security_file_open (263 samples, 0.03%)</title><rect x="83.3740%" y="693" width="0.0275%" height="15" fill="rgb(230,99,29)" fg:x="797042" fg:w="263"/><text x="83.6240%" y="703.50"></text></g><g><title>cshook_security_file_permission (163 samples, 0.02%)</title><rect x="83.3844%" y="677" width="0.0171%" height="15" fill="rgb(245,199,7)" fg:x="797142" fg:w="163"/><text x="83.6344%" y="687.50"></text></g><g><title>pinnedhook_security_file_open (313 samples, 0.03%)</title><rect x="83.3715%" y="709" width="0.0327%" height="15" fill="rgb(217,179,10)" fg:x="797018" fg:w="313"/><text x="83.6215%" y="719.50"></text></g><g><title>do_dentry_open (2,549 samples, 0.27%)</title><rect x="83.1419%" y="741" width="0.2666%" height="15" fill="rgb(254,99,47)" fg:x="794823" fg:w="2549"/><text x="83.3919%" y="751.50"></text></g><g><title>security_file_open (1,424 samples, 0.15%)</title><rect x="83.2596%" y="725" width="0.1490%" height="15" fill="rgb(251,121,7)" fg:x="795948" fg:w="1424"/><text x="83.5096%" y="735.50"></text></g><g><title>errseq_sample (483 samples, 0.05%)</title><rect x="83.4085%" y="741" width="0.0505%" height="15" fill="rgb(250,177,26)" fg:x="797372" fg:w="483"/><text x="83.6585%" y="751.50"></text></g><g><title>do_open (5,390 samples, 0.56%)</title><rect x="82.9052%" y="773" width="0.5638%" height="15" fill="rgb(232,88,15)" fg:x="792560" fg:w="5390"/><text x="83.1552%" y="783.50"></text></g><g><title>vfs_open (3,165 samples, 0.33%)</title><rect x="83.1379%" y="757" width="0.3311%" height="15" fill="rgb(251,54,54)" fg:x="794785" fg:w="3165"/><text x="83.3879%" y="767.50"></text></g><g><title>inode_permission (213 samples, 0.02%)</title><rect x="83.4768%" y="773" width="0.0223%" height="15" fill="rgb(208,177,15)" fg:x="798025" fg:w="213"/><text x="83.7268%" y="783.50"></text></g><g><title>btrfs_permission (548 samples, 0.06%)</title><rect x="84.1358%" y="757" width="0.0573%" height="15" fill="rgb(205,97,32)" fg:x="804325" fg:w="548"/><text x="84.3858%" y="767.50"></text></g><g><title>generic_permission (1,332 samples, 0.14%)</title><rect x="84.6267%" y="725" width="0.1393%" height="15" fill="rgb(217,192,13)" fg:x="809018" fg:w="1332"/><text x="84.8767%" y="735.50"></text></g><g><title>btrfs_permission (1,431 samples, 0.15%)</title><rect x="84.6180%" y="741" width="0.1497%" height="15" fill="rgb(215,163,41)" fg:x="808935" fg:w="1431"/><text x="84.8680%" y="751.50"></text></g><g><title>get_acl (111 samples, 0.01%)</title><rect x="84.8140%" y="725" width="0.0116%" height="15" fill="rgb(246,83,29)" fg:x="810808" fg:w="111"/><text x="85.0640%" y="735.50"></text></g><g><title>generic_permission (598 samples, 0.06%)</title><rect x="84.7677%" y="741" width="0.0626%" height="15" fill="rgb(219,2,45)" fg:x="810366" fg:w="598"/><text x="85.0177%" y="751.50"></text></g><g><title>inode_permission (6,765 samples, 0.71%)</title><rect x="84.1953%" y="757" width="0.7076%" height="15" fill="rgb(242,215,33)" fg:x="804894" fg:w="6765"/><text x="84.4453%" y="767.50"></text></g><g><title>security_inode_permission (637 samples, 0.07%)</title><rect x="84.8364%" y="741" width="0.0666%" height="15" fill="rgb(217,1,6)" fg:x="811022" fg:w="637"/><text x="85.0864%" y="751.50"></text></g><g><title>lookup_fast (184 samples, 0.02%)</title><rect x="84.9030%" y="757" width="0.0192%" height="15" fill="rgb(207,85,52)" fg:x="811659" fg:w="184"/><text x="85.1530%" y="767.50"></text></g><g><title>page_put_link (124 samples, 0.01%)</title><rect x="84.9228%" y="757" width="0.0130%" height="15" fill="rgb(231,171,19)" fg:x="811848" fg:w="124"/><text x="85.1728%" y="767.50"></text></g><g><title>security_inode_permission (210 samples, 0.02%)</title><rect x="84.9357%" y="757" width="0.0220%" height="15" fill="rgb(207,128,4)" fg:x="811972" fg:w="210"/><text x="85.1857%" y="767.50"></text></g><g><title>step_into (131 samples, 0.01%)</title><rect x="84.9577%" y="757" width="0.0137%" height="15" fill="rgb(219,208,4)" fg:x="812182" fg:w="131"/><text x="85.2077%" y="767.50"></text></g><g><title>__d_lookup (118 samples, 0.01%)</title><rect x="85.1285%" y="741" width="0.0123%" height="15" fill="rgb(235,161,42)" fg:x="813815" fg:w="118"/><text x="85.3785%" y="751.50"></text></g><g><title>__d_lookup_rcu (100 samples, 0.01%)</title><rect x="85.1409%" y="741" width="0.0105%" height="15" fill="rgb(247,218,18)" fg:x="813933" fg:w="100"/><text x="85.3909%" y="751.50"></text></g><g><title>btrfs_dentry_delete (122 samples, 0.01%)</title><rect x="85.1878%" y="725" width="0.0128%" height="15" fill="rgb(232,114,51)" fg:x="814382" fg:w="122"/><text x="85.4378%" y="735.50"></text></g><g><title>dput (475 samples, 0.05%)</title><rect x="85.1616%" y="741" width="0.0497%" height="15" fill="rgb(222,95,3)" fg:x="814131" fg:w="475"/><text x="85.4116%" y="751.50"></text></g><g><title>_raw_spin_lock (99 samples, 0.01%)</title><rect x="85.7141%" y="709" width="0.0104%" height="15" fill="rgb(240,65,29)" fg:x="819413" fg:w="99"/><text x="85.9641%" y="719.50"></text></g><g><title>__d_lookup (3,718 samples, 0.39%)</title><rect x="85.3430%" y="725" width="0.3889%" height="15" fill="rgb(249,209,20)" fg:x="815865" fg:w="3718"/><text x="85.5930%" y="735.50"></text></g><g><title>__d_lookup_rcu (4,875 samples, 0.51%)</title><rect x="85.7319%" y="725" width="0.5099%" height="15" fill="rgb(241,48,37)" fg:x="819583" fg:w="4875"/><text x="85.9819%" y="735.50"></text></g><g><title>_raw_spin_lock (3,517 samples, 0.37%)</title><rect x="86.2418%" y="725" width="0.3679%" height="15" fill="rgb(230,140,42)" fg:x="824458" fg:w="3517"/><text x="86.4918%" y="735.50"></text></g><g><title>lookup_fast (13,426 samples, 1.40%)</title><rect x="85.2124%" y="741" width="1.4044%" height="15" fill="rgb(230,176,45)" fg:x="814617" fg:w="13426"/><text x="85.4624%" y="751.50"></text></g><g><title>mntput (125 samples, 0.01%)</title><rect x="86.6172%" y="741" width="0.0131%" height="15" fill="rgb(245,112,21)" fg:x="828047" fg:w="125"/><text x="86.8672%" y="751.50"></text></g><g><title>page_put_link (154 samples, 0.02%)</title><rect x="86.6305%" y="741" width="0.0161%" height="15" fill="rgb(207,183,35)" fg:x="828174" fg:w="154"/><text x="86.8805%" y="751.50"></text></g><g><title>__cond_resched (230 samples, 0.02%)</title><rect x="86.8642%" y="725" width="0.0241%" height="15" fill="rgb(227,44,33)" fg:x="830408" fg:w="230"/><text x="87.1142%" y="735.50"></text></g><g><title>__lookup_mnt (334 samples, 0.03%)</title><rect x="86.8883%" y="725" width="0.0349%" height="15" fill="rgb(246,120,21)" fg:x="830638" fg:w="334"/><text x="87.1383%" y="735.50"></text></g><g><title>lockref_get (440 samples, 0.05%)</title><rect x="86.9443%" y="709" width="0.0460%" height="15" fill="rgb(235,57,52)" fg:x="831174" fg:w="440"/><text x="87.1943%" y="719.50"></text></g><g><title>lockref_put_return (188 samples, 0.02%)</title><rect x="86.9904%" y="709" width="0.0197%" height="15" fill="rgb(238,84,10)" fg:x="831614" fg:w="188"/><text x="87.2404%" y="719.50"></text></g><g><title>__legitimize_mnt (131 samples, 0.01%)</title><rect x="87.0140%" y="693" width="0.0137%" height="15" fill="rgb(251,200,32)" fg:x="831840" fg:w="131"/><text x="87.2640%" y="703.50"></text></g><g><title>__lookup_mnt (104 samples, 0.01%)</title><rect x="87.0277%" y="693" width="0.0109%" height="15" fill="rgb(247,159,13)" fg:x="831971" fg:w="104"/><text x="87.2777%" y="703.50"></text></g><g><title>lookup_mnt (277 samples, 0.03%)</title><rect x="87.0100%" y="709" width="0.0290%" height="15" fill="rgb(238,64,4)" fg:x="831802" fg:w="277"/><text x="87.2600%" y="719.50"></text></g><g><title>__traverse_mounts (1,125 samples, 0.12%)</title><rect x="86.9232%" y="725" width="0.1177%" height="15" fill="rgb(221,131,51)" fg:x="830972" fg:w="1125"/><text x="87.1732%" y="735.50"></text></g><g><title>__cond_resched (186 samples, 0.02%)</title><rect x="87.0785%" y="709" width="0.0195%" height="15" fill="rgb(242,5,29)" fg:x="832457" fg:w="186"/><text x="87.3285%" y="719.50"></text></g><g><title>lockref_put_or_lock (1,477 samples, 0.15%)</title><rect x="87.0991%" y="709" width="0.1545%" height="15" fill="rgb(214,130,32)" fg:x="832653" fg:w="1477"/><text x="87.3491%" y="719.50"></text></g><g><title>rcu_all_qs (139 samples, 0.01%)</title><rect x="87.2536%" y="709" width="0.0145%" height="15" fill="rgb(244,210,16)" fg:x="834130" fg:w="139"/><text x="87.5036%" y="719.50"></text></g><g><title>dput (2,194 samples, 0.23%)</title><rect x="87.0427%" y="725" width="0.2295%" height="15" fill="rgb(234,48,26)" fg:x="832114" fg:w="2194"/><text x="87.2927%" y="735.50"></text></g><g><title>lockref_put_or_lock (115 samples, 0.01%)</title><rect x="87.2735%" y="725" width="0.0120%" height="15" fill="rgb(231,82,38)" fg:x="834321" fg:w="115"/><text x="87.5235%" y="735.50"></text></g><g><title>lockref_put_return (173 samples, 0.02%)</title><rect x="87.2856%" y="725" width="0.0181%" height="15" fill="rgb(254,128,41)" fg:x="834436" fg:w="173"/><text x="87.5356%" y="735.50"></text></g><g><title>atime_needs_update (291 samples, 0.03%)</title><rect x="87.3474%" y="709" width="0.0304%" height="15" fill="rgb(212,73,49)" fg:x="835027" fg:w="291"/><text x="87.5974%" y="719.50"></text></g><g><title>lockref_put_or_lock (392 samples, 0.04%)</title><rect x="87.4091%" y="677" width="0.0410%" height="15" fill="rgb(205,62,54)" fg:x="835617" fg:w="392"/><text x="87.6591%" y="687.50"></text></g><g><title>dput (523 samples, 0.05%)</title><rect x="87.3982%" y="693" width="0.0547%" height="15" fill="rgb(228,0,8)" fg:x="835513" fg:w="523"/><text x="87.6482%" y="703.50"></text></g><g><title>lockref_get (182 samples, 0.02%)</title><rect x="87.4529%" y="693" width="0.0190%" height="15" fill="rgb(251,28,17)" fg:x="836036" fg:w="182"/><text x="87.7029%" y="703.50"></text></g><g><title>nd_jump_root (882 samples, 0.09%)</title><rect x="87.3931%" y="709" width="0.0923%" height="15" fill="rgb(238,105,27)" fg:x="835464" fg:w="882"/><text x="87.6431%" y="719.50"></text></g><g><title>xas_load (112 samples, 0.01%)</title><rect x="87.5942%" y="645" width="0.0117%" height="15" fill="rgb(237,216,33)" fg:x="837387" fg:w="112"/><text x="87.8442%" y="655.50"></text></g><g><title>pagecache_get_page (848 samples, 0.09%)</title><rect x="87.5185%" y="661" width="0.0887%" height="15" fill="rgb(229,228,25)" fg:x="836663" fg:w="848"/><text x="87.7685%" y="671.50"></text></g><g><title>do_read_cache_page (1,010 samples, 0.11%)</title><rect x="87.5032%" y="677" width="0.1057%" height="15" fill="rgb(233,75,23)" fg:x="836517" fg:w="1010"/><text x="87.7532%" y="687.50"></text></g><g><title>page_get_link (1,214 samples, 0.13%)</title><rect x="87.4854%" y="709" width="0.1270%" height="15" fill="rgb(231,207,16)" fg:x="836346" fg:w="1214"/><text x="87.7354%" y="719.50"></text></g><g><title>read_cache_page (1,047 samples, 0.11%)</title><rect x="87.5028%" y="693" width="0.1095%" height="15" fill="rgb(231,191,45)" fg:x="836513" fg:w="1047"/><text x="87.7528%" y="703.50"></text></g><g><title>__mnt_want_write (140 samples, 0.01%)</title><rect x="87.6463%" y="693" width="0.0146%" height="15" fill="rgb(224,133,17)" fg:x="837885" fg:w="140"/><text x="87.8963%" y="703.50"></text></g><g><title>current_time (111 samples, 0.01%)</title><rect x="87.6685%" y="677" width="0.0116%" height="15" fill="rgb(209,178,27)" fg:x="838097" fg:w="111"/><text x="87.9185%" y="687.50"></text></g><g><title>atime_needs_update (186 samples, 0.02%)</title><rect x="87.6612%" y="693" width="0.0195%" height="15" fill="rgb(218,37,11)" fg:x="838027" fg:w="186"/><text x="87.9112%" y="703.50"></text></g><g><title>touch_atime (576 samples, 0.06%)</title><rect x="87.6214%" y="709" width="0.0603%" height="15" fill="rgb(251,226,25)" fg:x="837647" fg:w="576"/><text x="87.8714%" y="719.50"></text></g><g><title>__legitimize_mnt (232 samples, 0.02%)</title><rect x="87.6917%" y="677" width="0.0243%" height="15" fill="rgb(209,222,27)" fg:x="838319" fg:w="232"/><text x="87.9417%" y="687.50"></text></g><g><title>__legitimize_path (444 samples, 0.05%)</title><rect x="87.6866%" y="693" width="0.0464%" height="15" fill="rgb(238,22,21)" fg:x="838270" fg:w="444"/><text x="87.9366%" y="703.50"></text></g><g><title>lockref_get_not_dead (162 samples, 0.02%)</title><rect x="87.7161%" y="677" width="0.0169%" height="15" fill="rgb(233,161,25)" fg:x="838552" fg:w="162"/><text x="87.9661%" y="687.50"></text></g><g><title>__legitimize_mnt (432 samples, 0.05%)</title><rect x="87.7539%" y="661" width="0.0452%" height="15" fill="rgb(226,122,53)" fg:x="838913" fg:w="432"/><text x="88.0039%" y="671.50"></text></g><g><title>__legitimize_path (970 samples, 0.10%)</title><rect x="87.7491%" y="677" width="0.1015%" height="15" fill="rgb(220,123,17)" fg:x="838867" fg:w="970"/><text x="87.9991%" y="687.50"></text></g><g><title>lockref_get_not_dead (491 samples, 0.05%)</title><rect x="87.7992%" y="661" width="0.0514%" height="15" fill="rgb(230,224,35)" fg:x="839346" fg:w="491"/><text x="88.0492%" y="671.50"></text></g><g><title>legitimize_links (1,131 samples, 0.12%)</title><rect x="87.7331%" y="693" width="0.1183%" height="15" fill="rgb(246,83,8)" fg:x="838714" fg:w="1131"/><text x="87.9831%" y="703.50"></text></g><g><title>__legitimize_mnt (242 samples, 0.03%)</title><rect x="87.8545%" y="661" width="0.0253%" height="15" fill="rgb(230,214,17)" fg:x="839875" fg:w="242"/><text x="88.1045%" y="671.50"></text></g><g><title>__legitimize_path (546 samples, 0.06%)</title><rect x="87.8527%" y="677" width="0.0571%" height="15" fill="rgb(222,97,18)" fg:x="839858" fg:w="546"/><text x="88.1027%" y="687.50"></text></g><g><title>lockref_get_not_dead (286 samples, 0.03%)</title><rect x="87.8799%" y="661" width="0.0299%" height="15" fill="rgb(206,79,1)" fg:x="840118" fg:w="286"/><text x="88.1299%" y="671.50"></text></g><g><title>legitimize_root (564 samples, 0.06%)</title><rect x="87.8514%" y="693" width="0.0590%" height="15" fill="rgb(214,121,34)" fg:x="839845" fg:w="564"/><text x="88.1014%" y="703.50"></text></g><g><title>pick_link (5,721 samples, 0.60%)</title><rect x="87.3131%" y="725" width="0.5984%" height="15" fill="rgb(249,199,46)" fg:x="834699" fg:w="5721"/><text x="87.5631%" y="735.50"></text></g><g><title>try_to_unlazy (2,197 samples, 0.23%)</title><rect x="87.6817%" y="709" width="0.2298%" height="15" fill="rgb(214,222,46)" fg:x="838223" fg:w="2197"/><text x="87.9317%" y="719.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (42,287 samples, 4.42%)</title><rect x="83.4991%" y="773" width="4.4234%" height="15" fill="rgb(248,168,30)" fg:x="798238" fg:w="42287"/><text x="83.7491%" y="783.50">link_..</text></g><g><title>walk_component (28,212 samples, 2.95%)</title><rect x="84.9714%" y="757" width="2.9511%" height="15" fill="rgb(226,14,28)" fg:x="812313" fg:w="28212"/><text x="85.2214%" y="767.50">wal..</text></g><g><title>step_into (12,181 samples, 1.27%)</title><rect x="86.6483%" y="741" width="1.2742%" height="15" fill="rgb(253,123,1)" fg:x="828344" fg:w="12181"/><text x="86.8983%" y="751.50"></text></g><g><title>may_open (107 samples, 0.01%)</title><rect x="87.9246%" y="773" width="0.0112%" height="15" fill="rgb(225,24,42)" fg:x="840545" fg:w="107"/><text x="88.1746%" y="783.50"></text></g><g><title>_raw_spin_lock (101 samples, 0.01%)</title><rect x="87.9814%" y="741" width="0.0106%" height="15" fill="rgb(216,161,37)" fg:x="841088" fg:w="101"/><text x="88.2314%" y="751.50"></text></g><g><title>btrfs_dentry_delete (691 samples, 0.07%)</title><rect x="87.9920%" y="741" width="0.0723%" height="15" fill="rgb(251,164,26)" fg:x="841189" fg:w="691"/><text x="88.2420%" y="751.50"></text></g><g><title>dput (889 samples, 0.09%)</title><rect x="87.9750%" y="757" width="0.0930%" height="15" fill="rgb(219,177,3)" fg:x="841027" fg:w="889"/><text x="88.2250%" y="767.50"></text></g><g><title>__d_lookup (1,646 samples, 0.17%)</title><rect x="88.0794%" y="741" width="0.1722%" height="15" fill="rgb(222,65,0)" fg:x="842025" fg:w="1646"/><text x="88.3294%" y="751.50"></text></g><g><title>__d_lookup_rcu (1,974 samples, 0.21%)</title><rect x="88.2516%" y="741" width="0.2065%" height="15" fill="rgb(223,69,54)" fg:x="843671" fg:w="1974"/><text x="88.5016%" y="751.50"></text></g><g><title>_raw_spin_lock (220 samples, 0.02%)</title><rect x="88.4581%" y="741" width="0.0230%" height="15" fill="rgb(235,30,27)" fg:x="845645" fg:w="220"/><text x="88.7081%" y="751.50"></text></g><g><title>lookup_fast (3,952 samples, 0.41%)</title><rect x="88.0683%" y="757" width="0.4134%" height="15" fill="rgb(220,183,50)" fg:x="841919" fg:w="3952"/><text x="88.3183%" y="767.50"></text></g><g><title>lockref_put_or_lock (140 samples, 0.01%)</title><rect x="88.5295%" y="725" width="0.0146%" height="15" fill="rgb(248,198,15)" fg:x="846328" fg:w="140"/><text x="88.7795%" y="735.50"></text></g><g><title>dput (195 samples, 0.02%)</title><rect x="88.5250%" y="741" width="0.0204%" height="15" fill="rgb(222,211,4)" fg:x="846285" fg:w="195"/><text x="88.7750%" y="751.50"></text></g><g><title>atime_needs_update (284 samples, 0.03%)</title><rect x="88.7597%" y="725" width="0.0297%" height="15" fill="rgb(214,102,34)" fg:x="848529" fg:w="284"/><text x="89.0097%" y="735.50"></text></g><g><title>nd_jump_root (202 samples, 0.02%)</title><rect x="88.7970%" y="725" width="0.0211%" height="15" fill="rgb(245,92,5)" fg:x="848885" fg:w="202"/><text x="89.0470%" y="735.50"></text></g><g><title>set_root (135 samples, 0.01%)</title><rect x="88.8040%" y="709" width="0.0141%" height="15" fill="rgb(252,72,51)" fg:x="848952" fg:w="135"/><text x="89.0540%" y="719.50"></text></g><g><title>xas_load (494 samples, 0.05%)</title><rect x="88.9460%" y="693" width="0.0517%" height="15" fill="rgb(252,208,19)" fg:x="850310" fg:w="494"/><text x="89.1960%" y="703.50"></text></g><g><title>xas_start (448 samples, 0.05%)</title><rect x="88.9509%" y="677" width="0.0469%" height="15" fill="rgb(211,69,7)" fg:x="850356" fg:w="448"/><text x="89.2009%" y="687.50"></text></g><g><title>pagecache_get_page (1,541 samples, 0.16%)</title><rect x="88.8386%" y="709" width="0.1612%" height="15" fill="rgb(211,27,16)" fg:x="849283" fg:w="1541"/><text x="89.0886%" y="719.50"></text></g><g><title>get_page_from_freelist (196 samples, 0.02%)</title><rect x="89.0145%" y="629" width="0.0205%" height="15" fill="rgb(219,216,14)" fg:x="850964" fg:w="196"/><text x="89.2645%" y="639.50"></text></g><g><title>__alloc_pages (265 samples, 0.03%)</title><rect x="89.0081%" y="645" width="0.0277%" height="15" fill="rgb(219,71,8)" fg:x="850903" fg:w="265"/><text x="89.2581%" y="655.50"></text></g><g><title>__page_cache_alloc (324 samples, 0.03%)</title><rect x="89.0041%" y="677" width="0.0339%" height="15" fill="rgb(223,170,53)" fg:x="850865" fg:w="324"/><text x="89.2541%" y="687.50"></text></g><g><title>alloc_pages (311 samples, 0.03%)</title><rect x="89.0055%" y="661" width="0.0325%" height="15" fill="rgb(246,21,26)" fg:x="850878" fg:w="311"/><text x="89.2555%" y="671.50"></text></g><g><title>__mem_cgroup_charge (98 samples, 0.01%)</title><rect x="89.0455%" y="645" width="0.0103%" height="15" fill="rgb(248,20,46)" fg:x="851261" fg:w="98"/><text x="89.2955%" y="655.50"></text></g><g><title>__add_to_page_cache_locked (298 samples, 0.03%)</title><rect x="89.0396%" y="661" width="0.0312%" height="15" fill="rgb(252,94,11)" fg:x="851204" fg:w="298"/><text x="89.2896%" y="671.50"></text></g><g><title>add_to_page_cache_lru (426 samples, 0.04%)</title><rect x="89.0380%" y="677" width="0.0446%" height="15" fill="rgb(236,163,8)" fg:x="851189" fg:w="426"/><text x="89.2880%" y="687.50"></text></g><g><title>__clear_extent_bit (212 samples, 0.02%)</title><rect x="89.0941%" y="645" width="0.0222%" height="15" fill="rgb(217,221,45)" fg:x="851725" fg:w="212"/><text x="89.3441%" y="655.50"></text></g><g><title>btrfs_bin_search (233 samples, 0.02%)</title><rect x="89.1875%" y="597" width="0.0244%" height="15" fill="rgb(238,38,17)" fg:x="852618" fg:w="233"/><text x="89.4375%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (228 samples, 0.02%)</title><rect x="89.1880%" y="581" width="0.0238%" height="15" fill="rgb(242,210,23)" fg:x="852623" fg:w="228"/><text x="89.4380%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (386 samples, 0.04%)</title><rect x="89.2268%" y="485" width="0.0404%" height="15" fill="rgb(250,86,53)" fg:x="852994" fg:w="386"/><text x="89.4768%" y="495.50"></text></g><g><title>x86_pmu_enable (381 samples, 0.04%)</title><rect x="89.2273%" y="469" width="0.0399%" height="15" fill="rgb(223,168,25)" fg:x="852999" fg:w="381"/><text x="89.4773%" y="479.50"></text></g><g><title>intel_pmu_enable_all (379 samples, 0.04%)</title><rect x="89.2275%" y="453" width="0.0396%" height="15" fill="rgb(251,189,4)" fg:x="853001" fg:w="379"/><text x="89.4775%" y="463.50"></text></g><g><title>native_write_msr (378 samples, 0.04%)</title><rect x="89.2276%" y="437" width="0.0395%" height="15" fill="rgb(245,19,28)" fg:x="853002" fg:w="378"/><text x="89.4776%" y="447.50"></text></g><g><title>finish_task_switch.isra.0 (399 samples, 0.04%)</title><rect x="89.2262%" y="501" width="0.0417%" height="15" fill="rgb(207,10,34)" fg:x="852988" fg:w="399"/><text x="89.4762%" y="511.50"></text></g><g><title>__schedule (572 samples, 0.06%)</title><rect x="89.2182%" y="517" width="0.0598%" height="15" fill="rgb(235,153,31)" fg:x="852912" fg:w="572"/><text x="89.4682%" y="527.50"></text></g><g><title>schedule (579 samples, 0.06%)</title><rect x="89.2178%" y="533" width="0.0606%" height="15" fill="rgb(228,72,37)" fg:x="852908" fg:w="579"/><text x="89.4678%" y="543.50"></text></g><g><title>rwsem_down_read_slowpath (602 samples, 0.06%)</title><rect x="89.2155%" y="549" width="0.0630%" height="15" fill="rgb(215,15,16)" fg:x="852886" fg:w="602"/><text x="89.4655%" y="559.50"></text></g><g><title>down_read (615 samples, 0.06%)</title><rect x="89.2143%" y="565" width="0.0643%" height="15" fill="rgb(250,119,29)" fg:x="852874" fg:w="615"/><text x="89.4643%" y="575.50"></text></g><g><title>__btrfs_tree_read_lock (621 samples, 0.06%)</title><rect x="89.2138%" y="581" width="0.0650%" height="15" fill="rgb(214,59,1)" fg:x="852870" fg:w="621"/><text x="89.4638%" y="591.50"></text></g><g><title>btrfs_read_lock_root_node (660 samples, 0.07%)</title><rect x="89.2138%" y="597" width="0.0690%" height="15" fill="rgb(223,109,25)" fg:x="852870" fg:w="660"/><text x="89.4638%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (203 samples, 0.02%)</title><rect x="89.2961%" y="485" width="0.0212%" height="15" fill="rgb(230,198,22)" fg:x="853656" fg:w="203"/><text x="89.5461%" y="495.50"></text></g><g><title>x86_pmu_enable (200 samples, 0.02%)</title><rect x="89.2964%" y="469" width="0.0209%" height="15" fill="rgb(245,184,46)" fg:x="853659" fg:w="200"/><text x="89.5464%" y="479.50"></text></g><g><title>intel_pmu_enable_all (199 samples, 0.02%)</title><rect x="89.2965%" y="453" width="0.0208%" height="15" fill="rgb(253,73,16)" fg:x="853660" fg:w="199"/><text x="89.5465%" y="463.50"></text></g><g><title>native_write_msr (198 samples, 0.02%)</title><rect x="89.2966%" y="437" width="0.0207%" height="15" fill="rgb(206,94,45)" fg:x="853661" fg:w="198"/><text x="89.5466%" y="447.50"></text></g><g><title>finish_task_switch.isra.0 (209 samples, 0.02%)</title><rect x="89.2960%" y="501" width="0.0219%" height="15" fill="rgb(236,83,27)" fg:x="853655" fg:w="209"/><text x="89.5460%" y="511.50"></text></g><g><title>__schedule (348 samples, 0.04%)</title><rect x="89.2903%" y="517" width="0.0364%" height="15" fill="rgb(220,196,8)" fg:x="853601" fg:w="348"/><text x="89.5403%" y="527.50"></text></g><g><title>schedule (352 samples, 0.04%)</title><rect x="89.2902%" y="533" width="0.0368%" height="15" fill="rgb(254,185,14)" fg:x="853600" fg:w="352"/><text x="89.5402%" y="543.50"></text></g><g><title>rwsem_down_read_slowpath (370 samples, 0.04%)</title><rect x="89.2885%" y="549" width="0.0387%" height="15" fill="rgb(226,50,22)" fg:x="853584" fg:w="370"/><text x="89.5385%" y="559.50"></text></g><g><title>down_read (416 samples, 0.04%)</title><rect x="89.2839%" y="565" width="0.0435%" height="15" fill="rgb(253,147,0)" fg:x="853540" fg:w="416"/><text x="89.5339%" y="575.50"></text></g><g><title>__btrfs_tree_read_lock (421 samples, 0.04%)</title><rect x="89.2835%" y="581" width="0.0440%" height="15" fill="rgb(252,46,33)" fg:x="853536" fg:w="421"/><text x="89.5335%" y="591.50"></text></g><g><title>btrfs_tree_read_lock (427 samples, 0.04%)</title><rect x="89.2834%" y="597" width="0.0447%" height="15" fill="rgb(242,22,54)" fg:x="853535" fg:w="427"/><text x="89.5334%" y="607.50"></text></g><g><title>radix_tree_lookup (168 samples, 0.02%)</title><rect x="89.3677%" y="549" width="0.0176%" height="15" fill="rgb(223,178,32)" fg:x="854341" fg:w="168"/><text x="89.6177%" y="559.50"></text></g><g><title>__radix_tree_lookup (168 samples, 0.02%)</title><rect x="89.3677%" y="533" width="0.0176%" height="15" fill="rgb(214,106,53)" fg:x="854341" fg:w="168"/><text x="89.6177%" y="543.50"></text></g><g><title>find_extent_buffer_nolock (252 samples, 0.03%)</title><rect x="89.3590%" y="565" width="0.0264%" height="15" fill="rgb(232,65,50)" fg:x="854258" fg:w="252"/><text x="89.6090%" y="575.50"></text></g><g><title>find_extent_buffer (366 samples, 0.04%)</title><rect x="89.3574%" y="581" width="0.0383%" height="15" fill="rgb(231,110,28)" fg:x="854242" fg:w="366"/><text x="89.6074%" y="591.50"></text></g><g><title>read_block_for_search (554 samples, 0.06%)</title><rect x="89.3394%" y="597" width="0.0580%" height="15" fill="rgb(216,71,40)" fg:x="854070" fg:w="554"/><text x="89.5894%" y="607.50"></text></g><g><title>btrfs_search_slot (2,163 samples, 0.23%)</title><rect x="89.1767%" y="613" width="0.2263%" height="15" fill="rgb(229,89,53)" fg:x="852515" fg:w="2163"/><text x="89.4267%" y="623.50"></text></g><g><title>btrfs_lookup_file_extent (2,209 samples, 0.23%)</title><rect x="89.1753%" y="629" width="0.2311%" height="15" fill="rgb(210,124,14)" fg:x="852502" fg:w="2209"/><text x="89.4253%" y="639.50"></text></g><g><title>set_extent_bit (174 samples, 0.02%)</title><rect x="89.4250%" y="629" width="0.0182%" height="15" fill="rgb(236,213,6)" fg:x="854889" fg:w="174"/><text x="89.6750%" y="639.50"></text></g><g><title>btrfs_get_extent (3,060 samples, 0.32%)</title><rect x="89.1234%" y="645" width="0.3201%" height="15" fill="rgb(228,41,5)" fg:x="852005" fg:w="3060"/><text x="89.3734%" y="655.50"></text></g><g><title>btrfs_do_readpage (3,511 samples, 0.37%)</title><rect x="89.0850%" y="661" width="0.3673%" height="15" fill="rgb(221,167,25)" fg:x="851638" fg:w="3511"/><text x="89.3350%" y="671.50"></text></g><g><title>lock_extent_bits (150 samples, 0.02%)</title><rect x="89.4570%" y="645" width="0.0157%" height="15" fill="rgb(228,144,37)" fg:x="855195" fg:w="150"/><text x="89.7070%" y="655.50"></text></g><g><title>set_extent_bit (97 samples, 0.01%)</title><rect x="89.4626%" y="629" width="0.0101%" height="15" fill="rgb(227,189,38)" fg:x="855248" fg:w="97"/><text x="89.7126%" y="639.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (195 samples, 0.02%)</title><rect x="89.4529%" y="661" width="0.0204%" height="15" fill="rgb(218,8,2)" fg:x="855155" fg:w="195"/><text x="89.7029%" y="671.50"></text></g><g><title>btrfs_readpage (3,771 samples, 0.39%)</title><rect x="89.0840%" y="677" width="0.3945%" height="15" fill="rgb(209,61,28)" fg:x="851629" fg:w="3771"/><text x="89.3340%" y="687.50"></text></g><g><title>do_read_cache_page (4,601 samples, 0.48%)</title><rect x="89.0017%" y="693" width="0.4813%" height="15" fill="rgb(233,140,39)" fg:x="850842" fg:w="4601"/><text x="89.2517%" y="703.50"></text></g><g><title>read_cache_page (4,620 samples, 0.48%)</title><rect x="88.9999%" y="709" width="0.4833%" height="15" fill="rgb(251,66,48)" fg:x="850825" fg:w="4620"/><text x="89.2499%" y="719.50"></text></g><g><title>page_get_link (6,369 samples, 0.67%)</title><rect x="88.8181%" y="725" width="0.6662%" height="15" fill="rgb(210,44,45)" fg:x="849087" fg:w="6369"/><text x="89.0681%" y="735.50"></text></g><g><title>btrfs_wq_run_delayed_node (114 samples, 0.01%)</title><rect x="89.4988%" y="661" width="0.0119%" height="15" fill="rgb(214,136,46)" fg:x="855594" fg:w="114"/><text x="89.7488%" y="671.50"></text></g><g><title>btrfs_balance_delayed_items (146 samples, 0.02%)</title><rect x="89.4974%" y="677" width="0.0153%" height="15" fill="rgb(207,130,50)" fg:x="855581" fg:w="146"/><text x="89.7474%" y="687.50"></text></g><g><title>btrfs_join_transaction (161 samples, 0.02%)</title><rect x="89.5213%" y="677" width="0.0168%" height="15" fill="rgb(228,102,49)" fg:x="855809" fg:w="161"/><text x="89.7713%" y="687.50"></text></g><g><title>start_transaction (151 samples, 0.02%)</title><rect x="89.5223%" y="661" width="0.0158%" height="15" fill="rgb(253,55,1)" fg:x="855819" fg:w="151"/><text x="89.7723%" y="671.50"></text></g><g><title>__reserve_bytes (150 samples, 0.02%)</title><rect x="89.5501%" y="613" width="0.0157%" height="15" fill="rgb(238,222,9)" fg:x="856085" fg:w="150"/><text x="89.8001%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (190 samples, 0.02%)</title><rect x="89.5483%" y="645" width="0.0199%" height="15" fill="rgb(246,99,6)" fg:x="856067" fg:w="190"/><text x="89.7983%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (184 samples, 0.02%)</title><rect x="89.5489%" y="629" width="0.0192%" height="15" fill="rgb(219,110,26)" fg:x="856073" fg:w="184"/><text x="89.7989%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (422 samples, 0.04%)</title><rect x="89.5401%" y="661" width="0.0441%" height="15" fill="rgb(239,160,33)" fg:x="855989" fg:w="422"/><text x="89.7901%" y="671.50"></text></g><g><title>btrfs_update_inode (486 samples, 0.05%)</title><rect x="89.5381%" y="677" width="0.0508%" height="15" fill="rgb(220,202,23)" fg:x="855970" fg:w="486"/><text x="89.7881%" y="687.50"></text></g><g><title>btrfs_dirty_inode (914 samples, 0.10%)</title><rect x="89.4955%" y="693" width="0.0956%" height="15" fill="rgb(208,80,26)" fg:x="855563" fg:w="914"/><text x="89.7455%" y="703.50"></text></g><g><title>btrfs_update_time (920 samples, 0.10%)</title><rect x="89.4952%" y="709" width="0.0962%" height="15" fill="rgb(243,85,7)" fg:x="855560" fg:w="920"/><text x="89.7452%" y="719.50"></text></g><g><title>touch_atime (969 samples, 0.10%)</title><rect x="89.4906%" y="725" width="0.1014%" height="15" fill="rgb(228,77,47)" fg:x="855516" fg:w="969"/><text x="89.7406%" y="735.50"></text></g><g><title>pick_link (10,022 samples, 1.05%)</title><rect x="88.5487%" y="741" width="1.0483%" height="15" fill="rgb(212,226,8)" fg:x="846511" fg:w="10022"/><text x="88.7987%" y="751.50"></text></g><g><title>open_last_lookups (15,866 samples, 1.66%)</title><rect x="87.9399%" y="773" width="1.6597%" height="15" fill="rgb(241,120,54)" fg:x="840691" fg:w="15866"/><text x="88.1899%" y="783.50"></text></g><g><title>step_into (10,524 samples, 1.10%)</title><rect x="88.4987%" y="757" width="1.1009%" height="15" fill="rgb(226,80,16)" fg:x="846033" fg:w="10524"/><text x="88.7487%" y="767.50"></text></g><g><title>__fget_files (362 samples, 0.04%)</title><rect x="89.6296%" y="725" width="0.0379%" height="15" fill="rgb(240,76,13)" fg:x="856845" fg:w="362"/><text x="89.8796%" y="735.50"></text></g><g><title>__fdget_raw (380 samples, 0.04%)</title><rect x="89.6281%" y="757" width="0.0397%" height="15" fill="rgb(252,74,8)" fg:x="856830" fg:w="380"/><text x="89.8781%" y="767.50"></text></g><g><title>__fget_light (372 samples, 0.04%)</title><rect x="89.6289%" y="741" width="0.0389%" height="15" fill="rgb(244,155,2)" fg:x="856838" fg:w="372"/><text x="89.8789%" y="751.50"></text></g><g><title>path_init (734 samples, 0.08%)</title><rect x="89.6067%" y="773" width="0.0768%" height="15" fill="rgb(215,81,35)" fg:x="856626" fg:w="734"/><text x="89.8567%" y="783.50"></text></g><g><title>fput_many (106 samples, 0.01%)</title><rect x="89.6724%" y="757" width="0.0111%" height="15" fill="rgb(206,55,2)" fg:x="857254" fg:w="106"/><text x="89.9224%" y="767.50"></text></g><g><title>lockref_put_or_lock (115 samples, 0.01%)</title><rect x="89.7230%" y="741" width="0.0120%" height="15" fill="rgb(231,2,34)" fg:x="857738" fg:w="115"/><text x="89.9730%" y="751.50"></text></g><g><title>dput (400 samples, 0.04%)</title><rect x="89.6963%" y="757" width="0.0418%" height="15" fill="rgb(242,176,48)" fg:x="857482" fg:w="400"/><text x="89.9463%" y="767.50"></text></g><g><title>lockref_put_return (316 samples, 0.03%)</title><rect x="89.7402%" y="757" width="0.0331%" height="15" fill="rgb(249,31,36)" fg:x="857902" fg:w="316"/><text x="89.9902%" y="767.50"></text></g><g><title>mntput_no_expire (139 samples, 0.01%)</title><rect x="89.7742%" y="741" width="0.0145%" height="15" fill="rgb(205,18,17)" fg:x="858227" fg:w="139"/><text x="90.0242%" y="751.50"></text></g><g><title>mntput (153 samples, 0.02%)</title><rect x="89.7733%" y="757" width="0.0160%" height="15" fill="rgb(254,130,5)" fg:x="858218" fg:w="153"/><text x="90.0233%" y="767.50"></text></g><g><title>terminate_walk (1,011 samples, 0.11%)</title><rect x="89.6861%" y="773" width="0.1058%" height="15" fill="rgb(229,42,45)" fg:x="857385" fg:w="1011"/><text x="89.9361%" y="783.50"></text></g><g><title>path_openat (70,491 samples, 7.37%)</title><rect x="82.4444%" y="789" width="7.3737%" height="15" fill="rgb(245,95,25)" fg:x="788155" fg:w="70491"/><text x="82.6944%" y="799.50">path_openat</text></g><g><title>walk_component (231 samples, 0.02%)</title><rect x="89.7939%" y="773" width="0.0242%" height="15" fill="rgb(249,193,38)" fg:x="858415" fg:w="231"/><text x="90.0439%" y="783.50"></text></g><g><title>do_filp_open (70,931 samples, 7.42%)</title><rect x="82.4002%" y="805" width="7.4197%" height="15" fill="rgb(241,140,43)" fg:x="787733" fg:w="70931"/><text x="82.6502%" y="815.50">do_filp_op..</text></g><g><title>fd_install (226 samples, 0.02%)</title><rect x="89.8199%" y="805" width="0.0236%" height="15" fill="rgb(245,78,48)" fg:x="858664" fg:w="226"/><text x="90.0699%" y="815.50"></text></g><g><title>_raw_spin_lock (167 samples, 0.02%)</title><rect x="89.8655%" y="789" width="0.0175%" height="15" fill="rgb(214,92,39)" fg:x="859100" fg:w="167"/><text x="90.1155%" y="799.50"></text></g><g><title>alloc_fd (346 samples, 0.04%)</title><rect x="89.8830%" y="789" width="0.0362%" height="15" fill="rgb(211,189,14)" fg:x="859267" fg:w="346"/><text x="90.1330%" y="799.50"></text></g><g><title>get_unused_fd_flags (751 samples, 0.08%)</title><rect x="89.8436%" y="805" width="0.0786%" height="15" fill="rgb(218,7,24)" fg:x="858890" fg:w="751"/><text x="90.0936%" y="815.50"></text></g><g><title>kmem_cache_alloc (561 samples, 0.06%)</title><rect x="89.9465%" y="773" width="0.0587%" height="15" fill="rgb(224,200,49)" fg:x="859874" fg:w="561"/><text x="90.1965%" y="783.50"></text></g><g><title>memset_erms (1,265 samples, 0.13%)</title><rect x="90.0067%" y="773" width="0.1323%" height="15" fill="rgb(218,210,14)" fg:x="860450" fg:w="1265"/><text x="90.2567%" y="783.50"></text></g><g><title>__check_heap_object (192 samples, 0.02%)</title><rect x="90.2168%" y="725" width="0.0201%" height="15" fill="rgb(234,142,31)" fg:x="862458" fg:w="192"/><text x="90.4668%" y="735.50"></text></g><g><title>__virt_addr_valid (413 samples, 0.04%)</title><rect x="90.2369%" y="725" width="0.0432%" height="15" fill="rgb(227,165,2)" fg:x="862650" fg:w="413"/><text x="90.4869%" y="735.50"></text></g><g><title>__check_object_size.part.0 (792 samples, 0.08%)</title><rect x="90.1974%" y="741" width="0.0828%" height="15" fill="rgb(232,44,46)" fg:x="862273" fg:w="792"/><text x="90.4474%" y="751.50"></text></g><g><title>__check_object_size (1,012 samples, 0.11%)</title><rect x="90.1965%" y="757" width="0.1059%" height="15" fill="rgb(236,149,47)" fg:x="862264" fg:w="1012"/><text x="90.4465%" y="767.50"></text></g><g><title>check_stack_object (120 samples, 0.01%)</title><rect x="90.2898%" y="741" width="0.0126%" height="15" fill="rgb(227,45,31)" fg:x="863156" fg:w="120"/><text x="90.5398%" y="751.50"></text></g><g><title>getname_flags.part.0 (3,612 samples, 0.38%)</title><rect x="89.9246%" y="789" width="0.3778%" height="15" fill="rgb(240,176,51)" fg:x="859665" fg:w="3612"/><text x="90.1746%" y="799.50"></text></g><g><title>strncpy_from_user (1,536 samples, 0.16%)</title><rect x="90.1418%" y="773" width="0.1607%" height="15" fill="rgb(249,146,41)" fg:x="861741" fg:w="1536"/><text x="90.3918%" y="783.50"></text></g><g><title>getname (3,659 samples, 0.38%)</title><rect x="89.9221%" y="805" width="0.3827%" height="15" fill="rgb(213,208,4)" fg:x="859641" fg:w="3659"/><text x="90.1721%" y="815.50"></text></g><g><title>memcg_slab_free_hook (115 samples, 0.01%)</title><rect x="90.3583%" y="773" width="0.0120%" height="15" fill="rgb(245,84,36)" fg:x="863811" fg:w="115"/><text x="90.6083%" y="783.50"></text></g><g><title>kmem_cache_free (610 samples, 0.06%)</title><rect x="90.3190%" y="789" width="0.0638%" height="15" fill="rgb(254,84,18)" fg:x="863435" fg:w="610"/><text x="90.5690%" y="799.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (119 samples, 0.01%)</title><rect x="90.3703%" y="773" width="0.0124%" height="15" fill="rgb(225,38,54)" fg:x="863926" fg:w="119"/><text x="90.6203%" y="783.50"></text></g><g><title>do_sys_openat2 (76,600 samples, 8.01%)</title><rect x="82.3719%" y="821" width="8.0127%" height="15" fill="rgb(246,50,30)" fg:x="787462" fg:w="76600"/><text x="82.6219%" y="831.50">do_sys_open..</text></g><g><title>putname (709 samples, 0.07%)</title><rect x="90.3104%" y="805" width="0.0742%" height="15" fill="rgb(246,148,9)" fg:x="863353" fg:w="709"/><text x="90.5604%" y="815.50"></text></g><g><title>get_unused_fd_flags (141 samples, 0.01%)</title><rect x="90.3899%" y="821" width="0.0147%" height="15" fill="rgb(223,75,4)" fg:x="864113" fg:w="141"/><text x="90.6399%" y="831.50"></text></g><g><title>getname (109 samples, 0.01%)</title><rect x="90.4047%" y="821" width="0.0114%" height="15" fill="rgb(239,148,41)" fg:x="864254" fg:w="109"/><text x="90.6547%" y="831.50"></text></g><g><title>__x64_sys_openat (77,481 samples, 8.10%)</title><rect x="82.3142%" y="837" width="8.1048%" height="15" fill="rgb(205,195,3)" fg:x="786911" fg:w="77481"/><text x="82.5642%" y="847.50">__x64_sys_o..</text></g><g><title>__fdget_pos (101 samples, 0.01%)</title><rect x="90.4304%" y="821" width="0.0106%" height="15" fill="rgb(254,161,1)" fg:x="864500" fg:w="101"/><text x="90.6804%" y="831.50"></text></g><g><title>__cond_resched (116 samples, 0.01%)</title><rect x="90.5292%" y="789" width="0.0121%" height="15" fill="rgb(211,229,8)" fg:x="865445" fg:w="116"/><text x="90.7792%" y="799.50"></text></g><g><title>__fget_files (1,312 samples, 0.14%)</title><rect x="90.5509%" y="773" width="0.1372%" height="15" fill="rgb(220,97,9)" fg:x="865652" fg:w="1312"/><text x="90.8009%" y="783.50"></text></g><g><title>__fget_light (1,395 samples, 0.15%)</title><rect x="90.5453%" y="789" width="0.1459%" height="15" fill="rgb(240,218,8)" fg:x="865599" fg:w="1395"/><text x="90.7953%" y="799.50"></text></g><g><title>__cond_resched (98 samples, 0.01%)</title><rect x="90.7685%" y="773" width="0.0103%" height="15" fill="rgb(250,44,0)" fg:x="867732" fg:w="98"/><text x="91.0185%" y="783.50"></text></g><g><title>__fdget_pos (2,758 samples, 0.29%)</title><rect x="90.4971%" y="805" width="0.2885%" height="15" fill="rgb(236,41,53)" fg:x="865138" fg:w="2758"/><text x="90.7471%" y="815.50"></text></g><g><title>mutex_lock (902 samples, 0.09%)</title><rect x="90.6913%" y="789" width="0.0944%" height="15" fill="rgb(218,227,13)" fg:x="866994" fg:w="902"/><text x="90.9413%" y="799.50"></text></g><g><title>__fget_light (328 samples, 0.03%)</title><rect x="90.7856%" y="805" width="0.0343%" height="15" fill="rgb(217,94,32)" fg:x="867896" fg:w="328"/><text x="91.0356%" y="815.50"></text></g><g><title>__fsnotify_parent (233 samples, 0.02%)</title><rect x="90.8199%" y="805" width="0.0244%" height="15" fill="rgb(213,217,12)" fg:x="868224" fg:w="233"/><text x="91.0699%" y="815.50"></text></g><g><title>fput_many (690 samples, 0.07%)</title><rect x="90.8496%" y="805" width="0.0722%" height="15" fill="rgb(229,13,46)" fg:x="868508" fg:w="690"/><text x="91.0996%" y="815.50"></text></g><g><title>mutex_unlock (722 samples, 0.08%)</title><rect x="90.9250%" y="805" width="0.0755%" height="15" fill="rgb(243,139,5)" fg:x="869228" fg:w="722"/><text x="91.1750%" y="815.50"></text></g><g><title>new_sync_read (127 samples, 0.01%)</title><rect x="91.0005%" y="805" width="0.0133%" height="15" fill="rgb(249,38,45)" fg:x="869950" fg:w="127"/><text x="91.2505%" y="815.50"></text></g><g><title>rw_verify_area (231 samples, 0.02%)</title><rect x="91.0138%" y="805" width="0.0242%" height="15" fill="rgb(216,70,11)" fg:x="870077" fg:w="231"/><text x="91.2638%" y="815.50"></text></g><g><title>__fsnotify_parent (555 samples, 0.06%)</title><rect x="91.1991%" y="789" width="0.0581%" height="15" fill="rgb(253,101,25)" fg:x="871849" fg:w="555"/><text x="91.4491%" y="799.50"></text></g><g><title>btrfs_file_read_iter (125 samples, 0.01%)</title><rect x="91.2587%" y="789" width="0.0131%" height="15" fill="rgb(207,197,30)" fg:x="872419" fg:w="125"/><text x="91.5087%" y="799.50"></text></g><g><title>iov_iter_init (216 samples, 0.02%)</title><rect x="91.2718%" y="789" width="0.0226%" height="15" fill="rgb(238,87,13)" fg:x="872544" fg:w="216"/><text x="91.5218%" y="799.50"></text></g><g><title>copy_page_to_iter (108 samples, 0.01%)</title><rect x="91.4454%" y="757" width="0.0113%" height="15" fill="rgb(215,155,8)" fg:x="874203" fg:w="108"/><text x="91.6954%" y="767.50"></text></g><g><title>filemap_get_pages (221 samples, 0.02%)</title><rect x="91.4567%" y="757" width="0.0231%" height="15" fill="rgb(239,166,38)" fg:x="874311" fg:w="221"/><text x="91.7067%" y="767.50"></text></g><g><title>__cond_resched (246 samples, 0.03%)</title><rect x="91.8563%" y="741" width="0.0257%" height="15" fill="rgb(240,194,35)" fg:x="878132" fg:w="246"/><text x="92.1063%" y="751.50"></text></g><g><title>__cond_resched (98 samples, 0.01%)</title><rect x="92.0610%" y="725" width="0.0103%" height="15" fill="rgb(219,10,44)" fg:x="880088" fg:w="98"/><text x="92.3110%" y="735.50"></text></g><g><title>copy_page_to_iter (1,813 samples, 0.19%)</title><rect x="91.8899%" y="741" width="0.1896%" height="15" fill="rgb(251,220,35)" fg:x="878453" fg:w="1813"/><text x="92.1399%" y="751.50"></text></g><g><title>copy_user_enhanced_fast_string (6,647 samples, 0.70%)</title><rect x="92.0796%" y="741" width="0.6953%" height="15" fill="rgb(218,117,13)" fg:x="880266" fg:w="6647"/><text x="92.3296%" y="751.50"></text></g><g><title>xas_load (1,181 samples, 0.12%)</title><rect x="93.2994%" y="709" width="0.1235%" height="15" fill="rgb(221,213,40)" fg:x="891927" fg:w="1181"/><text x="93.5494%" y="719.50"></text></g><g><title>xas_start (720 samples, 0.08%)</title><rect x="93.3476%" y="693" width="0.0753%" height="15" fill="rgb(251,224,35)" fg:x="892388" fg:w="720"/><text x="93.5976%" y="703.50"></text></g><g><title>filemap_get_read_batch (4,933 samples, 0.52%)</title><rect x="92.9159%" y="725" width="0.5160%" height="15" fill="rgb(241,33,39)" fg:x="888261" fg:w="4933"/><text x="93.1659%" y="735.50"></text></g><g><title>rcu_read_unlock_strict (167 samples, 0.02%)</title><rect x="93.4319%" y="725" width="0.0175%" height="15" fill="rgb(222,74,17)" fg:x="893194" fg:w="167"/><text x="93.6819%" y="735.50"></text></g><g><title>filemap_get_pages (6,458 samples, 0.68%)</title><rect x="92.7812%" y="741" width="0.6755%" height="15" fill="rgb(225,103,0)" fg:x="886973" fg:w="6458"/><text x="93.0312%" y="751.50"></text></g><g><title>filemap_get_read_batch (124 samples, 0.01%)</title><rect x="93.4567%" y="741" width="0.0130%" height="15" fill="rgb(240,0,12)" fg:x="893431" fg:w="124"/><text x="93.7067%" y="751.50"></text></g><g><title>mark_page_accessed (185 samples, 0.02%)</title><rect x="93.4697%" y="741" width="0.0194%" height="15" fill="rgb(233,213,37)" fg:x="893555" fg:w="185"/><text x="93.7197%" y="751.50"></text></g><g><title>current_time (874 samples, 0.09%)</title><rect x="93.5877%" y="709" width="0.0914%" height="15" fill="rgb(225,84,52)" fg:x="894683" fg:w="874"/><text x="93.8377%" y="719.50"></text></g><g><title>ktime_get_coarse_real_ts64 (297 samples, 0.03%)</title><rect x="93.6480%" y="693" width="0.0311%" height="15" fill="rgb(247,160,51)" fg:x="895260" fg:w="297"/><text x="93.8980%" y="703.50"></text></g><g><title>atime_needs_update (1,519 samples, 0.16%)</title><rect x="93.5282%" y="725" width="0.1589%" height="15" fill="rgb(244,60,51)" fg:x="894115" fg:w="1519"/><text x="93.7782%" y="735.50"></text></g><g><title>filemap_read (21,177 samples, 2.22%)</title><rect x="91.4798%" y="757" width="2.2152%" height="15" fill="rgb(233,114,7)" fg:x="874532" fg:w="21177"/><text x="91.7298%" y="767.50">f..</text></g><g><title>touch_atime (1,879 samples, 0.20%)</title><rect x="93.4984%" y="741" width="0.1966%" height="15" fill="rgb(246,136,16)" fg:x="893830" fg:w="1879"/><text x="93.7484%" y="751.50"></text></g><g><title>btrfs_file_read_iter (21,878 samples, 2.29%)</title><rect x="91.4188%" y="773" width="2.2885%" height="15" fill="rgb(243,114,45)" fg:x="873949" fg:w="21878"/><text x="91.6688%" y="783.50">b..</text></g><g><title>filemap_read (147 samples, 0.02%)</title><rect x="93.7073%" y="773" width="0.0154%" height="15" fill="rgb(247,183,43)" fg:x="895827" fg:w="147"/><text x="93.9573%" y="783.50"></text></g><g><title>asm_exc_page_fault (230 samples, 0.02%)</title><rect x="93.7249%" y="709" width="0.0241%" height="15" fill="rgb(251,210,42)" fg:x="895995" fg:w="230"/><text x="93.9749%" y="719.50"></text></g><g><title>do_anonymous_page (156 samples, 0.02%)</title><rect x="93.7626%" y="597" width="0.0163%" height="15" fill="rgb(221,88,35)" fg:x="896355" fg:w="156"/><text x="94.0126%" y="607.50"></text></g><g><title>handle_pte_fault (171 samples, 0.02%)</title><rect x="93.7618%" y="613" width="0.0179%" height="15" fill="rgb(242,21,20)" fg:x="896348" fg:w="171"/><text x="94.0118%" y="623.50"></text></g><g><title>__handle_mm_fault (184 samples, 0.02%)</title><rect x="93.7606%" y="629" width="0.0192%" height="15" fill="rgb(233,226,36)" fg:x="896336" fg:w="184"/><text x="94.0106%" y="639.50"></text></g><g><title>handle_mm_fault (195 samples, 0.02%)</title><rect x="93.7595%" y="645" width="0.0204%" height="15" fill="rgb(243,189,34)" fg:x="896326" fg:w="195"/><text x="94.0095%" y="655.50"></text></g><g><title>do_user_addr_fault (219 samples, 0.02%)</title><rect x="93.7572%" y="661" width="0.0229%" height="15" fill="rgb(207,145,50)" fg:x="896304" fg:w="219"/><text x="94.0072%" y="671.50"></text></g><g><title>asm_exc_page_fault (231 samples, 0.02%)</title><rect x="93.7566%" y="693" width="0.0242%" height="15" fill="rgb(242,1,50)" fg:x="896298" fg:w="231"/><text x="94.0066%" y="703.50"></text></g><g><title>exc_page_fault (231 samples, 0.02%)</title><rect x="93.7566%" y="677" width="0.0242%" height="15" fill="rgb(231,65,32)" fg:x="896298" fg:w="231"/><text x="94.0066%" y="687.50"></text></g><g><title>copy_user_enhanced_fast_string (297 samples, 0.03%)</title><rect x="93.7501%" y="709" width="0.0311%" height="15" fill="rgb(208,68,49)" fg:x="896236" fg:w="297"/><text x="94.0001%" y="719.50"></text></g><g><title>new_sync_read (23,798 samples, 2.49%)</title><rect x="91.2944%" y="789" width="2.4894%" height="15" fill="rgb(253,54,49)" fg:x="872760" fg:w="23798"/><text x="91.5444%" y="799.50">ne..</text></g><g><title>xfs_file_read_iter (583 samples, 0.06%)</title><rect x="93.7228%" y="773" width="0.0610%" height="15" fill="rgb(245,186,24)" fg:x="895975" fg:w="583"/><text x="93.9728%" y="783.50"></text></g><g><title>xfs_file_buffered_read (579 samples, 0.06%)</title><rect x="93.7232%" y="757" width="0.0606%" height="15" fill="rgb(209,2,41)" fg:x="895979" fg:w="579"/><text x="93.9732%" y="767.50"></text></g><g><title>generic_file_read_iter (578 samples, 0.06%)</title><rect x="93.7233%" y="741" width="0.0605%" height="15" fill="rgb(242,208,54)" fg:x="895980" fg:w="578"/><text x="93.9733%" y="751.50"></text></g><g><title>filemap_read (577 samples, 0.06%)</title><rect x="93.7234%" y="725" width="0.0604%" height="15" fill="rgb(225,9,51)" fg:x="895981" fg:w="577"/><text x="93.9734%" y="735.50"></text></g><g><title>apparmor_file_permission (133 samples, 0.01%)</title><rect x="93.7892%" y="773" width="0.0139%" height="15" fill="rgb(207,207,25)" fg:x="896610" fg:w="133"/><text x="94.0392%" y="783.50"></text></g><g><title>fsnotify_perm.part.0 (157 samples, 0.02%)</title><rect x="93.8031%" y="773" width="0.0164%" height="15" fill="rgb(253,96,18)" fg:x="896743" fg:w="157"/><text x="94.0531%" y="783.50"></text></g><g><title>__fsnotify_parent (263 samples, 0.03%)</title><rect x="93.8982%" y="757" width="0.0275%" height="15" fill="rgb(252,215,20)" fg:x="897652" fg:w="263"/><text x="94.1482%" y="767.50"></text></g><g><title>acquire_rundown (162 samples, 0.02%)</title><rect x="93.9318%" y="757" width="0.0169%" height="15" fill="rgb(245,227,26)" fg:x="897973" fg:w="162"/><text x="94.1818%" y="767.50"></text></g><g><title>aa_file_perm (335 samples, 0.04%)</title><rect x="94.0581%" y="741" width="0.0350%" height="15" fill="rgb(241,208,0)" fg:x="899180" fg:w="335"/><text x="94.3081%" y="751.50"></text></g><g><title>apparmor_file_permission (1,418 samples, 0.15%)</title><rect x="93.9487%" y="757" width="0.1483%" height="15" fill="rgb(224,130,10)" fg:x="898135" fg:w="1418"/><text x="94.1987%" y="767.50"></text></g><g><title>cshook_security_file_permission (132 samples, 0.01%)</title><rect x="94.0976%" y="757" width="0.0138%" height="15" fill="rgb(237,29,0)" fg:x="899558" fg:w="132"/><text x="94.3476%" y="767.50"></text></g><g><title>__fsnotify_parent (702 samples, 0.07%)</title><rect x="94.1880%" y="741" width="0.0734%" height="15" fill="rgb(219,27,41)" fg:x="900422" fg:w="702"/><text x="94.4380%" y="751.50"></text></g><g><title>fsnotify_perm.part.0 (1,443 samples, 0.15%)</title><rect x="94.1114%" y="757" width="0.1509%" height="15" fill="rgb(245,101,19)" fg:x="899690" fg:w="1443"/><text x="94.3614%" y="767.50"></text></g><g><title>[[falcon_kal]] (404 samples, 0.04%)</title><rect x="94.2804%" y="741" width="0.0423%" height="15" fill="rgb(243,44,37)" fg:x="901306" fg:w="404"/><text x="94.5304%" y="751.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (161 samples, 0.02%)</title><rect x="94.3239%" y="741" width="0.0168%" height="15" fill="rgb(228,213,43)" fg:x="901721" fg:w="161"/><text x="94.5739%" y="751.50"></text></g><g><title>[[falcon_kal]] (353 samples, 0.04%)</title><rect x="94.3690%" y="725" width="0.0369%" height="15" fill="rgb(219,163,21)" fg:x="902153" fg:w="353"/><text x="94.6190%" y="735.50"></text></g><g><title>[[falcon_kal]] (320 samples, 0.03%)</title><rect x="94.4324%" y="709" width="0.0335%" height="15" fill="rgb(234,86,24)" fg:x="902759" fg:w="320"/><text x="94.6824%" y="719.50"></text></g><g><title>pinnedhook_security_file_permission (1,948 samples, 0.20%)</title><rect x="94.2624%" y="757" width="0.2038%" height="15" fill="rgb(225,10,24)" fg:x="901133" fg:w="1948"/><text x="94.5124%" y="767.50"></text></g><g><title>cshook_security_file_permission (1,199 samples, 0.13%)</title><rect x="94.3407%" y="741" width="0.1254%" height="15" fill="rgb(218,109,7)" fg:x="901882" fg:w="1199"/><text x="94.5907%" y="751.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (554 samples, 0.06%)</title><rect x="94.4082%" y="725" width="0.0580%" height="15" fill="rgb(210,20,26)" fg:x="902527" fg:w="554"/><text x="94.6582%" y="735.50"></text></g><g><title>rw_verify_area (6,802 samples, 0.71%)</title><rect x="93.7838%" y="789" width="0.7115%" height="15" fill="rgb(216,18,1)" fg:x="896558" fg:w="6802"/><text x="94.0338%" y="799.50"></text></g><g><title>security_file_permission (6,366 samples, 0.67%)</title><rect x="93.8294%" y="773" width="0.6659%" height="15" fill="rgb(206,163,23)" fg:x="896994" fg:w="6366"/><text x="94.0794%" y="783.50"></text></g><g><title>release_rundown (279 samples, 0.03%)</title><rect x="94.4661%" y="757" width="0.0292%" height="15" fill="rgb(229,150,31)" fg:x="903081" fg:w="279"/><text x="94.7161%" y="767.50"></text></g><g><title>security_file_permission (168 samples, 0.02%)</title><rect x="94.4953%" y="789" width="0.0176%" height="15" fill="rgb(231,10,5)" fg:x="903360" fg:w="168"/><text x="94.7453%" y="799.50"></text></g><g><title>ksys_read (38,900 samples, 4.07%)</title><rect x="90.4442%" y="821" width="4.0691%" height="15" fill="rgb(250,40,50)" fg:x="864632" fg:w="38900"/><text x="90.6942%" y="831.50">ksys..</text></g><g><title>vfs_read (33,224 samples, 3.48%)</title><rect x="91.0379%" y="805" width="3.4754%" height="15" fill="rgb(217,119,7)" fg:x="870308" fg:w="33224"/><text x="91.2879%" y="815.50">vfs..</text></g><g><title>__x64_sys_read (39,193 samples, 4.10%)</title><rect x="90.4218%" y="837" width="4.0998%" height="15" fill="rgb(245,214,40)" fg:x="864418" fg:w="39193"/><text x="90.6718%" y="847.50">__x6..</text></g><g><title>btrfs_log_new_name (145 samples, 0.02%)</title><rect x="94.5310%" y="757" width="0.0152%" height="15" fill="rgb(216,187,1)" fg:x="903701" fg:w="145"/><text x="94.7810%" y="767.50"></text></g><g><title>btrfs_log_inode_parent (145 samples, 0.02%)</title><rect x="94.5310%" y="741" width="0.0152%" height="15" fill="rgb(237,146,21)" fg:x="903701" fg:w="145"/><text x="94.7810%" y="751.50"></text></g><g><title>log_all_new_ancestors (132 samples, 0.01%)</title><rect x="94.5323%" y="725" width="0.0138%" height="15" fill="rgb(210,174,47)" fg:x="903714" fg:w="132"/><text x="94.7823%" y="735.50"></text></g><g><title>btrfs_log_inode (131 samples, 0.01%)</title><rect x="94.5324%" y="709" width="0.0137%" height="15" fill="rgb(218,111,39)" fg:x="903715" fg:w="131"/><text x="94.7824%" y="719.50"></text></g><g><title>btrfs_rename2 (231 samples, 0.02%)</title><rect x="94.5221%" y="789" width="0.0242%" height="15" fill="rgb(224,95,19)" fg:x="903616" fg:w="231"/><text x="94.7721%" y="799.50"></text></g><g><title>btrfs_rename (231 samples, 0.02%)</title><rect x="94.5221%" y="773" width="0.0242%" height="15" fill="rgb(234,15,38)" fg:x="903616" fg:w="231"/><text x="94.7721%" y="783.50"></text></g><g><title>do_renameat2 (237 samples, 0.02%)</title><rect x="94.5216%" y="821" width="0.0248%" height="15" fill="rgb(246,56,12)" fg:x="903611" fg:w="237"/><text x="94.7716%" y="831.50"></text></g><g><title>vfs_rename (232 samples, 0.02%)</title><rect x="94.5221%" y="805" width="0.0243%" height="15" fill="rgb(247,16,17)" fg:x="903616" fg:w="232"/><text x="94.7721%" y="815.50"></text></g><g><title>__x64_sys_rename (238 samples, 0.02%)</title><rect x="94.5216%" y="837" width="0.0249%" height="15" fill="rgb(215,151,11)" fg:x="903611" fg:w="238"/><text x="94.7716%" y="847.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (106 samples, 0.01%)</title><rect x="94.5607%" y="837" width="0.0111%" height="15" fill="rgb(225,16,24)" fg:x="903985" fg:w="106"/><text x="94.8107%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (246 samples, 0.03%)</title><rect x="94.5718%" y="837" width="0.0257%" height="15" fill="rgb(217,117,5)" fg:x="904091" fg:w="246"/><text x="94.8218%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (361 samples, 0.04%)</title><rect x="94.6183%" y="821" width="0.0378%" height="15" fill="rgb(246,187,53)" fg:x="904536" fg:w="361"/><text x="94.8683%" y="831.50"></text></g><g><title>cshook_systemcalltable_post_close (594 samples, 0.06%)</title><rect x="94.5994%" y="837" width="0.0621%" height="15" fill="rgb(241,71,40)" fg:x="904355" fg:w="594"/><text x="94.8494%" y="847.50"></text></g><g><title>__fget_files (237 samples, 0.02%)</title><rect x="94.7811%" y="757" width="0.0248%" height="15" fill="rgb(231,67,39)" fg:x="906092" fg:w="237"/><text x="95.0311%" y="767.50"></text></g><g><title>fget (244 samples, 0.03%)</title><rect x="94.7810%" y="773" width="0.0255%" height="15" fill="rgb(222,120,24)" fg:x="906091" fg:w="244"/><text x="95.0310%" y="783.50"></text></g><g><title>[[falcon_kal]] (389 samples, 0.04%)</title><rect x="94.7791%" y="789" width="0.0407%" height="15" fill="rgb(248,3,3)" fg:x="906073" fg:w="389"/><text x="95.0291%" y="799.50"></text></g><g><title>fput_many (121 samples, 0.01%)</title><rect x="94.8071%" y="773" width="0.0127%" height="15" fill="rgb(228,218,5)" fg:x="906341" fg:w="121"/><text x="95.0571%" y="783.50"></text></g><g><title>[[falcon_kal]] (421 samples, 0.04%)</title><rect x="94.8443%" y="757" width="0.0440%" height="15" fill="rgb(212,202,43)" fg:x="906696" fg:w="421"/><text x="95.0943%" y="767.50"></text></g><g><title>down_read (406 samples, 0.04%)</title><rect x="94.8458%" y="741" width="0.0425%" height="15" fill="rgb(235,183,2)" fg:x="906711" fg:w="406"/><text x="95.0958%" y="751.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (115 samples, 0.01%)</title><rect x="94.8887%" y="757" width="0.0120%" height="15" fill="rgb(230,165,10)" fg:x="907121" fg:w="115"/><text x="95.1387%" y="767.50"></text></g><g><title>up_read (106 samples, 0.01%)</title><rect x="94.8897%" y="741" width="0.0111%" height="15" fill="rgb(219,54,40)" fg:x="907130" fg:w="106"/><text x="95.1397%" y="751.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (759 samples, 0.08%)</title><rect x="94.8221%" y="789" width="0.0794%" height="15" fill="rgb(244,73,9)" fg:x="906484" fg:w="759"/><text x="95.0721%" y="799.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (557 samples, 0.06%)</title><rect x="94.8432%" y="773" width="0.0583%" height="15" fill="rgb(212,32,45)" fg:x="906686" fg:w="557"/><text x="95.0932%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (207 samples, 0.02%)</title><rect x="94.9236%" y="757" width="0.0217%" height="15" fill="rgb(205,58,31)" fg:x="907454" fg:w="207"/><text x="95.1736%" y="767.50"></text></g><g><title>[[falcon_kal]] (2,135 samples, 0.22%)</title><rect x="94.9934%" y="741" width="0.2233%" height="15" fill="rgb(250,120,43)" fg:x="908122" fg:w="2135"/><text x="95.2434%" y="751.50"></text></g><g><title>down_read (2,088 samples, 0.22%)</title><rect x="94.9983%" y="725" width="0.2184%" height="15" fill="rgb(235,13,10)" fg:x="908169" fg:w="2088"/><text x="95.2483%" y="735.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (3,279 samples, 0.34%)</title><rect x="94.9016%" y="773" width="0.3430%" height="15" fill="rgb(232,219,31)" fg:x="907244" fg:w="3279"/><text x="95.1516%" y="783.50"></text></g><g><title>cshook_security_inode_free_security (2,862 samples, 0.30%)</title><rect x="94.9452%" y="757" width="0.2994%" height="15" fill="rgb(218,157,51)" fg:x="907661" fg:w="2862"/><text x="95.1952%" y="767.50"></text></g><g><title>up_read (221 samples, 0.02%)</title><rect x="95.2215%" y="741" width="0.0231%" height="15" fill="rgb(211,91,52)" fg:x="910302" fg:w="221"/><text x="95.4715%" y="751.50"></text></g><g><title>cshook_security_file_free_security (3,511 samples, 0.37%)</title><rect x="94.9015%" y="789" width="0.3673%" height="15" fill="rgb(240,173,1)" fg:x="907243" fg:w="3511"/><text x="95.1515%" y="799.50"></text></g><g><title>cshook_security_inode_free_security (231 samples, 0.02%)</title><rect x="95.2446%" y="773" width="0.0242%" height="15" fill="rgb(248,20,47)" fg:x="910523" fg:w="231"/><text x="95.4946%" y="783.50"></text></g><g><title>cshook_security_file_free_security (5,169 samples, 0.54%)</title><rect x="94.7327%" y="821" width="0.5407%" height="15" fill="rgb(217,221,40)" fg:x="905629" fg:w="5169"/><text x="94.9827%" y="831.50"></text></g><g><title>cshook_security_file_free_security (4,873 samples, 0.51%)</title><rect x="94.7636%" y="805" width="0.5097%" height="15" fill="rgb(226,149,51)" fg:x="905925" fg:w="4873"/><text x="95.0136%" y="815.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (194 samples, 0.02%)</title><rect x="95.2734%" y="821" width="0.0203%" height="15" fill="rgb(252,193,7)" fg:x="910798" fg:w="194"/><text x="95.5234%" y="831.50"></text></g><g><title>__fget_files (199 samples, 0.02%)</title><rect x="95.4049%" y="773" width="0.0208%" height="15" fill="rgb(205,123,0)" fg:x="912056" fg:w="199"/><text x="95.6549%" y="783.50"></text></g><g><title>fget (201 samples, 0.02%)</title><rect x="95.4049%" y="789" width="0.0210%" height="15" fill="rgb(233,173,25)" fg:x="912056" fg:w="201"/><text x="95.6549%" y="799.50"></text></g><g><title>[[falcon_kal]] (1,050 samples, 0.11%)</title><rect x="95.3268%" y="805" width="0.1098%" height="15" fill="rgb(216,63,32)" fg:x="911309" fg:w="1050"/><text x="95.5768%" y="815.50"></text></g><g><title>fput_many (96 samples, 0.01%)</title><rect x="95.4266%" y="789" width="0.0100%" height="15" fill="rgb(209,56,45)" fg:x="912263" fg:w="96"/><text x="95.6766%" y="799.50"></text></g><g><title>_raw_spin_lock_irqsave (467 samples, 0.05%)</title><rect x="95.6704%" y="725" width="0.0489%" height="15" fill="rgb(226,111,49)" fg:x="914594" fg:w="467"/><text x="95.9204%" y="735.50"></text></g><g><title>complete (539 samples, 0.06%)</title><rect x="95.6648%" y="741" width="0.0564%" height="15" fill="rgb(244,181,21)" fg:x="914540" fg:w="539"/><text x="95.9148%" y="751.50"></text></g><g><title>[[falcon_kal]] (572 samples, 0.06%)</title><rect x="95.6623%" y="757" width="0.0598%" height="15" fill="rgb(222,126,15)" fg:x="914516" fg:w="572"/><text x="95.9123%" y="767.50"></text></g><g><title>[[falcon_kal]] (449 samples, 0.05%)</title><rect x="95.7248%" y="741" width="0.0470%" height="15" fill="rgb(222,95,17)" fg:x="915114" fg:w="449"/><text x="95.9748%" y="751.50"></text></g><g><title>mutex_lock (421 samples, 0.04%)</title><rect x="95.7278%" y="725" width="0.0440%" height="15" fill="rgb(254,46,5)" fg:x="915142" fg:w="421"/><text x="95.9778%" y="735.50"></text></g><g><title>_ZdlPv (2,435 samples, 0.25%)</title><rect x="95.5293%" y="789" width="0.2547%" height="15" fill="rgb(236,216,35)" fg:x="913245" fg:w="2435"/><text x="95.7793%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (1,618 samples, 0.17%)</title><rect x="95.6148%" y="773" width="0.1692%" height="15" fill="rgb(217,187,26)" fg:x="914062" fg:w="1618"/><text x="95.8648%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (577 samples, 0.06%)</title><rect x="95.7237%" y="757" width="0.0604%" height="15" fill="rgb(207,192,25)" fg:x="915103" fg:w="577"/><text x="95.9737%" y="767.50"></text></g><g><title>mutex_unlock (110 samples, 0.01%)</title><rect x="95.7725%" y="741" width="0.0115%" height="15" fill="rgb(253,135,27)" fg:x="915570" fg:w="110"/><text x="96.0225%" y="751.50"></text></g><g><title>_raw_spin_lock_bh (246 samples, 0.03%)</title><rect x="95.7840%" y="789" width="0.0257%" height="15" fill="rgb(211,122,29)" fg:x="915680" fg:w="246"/><text x="96.0340%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (400 samples, 0.04%)</title><rect x="95.8103%" y="789" width="0.0418%" height="15" fill="rgb(233,162,40)" fg:x="915931" fg:w="400"/><text x="96.0603%" y="799.50"></text></g><g><title>_ZdlPv (4,023 samples, 0.42%)</title><rect x="95.4366%" y="805" width="0.4208%" height="15" fill="rgb(222,184,47)" fg:x="912359" fg:w="4023"/><text x="95.6866%" y="815.50"></text></g><g><title>kmalloc_slab (116 samples, 0.01%)</title><rect x="96.0401%" y="757" width="0.0121%" height="15" fill="rgb(249,99,23)" fg:x="918128" fg:w="116"/><text x="96.2901%" y="767.50"></text></g><g><title>__kmalloc (738 samples, 0.08%)</title><rect x="95.9809%" y="773" width="0.0772%" height="15" fill="rgb(214,60,12)" fg:x="917562" fg:w="738"/><text x="96.2309%" y="783.50"></text></g><g><title>copy_from_kernel_nofault (121 samples, 0.01%)</title><rect x="96.2451%" y="725" width="0.0127%" height="15" fill="rgb(250,229,36)" fg:x="920088" fg:w="121"/><text x="96.4951%" y="735.50"></text></g><g><title>copy_from_kernel_nofault (2,216 samples, 0.23%)</title><rect x="96.2756%" y="709" width="0.2318%" height="15" fill="rgb(232,195,10)" fg:x="920379" fg:w="2216"/><text x="96.5256%" y="719.50"></text></g><g><title>copy_from_kernel_nofault_allowed (577 samples, 0.06%)</title><rect x="96.4470%" y="693" width="0.0604%" height="15" fill="rgb(205,213,31)" fg:x="922018" fg:w="577"/><text x="96.6970%" y="703.50"></text></g><g><title>prepend (3,052 samples, 0.32%)</title><rect x="96.2103%" y="741" width="0.3193%" height="15" fill="rgb(237,43,8)" fg:x="919755" fg:w="3052"/><text x="96.4603%" y="751.50"></text></g><g><title>prepend_copy (2,598 samples, 0.27%)</title><rect x="96.2578%" y="725" width="0.2718%" height="15" fill="rgb(216,208,3)" fg:x="920209" fg:w="2598"/><text x="96.5078%" y="735.50"></text></g><g><title>copy_from_kernel_nofault_allowed (212 samples, 0.02%)</title><rect x="96.5074%" y="709" width="0.0222%" height="15" fill="rgb(228,179,44)" fg:x="922595" fg:w="212"/><text x="96.7574%" y="719.50"></text></g><g><title>prepend_copy (132 samples, 0.01%)</title><rect x="96.5295%" y="741" width="0.0138%" height="15" fill="rgb(230,192,27)" fg:x="922807" fg:w="132"/><text x="96.7795%" y="751.50"></text></g><g><title>prepend_path (4,487 samples, 0.47%)</title><rect x="96.0741%" y="757" width="0.4694%" height="15" fill="rgb(251,30,38)" fg:x="918453" fg:w="4487"/><text x="96.3241%" y="767.50"></text></g><g><title>d_path (4,684 samples, 0.49%)</title><rect x="96.0581%" y="773" width="0.4900%" height="15" fill="rgb(246,55,52)" fg:x="918300" fg:w="4684"/><text x="96.3081%" y="783.50"></text></g><g><title>memset_erms (162 samples, 0.02%)</title><rect x="96.5532%" y="773" width="0.0169%" height="15" fill="rgb(249,79,26)" fg:x="923033" fg:w="162"/><text x="96.8032%" y="783.50"></text></g><g><title>[[falcon_kal]] (5,840 samples, 0.61%)</title><rect x="95.9694%" y="789" width="0.6109%" height="15" fill="rgb(220,202,16)" fg:x="917452" fg:w="5840"/><text x="96.2194%" y="799.50"></text></g><g><title>get_any_partial (123 samples, 0.01%)</title><rect x="96.7972%" y="725" width="0.0129%" height="15" fill="rgb(250,170,23)" fg:x="925366" fg:w="123"/><text x="97.0472%" y="735.50"></text></g><g><title>get_partial_node.part.0 (142 samples, 0.01%)</title><rect x="96.8101%" y="725" width="0.0149%" height="15" fill="rgb(230,7,37)" fg:x="925489" fg:w="142"/><text x="97.0601%" y="735.50"></text></g><g><title>clear_page_erms (2,560 samples, 0.27%)</title><rect x="96.8837%" y="645" width="0.2678%" height="15" fill="rgb(213,71,1)" fg:x="926193" fg:w="2560"/><text x="97.1337%" y="655.50"></text></g><g><title>rmqueue_bulk (105 samples, 0.01%)</title><rect x="97.1715%" y="629" width="0.0110%" height="15" fill="rgb(227,87,39)" fg:x="928944" fg:w="105"/><text x="97.4215%" y="639.50"></text></g><g><title>rmqueue (218 samples, 0.02%)</title><rect x="97.1599%" y="645" width="0.0228%" height="15" fill="rgb(210,41,29)" fg:x="928833" fg:w="218"/><text x="97.4099%" y="655.50"></text></g><g><title>get_page_from_freelist (3,006 samples, 0.31%)</title><rect x="96.8686%" y="661" width="0.3144%" height="15" fill="rgb(206,191,31)" fg:x="926048" fg:w="3006"/><text x="97.1186%" y="671.50"></text></g><g><title>__alloc_pages (3,136 samples, 0.33%)</title><rect x="96.8572%" y="677" width="0.3280%" height="15" fill="rgb(247,75,54)" fg:x="925939" fg:w="3136"/><text x="97.1072%" y="687.50"></text></g><g><title>alloc_pages (3,240 samples, 0.34%)</title><rect x="96.8516%" y="693" width="0.3389%" height="15" fill="rgb(208,54,50)" fg:x="925886" fg:w="3240"/><text x="97.1016%" y="703.50"></text></g><g><title>get_random_u32 (105 samples, 0.01%)</title><rect x="97.1906%" y="693" width="0.0110%" height="15" fill="rgb(214,90,37)" fg:x="929127" fg:w="105"/><text x="97.4406%" y="703.50"></text></g><g><title>allocate_slab (3,651 samples, 0.38%)</title><rect x="96.8277%" y="709" width="0.3819%" height="15" fill="rgb(220,132,6)" fg:x="925657" fg:w="3651"/><text x="97.0777%" y="719.50"></text></g><g><title>___slab_alloc (4,471 samples, 0.47%)</title><rect x="96.7451%" y="741" width="0.4677%" height="15" fill="rgb(213,167,7)" fg:x="924868" fg:w="4471"/><text x="96.9951%" y="751.50"></text></g><g><title>new_slab (3,701 samples, 0.39%)</title><rect x="96.8257%" y="725" width="0.3871%" height="15" fill="rgb(243,36,27)" fg:x="925638" fg:w="3701"/><text x="97.0757%" y="735.50"></text></g><g><title>__kmalloc (5,336 samples, 0.56%)</title><rect x="96.6768%" y="757" width="0.5582%" height="15" fill="rgb(235,147,12)" fg:x="924215" fg:w="5336"/><text x="96.9268%" y="767.50"></text></g><g><title>memset_erms (2,793 samples, 0.29%)</title><rect x="97.2381%" y="757" width="0.2922%" height="15" fill="rgb(212,198,44)" fg:x="929581" fg:w="2793"/><text x="97.4881%" y="767.50"></text></g><g><title>[[falcon_kal]] (8,235 samples, 0.86%)</title><rect x="96.6712%" y="773" width="0.8614%" height="15" fill="rgb(218,68,50)" fg:x="924161" fg:w="8235"/><text x="96.9212%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (9,036 samples, 0.95%)</title><rect x="96.5889%" y="789" width="0.9452%" height="15" fill="rgb(224,79,48)" fg:x="923374" fg:w="9036"/><text x="96.8389%" y="799.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (15,965 samples, 1.67%)</title><rect x="95.8649%" y="805" width="1.6700%" height="15" fill="rgb(213,191,50)" fg:x="916453" fg:w="15965"/><text x="96.1149%" y="815.50"></text></g><g><title>memmove (399 samples, 0.04%)</title><rect x="97.5397%" y="805" width="0.0417%" height="15" fill="rgb(254,146,10)" fg:x="932464" fg:w="399"/><text x="97.7897%" y="815.50"></text></g><g><title>cshook_systemcalltable_post_openat (30,351 samples, 3.17%)</title><rect x="94.6745%" y="837" width="3.1748%" height="15" fill="rgb(215,175,11)" fg:x="905073" fg:w="30351"/><text x="94.9245%" y="847.50">csh..</text></g><g><title>fshook_syscalltable_pre_lchown (24,432 samples, 2.56%)</title><rect x="95.2936%" y="821" width="2.5557%" height="15" fill="rgb(207,49,7)" fg:x="910992" fg:w="24432"/><text x="95.5436%" y="831.50">fs..</text></g><g><title>strlen (2,561 samples, 0.27%)</title><rect x="97.5814%" y="805" width="0.2679%" height="15" fill="rgb(234,144,29)" fg:x="932863" fg:w="2561"/><text x="97.8314%" y="815.50"></text></g><g><title>cshook_systemcalltable_post_read (767 samples, 0.08%)</title><rect x="97.8493%" y="837" width="0.0802%" height="15" fill="rgb(213,222,48)" fg:x="935424" fg:w="767"/><text x="98.0993%" y="847.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (414 samples, 0.04%)</title><rect x="97.8863%" y="821" width="0.0433%" height="15" fill="rgb(222,8,6)" fg:x="935777" fg:w="414"/><text x="98.1363%" y="831.50"></text></g><g><title>__fget_files (181 samples, 0.02%)</title><rect x="98.0427%" y="757" width="0.0189%" height="15" fill="rgb(221,114,49)" fg:x="937273" fg:w="181"/><text x="98.2927%" y="767.50"></text></g><g><title>fget (184 samples, 0.02%)</title><rect x="98.0427%" y="773" width="0.0192%" height="15" fill="rgb(250,140,42)" fg:x="937273" fg:w="184"/><text x="98.2927%" y="783.50"></text></g><g><title>[[falcon_kal]] (454 samples, 0.05%)</title><rect x="98.0272%" y="789" width="0.0475%" height="15" fill="rgb(250,150,27)" fg:x="937124" fg:w="454"/><text x="98.2772%" y="799.50"></text></g><g><title>fput_many (112 samples, 0.01%)</title><rect x="98.0629%" y="773" width="0.0117%" height="15" fill="rgb(252,159,3)" fg:x="937466" fg:w="112"/><text x="98.3129%" y="783.50"></text></g><g><title>_ZdlPv (175 samples, 0.02%)</title><rect x="98.0747%" y="789" width="0.0183%" height="15" fill="rgb(241,182,3)" fg:x="937578" fg:w="175"/><text x="98.3247%" y="799.50"></text></g><g><title>__fget_files (190 samples, 0.02%)</title><rect x="98.1420%" y="741" width="0.0199%" height="15" fill="rgb(236,3,9)" fg:x="938222" fg:w="190"/><text x="98.3920%" y="751.50"></text></g><g><title>fget (194 samples, 0.02%)</title><rect x="98.1419%" y="757" width="0.0203%" height="15" fill="rgb(223,227,51)" fg:x="938221" fg:w="194"/><text x="98.3919%" y="767.50"></text></g><g><title>[[falcon_kal]] (319 samples, 0.03%)</title><rect x="98.1412%" y="773" width="0.0334%" height="15" fill="rgb(232,133,30)" fg:x="938214" fg:w="319"/><text x="98.3912%" y="783.50"></text></g><g><title>fput_many (116 samples, 0.01%)</title><rect x="98.1624%" y="757" width="0.0121%" height="15" fill="rgb(209,93,27)" fg:x="938417" fg:w="116"/><text x="98.4124%" y="767.50"></text></g><g><title>[[falcon_kal]] (353 samples, 0.04%)</title><rect x="98.1939%" y="741" width="0.0369%" height="15" fill="rgb(208,108,34)" fg:x="938718" fg:w="353"/><text x="98.4439%" y="751.50"></text></g><g><title>down_read (333 samples, 0.03%)</title><rect x="98.1960%" y="725" width="0.0348%" height="15" fill="rgb(215,189,13)" fg:x="938738" fg:w="333"/><text x="98.4460%" y="735.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (130 samples, 0.01%)</title><rect x="98.2312%" y="741" width="0.0136%" height="15" fill="rgb(206,88,23)" fg:x="939075" fg:w="130"/><text x="98.4812%" y="751.50"></text></g><g><title>up_read (124 samples, 0.01%)</title><rect x="98.2319%" y="725" width="0.0130%" height="15" fill="rgb(240,173,0)" fg:x="939081" fg:w="124"/><text x="98.4819%" y="735.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (652 samples, 0.07%)</title><rect x="98.1775%" y="773" width="0.0682%" height="15" fill="rgb(223,106,52)" fg:x="938561" fg:w="652"/><text x="98.4275%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (510 samples, 0.05%)</title><rect x="98.1923%" y="757" width="0.0533%" height="15" fill="rgb(206,130,16)" fg:x="938703" fg:w="510"/><text x="98.4423%" y="767.50"></text></g><g><title>[[falcon_kal]] (443 samples, 0.05%)</title><rect x="98.3353%" y="725" width="0.0463%" height="15" fill="rgb(220,54,25)" fg:x="940070" fg:w="443"/><text x="98.5853%" y="735.50"></text></g><g><title>down_read (401 samples, 0.04%)</title><rect x="98.3397%" y="709" width="0.0419%" height="15" fill="rgb(210,4,38)" fg:x="940112" fg:w="401"/><text x="98.5897%" y="719.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (1,526 samples, 0.16%)</title><rect x="98.2462%" y="757" width="0.1596%" height="15" fill="rgb(238,94,39)" fg:x="939218" fg:w="1526"/><text x="98.4962%" y="767.50"></text></g><g><title>cshook_security_inode_free_security (1,215 samples, 0.13%)</title><rect x="98.2787%" y="741" width="0.1271%" height="15" fill="rgb(234,124,34)" fg:x="939529" fg:w="1215"/><text x="98.5287%" y="751.50"></text></g><g><title>up_read (193 samples, 0.02%)</title><rect x="98.3856%" y="725" width="0.0202%" height="15" fill="rgb(221,91,40)" fg:x="940551" fg:w="193"/><text x="98.6356%" y="735.50"></text></g><g><title>cshook_security_file_free_security (1,659 samples, 0.17%)</title><rect x="98.2457%" y="773" width="0.1735%" height="15" fill="rgb(246,53,28)" fg:x="939213" fg:w="1659"/><text x="98.4957%" y="783.50"></text></g><g><title>cshook_security_inode_free_security (128 samples, 0.01%)</title><rect x="98.4058%" y="757" width="0.0134%" height="15" fill="rgb(229,109,7)" fg:x="940744" fg:w="128"/><text x="98.6558%" y="767.50"></text></g><g><title>cshook_security_file_free_security (3,064 samples, 0.32%)</title><rect x="98.1026%" y="789" width="0.3205%" height="15" fill="rgb(249,117,8)" fg:x="937845" fg:w="3064"/><text x="98.3526%" y="799.50"></text></g><g><title>cshook_security_file_free_security (4,097 samples, 0.43%)</title><rect x="97.9975%" y="805" width="0.4286%" height="15" fill="rgb(210,181,1)" fg:x="936840" fg:w="4097"/><text x="98.2475%" y="815.50"></text></g><g><title>__fget_files (177 samples, 0.02%)</title><rect x="98.5272%" y="757" width="0.0185%" height="15" fill="rgb(211,66,1)" fg:x="941904" fg:w="177"/><text x="98.7772%" y="767.50"></text></g><g><title>fget (178 samples, 0.02%)</title><rect x="98.5272%" y="773" width="0.0186%" height="15" fill="rgb(221,90,14)" fg:x="941904" fg:w="178"/><text x="98.7772%" y="783.50"></text></g><g><title>[[falcon_kal]] (958 samples, 0.10%)</title><rect x="98.4564%" y="789" width="0.1002%" height="15" fill="rgb(219,222,44)" fg:x="941227" fg:w="958"/><text x="98.7064%" y="799.50"></text></g><g><title>fput_many (99 samples, 0.01%)</title><rect x="98.5462%" y="773" width="0.0104%" height="15" fill="rgb(246,34,33)" fg:x="942086" fg:w="99"/><text x="98.7962%" y="783.50"></text></g><g><title>crypto_sha256_update (663 samples, 0.07%)</title><rect x="98.6612%" y="661" width="0.0694%" height="15" fill="rgb(227,135,41)" fg:x="943185" fg:w="663"/><text x="98.9112%" y="671.50"></text></g><g><title>sha256_update (661 samples, 0.07%)</title><rect x="98.6614%" y="645" width="0.0691%" height="15" fill="rgb(226,15,14)" fg:x="943187" fg:w="661"/><text x="98.9114%" y="655.50"></text></g><g><title>sha256_transform (657 samples, 0.07%)</title><rect x="98.6618%" y="629" width="0.0687%" height="15" fill="rgb(236,148,47)" fg:x="943191" fg:w="657"/><text x="98.9118%" y="639.50"></text></g><g><title>[[falcon_kal]] (818 samples, 0.09%)</title><rect x="98.6585%" y="693" width="0.0856%" height="15" fill="rgb(233,162,52)" fg:x="943159" fg:w="818"/><text x="98.9085%" y="703.50"></text></g><g><title>crypto_shash_update (792 samples, 0.08%)</title><rect x="98.6612%" y="677" width="0.0828%" height="15" fill="rgb(244,35,28)" fg:x="943185" fg:w="792"/><text x="98.9112%" y="687.50"></text></g><g><title>md5_update (128 samples, 0.01%)</title><rect x="98.7306%" y="661" width="0.0134%" height="15" fill="rgb(205,121,10)" fg:x="943849" fg:w="128"/><text x="98.9806%" y="671.50"></text></g><g><title>md5_transform (125 samples, 0.01%)</title><rect x="98.7309%" y="645" width="0.0131%" height="15" fill="rgb(250,58,18)" fg:x="943852" fg:w="125"/><text x="98.9809%" y="655.50"></text></g><g><title>cshook_security_inode_free_security (827 samples, 0.09%)</title><rect x="98.6578%" y="741" width="0.0865%" height="15" fill="rgb(216,37,13)" fg:x="943153" fg:w="827"/><text x="98.9078%" y="751.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (827 samples, 0.09%)</title><rect x="98.6578%" y="725" width="0.0865%" height="15" fill="rgb(221,215,42)" fg:x="943153" fg:w="827"/><text x="98.9078%" y="735.50"></text></g><g><title>[[falcon_kal]] (821 samples, 0.09%)</title><rect x="98.6585%" y="709" width="0.0859%" height="15" fill="rgb(217,214,19)" fg:x="943159" fg:w="821"/><text x="98.9085%" y="719.50"></text></g><g><title>_ZdlPv (936 samples, 0.10%)</title><rect x="98.6481%" y="757" width="0.0979%" height="15" fill="rgb(233,139,13)" fg:x="943060" fg:w="936"/><text x="98.8981%" y="767.50"></text></g><g><title>_ZdlPv (1,036 samples, 0.11%)</title><rect x="98.6381%" y="773" width="0.1084%" height="15" fill="rgb(247,168,23)" fg:x="942964" fg:w="1036"/><text x="98.8881%" y="783.50"></text></g><g><title>memcg_slab_free_hook (120 samples, 0.01%)</title><rect x="98.8225%" y="725" width="0.0126%" height="15" fill="rgb(207,202,1)" fg:x="944727" fg:w="120"/><text x="99.0725%" y="735.50"></text></g><g><title>kfree (623 samples, 0.07%)</title><rect x="98.7804%" y="741" width="0.0652%" height="15" fill="rgb(220,155,48)" fg:x="944325" fg:w="623"/><text x="99.0304%" y="751.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (101 samples, 0.01%)</title><rect x="98.8350%" y="725" width="0.0106%" height="15" fill="rgb(250,43,26)" fg:x="944847" fg:w="101"/><text x="99.0850%" y="735.50"></text></g><g><title>[[falcon_kal]] (691 samples, 0.07%)</title><rect x="98.7777%" y="757" width="0.0723%" height="15" fill="rgb(212,190,23)" fg:x="944299" fg:w="691"/><text x="99.0277%" y="767.50"></text></g><g><title>_ZdlPv (2,875 samples, 0.30%)</title><rect x="98.5566%" y="789" width="0.3007%" height="15" fill="rgb(216,39,24)" fg:x="942185" fg:w="2875"/><text x="98.8066%" y="799.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,053 samples, 0.11%)</title><rect x="98.7472%" y="773" width="0.1101%" height="15" fill="rgb(252,113,16)" fg:x="944007" fg:w="1053"/><text x="98.9972%" y="783.50"></text></g><g><title>__alloc_pages (98 samples, 0.01%)</title><rect x="99.0189%" y="677" width="0.0103%" height="15" fill="rgb(208,113,19)" fg:x="946605" fg:w="98"/><text x="99.2689%" y="687.50"></text></g><g><title>alloc_pages (106 samples, 0.01%)</title><rect x="99.0188%" y="693" width="0.0111%" height="15" fill="rgb(234,107,25)" fg:x="946604" fg:w="106"/><text x="99.2688%" y="703.50"></text></g><g><title>allocate_slab (165 samples, 0.02%)</title><rect x="99.0145%" y="709" width="0.0173%" height="15" fill="rgb(234,217,51)" fg:x="946563" fg:w="165"/><text x="99.2645%" y="719.50"></text></g><g><title>___slab_alloc (358 samples, 0.04%)</title><rect x="98.9954%" y="741" width="0.0374%" height="15" fill="rgb(251,29,42)" fg:x="946380" fg:w="358"/><text x="99.2454%" y="751.50"></text></g><g><title>new_slab (175 samples, 0.02%)</title><rect x="99.0145%" y="725" width="0.0183%" height="15" fill="rgb(221,62,51)" fg:x="946563" fg:w="175"/><text x="99.2645%" y="735.50"></text></g><g><title>kmalloc_slab (101 samples, 0.01%)</title><rect x="99.0358%" y="741" width="0.0106%" height="15" fill="rgb(240,192,43)" fg:x="946766" fg:w="101"/><text x="99.2858%" y="751.50"></text></g><g><title>__kmalloc (970 samples, 0.10%)</title><rect x="98.9497%" y="757" width="0.1015%" height="15" fill="rgb(224,157,47)" fg:x="945943" fg:w="970"/><text x="99.1997%" y="767.50"></text></g><g><title>memset_erms (157 samples, 0.02%)</title><rect x="99.0559%" y="757" width="0.0164%" height="15" fill="rgb(226,84,45)" fg:x="946959" fg:w="157"/><text x="99.3059%" y="767.50"></text></g><g><title>[[falcon_kal]] (1,223 samples, 0.13%)</title><rect x="98.9467%" y="773" width="0.1279%" height="15" fill="rgb(208,207,23)" fg:x="945915" fg:w="1223"/><text x="99.1967%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,129 samples, 0.22%)</title><rect x="98.8595%" y="789" width="0.2227%" height="15" fill="rgb(253,34,51)" fg:x="945081" fg:w="2129"/><text x="99.1095%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (11,025 samples, 1.15%)</title><rect x="97.9323%" y="821" width="1.1533%" height="15" fill="rgb(227,26,34)" fg:x="936217" fg:w="11025"/><text x="98.1823%" y="831.50"></text></g><g><title>fshook_syscalltable_pre_lchown (6,267 samples, 0.66%)</title><rect x="98.4300%" y="805" width="0.6556%" height="15" fill="rgb(245,75,19)" fg:x="940975" fg:w="6267"/><text x="98.6800%" y="815.50"></text></g><g><title>cshook_systemcalltable_pre_close (11,078 samples, 1.16%)</title><rect x="97.9311%" y="837" width="1.1588%" height="15" fill="rgb(250,191,31)" fg:x="936206" fg:w="11078"/><text x="98.1811%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (388 samples, 0.04%)</title><rect x="99.0960%" y="821" width="0.0406%" height="15" fill="rgb(224,11,50)" fg:x="947342" fg:w="388"/><text x="99.3460%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_openat (480 samples, 0.05%)</title><rect x="99.0932%" y="837" width="0.0502%" height="15" fill="rgb(231,171,7)" fg:x="947315" fg:w="480"/><text x="99.3432%" y="847.50"></text></g><g><title>cshook_systemcalltable_pre_read (535 samples, 0.06%)</title><rect x="99.1435%" y="837" width="0.0560%" height="15" fill="rgb(252,214,10)" fg:x="947796" fg:w="535"/><text x="99.3935%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (390 samples, 0.04%)</title><rect x="99.1587%" y="821" width="0.0408%" height="15" fill="rgb(249,45,46)" fg:x="947941" fg:w="390"/><text x="99.4087%" y="831.50"></text></g><g><title>do_syscall_64 (190,452 samples, 19.92%)</title><rect x="79.2994%" y="869" width="19.9221%" height="15" fill="rgb(240,173,7)" fg:x="758090" fg:w="190452"/><text x="79.5494%" y="879.50">do_syscall_64</text></g><g><title>unload_network_ops_symbols (165,271 samples, 17.29%)</title><rect x="81.9335%" y="853" width="17.2881%" height="15" fill="rgb(235,214,13)" fg:x="783271" fg:w="165271"/><text x="82.1835%" y="863.50">unload_network_ops_symbols</text></g><g><title>syscall_exit_to_user_mode (168 samples, 0.02%)</title><rect x="99.2308%" y="869" width="0.0176%" height="15" fill="rgb(245,156,8)" fg:x="948631" fg:w="168"/><text x="99.4808%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (191,963 samples, 20.08%)</title><rect x="79.1890%" y="885" width="20.0801%" height="15" fill="rgb(235,46,12)" fg:x="757034" fg:w="191963"/><text x="79.4390%" y="895.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>unload_network_ops_symbols (198 samples, 0.02%)</title><rect x="99.2484%" y="869" width="0.0207%" height="15" fill="rgb(221,81,14)" fg:x="948799" fg:w="198"/><text x="99.4984%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (1,859 samples, 0.19%)</title><rect x="99.2846%" y="837" width="0.1945%" height="15" fill="rgb(238,207,9)" fg:x="949145" fg:w="1859"/><text x="99.5346%" y="847.50"></text></g><g><title>x86_pmu_enable (1,842 samples, 0.19%)</title><rect x="99.2864%" y="821" width="0.1927%" height="15" fill="rgb(224,129,35)" fg:x="949162" fg:w="1842"/><text x="99.5364%" y="831.50"></text></g><g><title>intel_pmu_enable_all (1,832 samples, 0.19%)</title><rect x="99.2874%" y="805" width="0.1916%" height="15" fill="rgb(243,218,34)" fg:x="949172" fg:w="1832"/><text x="99.5374%" y="815.50"></text></g><g><title>native_write_msr (1,822 samples, 0.19%)</title><rect x="99.2885%" y="789" width="0.1906%" height="15" fill="rgb(220,166,13)" fg:x="949182" fg:w="1822"/><text x="99.5385%" y="799.50"></text></g><g><title>finish_task_switch.isra.0 (1,915 samples, 0.20%)</title><rect x="99.2819%" y="853" width="0.2003%" height="15" fill="rgb(227,167,49)" fg:x="949119" fg:w="1915"/><text x="99.5319%" y="863.50"></text></g><g><title>schedule_tail (1,956 samples, 0.20%)</title><rect x="99.2778%" y="869" width="0.2046%" height="15" fill="rgb(234,142,12)" fg:x="949080" fg:w="1956"/><text x="99.5278%" y="879.50"></text></g><g><title>ret_from_fork (1,995 samples, 0.21%)</title><rect x="99.2776%" y="885" width="0.2087%" height="15" fill="rgb(207,100,48)" fg:x="949078" fg:w="1995"/><text x="99.5276%" y="895.50"></text></g><g><title>sync_regs (383 samples, 0.04%)</title><rect x="99.4866%" y="885" width="0.0401%" height="15" fill="rgb(210,25,14)" fg:x="951076" fg:w="383"/><text x="99.7366%" y="895.50"></text></g><g><title>syscall_return_via_sysret (1,058 samples, 0.11%)</title><rect x="99.5267%" y="885" width="0.1107%" height="15" fill="rgb(246,116,27)" fg:x="951459" fg:w="1058"/><text x="99.7767%" y="895.50"></text></g><g><title>[zig] (264,899 samples, 27.71%)</title><rect x="71.9281%" y="901" width="27.7096%" height="15" fill="rgb(214,193,42)" fg:x="687621" fg:w="264899"/><text x="72.1781%" y="911.50">[zig]</text></g><g><title>asm_exc_page_fault (992 samples, 0.10%)</title><rect x="99.6398%" y="901" width="0.1038%" height="15" fill="rgb(214,122,8)" fg:x="952541" fg:w="992"/><text x="99.8898%" y="911.50"></text></g><g><title>mmput (314 samples, 0.03%)</title><rect x="99.7755%" y="725" width="0.0328%" height="15" fill="rgb(244,173,18)" fg:x="953838" fg:w="314"/><text x="100.0255%" y="735.50"></text></g><g><title>exit_mmap (313 samples, 0.03%)</title><rect x="99.7756%" y="709" width="0.0327%" height="15" fill="rgb(232,68,19)" fg:x="953839" fg:w="313"/><text x="100.0256%" y="719.50"></text></g><g><title>unmap_vmas (236 samples, 0.02%)</title><rect x="99.7837%" y="693" width="0.0247%" height="15" fill="rgb(236,224,1)" fg:x="953916" fg:w="236"/><text x="100.0337%" y="703.50"></text></g><g><title>unmap_single_vma (236 samples, 0.02%)</title><rect x="99.7837%" y="677" width="0.0247%" height="15" fill="rgb(240,11,8)" fg:x="953916" fg:w="236"/><text x="100.0337%" y="687.50"></text></g><g><title>unmap_page_range (234 samples, 0.02%)</title><rect x="99.7839%" y="661" width="0.0245%" height="15" fill="rgb(244,159,20)" fg:x="953918" fg:w="234"/><text x="100.0339%" y="671.50"></text></g><g><title>zap_pmd_range.isra.0 (234 samples, 0.02%)</title><rect x="99.7839%" y="645" width="0.0245%" height="15" fill="rgb(240,223,54)" fg:x="953918" fg:w="234"/><text x="100.0339%" y="655.50"></text></g><g><title>zap_pte_range (220 samples, 0.02%)</title><rect x="99.7854%" y="629" width="0.0230%" height="15" fill="rgb(237,146,5)" fg:x="953932" fg:w="220"/><text x="100.0354%" y="639.50"></text></g><g><title>exec_mmap (315 samples, 0.03%)</title><rect x="99.7755%" y="741" width="0.0330%" height="15" fill="rgb(218,221,32)" fg:x="953838" fg:w="315"/><text x="100.0255%" y="751.50"></text></g><g><title>begin_new_exec (320 samples, 0.03%)</title><rect x="99.7752%" y="757" width="0.0335%" height="15" fill="rgb(244,96,26)" fg:x="953835" fg:w="320"/><text x="100.0252%" y="767.50"></text></g><g><title>load_elf_binary (361 samples, 0.04%)</title><rect x="99.7747%" y="773" width="0.0378%" height="15" fill="rgb(245,184,37)" fg:x="953830" fg:w="361"/><text x="100.0247%" y="783.50"></text></g><g><title>__x64_sys_execve (362 samples, 0.04%)</title><rect x="99.7747%" y="869" width="0.0379%" height="15" fill="rgb(248,91,47)" fg:x="953830" fg:w="362"/><text x="100.0247%" y="879.50"></text></g><g><title>do_execveat_common.isra.0 (362 samples, 0.04%)</title><rect x="99.7747%" y="853" width="0.0379%" height="15" fill="rgb(243,199,8)" fg:x="953830" fg:w="362"/><text x="100.0247%" y="863.50"></text></g><g><title>bprm_execve (362 samples, 0.04%)</title><rect x="99.7747%" y="837" width="0.0379%" height="15" fill="rgb(249,12,15)" fg:x="953830" fg:w="362"/><text x="100.0247%" y="847.50"></text></g><g><title>bprm_execve.part.0 (362 samples, 0.04%)</title><rect x="99.7747%" y="821" width="0.0379%" height="15" fill="rgb(245,97,12)" fg:x="953830" fg:w="362"/><text x="100.0247%" y="831.50"></text></g><g><title>exec_binprm (362 samples, 0.04%)</title><rect x="99.7747%" y="805" width="0.0379%" height="15" fill="rgb(244,61,1)" fg:x="953830" fg:w="362"/><text x="100.0247%" y="815.50"></text></g><g><title>search_binary_handler (362 samples, 0.04%)</title><rect x="99.7747%" y="789" width="0.0379%" height="15" fill="rgb(222,194,10)" fg:x="953830" fg:w="362"/><text x="100.0247%" y="799.50"></text></g><g><title>tlb_finish_mmu (98 samples, 0.01%)</title><rect x="99.8227%" y="773" width="0.0103%" height="15" fill="rgb(226,178,8)" fg:x="954289" fg:w="98"/><text x="100.0727%" y="783.50"></text></g><g><title>page_remove_file_rmap (119 samples, 0.01%)</title><rect x="99.8736%" y="677" width="0.0124%" height="15" fill="rgb(241,32,34)" fg:x="954776" fg:w="119"/><text x="100.1236%" y="687.50"></text></g><g><title>page_remove_rmap (191 samples, 0.02%)</title><rect x="99.8679%" y="693" width="0.0200%" height="15" fill="rgb(254,26,6)" fg:x="954721" fg:w="191"/><text x="100.1179%" y="703.50"></text></g><g><title>unmap_vmas (600 samples, 0.06%)</title><rect x="99.8329%" y="773" width="0.0628%" height="15" fill="rgb(249,71,11)" fg:x="954387" fg:w="600"/><text x="100.0829%" y="783.50"></text></g><g><title>unmap_single_vma (598 samples, 0.06%)</title><rect x="99.8332%" y="757" width="0.0626%" height="15" fill="rgb(232,170,27)" fg:x="954389" fg:w="598"/><text x="100.0832%" y="767.50"></text></g><g><title>unmap_page_range (598 samples, 0.06%)</title><rect x="99.8332%" y="741" width="0.0626%" height="15" fill="rgb(214,223,17)" fg:x="954389" fg:w="598"/><text x="100.0832%" y="751.50"></text></g><g><title>zap_pmd_range.isra.0 (597 samples, 0.06%)</title><rect x="99.8333%" y="725" width="0.0624%" height="15" fill="rgb(250,18,15)" fg:x="954390" fg:w="597"/><text x="100.0833%" y="735.50"></text></g><g><title>zap_pte_range (575 samples, 0.06%)</title><rect x="99.8356%" y="709" width="0.0601%" height="15" fill="rgb(212,153,51)" fg:x="954412" fg:w="575"/><text x="100.0856%" y="719.50"></text></g><g><title>exit_mm (727 samples, 0.08%)</title><rect x="99.8198%" y="821" width="0.0760%" height="15" fill="rgb(219,194,12)" fg:x="954261" fg:w="727"/><text x="100.0698%" y="831.50"></text></g><g><title>mmput (714 samples, 0.07%)</title><rect x="99.8211%" y="805" width="0.0747%" height="15" fill="rgb(212,58,17)" fg:x="954274" fg:w="714"/><text x="100.0711%" y="815.50"></text></g><g><title>exit_mmap (714 samples, 0.07%)</title><rect x="99.8211%" y="789" width="0.0747%" height="15" fill="rgb(254,5,10)" fg:x="954274" fg:w="714"/><text x="100.0711%" y="799.50"></text></g><g><title>__x64_sys_exit_group (741 samples, 0.08%)</title><rect x="99.8190%" y="869" width="0.0775%" height="15" fill="rgb(246,91,7)" fg:x="954254" fg:w="741"/><text x="100.0690%" y="879.50"></text></g><g><title>do_group_exit (741 samples, 0.08%)</title><rect x="99.8190%" y="853" width="0.0775%" height="15" fill="rgb(218,108,49)" fg:x="954254" fg:w="741"/><text x="100.0690%" y="863.50"></text></g><g><title>do_exit (741 samples, 0.08%)</title><rect x="99.8190%" y="837" width="0.0775%" height="15" fill="rgb(238,123,20)" fg:x="954254" fg:w="741"/><text x="100.0690%" y="847.50"></text></g><g><title>mmput (272 samples, 0.03%)</title><rect x="99.9008%" y="741" width="0.0285%" height="15" fill="rgb(231,69,23)" fg:x="955036" fg:w="272"/><text x="100.1508%" y="751.50"></text></g><g><title>exit_mmap (271 samples, 0.03%)</title><rect x="99.9009%" y="725" width="0.0283%" height="15" fill="rgb(230,209,3)" fg:x="955037" fg:w="271"/><text x="100.1509%" y="735.50"></text></g><g><title>unmap_vmas (212 samples, 0.02%)</title><rect x="99.9071%" y="709" width="0.0222%" height="15" fill="rgb(231,19,0)" fg:x="955096" fg:w="212"/><text x="100.1571%" y="719.50"></text></g><g><title>unmap_single_vma (212 samples, 0.02%)</title><rect x="99.9071%" y="693" width="0.0222%" height="15" fill="rgb(226,192,25)" fg:x="955096" fg:w="212"/><text x="100.1571%" y="703.50"></text></g><g><title>unmap_page_range (212 samples, 0.02%)</title><rect x="99.9071%" y="677" width="0.0222%" height="15" fill="rgb(223,175,53)" fg:x="955096" fg:w="212"/><text x="100.1571%" y="687.50"></text></g><g><title>zap_pmd_range.isra.0 (211 samples, 0.02%)</title><rect x="99.9072%" y="661" width="0.0221%" height="15" fill="rgb(248,35,51)" fg:x="955097" fg:w="211"/><text x="100.1572%" y="671.50"></text></g><g><title>zap_pte_range (200 samples, 0.02%)</title><rect x="99.9084%" y="645" width="0.0209%" height="15" fill="rgb(230,37,26)" fg:x="955108" fg:w="200"/><text x="100.1584%" y="655.50"></text></g><g><title>exit_mm (305 samples, 0.03%)</title><rect x="99.8975%" y="757" width="0.0319%" height="15" fill="rgb(206,120,22)" fg:x="955004" fg:w="305"/><text x="100.1475%" y="767.50"></text></g><g><title>arch_do_signal_or_restart (321 samples, 0.03%)</title><rect x="99.8970%" y="821" width="0.0336%" height="15" fill="rgb(207,165,28)" fg:x="954999" fg:w="321"/><text x="100.1470%" y="831.50"></text></g><g><title>get_signal (321 samples, 0.03%)</title><rect x="99.8970%" y="805" width="0.0336%" height="15" fill="rgb(226,23,46)" fg:x="954999" fg:w="321"/><text x="100.1470%" y="815.50"></text></g><g><title>do_group_exit (321 samples, 0.03%)</title><rect x="99.8970%" y="789" width="0.0336%" height="15" fill="rgb(208,130,44)" fg:x="954999" fg:w="321"/><text x="100.1470%" y="799.50"></text></g><g><title>do_exit (321 samples, 0.03%)</title><rect x="99.8970%" y="773" width="0.0336%" height="15" fill="rgb(231,67,8)" fg:x="954999" fg:w="321"/><text x="100.1470%" y="783.50"></text></g><g><title>syscall_exit_to_user_mode (324 samples, 0.03%)</title><rect x="99.8970%" y="869" width="0.0339%" height="15" fill="rgb(205,183,22)" fg:x="954999" fg:w="324"/><text x="100.1470%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (324 samples, 0.03%)</title><rect x="99.8970%" y="853" width="0.0339%" height="15" fill="rgb(224,47,9)" fg:x="954999" fg:w="324"/><text x="100.1470%" y="863.50"></text></g><g><title>exit_to_user_mode_loop (324 samples, 0.03%)</title><rect x="99.8970%" y="837" width="0.0339%" height="15" fill="rgb(250,183,49)" fg:x="954999" fg:w="324"/><text x="100.1470%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,792 samples, 0.19%)</title><rect x="99.7457%" y="901" width="0.1875%" height="15" fill="rgb(220,151,39)" fg:x="953553" fg:w="1792"/><text x="99.9957%" y="911.50"></text></g><g><title>do_syscall_64 (1,515 samples, 0.16%)</title><rect x="99.7747%" y="885" width="0.1585%" height="15" fill="rgb(220,118,20)" fg:x="953830" fg:w="1515"/><text x="100.0247%" y="895.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (470 samples, 0.05%)</title><rect x="99.9332%" y="901" width="0.0492%" height="15" fill="rgb(231,65,51)" fg:x="955345" fg:w="470"/><text x="100.1832%" y="911.50"></text></g><g><title>all (955,984 samples, 100%)</title><rect x="0.0000%" y="933" width="100.0000%" height="15" fill="rgb(253,125,37)" fg:x="0" fg:w="955984"/><text x="0.2500%" y="943.50"></text></g><g><title>zig (268,711 samples, 28.11%)</title><rect x="71.8917%" y="917" width="28.1083%" height="15" fill="rgb(232,102,6)" fg:x="687273" fg:w="268711"/><text x="72.1417%" y="927.50">zig</text></g><g><title>syscall_return_via_sysret (163 samples, 0.02%)</title><rect x="99.9829%" y="901" width="0.0171%" height="15" fill="rgb(251,105,13)" fg:x="955821" fg:w="163"/><text x="100.2329%" y="911.50"></text></g></svg></svg>