aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/flame_graphs/flame_graph_output_simple.svg
diff options
context:
space:
mode:
Diffstat (limited to 'flame_graphs/flame_graph_output_simple.svg')
-rw-r--r--flame_graphs/flame_graph_output_simple.svg32557
1 files changed, 32557 insertions, 0 deletions
diff --git a/flame_graphs/flame_graph_output_simple.svg b/flame_graphs/flame_graph_output_simple.svg
new file mode 100644
index 0000000..fdc0cea
--- /dev/null
+++ b/flame_graphs/flame_graph_output_simple.svg
@@ -0,0 +1,32557 @@
+<?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="1400" height="1126" onload="init(evt)" viewBox="0 0 1400 1126" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<!-- 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="#eef2ee" offset="5%" />
+ <stop stop-color="#e0ffe0" offset="95%" />
+ </linearGradient>
+</defs>
+<style type="text/css">
+ text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
+ #search, #ignorecase { opacity:0.1; cursor:pointer; }
+ #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
+ #subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
+ #title { text-anchor:middle; font-size:17px}
+ #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[
+ "use strict";
+ var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
+ function init(evt) {
+ details = document.getElementById("details").firstChild;
+ searchbtn = document.getElementById("search");
+ ignorecaseBtn = document.getElementById("ignorecase");
+ unzoombtn = document.getElementById("unzoom");
+ matchedtxt = document.getElementById("matched");
+ svg = document.getElementsByTagName("svg")[0];
+ searching = 0;
+ currentSearchTerm = null;
+
+ // use GET parameters to restore a flamegraphs state.
+ 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);
+ }
+
+ // 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(true);
+ zoom(target);
+ if (!document.querySelector('.parent')) {
+ // we have basically done a clearzoom so clear the url
+ var params = get_params();
+ if (params.x) delete params.x;
+ if (params.y) delete params.y;
+ history.replaceState(null, null, parse_params(params));
+ unzoombtn.classList.add("hide");
+ return;
+ }
+
+ // set parameters for zoom state
+ var el = target.querySelector("rect");
+ if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
+ var params = get_params()
+ params.x = el.attributes._orig_x.value;
+ params.y = el.attributes.y.value;
+ history.replaceState(null, null, parse_params(params));
+ }
+ }
+ else if (e.target.id == "unzoom") clearzoom();
+ else if (e.target.id == "search") search_prompt();
+ else if (e.target.id == "ignorecase") toggle_ignorecase();
+ }, false)
+
+ // mouse-over for info
+ // show
+ window.addEventListener("mouseover", function(e) {
+ var target = find_group(e.target);
+ if (target) details.nodeValue = "Function: " + 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
+ // ctrl-I to toggle case-sensitive search
+ window.addEventListener("keydown",function (e) {
+ if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
+ e.preventDefault();
+ search_prompt();
+ }
+ else if (e.ctrlKey && e.keyCode === 73) {
+ e.preventDefault();
+ toggle_ignorecase();
+ }
+ }, 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];
+ }
+ 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["_orig_" + attr] != undefined) return;
+ if (e.attributes[attr] == undefined) return;
+ if (val == undefined) val = e.attributes[attr].value;
+ e.setAttribute("_orig_" + attr, val);
+ }
+ function orig_load(e, attr) {
+ if (e.attributes["_orig_"+attr] == undefined) return;
+ e.attributes[attr].value = e.attributes["_orig_" + attr].value;
+ e.removeAttribute("_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) -3;
+ var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
+ t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
+
+ // Smaller than this size won't fit anything
+ if (w < 2 * 12 * 0.59) {
+ t.textContent = "";
+ return;
+ }
+
+ t.textContent = txt;
+ var sl = t.getSubStringLength(0, txt.length);
+ // check if only whitespace or if we can fit the entire string into width w
+ if (/^ *$/.test(txt) || sl < w)
+ return;
+
+ // this isn't perfect, but gives a good starting point
+ // and avoids calling getSubStringLength too often
+ var start = Math.floor((w/sl) * txt.length);
+ for (var x = start; x > 0; x = x-2) {
+ if (t.getSubStringLength(0, x + 2) <= w) {
+ t.textContent = txt.substring(0, x) + "..";
+ return;
+ }
+ }
+ t.textContent = "";
+ }
+
+ // zoom
+ function zoom_reset(e) {
+ if (e.attributes != undefined) {
+ orig_load(e, "x");
+ orig_load(e, "width");
+ }
+ 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, ratio) {
+ if (e.attributes != undefined) {
+ if (e.attributes.x != undefined) {
+ orig_save(e, "x");
+ e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
+ if (e.tagName == "text")
+ e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
+ }
+ if (e.attributes.width != undefined) {
+ orig_save(e, "width");
+ e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
+ }
+ }
+
+ if (e.childNodes == undefined) return;
+ for (var i = 0, c = e.childNodes; i < c.length; i++) {
+ zoom_child(c[i], x - 10, ratio);
+ }
+ }
+ function zoom_parent(e) {
+ if (e.attributes) {
+ if (e.attributes.x != undefined) {
+ orig_save(e, "x");
+ e.attributes.x.value = 10;
+ }
+ if (e.attributes.width != undefined) {
+ orig_save(e, "width");
+ e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
+ }
+ }
+ 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 = parseFloat(attr.width.value);
+ var xmin = parseFloat(attr.x.value);
+ var xmax = parseFloat(xmin + width);
+ var ymin = parseFloat(attr.y.value);
+ var ratio = (svg.width.baseVal.value - 2 * 10) / width;
+
+ // XXX: Workaround for JavaScript float issues (fix me)
+ var fudge = 0.0001;
+
+ unzoombtn.classList.remove("hide");
+
+ var el = document.getElementById("frames").children;
+ for (var i = 0; i < el.length; i++) {
+ var e = el[i];
+ var a = find_child(e, "rect").attributes;
+ var ex = parseFloat(a.x.value);
+ var ew = parseFloat(a.width.value);
+ var upstack;
+ // Is it an ancestor
+ if (0 == 0) {
+ upstack = parseFloat(a.y.value) > ymin;
+ } else {
+ upstack = parseFloat(a.y.value) < ymin;
+ }
+ if (upstack) {
+ // Direct ancestor
+ if (ex <= xmin && (ex+ew+fudge) >= 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 + fudge >= xmax) {
+ e.classList.add("hide");
+ }
+ else {
+ zoom_child(e, xmin, ratio);
+ update_text(e);
+ }
+ }
+ }
+ search();
+ }
+ function unzoom(dont_update_text) {
+ unzoombtn.classList.add("hide");
+ var el = document.getElementById("frames").children;
+ for(var i = 0; i < el.length; i++) {
+ el[i].classList.remove("parent");
+ el[i].classList.remove("hide");
+ zoom_reset(el[i]);
+ if(!dont_update_text) update_text(el[i]);
+ }
+ search();
+ }
+ function clearzoom() {
+ 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));
+ }
+
+ // search
+ function toggle_ignorecase() {
+ ignorecase = !ignorecase;
+ if (ignorecase) {
+ ignorecaseBtn.classList.add("show");
+ } else {
+ ignorecaseBtn.classList.remove("show");
+ }
+ reset_search();
+ 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_)"
+ + (ignorecase ? ", ignoring case" : "")
+ + "\nPress Ctrl-i to toggle case sensitivity", "");
+ if (term != null) search(term);
+ } else {
+ reset_search();
+ searching = 0;
+ currentSearchTerm = null;
+ searchbtn.classList.remove("show");
+ searchbtn.firstChild.nodeValue = "Search"
+ matchedtxt.classList.add("hide");
+ matchedtxt.firstChild.nodeValue = ""
+ }
+ }
+ function search(term) {
+ if (term) currentSearchTerm = term;
+
+ var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
+ var el = document.getElementById("frames").children;
+ var matches = new Object();
+ var maxwidth = 0;
+ for (var i = 0; i < el.length; i++) {
+ var e = el[i];
+ 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 = parseFloat(rect.attributes.width.value);
+ if (w > maxwidth)
+ maxwidth = w;
+
+ if (func.match(re)) {
+ // highlight
+ var x = parseFloat(rect.attributes.x.value);
+ orig_save(rect, "fill");
+ rect.attributes.fill.value = "rgb(230,0,230)";
+
+ // 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 = currentSearchTerm;
+ 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.
+ var fudge = 0.0001; // JavaScript floating point
+ for (var k in keys) {
+ var x = parseFloat(keys[k]);
+ var w = matches[keys[k]];
+ if (x >= lastx + lastw - fudge) {
+ 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 + "%";
+ }
+]]>
+</script>
+<rect x="0.0" y="0" width="1400.0" height="1126.0" fill="url(#background)" />
+<text id="title" x="700.00" y="24" >Flame Graph</text>
+<text id="details" x="10.00" y="1109" > </text>
+<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
+<text id="search" x="1290.00" y="24" >Search</text>
+<text id="ignorecase" x="1374.00" y="24" >ic</text>
+<text id="matched" x="1290.00" y="1109" > </text>
+<g id="frames">
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.45%)</title><rect x="33.0" y="901" width="6.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="35.99" y="911.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="645" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1212.65" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (131,313,130 samples, 0.83%)</title><rect x="1025.8" y="693" width="11.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1028.77" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1184.9" y="709" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1187.90" y="719.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="309.7" y="341" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="312.69" y="351.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="235.4" y="597" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="238.43" y="607.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1032.8" y="357" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1035.84" y="367.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="203.6" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="206.61" y="607.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.06%)</title><rect x="539.5" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="542.55" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="833.0" y="725" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="836.05" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.90%)</title><rect x="802.1" y="725" width="12.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="805.11" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="533" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1209.12" y="543.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="597" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1279.84" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="797.7" y="677" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.69" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1159.3" y="629" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1162.26" y="639.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="430.8" y="453" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="433.81" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="338.9" y="629" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="341.87" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (30,303,030 samples, 0.19%)</title><rect x="1032.0" y="533" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1034.96" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.06%)</title><rect x="992.2" y="565" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="995.18" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="1163.7" y="613" width="0.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1166.68" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (70,707,070 samples, 0.45%)</title><rect x="597.9" y="597" width="6.2" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="600.89" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="212.4" y="565" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="215.45" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="994.8" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="997.83" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (20,202,020 samples, 0.13%)</title><rect x="1350.2" y="709" width="1.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1353.22" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="741" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1342.61" y="751.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="613" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1092.42" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="840.1" y="789" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="843.12" y="799.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1203.5" y="645" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1206.47" y="655.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="894.0" y="613" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="897.05" y="623.5" ></text>
+</g>
+<g >
+<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="806.5" y="389" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="809.53" y="399.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="826.0" y="581" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="828.98" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1177.8" y="597" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1180.83" y="607.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.13%)</title><rect x="11.8" y="437" width="1.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="14.77" y="447.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.06%)</title><rect x="750.8" y="677" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="753.83" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="232.8" y="549" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="235.78" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="647.4" y="725" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="650.40" y="735.5" ></text>
+</g>
+<g >
+<title>__percpu_counter_init (20,202,020 samples, 0.13%)</title><rect x="1327.2" y="725" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1330.23" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="546.6" y="693" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="549.62" y="703.5" ></text>
+</g>
+<g >
+<title>rb_next_postorder (10,101,010 samples, 0.06%)</title><rect x="345.1" y="645" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="348.05" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.06%)</title><rect x="1138.9" y="629" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1141.93" y="639.5" ></text>
+</g>
+<g >
+<title>mkdir (90,909,090 samples, 0.58%)</title><rect x="1038.1" y="805" width="8.0" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1041.15" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="919.7" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="922.69" y="543.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="501" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1011.09" y="511.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (20,202,020 samples, 0.13%)</title><rect x="1152.2" y="645" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1155.19" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="941.8" y="709" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="944.79" y="719.5" ></text>
+</g>
+<g >
+<title>sk_free (10,101,010 samples, 0.06%)</title><rect x="44.5" y="229" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="47.48" y="239.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.06%)</title><rect x="988.6" y="677" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="991.64" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.26%)</title><rect x="859.6" y="565" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="862.57" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.06%)</title><rect x="1103.6" y="453" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1106.57" y="463.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="501" width="0.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1356.75" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.96%)</title><rect x="1216.7" y="853" width="13.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="863.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1065.6" y="597" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1068.55" y="607.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="486.5" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="489.50" y="607.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="727.8" y="581" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="730.85" y="591.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="559.9" y="629" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="562.88" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="944.4" y="757" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="947.44" y="767.5" ></text>
+</g>
+<g >
+<title>__snprintf (20,202,020 samples, 0.13%)</title><rect x="66.6" y="917" width="1.7" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="69.58" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="205.4" y="533" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="208.37" y="543.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.13%)</title><rect x="1046.1" y="661" width="1.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1049.11" y="671.5" ></text>
+</g>
+<g >
+<title>complete_walk (20,202,020 samples, 0.13%)</title><rect x="745.5" y="565" width="1.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="748.53" y="575.5" ></text>
+</g>
+<g >
+<title>jbd2_alloc (10,101,010 samples, 0.06%)</title><rect x="628.8" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="631.83" y="575.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1301.6" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1304.60" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="122.3" y="677" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="125.27" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (50,505,050 samples, 0.32%)</title><rect x="451.1" y="725" width="4.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="454.14" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1203.5" y="677" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1206.47" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.19%)</title><rect x="1032.0" y="565" width="2.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1034.96" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.13%)</title><rect x="1051.4" y="613" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1054.41" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="544.8" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="547.85" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="1148.7" y="613" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1151.65" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,919,191,890 samples, 18.51%)</title><rect x="173.5" y="869" width="255.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="176.55" y="879.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ext4_release_file (10,101,010 samples, 0.06%)</title><rect x="1012.5" y="661" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1015.51" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="718.1" y="597" width="2.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="721.12" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="425.5" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="428.50" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="278.8" y="549" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="281.75" y="559.5" ></text>
+</g>
+<g >
+<title>alloc_pages (20,202,020 samples, 0.13%)</title><rect x="519.2" y="533" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="522.21" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="515.7" y="805" width="7.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="518.68" y="815.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1252.1" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1255.09" y="655.5" ></text>
+</g>
+<g >
+<title>crc_84 (10,101,010 samples, 0.06%)</title><rect x="421.1" y="613" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="424.08" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="985.1" y="645" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="988.11" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="794.2" y="597" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="797.15" y="607.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="258.4" y="613" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="261.42" y="623.5" ></text>
+</g>
+<g >
+<title>__put_cred (20,202,020 samples, 0.13%)</title><rect x="1201.7" y="677" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1204.70" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="903.8" y="533" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="906.77" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.96%)</title><rect x="1216.7" y="837" width="13.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1091.2" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1094.19" y="511.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="528.9" y="645" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="531.94" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="265.5" y="549" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="268.49" y="559.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1327.58" y="623.5" ></text>
+</g>
+<g >
+<title>mnt_drop_write (10,101,010 samples, 0.06%)</title><rect x="974.5" y="629" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="977.50" y="639.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="688.9" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="691.95" y="559.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="1131.0" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1133.97" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="989.5" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="992.53" y="639.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="344.2" y="741" width="1.7" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="347.17" y="751.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="677" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1199.39" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="253.1" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="256.11" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="1245.0" y="821" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1248.02" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.45%)</title><rect x="418.4" y="789" width="6.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="421.43" y="799.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="925.0" y="629" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="927.99" y="639.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="133" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1385.93" y="143.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.83%)</title><rect x="742.0" y="757" width="11.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="421" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1389.46" y="431.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="903.8" y="565" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="906.77" y="575.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="311.5" y="485" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="314.46" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="778.2" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="781.24" y="719.5" ></text>
+</g>
+<g >
+<title>__alloc_percpu_gfp (20,202,020 samples, 0.13%)</title><rect x="1327.2" y="709" width="1.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1330.23" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="830.4" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="833.40" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.45%)</title><rect x="316.8" y="725" width="6.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="319.76" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="645" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1112.76" y="655.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="1266.2" y="629" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1269.23" y="639.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="484.7" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="487.73" y="623.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="613" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1062.37" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (101,010,100 samples, 0.64%)</title><rect x="43.6" y="597" width="8.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="46.59" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="788.8" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="791.85" y="623.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_get_param_int (10,101,010 samples, 0.06%)</title><rect x="1370.6" y="853" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1373.55" y="863.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="856.0" y="613" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="859.03" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="830.4" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="833.40" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="278.8" y="565" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="281.75" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (80,808,080 samples, 0.51%)</title><rect x="233.7" y="613" width="7.0" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="236.66" y="623.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="485" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1104.80" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.13%)</title><rect x="1277.7" y="741" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1280.73" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="1273.3" y="757" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1276.31" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (20,202,020 samples, 0.13%)</title><rect x="452.9" y="565" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="455.91" y="575.5" ></text>
+</g>
+<g >
+<title>grab_cache_page_write_begin (30,303,030 samples, 0.19%)</title><rect x="827.7" y="581" width="2.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="830.75" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="821" width="6.2" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1349.68" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_read (30,303,030 samples, 0.19%)</title><rect x="1374.1" y="773" width="2.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1377.09" y="783.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="669.5" y="501" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="672.50" y="511.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="19.7" y="805" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="22.72" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1041.7" y="517" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1044.68" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="834.8" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="837.82" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="1198.2" y="821" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1201.16" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="990.4" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="993.41" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="79.8" y="821" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="82.84" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="719.0" y="549" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="722.01" y="559.5" ></text>
+</g>
+<g >
+<title>opendir (20,202,020 samples, 0.13%)</title><rect x="897.6" y="677" width="1.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="900.58" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="426.4" y="709" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="429.39" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="506.8" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="509.84" y="719.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.06%)</title><rect x="43.6" y="469" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="46.59" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="805.6" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="808.64" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="217.8" y="501" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="220.75" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="947.1" y="661" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="950.09" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.26%)</title><rect x="1193.7" y="773" width="3.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1196.74" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="814.5" y="661" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="817.48" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="369.8" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="372.81" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="837" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1342.61" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="819.8" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="822.79" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (90,909,090 samples, 0.58%)</title><rect x="1038.1" y="725" width="8.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1041.15" y="735.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="246.9" y="597" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="249.93" y="607.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="958.6" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="961.58" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1054.1" y="597" width="0.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1057.06" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="858.7" y="677" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="861.69" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="392.8" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="395.79" y="607.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="1378.5" y="933" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1381.51" y="943.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (10,101,010 samples, 0.06%)</title><rect x="1359.1" y="501" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1362.06" y="511.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1273.3" y="645" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1276.31" y="655.5" ></text>
+</g>
+<g >
+<title>prepare_creds (10,101,010 samples, 0.06%)</title><rect x="1264.5" y="693" width="0.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1267.47" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="309.7" y="325" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="312.69" y="335.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="549" width="1.7" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1024.35" y="559.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="737.6" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="740.57" y="559.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.06%)</title><rect x="464.4" y="549" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="467.40" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.06%)</title><rect x="719.0" y="501" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="722.01" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1034.6" y="597" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1037.61" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="638.6" y="677" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="641.56" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (40,404,040 samples, 0.26%)</title><rect x="348.6" y="709" width="3.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="351.59" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1199.0" y="645" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1202.05" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="794.2" y="645" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="797.15" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="742.9" y="645" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="745.88" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="450.3" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="453.26" y="751.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1279.84" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="873.7" y="581" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="876.72" y="591.5" ></text>
+</g>
+<g >
+<title>file_read (40,404,040 samples, 0.26%)</title><rect x="1332.5" y="885" width="3.6" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1335.54" y="895.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="816.3" y="517" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="819.25" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="937.4" y="661" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="940.37" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="935.6" y="789" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="938.60" y="799.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (90,909,090 samples, 0.58%)</title><rect x="43.6" y="565" width="8.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="46.59" y="575.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="802.1" y="501" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="805.11" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="216.9" y="517" width="1.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="219.87" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="670.4" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="673.38" y="687.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="1236.2" y="645" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1239.18" y="655.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="91.3" y="869" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="94.33" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="819.8" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="822.79" y="639.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="773" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1010.21" y="783.5" ></text>
+</g>
+<g >
+<title>filename_parentat (20,202,020 samples, 0.13%)</title><rect x="231.0" y="645" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="234.01" y="655.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="82.5" y="693" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="85.49" y="703.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="819.8" y="837" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="822.79" y="847.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1382.0" y="469" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1385.04" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="665.1" y="677" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="668.08" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="709" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1274.54" y="719.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="925.0" y="309" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="927.99" y="319.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="906.4" y="613" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="909.43" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.58%)</title><rect x="522.7" y="805" width="8.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="525.75" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (60,606,060 samples, 0.38%)</title><rect x="1073.5" y="693" width="5.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1076.51" y="703.5" ></text>
+</g>
+<g >
+<title>rseq_ip_fixup (10,101,010 samples, 0.06%)</title><rect x="902.0" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="905.01" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="1172.5" y="565" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="1175.52" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="760.6" y="469" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="763.56" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="722.5" y="645" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="725.54" y="655.5" ></text>
+</g>
+<g >
+<title>lock_mm_and_find_vma (10,101,010 samples, 0.06%)</title><rect x="76.3" y="853" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="79.30" y="863.5" ></text>
+</g>
+<g >
+<title>__pagevec_release (10,101,010 samples, 0.06%)</title><rect x="399.0" y="629" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="401.98" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="313.2" y="517" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="316.23" y="527.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="868.4" y="741" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="871.41" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1243.2" y="549" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1246.25" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (474,747,470 samples, 3.01%)</title><rect x="1288.3" y="853" width="41.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1291.33" y="863.5" >ent..</text>
+</g>
+<g >
+<title>chmod_common (20,202,020 samples, 0.13%)</title><rect x="1009.0" y="709" width="1.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1011.98" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="133.8" y="805" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="136.77" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1115.1" y="629" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1118.06" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="293.8" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="296.78" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="978.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="981.03" y="687.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1368.8" y="853" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1371.78" y="863.5" ></text>
+</g>
+<g >
+<title>path_openat (101,010,100 samples, 0.64%)</title><rect x="1046.1" y="709" width="8.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1049.11" y="719.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="727.0" y="565" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="729.96" y="575.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="179.7" y="565" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="182.74" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="551.0" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="554.04" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="711.1" y="677" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="714.05" y="687.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1203.5" y="597" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1206.47" y="607.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="735.8" y="693" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="738.80" y="703.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (20,202,020 samples, 0.13%)</title><rect x="914.4" y="677" width="1.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="917.38" y="687.5" ></text>
+</g>
+<g >
+<title>dput (30,303,030 samples, 0.19%)</title><rect x="460.9" y="725" width="2.6" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="463.86" y="735.5" ></text>
+</g>
+<g >
+<title>refcount_dec_and_lock_irqsave (10,101,010 samples, 0.06%)</title><rect x="925.0" y="581" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="927.99" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="769.4" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="772.40" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="700.4" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="703.44" y="591.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (40,404,040 samples, 0.26%)</title><rect x="944.4" y="725" width="3.6" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="947.44" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1220.61" y="703.5" ></text>
+</g>
+<g >
+<title>is_vmalloc_addr (10,101,010 samples, 0.06%)</title><rect x="499.8" y="597" width="0.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="502.76" y="607.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="797.7" y="597" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="800.69" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (90,909,090 samples, 0.58%)</title><rect x="1038.1" y="709" width="8.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1041.15" y="719.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="196.5" y="517" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="199.53" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1199.0" y="661" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1202.05" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="910.0" y="581" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="912.96" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="201.8" y="613" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="204.84" y="623.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1382.0" y="453" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1385.04" y="463.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="925.0" y="437" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="927.99" y="447.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="919.7" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="922.69" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="1249.4" y="789" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1252.44" y="799.5" ></text>
+</g>
+<g >
+<title>ci_run_script (575,757,570 samples, 3.65%)</title><rect x="1287.5" y="917" width="50.3" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1290.45" y="927.5" >ci_ru..</text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="767.6" y="581" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="770.63" y="591.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="677" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1379.74" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="868.4" y="597" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="871.41" y="607.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="637.7" y="661" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="640.67" y="671.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_create_internal (30,303,030 samples, 0.19%)</title><rect x="1366.1" y="917" width="2.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1369.13" y="927.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="1242.4" y="597" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1245.36" y="607.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.06%)</title><rect x="309.7" y="229" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="312.69" y="239.5" ></text>
+</g>
+<g >
+<title>proc_capture (575,757,570 samples, 3.65%)</title><rect x="1287.5" y="901" width="50.3" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1290.45" y="911.5" >proc_..</text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="533" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1114.52" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="10.0" y="965" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="975.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="319.4" y="661" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="322.42" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1093.8" y="421" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1096.84" y="431.5" ></text>
+</g>
+<g >
+<title>inflate (20,202,020 samples, 0.13%)</title><rect x="733.2" y="693" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="736.15" y="703.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="170.9" y="885" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="173.90" y="895.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="613" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1190.55" y="623.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="384.0" y="645" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="386.95" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="626.2" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="629.18" y="623.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="469" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1360.29" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="873.7" y="485" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="876.72" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="704.9" y="741" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="707.86" y="751.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="338.9" y="565" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="341.87" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1210.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1213.54" y="735.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="533" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1306.36" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="561.6" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="564.65" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="629" width="0.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1212.65" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="1264.5" y="677" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1267.47" y="687.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="62.2" y="661" width="0.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="65.16" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (232,323,230 samples, 1.47%)</title><rect x="709.3" y="757" width="20.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.28" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.15%)</title><rect x="476.8" y="773" width="15.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="479.78" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="889.6" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="892.63" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (90,909,090 samples, 0.58%)</title><rect x="806.5" y="613" width="8.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="809.53" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="179.7" y="629" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="182.74" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="66.6" y="885" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="69.58" y="895.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="722.5" y="597" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="725.54" y="607.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="825.1" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="828.09" y="623.5" ></text>
+</g>
+<g >
+<title>verify_dirent_name (10,101,010 samples, 0.06%)</title><rect x="1236.2" y="581" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="1239.18" y="591.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="1330.8" y="693" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1333.77" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="1046.1" y="677" width="1.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1049.11" y="687.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="62.2" y="757" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="65.16" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.70%)</title><rect x="1106.2" y="757" width="9.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1109.22" y="767.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.19%)</title><rect x="11.8" y="661" width="2.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="14.77" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="447.6" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="450.60" y="719.5" ></text>
+</g>
+<g >
+<title>grab_cache_page_write_begin (30,303,030 samples, 0.19%)</title><rect x="452.0" y="613" width="2.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="455.02" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="1086.8" y="501" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1089.77" y="511.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="717.2" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="720.24" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1193.7" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1196.74" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1227.3" y="789" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.34" y="799.5" ></text>
+</g>
+<g >
+<title>ci_cleanup_git_repo (3,101,010,070 samples, 19.67%)</title><rect x="171.8" y="933" width="271.4" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="174.78" y="943.5" >ci_cleanup_git_repo</text>
+</g>
+<g >
+<title>memchr (10,101,010 samples, 0.06%)</title><rect x="703.1" y="661" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="706.09" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (70,707,070 samples, 0.45%)</title><rect x="965.7" y="517" width="6.1" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="968.66" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="814.5" y="725" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="817.48" y="735.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (10,101,010 samples, 0.06%)</title><rect x="1350.2" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1353.22" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="216.9" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="219.87" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="451.1" y="741" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="454.14" y="751.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="569.6" y="837" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="572.60" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="1260.9" y="645" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1263.93" y="655.5" ></text>
+</g>
+<g >
+<title>__sys_accept4 (20,202,020 samples, 0.13%)</title><rect x="61.3" y="821" width="1.7" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="64.27" y="831.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="441.4" y="837" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="444.42" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (40,404,040 samples, 0.26%)</title><rect x="241.6" y="709" width="3.6" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="244.62" y="719.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.06%)</title><rect x="849.8" y="581" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="852.85" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="341" width="0.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1140.16" y="351.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="178.0" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="180.97" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="339.8" y="629" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="342.75" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,949,494,930 samples, 12.36%)</title><rect x="173.5" y="805" width="170.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="176.55" y="815.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="434.3" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="437.34" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1251.2" y="693" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1254.20" y="703.5" ></text>
+</g>
+<g >
+<title>unlink (70,707,070 samples, 0.45%)</title><rect x="316.8" y="741" width="6.2" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="319.76" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1018.7" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1021.70" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="485" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1253.32" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="919.15" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="598.8" y="501" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="601.78" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="630.6" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="633.60" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="190.3" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="193.35" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (222,222,220 samples, 1.41%)</title><rect x="955.9" y="677" width="19.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="958.93" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1279.84" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="65.7" y="869" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="68.70" y="879.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1199.9" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1202.93" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="718.1" y="629" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="721.12" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.13%)</title><rect x="1215.0" y="613" width="1.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1217.96" y="623.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.06%)</title><rect x="1070.0" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1072.97" y="719.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="389" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1114.52" y="399.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="903.8" y="597" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="906.77" y="607.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="325.6" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="328.61" y="655.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="517" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1389.46" y="527.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="319.4" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="322.42" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1346.15" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="702.2" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="705.21" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="830.4" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="833.40" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.38%)</title><rect x="1133.6" y="613" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1136.63" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="158.5" y="773" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="161.52" y="783.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="517" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1306.36" y="527.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="19.7" y="821" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="22.72" y="831.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="940.0" y="629" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="943.02" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="995.7" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="998.71" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="530.7" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="533.70" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="667.7" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="670.73" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="791.5" y="613" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="794.50" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_check (10,101,010 samples, 0.06%)</title><rect x="391.9" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="394.91" y="639.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.06%)</title><rect x="765.9" y="773" width="0.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="768.86" y="783.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1230.0" y="805" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1232.99" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="499.8" y="693" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="502.76" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="424.6" y="709" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="427.62" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1027.89" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="757.0" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="760.02" y="575.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="756.1" y="517" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="759.14" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="732.3" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="735.27" y="639.5" ></text>
+</g>
+<g >
+<title>write (60,606,060 samples, 0.38%)</title><rect x="70.1" y="853" width="5.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="73.12" y="863.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="849.0" y="613" width="1.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="851.96" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.51%)</title><rect x="515.7" y="741" width="7.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="518.68" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_rename (101,010,100 samples, 0.64%)</title><rect x="463.5" y="725" width="8.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="466.52" y="735.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="604.1" y="565" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="607.08" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (80,808,080 samples, 0.51%)</title><rect x="609.4" y="709" width="7.1" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="612.39" y="719.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (70,707,070 samples, 0.45%)</title><rect x="44.5" y="453" width="6.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="47.48" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_statx (70,707,070 samples, 0.45%)</title><rect x="610.3" y="677" width="6.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="613.27" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="438.8" y="853" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="441.76" y="863.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="309.7" y="389" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="312.69" y="399.5" ></text>
+</g>
+<g >
+<title>perf_event_fork (10,101,010 samples, 0.06%)</title><rect x="29.4" y="933" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="32.45" y="943.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (10,101,010 samples, 0.06%)</title><rect x="212.4" y="501" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="215.45" y="511.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="437" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1360.29" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1091.2" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1094.19" y="527.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (10,101,010 samples, 0.06%)</title><rect x="325.6" y="629" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="328.61" y="639.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="757" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1382.39" y="767.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="419.3" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="422.31" y="639.5" ></text>
+</g>
+<g >
+<title>__sys_connect (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="869" width="5.3" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1387.70" y="879.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="208.9" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="211.91" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="445.0" y="789" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="447.95" y="799.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.13%)</title><rect x="519.2" y="517" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="522.21" y="527.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="777.4" y="629" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="780.35" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (10,101,010 samples, 0.06%)</title><rect x="19.7" y="885" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="22.72" y="895.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1294.5" y="709" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1297.52" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="429.9" y="693" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="432.92" y="703.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="941.8" y="629" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="944.79" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (444,444,440 samples, 2.82%)</title><rect x="1141.6" y="741" width="38.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1144.58" y="751.5" >vfs..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="757.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="760.91" y="687.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="458.2" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="461.21" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="613" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1274.54" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1050.5" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1053.53" y="575.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="76.3" y="917" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="79.30" y="927.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="913.5" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="916.50" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="265.5" y="533" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="268.49" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="901" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1383.28" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="910.0" y="693" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="912.96" y="703.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1028.4" y="517" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1031.42" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (30,303,030 samples, 0.19%)</title><rect x="389.3" y="661" width="2.6" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="392.26" y="671.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (191,919,190 samples, 1.22%)</title><rect x="671.3" y="629" width="16.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="674.27" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="766.7" y="693" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="769.75" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="18.8" y="853" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="21.84" y="863.5" ></text>
+</g>
+<g >
+<title>filemap_get_folios (10,101,010 samples, 0.06%)</title><rect x="862.2" y="517" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="865.22" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="887.0" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="889.98" y="623.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (10,101,010 samples, 0.06%)</title><rect x="19.7" y="837" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="22.72" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="769.4" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="772.40" y="687.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (10,101,010 samples, 0.06%)</title><rect x="1064.7" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1067.67" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="690.7" y="501" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="693.72" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="773" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1342.61" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="721.7" y="597" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="724.66" y="607.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.06%)</title><rect x="249.6" y="645" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="252.58" y="655.5" ></text>
+</g>
+<g >
+<title>nf_nat_inet_fn (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="453" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1364.71" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (151,515,150 samples, 0.96%)</title><rect x="79.0" y="933" width="13.2" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="81.96" y="943.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="807.4" y="453" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="810.41" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (20,202,020 samples, 0.13%)</title><rect x="204.5" y="581" width="1.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="207.49" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1092.1" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1095.08" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (646,464,640 samples, 4.10%)</title><rect x="94.9" y="965" width="56.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="97.87" y="975.5" >do_sy..</text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="86.0" y="661" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="89.03" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (80,808,080 samples, 0.51%)</title><rect x="690.7" y="549" width="7.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="693.72" y="559.5" ></text>
+</g>
+<g >
+<title>folio_alloc (20,202,020 samples, 0.13%)</title><rect x="828.6" y="517" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="831.63" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="428.2" y="693" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="431.16" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="493.6" y="677" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="496.57" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="786.2" y="645" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="789.19" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1022.58" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="597.0" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="600.01" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1382.39" y="847.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="925.0" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="927.99" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="723.4" y="725" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="726.43" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (10,101,010 samples, 0.06%)</title><rect x="1040.8" y="629" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="1043.80" y="639.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (70,707,070 samples, 0.45%)</title><rect x="758.8" y="725" width="6.2" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="761.79" y="735.5" ></text>
+</g>
+<g >
+<title>getcwd (10,101,010 samples, 0.06%)</title><rect x="1345.8" y="901" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1348.80" y="911.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="597" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1209.12" y="607.5" ></text>
+</g>
+<g >
+<title>mod_timer (10,101,010 samples, 0.06%)</title><rect x="1377.6" y="629" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1380.62" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="444.1" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="447.07" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (20,202,020 samples, 0.13%)</title><rect x="401.6" y="565" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="404.63" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="506.8" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="509.84" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="561.6" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="564.65" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (10,101,010 samples, 0.06%)</title><rect x="1283.0" y="645" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1286.03" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (30,303,030 samples, 0.19%)</title><rect x="11.8" y="725" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="14.77" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.19%)</title><rect x="1357.3" y="565" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1360.29" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="197.4" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="200.42" y="719.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1169.9" y="501" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1172.87" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="706.6" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="709.63" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="18.0" y="869" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="20.96" y="879.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="301.7" y="533" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="304.74" y="543.5" ></text>
+</g>
+<g >
+<title>kfree_skb_reason (10,101,010 samples, 0.06%)</title><rect x="49.8" y="117" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="52.78" y="127.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="76.3" y="885" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="79.30" y="895.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="561.6" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="564.65" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (191,919,190 samples, 1.22%)</title><rect x="153.2" y="965" width="16.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="156.22" y="975.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1228.2" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1231.22" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="871.1" y="741" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="874.06" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="77.2" y="949" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="80.19" y="959.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="849.0" y="741" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="851.96" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="84.3" y="805" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="87.26" y="815.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.06%)</title><rect x="201.0" y="645" width="0.8" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="203.95" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.06%)</title><rect x="18.8" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="21.84" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="512.1" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="515.14" y="575.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="184.2" y="421" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="187.16" y="431.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="742.9" y="581" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="745.88" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.26%)</title><rect x="996.6" y="741" width="3.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="999.60" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1146.0" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1149.00" y="671.5" ></text>
+</g>
+<g >
+<title>crc_72 (10,101,010 samples, 0.06%)</title><rect x="803.0" y="501" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="805.99" y="511.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="581" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1387.70" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="500.6" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="503.65" y="671.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (40,404,040 samples, 0.26%)</title><rect x="164.7" y="869" width="3.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="167.71" y="879.5" ></text>
+</g>
+<g >
+<title>scsi_done_internal (10,101,010 samples, 0.06%)</title><rect x="565.2" y="517" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="568.18" y="527.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="737.6" y="645" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="740.57" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="799.5" y="629" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="802.46" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="726.1" y="629" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="729.08" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="1084.1" y="565" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1087.12" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="338.9" y="549" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="341.87" y="559.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.06%)</title><rect x="251.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="254.35" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_complete_request (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="533" width="0.9" height="15.0" fill="rgb(0,195,25)" rx="2" ry="2" />
+<text x="1327.58" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1230.0" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1232.99" y="799.5" ></text>
+</g>
+<g >
+<title>readlink (20,202,020 samples, 0.13%)</title><rect x="1195.5" y="757" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1198.51" y="767.5" ></text>
+</g>
+<g >
+<title>__jbd2_log_wait_for_space (10,101,010 samples, 0.06%)</title><rect x="1278.6" y="677" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1281.61" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="721.7" y="629" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="724.66" y="639.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="48.9" y="133" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="51.90" y="143.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (50,505,050 samples, 0.32%)</title><rect x="431.7" y="789" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="434.69" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="791.5" y="645" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="794.50" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="477.7" y="645" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="480.66" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="418.4" y="645" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="421.43" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (30,303,030 samples, 0.19%)</title><rect x="1175.2" y="581" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1178.18" y="591.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="565" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1039.38" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="989.5" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="992.53" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (20,202,020 samples, 0.13%)</title><rect x="740.2" y="773" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="743.22" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_setent (20,202,020 samples, 0.13%)</title><rect x="470.6" y="677" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="473.59" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="830.4" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="833.40" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="773" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1368.25" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="849.0" y="597" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="851.96" y="607.5" ></text>
+</g>
+<g >
+<title>my_chdir (60,606,060 samples, 0.38%)</title><rect x="1341.4" y="933" width="5.3" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1344.38" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (30,303,030 samples, 0.19%)</title><rect x="969.2" y="469" width="2.6" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="972.19" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_link (10,101,010 samples, 0.06%)</title><rect x="986.9" y="645" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="989.87" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="852.5" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="855.50" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (292,929,290 samples, 1.86%)</title><rect x="386.6" y="773" width="25.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="389.60" y="783.5" >e..</text>
+</g>
+<g >
+<title>git_object_lookup_prefix (90,909,090 samples, 0.58%)</title><rect x="522.7" y="837" width="8.0" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="525.75" y="847.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="740.2" y="757" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="743.22" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="350.4" y="613" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="353.36" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="445.8" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="448.84" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (60,606,060 samples, 0.38%)</title><rect x="1347.6" y="757" width="5.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1350.57" y="767.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="729.6" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="732.62" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="18.0" y="821" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="20.96" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="949.7" y="629" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="952.74" y="639.5" ></text>
+</g>
+<g >
+<title>inet_csk_destroy_sock (10,101,010 samples, 0.06%)</title><rect x="49.8" y="149" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="52.78" y="159.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="1053.2" y="629" width="1.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1056.18" y="639.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="156.8" y="869" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="159.75" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="442.3" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="445.30" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="543.1" y="757" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="546.08" y="767.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="850.7" y="661" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="853.73" y="671.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="711.1" y="533" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="714.05" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="905.5" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="908.54" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="748.2" y="581" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="751.18" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="551.0" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="554.04" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.26%)</title><rect x="881.7" y="837" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="884.67" y="847.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="231.9" y="549" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="234.90" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="323.0" y="645" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="325.95" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="939.1" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="942.14" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="975.4" y="517" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="978.38" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="906.4" y="645" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="909.43" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="597.0" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="600.01" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="190.3" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="193.35" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="406.1" y="629" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="409.05" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1241.5" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1244.48" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="728.7" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="731.73" y="559.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1361.7" y="677" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1364.71" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="487.4" y="581" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="490.39" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1237.9" y="693" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1240.94" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="430.8" y="709" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="433.81" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.13%)</title><rect x="48.0" y="165" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="51.01" y="175.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.58%)</title><rect x="369.8" y="645" width="8.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="372.81" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="889.6" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="892.63" y="607.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="651.8" y="677" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="654.82" y="687.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.06%)</title><rect x="1356.4" y="581" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1359.41" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1233.5" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1236.52" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1053.2" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1056.18" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (40,404,040 samples, 0.26%)</title><rect x="693.4" y="501" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="696.37" y="511.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="231.9" y="533" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="234.90" y="543.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (90,909,090 samples, 0.58%)</title><rect x="43.6" y="549" width="8.0" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="46.59" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="536.0" y="789" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="539.01" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="446.7" y="757" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="449.72" y="767.5" ></text>
+</g>
+<g >
+<title>git_reference__alloc_symbolic (10,101,010 samples, 0.06%)</title><rect x="981.6" y="709" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="984.57" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="990.4" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="993.41" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="151.4" y="933" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="154.45" y="943.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="997.5" y="645" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1000.48" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="597" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1331.12" y="607.5" ></text>
+</g>
+<g >
+<title>__lookup_hash (40,404,040 samples, 0.26%)</title><rect x="619.1" y="677" width="3.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="622.11" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="661" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1384.16" y="671.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.06%)</title><rect x="1330.8" y="773" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1333.77" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="421.1" y="629" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="424.08" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (60,606,060 samples, 0.38%)</title><rect x="287.6" y="565" width="5.3" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="290.59" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="661" width="3.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1087.12" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="719.0" y="517" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="722.01" y="527.5" ></text>
+</g>
+<g >
+<title>git_oid_tostr (10,101,010 samples, 0.06%)</title><rect x="473.2" y="757" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="476.24" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (30,303,030 samples, 0.19%)</title><rect x="11.8" y="789" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="14.77" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 1.67%)</title><rect x="1082.4" y="757" width="22.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1085.35" y="767.5" >[..</text>
+</g>
+<g >
+<title>fstatat64 (60,606,060 samples, 0.38%)</title><rect x="723.4" y="741" width="5.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="726.43" y="751.5" ></text>
+</g>
+<g >
+<title>worker_handle_cmd_start_run (10,101,010 samples, 0.06%)</title><rect x="1370.6" y="885" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1373.55" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="505.1" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="508.07" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="678.3" y="437" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="681.34" y="447.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1026.12" y="495.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="208.9" y="373" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="211.91" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="975.4" y="469" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="978.38" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="932.9" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="935.95" y="815.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="495.3" y="581" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="498.34" y="591.5" ></text>
+</g>
+<g >
+<title>build_open_flags (10,101,010 samples, 0.06%)</title><rect x="634.1" y="709" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="637.14" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="853" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1340.84" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="921.5" y="613" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="924.45" y="623.5" ></text>
+</g>
+<g >
+<title>security_inode_create (10,101,010 samples, 0.06%)</title><rect x="146.1" y="853" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="149.14" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="930.3" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="933.29" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="477.7" y="693" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="480.66" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="405" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1039.38" y="415.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="527.2" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="530.17" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="738.5" y="629" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="741.46" y="639.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="645" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1010.21" y="655.5" ></text>
+</g>
+<g >
+<title>bio_associate_blkg (10,101,010 samples, 0.06%)</title><rect x="696.9" y="437" width="0.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="699.91" y="447.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="11.8" y="565" width="1.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="14.77" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="856.0" y="517" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="859.03" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.13%)</title><rect x="208.9" y="581" width="1.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="211.91" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="577.6" y="725" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="580.56" y="735.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="806.5" y="357" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="809.53" y="367.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="954.2" y="533" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="957.16" y="543.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.19%)</title><rect x="460.9" y="661" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="463.86" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="578.4" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="581.44" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_pipe2 (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="837" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1339.07" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="794.2" y="613" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="797.15" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="704.9" y="773" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="707.86" y="783.5" ></text>
+</g>
+<g >
+<title>unlink_cb (141,414,140 samples, 0.90%)</title><rect x="331.8" y="789" width="12.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="334.79" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="665.1" y="709" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="668.08" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="676.6" y="517" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="679.57" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="424.6" y="805" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="427.62" y="815.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="757.9" y="693" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="760.91" y="703.5" ></text>
+</g>
+<g >
+<title>gettid (10,101,010 samples, 0.06%)</title><rect x="65.7" y="917" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="68.70" y="927.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="1174.3" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1177.29" y="591.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="373" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1026.12" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.13%)</title><rect x="681.0" y="501" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="683.99" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (686,868,680 samples, 4.36%)</title><rect x="573.1" y="789" width="60.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="576.14" y="799.5" >[libgi..</text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="422.0" y="645" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="424.97" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="703.1" y="725" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="706.09" y="735.5" ></text>
+</g>
+<g >
+<title>git_signature_default (10,101,010 samples, 0.06%)</title><rect x="990.4" y="773" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="993.41" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_append (242,424,240 samples, 1.54%)</title><rect x="1158.4" y="693" width="21.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1161.38" y="703.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="292.0" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="295.01" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="92.2" y="885" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="95.22" y="895.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="273.4" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="276.45" y="623.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.06%)</title><rect x="333.6" y="565" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="336.56" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_getcwd (10,101,010 samples, 0.06%)</title><rect x="1345.8" y="837" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1348.80" y="847.5" ></text>
+</g>
+<g >
+<title>git_remote_lookup (30,303,030 samples, 0.19%)</title><rect x="885.2" y="837" width="2.7" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="888.21" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_rename (151,515,150 samples, 0.96%)</title><rect x="688.1" y="645" width="13.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="691.07" y="655.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (30,303,030 samples, 0.19%)</title><rect x="910.0" y="757" width="2.6" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="912.96" y="767.5" ></text>
+</g>
+<g >
+<title>alloc_page_buffers (30,303,030 samples, 0.19%)</title><rect x="516.6" y="581" width="2.6" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="519.56" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.90%)</title><rect x="822.4" y="789" width="12.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="825.44" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1057.95" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="226.6" y="629" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="229.59" y="639.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (161,616,160 samples, 1.02%)</title><rect x="1272.4" y="805" width="14.2" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1275.42" y="815.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="254.9" y="533" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="257.88" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="834.8" y="693" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="837.82" y="703.5" ></text>
+</g>
+<g >
+<title>__dput_to_list (10,101,010 samples, 0.06%)</title><rect x="219.5" y="581" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="222.52" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="990.4" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="993.41" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_rename (50,505,050 samples, 0.32%)</title><rect x="1100.9" y="661" width="4.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1103.92" y="671.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="1010.7" y="709" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1013.74" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="199.2" y="693" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="202.19" y="703.5" ></text>
+</g>
+<g >
+<title>fscrypt_setup_filename (10,101,010 samples, 0.06%)</title><rect x="275.2" y="613" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="278.21" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="677" width="3.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1384.16" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (80,808,080 samples, 0.51%)</title><rect x="515.7" y="661" width="7.0" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="518.68" y="671.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="1213.2" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1216.19" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="661.5" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="664.54" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="935.6" y="757" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="938.60" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="774.7" y="709" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="777.70" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="506.8" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="509.84" y="783.5" ></text>
+</g>
+<g >
+<title>wp_page_copy (10,101,010 samples, 0.06%)</title><rect x="1330.8" y="757" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1333.77" y="767.5" ></text>
+</g>
+<g >
+<title>fprintf (70,707,070 samples, 0.45%)</title><rect x="69.2" y="917" width="6.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="72.23" y="927.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="1071.7" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1074.74" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="547.5" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="550.50" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="976.3" y="501" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="979.27" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (50,505,050 samples, 0.32%)</title><rect x="46.2" y="245" width="4.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="49.25" y="255.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="1093.8" y="437" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1096.84" y="447.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="853" width="2.6" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1355.87" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="797.7" y="613" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.69" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="693" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1387.70" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.02%)</title><rect x="709.3" y="741" width="14.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.28" y="751.5" ></text>
+</g>
+<g >
+<title>accept4 (20,202,020 samples, 0.13%)</title><rect x="61.3" y="885" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="64.27" y="895.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="330.9" y="677" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="333.91" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="544.0" y="725" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="546.97" y="735.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="62.2" y="709" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="65.16" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (878,787,870 samples, 5.57%)</title><rect x="573.1" y="805" width="77.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="576.14" y="815.5" >[libgit2..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="901.1" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="904.12" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="595.2" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="598.24" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (50,505,050 samples, 0.32%)</title><rect x="1041.7" y="597" width="4.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1044.68" y="607.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="674.8" y="517" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="677.80" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mb_good_group_nolock (10,101,010 samples, 0.06%)</title><rect x="1283.0" y="629" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1286.03" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="935.6" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="938.60" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.19%)</title><rect x="375.1" y="581" width="2.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="378.11" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (393,939,390 samples, 2.50%)</title><rect x="1105.3" y="789" width="34.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1108.34" y="799.5" >[l..</text>
+</g>
+<g >
+<title>ext4_free_blocks (70,707,070 samples, 0.45%)</title><rect x="307.0" y="517" width="6.2" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="310.04" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="563.4" y="789" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="566.41" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="919.15" y="703.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1184.9" y="741" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1187.90" y="751.5" ></text>
+</g>
+<g >
+<title>git_remote_disconnect (10,101,010 samples, 0.06%)</title><rect x="1001.0" y="853" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1004.02" y="863.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.06%)</title><rect x="257.5" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="260.53" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="266.4" y="629" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="269.37" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="948.0" y="725" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="950.98" y="735.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="1345.8" y="821" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1348.80" y="831.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_handle_packet (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="85" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1385.93" y="95.5" ></text>
+</g>
+<g >
+<title>__tcp_close (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="709" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1356.75" y="719.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1027.00" y="607.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="375.1" y="501" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="378.11" y="511.5" ></text>
+</g>
+<g >
+<title>remove (70,707,070 samples, 0.45%)</title><rect x="184.2" y="693" width="6.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="187.16" y="703.5" ></text>
+</g>
+<g >
+<title>put_ucounts (10,101,010 samples, 0.06%)</title><rect x="1214.1" y="613" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="1217.07" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (464,646,460 samples, 2.95%)</title><rect x="475.0" y="837" width="40.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="478.01" y="847.5" >[li..</text>
+</g>
+<g >
+<title>ext4_dx_readdir (40,404,040 samples, 0.26%)</title><rect x="348.6" y="693" width="3.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="351.59" y="703.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="513.9" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="516.91" y="639.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="692.5" y="277" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="695.49" y="287.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="189.5" y="565" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="192.46" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="511.3" y="597" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="514.26" y="607.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="549" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1387.70" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="773.8" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.82" y="703.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="851.6" y="661" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="854.61" y="671.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="496.2" y="725" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="499.23" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="340.6" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="343.63" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="216.0" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="218.98" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="950.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="953.63" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="827.7" y="661" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="830.75" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1295.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1298.41" y="703.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="677" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1116.29" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fname_prepare_lookup (10,101,010 samples, 0.06%)</title><rect x="621.8" y="629" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="624.76" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="326.5" y="709" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="329.49" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1342.61" y="799.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.06%)</title><rect x="41.8" y="693" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="44.83" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="805" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1382.39" y="815.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="618.2" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="621.23" y="687.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="1352.9" y="677" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1355.87" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.58%)</title><rect x="788.0" y="725" width="7.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="790.96" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="815.4" y="597" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="818.37" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="851.6" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="854.61" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.32%)</title><rect x="184.2" y="549" width="4.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="187.16" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="624.4" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="627.41" y="623.5" ></text>
+</g>
+<g >
+<title>__socket (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="933" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1358.52" y="943.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="581" width="3.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1087.12" y="591.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="53" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1385.93" y="63.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="695.1" y="421" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="698.14" y="431.5" ></text>
+</g>
+<g >
+<title>generic_write_end (50,505,050 samples, 0.32%)</title><rect x="1065.6" y="645" width="4.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1068.55" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="196.5" y="565" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="199.53" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="937.4" y="741" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="940.37" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="859.6" y="453" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="862.57" y="463.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (30,303,030 samples, 0.19%)</title><rect x="975.4" y="565" width="2.6" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="978.38" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="193.9" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="196.88" y="575.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="645" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1364.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="629" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1017.28" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="833.9" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="836.93" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1382.39" y="831.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="989.5" y="613" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="992.53" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fname_from_fscrypt_name (10,101,010 samples, 0.06%)</title><rect x="621.8" y="613" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="624.76" y="623.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="1260.0" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1263.04" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="535.1" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="538.12" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="754.4" y="661" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="757.37" y="671.5" ></text>
+</g>
+<g >
+<title>mutex_lock (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="725" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1368.25" y="735.5" ></text>
+</g>
+<g >
+<title>net_send_part (30,303,030 samples, 0.19%)</title><rect x="11.8" y="917" width="2.6" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="14.77" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="560.8" y="789" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.76" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="871.1" y="709" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="874.06" y="719.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.38%)</title><rect x="1133.6" y="565" width="5.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1136.63" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="902.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="905.89" y="687.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="1364.4" y="917" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1367.36" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="805.6" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="808.64" y="591.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1039.9" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1042.92" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="630.6" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="633.60" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1159.3" y="645" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1162.26" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="27.7" y="901" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="30.68" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (20,202,020 samples, 0.13%)</title><rect x="550.2" y="709" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="553.15" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (181,818,180 samples, 1.15%)</title><rect x="617.3" y="741" width="16.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="620.34" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (60,606,060 samples, 0.38%)</title><rect x="1064.7" y="693" width="5.3" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1067.67" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="409.6" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="412.59" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="795.9" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="798.92" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="450.3" y="597" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="453.26" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (30,303,030 samples, 0.19%)</title><rect x="538.7" y="629" width="2.6" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="541.66" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="840.1" y="757" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="843.12" y="767.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.06%)</title><rect x="901.1" y="613" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="904.12" y="623.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="179.7" y="517" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="182.74" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="341" width="1.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1360.29" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (20,202,020 samples, 0.13%)</title><rect x="142.6" y="789" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="145.61" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="70.1" y="837" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="73.12" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="696.0" y="421" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="699.02" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="530.7" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="533.70" y="831.5" ></text>
+</g>
+<g >
+<title>dput (40,404,040 samples, 0.26%)</title><rect x="1027.5" y="661" width="3.6" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1030.54" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1081.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1084.47" y="719.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="957.7" y="469" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="960.70" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1247.13" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1178.7" y="661" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1181.71" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="991.3" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="994.29" y="639.5" ></text>
+</g>
+<g >
+<title>anon_inode_getfile (10,101,010 samples, 0.06%)</title><rect x="59.5" y="805" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="62.51" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="413.1" y="773" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="416.13" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="565" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1195.86" y="575.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="565.2" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="568.18" y="639.5" ></text>
+</g>
+<g >
+<title>net_connect (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="949" width="5.3" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1387.70" y="959.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="533" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1061.48" y="543.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.32%)</title><rect x="814.5" y="741" width="4.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="817.48" y="751.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (10,101,010 samples, 0.06%)</title><rect x="29.4" y="837" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="32.45" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="595.2" y="581" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="598.24" y="591.5" ></text>
+</g>
+<g >
+<title>__pte_alloc (30,303,030 samples, 0.19%)</title><rect x="1302.5" y="677" width="2.6" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1305.48" y="687.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="1329.9" y="853" width="1.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1332.88" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="994.8" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="997.83" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="323.0" y="773" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="325.95" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (393,939,390 samples, 2.50%)</title><rect x="1105.3" y="821" width="34.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1108.34" y="831.5" >gi..</text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="1116.8" y="725" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1119.83" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (858,585,850 samples, 5.45%)</title><rect x="76.3" y="1013" width="75.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="79.30" y="1023.5" >[libgit2..</text>
+</g>
+<g >
+<title>ext4_create (30,303,030 samples, 0.19%)</title><rect x="997.5" y="677" width="2.6" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1000.48" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1260.0" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1263.04" y="703.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="747.3" y="549" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="750.30" y="559.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (20,202,020 samples, 0.13%)</title><rect x="519.2" y="565" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="522.21" y="575.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="401.6" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="404.63" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="216.9" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="219.87" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (616,161,610 samples, 3.91%)</title><rect x="262.8" y="661" width="54.0" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="265.84" y="671.5" >vfs_r..</text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="661" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1116.29" y="671.5" ></text>
+</g>
+<g >
+<title>mas_store_b_node (10,101,010 samples, 0.06%)</title><rect x="1311.3" y="661" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1314.32" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.02%)</title><rect x="1255.6" y="789" width="14.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1258.62" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="306.2" y="517" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="309.16" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="939.1" y="661" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="942.14" y="671.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="711.1" y="581" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="714.05" y="591.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="405" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1011.09" y="415.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="371.6" y="517" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="374.58" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="214.2" y="533" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="217.22" y="543.5" ></text>
+</g>
+<g >
+<title>__sk_free (20,202,020 samples, 0.13%)</title><rect x="53.3" y="629" width="1.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="56.32" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1184.9" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1187.90" y="799.5" ></text>
+</g>
+<g >
+<title>mb_set_bits (10,101,010 samples, 0.06%)</title><rect x="599.7" y="517" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="602.66" y="527.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="789" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1346.15" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1086.24" y="655.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="919.7" y="341" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="922.69" y="351.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="941.8" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="944.79" y="735.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (30,303,030 samples, 0.19%)</title><rect x="1227.3" y="821" width="2.7" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1230.34" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="66.6" y="901" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="69.58" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="208.0" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="211.03" y="591.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit_common (10,101,010 samples, 0.06%)</title><rect x="685.4" y="485" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="688.41" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1009.0" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1011.98" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="202.7" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="205.72" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="932.9" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="935.95" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="626.2" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="629.18" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="464.4" y="533" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="467.40" y="543.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="453" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1034.96" y="463.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_recv (60,606,060 samples, 0.38%)</title><rect x="1371.4" y="901" width="5.3" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1374.43" y="911.5" ></text>
+</g>
+<g >
+<title>sd_setup_read_write_cmnd (10,101,010 samples, 0.06%)</title><rect x="859.6" y="277" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="862.57" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.19%)</title><rect x="375.1" y="597" width="2.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="378.11" y="607.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="533" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1360.29" y="543.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="941.8" y="645" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="944.79" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="445.0" y="805" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="447.95" y="815.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="850.7" y="677" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="853.73" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="860.5" y="501" width="1.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="863.45" y="511.5" ></text>
+</g>
+<g >
+<title>copy_present_pte (10,101,010 samples, 0.06%)</title><rect x="1305.1" y="677" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1308.13" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (30,303,030 samples, 0.19%)</title><rect x="11.8" y="741" width="2.6" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="14.77" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (80,808,080 samples, 0.51%)</title><rect x="690.7" y="581" width="7.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="693.72" y="591.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (70,707,070 samples, 0.45%)</title><rect x="779.1" y="725" width="6.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="782.12" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_link (90,909,090 samples, 0.58%)</title><rect x="624.4" y="693" width="8.0" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="627.41" y="703.5" ></text>
+</g>
+<g >
+<title>mm_init (20,202,020 samples, 0.13%)</title><rect x="1327.2" y="741" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1330.23" y="751.5" ></text>
+</g>
+<g >
+<title>stat64 (10,101,010 samples, 0.06%)</title><rect x="993.1" y="693" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="996.06" y="703.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1268.0" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1271.00" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1330.8" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1333.77" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="1060.2" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1063.25" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="79.8" y="837" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="82.84" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1343.49" y="879.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="504.2" y="533" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="507.18" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (10,101,010 samples, 0.06%)</title><rect x="100.2" y="821" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="103.17" y="831.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (60,606,060 samples, 0.38%)</title><rect x="536.0" y="805" width="5.3" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="539.01" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="834.8" y="773" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="837.82" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="372.5" y="581" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="375.46" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="869" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1340.84" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="443.2" y="885" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="446.18" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1032.8" y="389" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1035.84" y="399.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="498.9" y="725" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="501.88" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="825.1" y="709" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="828.09" y="719.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="978.0" y="565" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="981.03" y="575.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (30,303,030 samples, 0.19%)</title><rect x="1075.3" y="661" width="2.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1078.28" y="671.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (40,404,040 samples, 0.26%)</title><rect x="1094.7" y="549" width="3.6" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1097.73" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="87.8" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="90.80" y="751.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (30,303,030 samples, 0.19%)</title><rect x="452.0" y="581" width="2.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="455.02" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="245.2" y="757" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="248.16" y="767.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="327.4" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="330.37" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="410.5" y="629" width="1.7" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="413.47" y="639.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.06%)</title><rect x="197.4" y="597" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="200.42" y="607.5" ></text>
+</g>
+<g >
+<title>libjson_free (10,101,010 samples, 0.06%)</title><rect x="10.9" y="965" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="13.88" y="975.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.06%)</title><rect x="312.3" y="485" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="315.34" y="495.5" ></text>
+</g>
+<g >
+<title>server_assign_run (111,111,110 samples, 0.70%)</title><rect x="10.0" y="997" width="9.7" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="13.00" y="1007.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="827.7" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="830.75" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="826.0" y="645" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="828.98" y="655.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="373" width="1.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1360.29" y="383.5" ></text>
+</g>
+<g >
+<title>storvsc_on_io_completion (10,101,010 samples, 0.06%)</title><rect x="565.2" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="568.18" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="207.1" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="210.14" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="711.9" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="714.93" y="687.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="853.4" y="677" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="856.38" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="1264.5" y="757" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1267.47" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="141.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="144.72" y="735.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="452.0" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="455.02" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="858.7" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="861.69" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1262.7" y="629" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1265.70" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="788.8" y="533" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="791.85" y="543.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (40,404,040 samples, 0.26%)</title><rect x="241.6" y="725" width="3.6" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="244.62" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="447.6" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="450.60" y="703.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="693" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1253.32" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="935.6" y="773" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="938.60" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="666.8" y="517" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="669.85" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="1238.8" y="613" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1241.83" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (151,515,150 samples, 0.96%)</title><rect x="673.0" y="581" width="13.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="676.04" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="757" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1190.55" y="767.5" ></text>
+</g>
+<g >
+<title>server_main_thread (161,616,160 samples, 1.02%)</title><rect x="10.0" y="1013" width="14.1" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="13.00" y="1023.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="751.7" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="754.72" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="887.0" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="889.98" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="711.9" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="714.93" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="535.1" y="837" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="538.12" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="696.0" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="699.02" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1092.1" y="485" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1095.08" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="446.7" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="449.72" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1142.5" y="693" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1145.47" y="703.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="767.6" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="770.63" y="559.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="693" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1199.39" y="703.5" ></text>
+</g>
+<g >
+<title>link (191,919,190 samples, 1.22%)</title><rect x="616.5" y="773" width="16.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="619.46" y="783.5" ></text>
+</g>
+<g >
+<title>__sock_release (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="757" width="0.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1356.75" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="661" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1195.86" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="795.9" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="798.92" y="719.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="566.1" y="629" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="569.07" y="639.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (40,404,040 samples, 0.26%)</title><rect x="241.6" y="693" width="3.6" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="244.62" y="703.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="170.0" y="885" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="173.01" y="895.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="465.3" y="533" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="468.29" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_page (10,101,010 samples, 0.06%)</title><rect x="467.1" y="517" width="0.8" height="15.0" fill="rgb(0,213,96)" rx="2" ry="2" />
+<text x="470.05" y="527.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (20,202,020 samples, 0.13%)</title><rect x="648.3" y="645" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="651.28" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="836.6" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="839.59" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="342.4" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="345.40" y="607.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="798.6" y="613" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="801.57" y="623.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="421" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1107.45" y="431.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="789" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1340.84" y="799.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="460.0" y="709" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="462.98" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="84.3" y="741" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="87.26" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1263.6" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1266.58" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_rename (60,606,060 samples, 0.38%)</title><rect x="858.7" y="693" width="5.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="861.69" y="703.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="958.6" y="533" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="961.58" y="543.5" ></text>
+</g>
+<g >
+<title>find_vma (10,101,010 samples, 0.06%)</title><rect x="76.3" y="837" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="79.30" y="847.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="837" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1274.54" y="847.5" ></text>
+</g>
+<g >
+<title>__inet_lookup_established (10,101,010 samples, 0.06%)</title><rect x="12.7" y="373" width="0.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="15.65" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="665.1" y="629" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="668.08" y="639.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (30,303,030 samples, 0.19%)</title><rect x="993.9" y="821" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="996.95" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="1215.0" y="645" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1217.96" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="797.7" y="645" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.69" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="421" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1306.36" y="431.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="325" width="0.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1140.16" y="335.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="158.5" y="645" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="161.52" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="799.5" y="501" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="802.46" y="511.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="1010.7" y="693" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1013.74" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="719.9" y="501" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="722.89" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (50,505,050 samples, 0.32%)</title><rect x="71.0" y="805" width="4.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="74.00" y="815.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="724.3" y="581" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="727.31" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.06%)</title><rect x="909.1" y="581" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="912.08" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="528.9" y="661" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="531.94" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="526.3" y="677" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="529.28" y="687.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.19%)</title><rect x="553.7" y="757" width="2.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="556.69" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1260.9" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1263.93" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_init_dot_dotdot (10,101,010 samples, 0.06%)</title><rect x="972.7" y="565" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="975.73" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (40,404,040 samples, 0.26%)</title><rect x="1349.3" y="741" width="3.6" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1352.33" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="18.8" y="373" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="21.84" y="383.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1338.7" y="757" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1341.73" y="767.5" ></text>
+</g>
+<g >
+<title>path_openat (90,909,090 samples, 0.58%)</title><rect x="507.7" y="725" width="8.0" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="510.72" y="735.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="902.0" y="629" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="905.01" y="639.5" ></text>
+</g>
+<g >
+<title>mempool_free (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="645" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1274.54" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="471.5" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="474.47" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (50,505,050 samples, 0.32%)</title><rect x="678.3" y="517" width="4.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="681.34" y="527.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.38%)</title><rect x="463.5" y="613" width="5.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="466.52" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="674.8" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="677.80" y="479.5" ></text>
+</g>
+<g >
+<title>end_page_writeback (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="405" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="1209.12" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="196.5" y="549" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="199.53" y="559.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="527.2" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="530.17" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="471.5" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="474.47" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="158.5" y="869" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="161.52" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (30,303,030 samples, 0.19%)</title><rect x="295.5" y="581" width="2.7" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="298.55" y="591.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="667.7" y="645" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="670.73" y="655.5" ></text>
+</g>
+<g >
+<title>copy_process (454,545,450 samples, 2.88%)</title><rect x="1290.1" y="773" width="39.8" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="1293.10" y="783.5" >cop..</text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="11.8" y="485" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="14.77" y="495.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.19%)</title><rect x="1237.9" y="741" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1240.94" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (40,404,040 samples, 0.26%)</title><rect x="1147.8" y="693" width="3.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1150.77" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1138.9" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1141.93" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="345.9" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="348.94" y="783.5" ></text>
+</g>
+<g >
+<title>prepare_creds (30,303,030 samples, 0.19%)</title><rect x="922.3" y="645" width="2.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="925.34" y="655.5" ></text>
+</g>
+<g >
+<title>_start (505,050,500 samples, 3.20%)</title><rect x="31.2" y="1045" width="44.2" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="34.22" y="1055.5" >_start</text>
+</g>
+<g >
+<title>pagecache_get_page (20,202,020 samples, 0.13%)</title><rect x="665.1" y="549" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="668.08" y="559.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1352.9" y="661" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1355.87" y="671.5" ></text>
+</g>
+<g >
+<title>do_open (30,303,030 samples, 0.19%)</title><rect x="100.2" y="885" width="2.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="103.17" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.58%)</title><rect x="1356.4" y="901" width="8.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1359.41" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="82.5" y="853" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="85.49" y="863.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (101,010,100 samples, 0.64%)</title><rect x="43.6" y="613" width="8.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="46.59" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="178.0" y="629" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="180.97" y="639.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="203.6" y="565" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="206.61" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="406.9" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="409.94" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="184.2" y="469" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="187.16" y="479.5" ></text>
+</g>
+<g >
+<title>sd_init_command (10,101,010 samples, 0.06%)</title><rect x="859.6" y="293" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="862.57" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_setattr (20,202,020 samples, 0.13%)</title><rect x="1009.0" y="677" width="1.7" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1011.98" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="458.2" y="645" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="461.21" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="643.0" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="645.98" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_file (20,202,020 samples, 0.13%)</title><rect x="553.7" y="629" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="556.69" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="709" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1010.21" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (60,606,060 samples, 0.38%)</title><rect x="759.7" y="613" width="5.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="762.67" y="623.5" ></text>
+</g>
+<g >
+<title>worker_get_run (242,424,240 samples, 1.54%)</title><rect x="1368.8" y="965" width="21.2" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1371.78" y="975.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="685.4" y="421" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="688.41" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (40,404,040 samples, 0.26%)</title><rect x="859.6" y="645" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="862.57" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_discard_preallocations (10,101,010 samples, 0.06%)</title><rect x="185.0" y="517" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="188.04" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="227.5" y="693" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="230.48" y="703.5" ></text>
+</g>
+<g >
+<title>event_loop_remove (10,101,010 samples, 0.06%)</title><rect x="55.1" y="933" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="58.09" y="943.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="1279.5" y="693" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1282.49" y="703.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.06%)</title><rect x="1108.9" y="645" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1111.87" y="655.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.06%)</title><rect x="944.4" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="947.44" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1075.3" y="581" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1078.28" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="410.5" y="613" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="413.47" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="367.2" y="565" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="370.16" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1001.9" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1004.90" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="76.3" y="949" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="79.30" y="959.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="711.1" y="629" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="714.05" y="639.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1114.2" y="741" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1117.18" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.19%)</title><rect x="216.0" y="565" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="218.98" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="190.3" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="193.35" y="719.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="638.6" y="693" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="641.56" y="703.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1379.74" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="629" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1022.58" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1041.7" y="565" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1044.68" y="575.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="906.4" y="693" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="909.43" y="703.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="485" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1075.63" y="495.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1209.12" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (30,303,030 samples, 0.19%)</title><rect x="1032.0" y="613" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1034.96" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="941.8" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="944.79" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="921.5" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="924.45" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (101,010,100 samples, 0.64%)</title><rect x="348.6" y="741" width="8.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="351.59" y="751.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1126.6" y="421" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1129.55" y="431.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1027.89" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="84.3" y="821" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="87.26" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="241.6" y="757" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="244.62" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="405" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1114.52" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.96%)</title><rect x="1230.9" y="773" width="13.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1233.87" y="783.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="158.5" y="725" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="161.52" y="735.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.19%)</title><rect x="903.8" y="693" width="2.6" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="906.77" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="290.2" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="293.24" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="771.2" y="597" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="774.17" y="607.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.13%)</title><rect x="344.2" y="709" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="347.17" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="744.6" y="661" width="4.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="747.64" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.06%)</title><rect x="916.1" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="919.15" y="623.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="421" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1086.24" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="789.7" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="792.73" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="739.3" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="742.34" y="783.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="1361.7" y="741" width="2.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1364.71" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (40,404,040 samples, 0.26%)</title><rect x="252.2" y="645" width="3.6" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="255.23" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="117.9" y="789" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="120.85" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1017.28" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1263.6" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1266.58" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="254.9" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="257.88" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="999.3" y="549" width="0.8" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1002.25" y="559.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="167.4" y="789" width="0.8" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="170.36" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="78.1" y="885" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="81.07" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="757.9" y="645" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="760.91" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1057.95" y="655.5" ></text>
+</g>
+<g >
+<title>map_id_range_down (10,101,010 samples, 0.06%)</title><rect x="1188.4" y="677" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1191.44" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="631.5" y="613" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="634.49" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (30,303,030 samples, 0.19%)</title><rect x="334.4" y="629" width="2.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="337.45" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="412.2" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="415.24" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (90,909,090 samples, 0.58%)</title><rect x="507.7" y="773" width="8.0" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="510.72" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="720.8" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="723.78" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="412.2" y="773" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="415.24" y="783.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (13,929,292,790 samples, 88.34%)</title><rect x="170.9" y="1029" width="1219.1" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="173.90" y="1039.5" >__libc_start_main</text>
+</g>
+<g >
+<title>crc_69 (10,101,010 samples, 0.06%)</title><rect x="209.8" y="549" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="212.80" y="559.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="574.0" y="709" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="577.02" y="719.5" ></text>
+</g>
+<g >
+<title>task_work_run (40,404,040 samples, 0.26%)</title><rect x="241.6" y="677" width="3.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="244.62" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="485" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1112.76" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="414.0" y="773" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="417.01" y="783.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="677" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1327.58" y="687.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (20,202,020 samples, 0.13%)</title><rect x="1303.4" y="613" width="1.7" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1306.36" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (30,303,030 samples, 0.19%)</title><rect x="237.2" y="565" width="2.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="240.20" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="870.2" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="873.18" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="429.9" y="805" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="432.92" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (141,414,140 samples, 0.90%)</title><rect x="1204.3" y="789" width="12.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1207.35" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="1258.3" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1261.28" y="655.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="336.2" y="581" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="339.21" y="591.5" ></text>
+</g>
+<g >
+<title>perf_event_init_task (10,101,010 samples, 0.06%)</title><rect x="1329.0" y="757" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1332.00" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="497.1" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="500.11" y="735.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.13%)</title><rect x="455.6" y="661" width="1.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="458.56" y="671.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="254.9" y="565" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="257.88" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.90%)</title><rect x="753.5" y="757" width="12.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="756.48" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (131,313,130 samples, 0.83%)</title><rect x="1167.2" y="613" width="11.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1170.22" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="717.2" y="629" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="720.24" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1167.2" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1170.22" y="479.5" ></text>
+</g>
+<g >
+<title>write (80,808,080 samples, 0.51%)</title><rect x="515.7" y="773" width="7.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="518.68" y="783.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.13%)</title><rect x="1085.9" y="549" width="1.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1088.89" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="207.1" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="210.14" y="559.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="889.6" y="613" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="892.63" y="623.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.13%)</title><rect x="466.2" y="565" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="469.17" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1004.6" y="789" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1007.55" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="945.3" y="693" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="948.32" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="158.5" y="885" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="161.52" y="895.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="485" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="1100.38" y="495.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="1187.6" y="805" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1190.55" y="815.5" ></text>
+</g>
+<g >
+<title>inode_wait_for_writeback (10,101,010 samples, 0.06%)</title><rect x="857.8" y="613" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="860.80" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="889.6" y="629" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="892.63" y="639.5" ></text>
+</g>
+<g >
+<title>from_kuid_munged (10,101,010 samples, 0.06%)</title><rect x="576.7" y="661" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="579.68" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (181,818,180 samples, 1.15%)</title><rect x="865.8" y="837" width="15.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="868.76" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_rename (70,707,070 samples, 0.45%)</title><rect x="1031.1" y="661" width="6.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1034.08" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (474,747,470 samples, 3.01%)</title><rect x="1140.7" y="789" width="41.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1143.70" y="799.5" >do_..</text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="140.0" y="757" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="142.96" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1358.52" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="1126.6" y="453" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1129.55" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="575.8" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="578.79" y="735.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1249.4" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1252.44" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="872.8" y="597" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="875.83" y="607.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1114.52" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="472.4" y="789" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="475.36" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (343,434,340 samples, 2.18%)</title><rect x="671.3" y="709" width="30.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="674.27" y="719.5" >__..</text>
+</g>
+<g >
+<title>__d_lookup (10,101,010 samples, 0.06%)</title><rect x="107.2" y="837" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="110.25" y="847.5" ></text>
+</g>
+<g >
+<title>remove (212,121,210 samples, 1.35%)</title><rect x="203.6" y="725" width="18.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="206.61" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v4_conn_request (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="389" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1389.46" y="399.5" ></text>
+</g>
+<g >
+<title>tcp_close (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="725" width="0.8" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1356.75" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="466.2" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="469.17" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="92.2" y="901" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="95.22" y="911.5" ></text>
+</g>
+<g >
+<title>sock_close (141,414,140 samples, 0.90%)</title><rect x="42.7" y="725" width="12.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="45.71" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.83%)</title><rect x="742.0" y="805" width="11.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="815.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="254.9" y="485" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="257.88" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="460.9" y="613" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="463.86" y="623.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="629" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1391.23" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="1131.0" y="469" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1133.97" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="802.1" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="805.11" y="559.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="851.6" y="677" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="854.61" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.06%)</title><rect x="1236.2" y="661" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1239.18" y="671.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="460.0" y="693" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="462.98" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="1273.3" y="725" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1276.31" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_create (80,808,080 samples, 0.51%)</title><rect x="1047.9" y="661" width="7.0" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1050.87" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="135.5" y="741" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="138.53" y="751.5" ></text>
+</g>
+<g >
+<title>git_branch_upstream_remote (40,404,040 samples, 0.26%)</title><rect x="948.0" y="821" width="3.5" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="950.98" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1338.7" y="741" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1341.73" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="341" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1104.80" y="351.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1078.8" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1081.81" y="783.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.06%)</title><rect x="1278.6" y="693" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1281.61" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="645" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1387.70" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (80,808,080 samples, 0.51%)</title><rect x="405.2" y="677" width="7.0" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="408.17" y="687.5" ></text>
+</g>
+<g >
+<title>schedule (40,404,040 samples, 0.26%)</title><rect x="20.6" y="837" width="3.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="23.61" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="460.0" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="462.98" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="799.5" y="533" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="802.46" y="543.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="887.0" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="889.98" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="936.5" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="939.48" y="719.5" ></text>
+</g>
+<g >
+<title>__fput (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="789" width="4.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1383.28" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (60,606,060 samples, 0.38%)</title><rect x="381.3" y="821" width="5.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="384.30" y="831.5" ></text>
+</g>
+<g >
+<title>sg_free_table_chained (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="693" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1274.54" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1037.3" y="725" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1040.26" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="560.8" y="773" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.76" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="741" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1274.54" y="751.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="565" width="3.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1384.16" y="575.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="197.4" y="741" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="200.42" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="479.4" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="482.43" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.96%)</title><rect x="79.0" y="949" width="13.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="81.96" y="959.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="778.2" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="781.24" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_accept4 (20,202,020 samples, 0.13%)</title><rect x="61.3" y="837" width="1.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="64.27" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="873.7" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="876.72" y="463.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="120.5" y="693" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="123.51" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="953.3" y="629" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="956.28" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="506.8" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="509.84" y="815.5" ></text>
+</g>
+<g >
+<title>__hv_pkt_iter_next (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="293" width="0.9" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="1114.52" y="303.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="597" width="0.8" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1190.55" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="706.6" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="709.63" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="574.0" y="693" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="577.02" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.58%)</title><rect x="1123.9" y="581" width="8.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1126.90" y="591.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="430.8" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="433.81" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="137.3" y="805" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="140.30" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="757" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1387.70" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 1.67%)</title><rect x="1082.4" y="773" width="22.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1085.35" y="783.5" >[..</text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1228.2" y="693" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1231.22" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="517" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1209.12" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.13%)</title><rect x="1282.1" y="661" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1285.15" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1201.7" y="741" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1204.70" y="751.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="661" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1092.42" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="1255.6" y="725" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1258.62" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="305.3" y="565" width="1.7" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="308.27" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="794.2" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="797.15" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.26%)</title><rect x="1386.5" y="725" width="3.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1389.46" y="735.5" ></text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="1350.2" y="613" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1353.22" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="919.7" y="517" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="922.69" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (141,414,140 samples, 0.90%)</title><rect x="802.1" y="693" width="12.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="805.11" y="703.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.13%)</title><rect x="617.3" y="693" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="620.34" y="703.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.06%)</title><rect x="609.4" y="645" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="612.39" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_bios_map_sg (10,101,010 samples, 0.06%)</title><rect x="859.6" y="229" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="862.57" y="239.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (40,404,040 samples, 0.26%)</title><rect x="1147.8" y="661" width="3.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1150.77" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="442.3" y="741" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="445.30" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="469" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1104.80" y="479.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.06%)</title><rect x="10.0" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="13.00" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="919.7" y="309" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="922.69" y="319.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1220.61" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="871.9" y="725" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="874.95" y="735.5" ></text>
+</g>
+<g >
+<title>cgroup_get_e_css (10,101,010 samples, 0.06%)</title><rect x="1282.1" y="597" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1285.15" y="607.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="967.4" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="970.42" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="948.9" y="661" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="951.86" y="671.5" ></text>
+</g>
+<g >
+<title>worker_main (13,929,292,790 samples, 88.34%)</title><rect x="170.9" y="981" width="1219.1" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" />
+<text x="173.90" y="991.5" >worker_main</text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="769.4" y="565" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="772.40" y="575.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="629" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1356.75" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="289.4" y="533" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="292.36" y="543.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="670.4" y="629" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="673.38" y="639.5" ></text>
+</g>
+<g >
+<title>bio_alloc_bioset (10,101,010 samples, 0.06%)</title><rect x="467.1" y="501" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="470.05" y="511.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.13%)</title><rect x="1012.5" y="709" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1015.51" y="719.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="1120.4" y="565" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1123.37" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="506.8" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="509.84" y="735.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.06%)</title><rect x="1304.2" y="597" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1307.25" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="849.0" y="581" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="851.96" y="591.5" ></text>
+</g>
+<g >
+<title>git_repository_free (20,202,020 samples, 0.13%)</title><rect x="171.8" y="901" width="1.7" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="174.78" y="911.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="741.1" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="744.11" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="332.7" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="335.68" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="788.8" y="565" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="791.85" y="575.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.06%)</title><rect x="669.5" y="453" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="672.50" y="463.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="533" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1379.74" y="543.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="550.2" y="677" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="553.15" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="86.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="89.03" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1241.5" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1244.48" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="64.8" y="869" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="67.81" y="879.5" ></text>
+</g>
+<g >
+<title>net_close (161,616,160 samples, 1.02%)</title><rect x="40.9" y="901" width="14.2" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="43.94" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="187.7" y="453" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="190.69" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="445.0" y="773" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="447.95" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="816.3" y="549" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="819.25" y="559.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="122.3" y="789" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="125.27" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="893.2" y="549" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="896.16" y="559.5" ></text>
+</g>
+<g >
+<title>request_create_finished_run (30,303,030 samples, 0.19%)</title><rect x="1366.1" y="949" width="2.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1369.13" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (404,040,400 samples, 2.56%)</title><rect x="573.1" y="773" width="35.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="576.14" y="783.5" >[l..</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="340.6" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="343.63" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1273.3" y="693" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1276.31" y="703.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.06%)</title><rect x="1012.5" y="645" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1015.51" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="181" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1100.38" y="191.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="853" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1274.54" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="76.3" y="965" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="79.30" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (80,808,080 samples, 0.51%)</title><rect x="204.5" y="613" width="7.1" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="207.49" y="623.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="1127.4" y="437" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1130.44" y="447.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (191,919,190 samples, 1.22%)</title><rect x="671.3" y="645" width="16.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="674.27" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.06%)</title><rect x="143.5" y="773" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="146.49" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="503.3" y="597" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="506.30" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (40,404,040 samples, 0.26%)</title><rect x="482.1" y="709" width="3.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="485.08" y="719.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="437.0" y="885" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="440.00" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1199.39" y="735.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="421" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1039.38" y="431.5" ></text>
+</g>
+<g >
+<title>setattr_prepare (10,101,010 samples, 0.06%)</title><rect x="1009.9" y="661" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1012.86" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="559.0" y="789" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="561.99" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="833.9" y="693" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="836.93" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (80,808,080 samples, 0.51%)</title><rect x="307.0" y="533" width="7.1" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="310.04" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="821" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1379.74" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="1060.2" y="661" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1063.25" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="384.0" y="677" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="386.95" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="975.4" y="629" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="978.38" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="885.2" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="888.21" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="967.4" y="437" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="970.42" y="447.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="208.0" y="533" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="211.03" y="543.5" ></text>
+</g>
+<g >
+<title>sock_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="62.2" y="741" width="0.8" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="65.16" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="848.1" y="645" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="851.08" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="469.7" y="629" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="472.71" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="955.0" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="958.05" y="623.5" ></text>
+</g>
+<g >
+<title>__f_unlock_pos (10,101,010 samples, 0.06%)</title><rect x="1235.3" y="661" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="1238.29" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="932.9" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="935.95" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (90,909,090 samples, 0.58%)</title><rect x="650.1" y="725" width="7.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="653.05" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="912.6" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="915.61" y="719.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="919.7" y="677" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="922.69" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="551.9" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="554.92" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="547.5" y="629" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="550.50" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.45%)</title><rect x="418.4" y="773" width="6.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="421.43" y="783.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.06%)</title><rect x="1352.9" y="725" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1355.87" y="735.5" ></text>
+</g>
+<g >
+<title>page_counter_cancel (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="453" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1301.94" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="992.2" y="581" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="995.18" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="930.3" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="933.29" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="316.8" y="709" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="319.76" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1222.0" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1225.03" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (222,222,220 samples, 1.41%)</title><rect x="265.5" y="645" width="19.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="268.49" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="943.6" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="946.56" y="767.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="798.6" y="533" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="801.57" y="543.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1248.6" y="773" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1251.55" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="905.5" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="908.54" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="250.5" y="565" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="253.46" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="227.5" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="230.48" y="751.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.13%)</title><rect x="197.4" y="645" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="200.42" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1092.1" y="437" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1095.08" y="447.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="744.6" y="709" width="4.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="747.64" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="482.1" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="485.08" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="952.4" y="677" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="955.40" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="891.4" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="894.40" y="719.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1118.94" y="751.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="893.2" y="565" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="896.16" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="773" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1008.44" y="783.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="821" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1342.61" y="831.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="326.5" y="693" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="329.49" y="703.5" ></text>
+</g>
+<g >
+<title>__inode_attach_wb (10,101,010 samples, 0.06%)</title><rect x="1282.1" y="629" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1285.15" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,868,686,840 samples, 18.19%)</title><rect x="173.5" y="853" width="251.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="176.55" y="863.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="908.2" y="661" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="911.19" y="671.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="231.0" y="581" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="234.01" y="591.5" ></text>
+</g>
+<g >
+<title>copy_p4d_range (60,606,060 samples, 0.38%)</title><rect x="1301.6" y="709" width="5.3" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1304.60" y="719.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1253.32" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (50,505,050 samples, 0.32%)</title><rect x="744.6" y="629" width="4.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="747.64" y="639.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (10,101,010 samples, 0.06%)</title><rect x="1385.6" y="325" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1388.58" y="335.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="929.4" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="932.41" y="671.5" ></text>
+</g>
+<g >
+<title>__alloc_file (20,202,020 samples, 0.13%)</title><rect x="97.5" y="869" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="100.52" y="879.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.19%)</title><rect x="563.4" y="741" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="566.41" y="751.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (30,303,030 samples, 0.19%)</title><rect x="452.0" y="597" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="455.02" y="607.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="894.9" y="693" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="897.93" y="703.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (70,707,070 samples, 0.45%)</title><rect x="634.1" y="773" width="6.2" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="637.14" y="783.5" ></text>
+</g>
+<g >
+<title>git_oid_tostr (10,101,010 samples, 0.06%)</title><rect x="708.4" y="757" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="711.40" y="767.5" ></text>
+</g>
+<g >
+<title>xas_find (10,101,010 samples, 0.06%)</title><rect x="399.9" y="613" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="402.87" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (212,121,210 samples, 1.35%)</title><rect x="1121.2" y="741" width="18.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1124.25" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (191,919,190 samples, 1.22%)</title><rect x="616.5" y="757" width="16.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="619.46" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="365.4" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="368.39" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="381.3" y="805" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="384.30" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="904.7" y="549" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="907.66" y="559.5" ></text>
+</g>
+<g >
+<title>git_reference_iterator_new (191,919,190 samples, 1.22%)</title><rect x="895.8" y="789" width="16.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="898.82" y="799.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="577.6" y="741" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="580.56" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="531.6" y="789" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="534.59" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="1084.1" y="533" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1087.12" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1263.6" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1266.58" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="777.4" y="613" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="780.35" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="1258.3" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1261.28" y="671.5" ></text>
+</g>
+<g >
+<title>git_attr_cache_flush (10,101,010 samples, 0.06%)</title><rect x="172.7" y="869" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="175.66" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="795.9" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="798.92" y="735.5" ></text>
+</g>
+<g >
+<title>sock_close (10,101,010 samples, 0.06%)</title><rect x="18.8" y="789" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="21.84" y="799.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="613" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1391.23" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="503.3" y="661" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="506.30" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="674.8" y="485" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="677.80" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (20,202,020 samples, 0.13%)</title><rect x="914.4" y="693" width="1.7" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="917.38" y="703.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="613" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1389.46" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (30,303,030 samples, 0.19%)</title><rect x="11.8" y="853" width="2.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="14.77" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="863.1" y="645" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="866.11" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="866.6" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="869.64" y="767.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="453" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1011.09" y="463.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (10,101,010 samples, 0.06%)</title><rect x="666.0" y="421" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="668.96" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="1236.2" y="613" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1239.18" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (10,101,010 samples, 0.06%)</title><rect x="117.0" y="821" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="119.97" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="620.9" y="613" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="623.88" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.19%)</title><rect x="222.2" y="693" width="2.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="225.17" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="18.8" y="309" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="21.84" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.06%)</title><rect x="232.8" y="613" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="235.78" y="623.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.06%)</title><rect x="218.6" y="597" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="221.64" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="338.9" y="597" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="341.87" y="607.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="485" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1011.09" y="495.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1222.9" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1225.91" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1136.3" y="389" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1139.28" y="399.5" ></text>
+</g>
+<g >
+<title>kernel_wait4 (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="789" width="0.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="1339.96" y="799.5" ></text>
+</g>
+<g >
+<title>rename (212,121,210 samples, 1.35%)</title><rect x="1121.2" y="757" width="18.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1124.25" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="791.5" y="533" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="794.50" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="856.9" y="485" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="859.92" y="495.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.19%)</title><rect x="802.1" y="581" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="805.11" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="482.1" y="725" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="485.08" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.92%)</title><rect x="445.8" y="837" width="26.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.84" y="847.5" >[..</text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="79.8" y="805" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="82.84" y="815.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="853" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1273.65" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="265.5" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="268.49" y="591.5" ></text>
+</g>
+<g >
+<title>__blk_mq_alloc_requests (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="389" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1034.96" y="399.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="517" width="0.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1195.86" y="527.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="581" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1356.75" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="595.2" y="597" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="598.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="434.3" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="437.34" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.06%)</title><rect x="306.2" y="533" width="0.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="309.16" y="543.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="491.8" y="661" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="494.81" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="1005.4" y="805" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1008.44" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="222.2" y="629" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="225.17" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="453" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1026.12" y="463.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="943.6" y="789" width="0.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="946.56" y="799.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="837.5" y="741" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="840.47" y="751.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (40,404,040 samples, 0.26%)</title><rect x="20.6" y="805" width="3.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="23.61" y="815.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (50,505,050 samples, 0.32%)</title><rect x="71.0" y="741" width="4.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="74.00" y="751.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="782.7" y="645" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="785.66" y="655.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (50,505,050 samples, 0.32%)</title><rect x="424.6" y="757" width="4.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="427.62" y="767.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="889.6" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="892.63" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="1118.6" y="645" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1121.60" y="655.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="226.6" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="229.59" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="18.8" y="325" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="21.84" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="362.7" y="629" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="365.74" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="432.6" y="709" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="435.58" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="732.3" y="645" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="735.27" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1062.9" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1065.90" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="408.7" y="613" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="411.71" y="623.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_event (80,808,080 samples, 0.51%)</title><rect x="1369.7" y="933" width="7.0" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1372.67" y="943.5" ></text>
+</g>
+<g >
+<title>inode_io_list_move_locked (10,101,010 samples, 0.06%)</title><rect x="849.8" y="533" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="852.85" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="293.8" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="296.78" y="559.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="815.4" y="517" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="818.37" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="955.9" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="958.93" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="795.9" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="798.92" y="655.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="501" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1306.36" y="511.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="460.9" y="533" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="463.86" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.19%)</title><rect x="927.6" y="757" width="2.7" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="930.64" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (90,909,090 samples, 0.58%)</title><rect x="650.1" y="757" width="7.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="653.05" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="11.8" y="885" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="14.77" y="895.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="581" width="1.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1024.35" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="675.7" y="469" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="678.69" y="479.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="594.4" y="613" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="597.36" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="783.5" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="786.54" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.06%)</title><rect x="806.5" y="437" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="809.53" y="447.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.06%)</title><rect x="315.9" y="629" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="318.88" y="639.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (353,535,350 samples, 2.24%)</title><rect x="788.0" y="805" width="30.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="790.96" y="815.5" >gi..</text>
+</g>
+<g >
+<title>do_unlinkat (282,828,280 samples, 1.79%)</title><rect x="387.5" y="725" width="24.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="390.49" y="735.5" >d..</text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="674.8" y="533" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="677.80" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="932.1" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="935.06" y="767.5" ></text>
+</g>
+<g >
+<title>mas_wr_bnode (40,404,040 samples, 0.26%)</title><rect x="1308.7" y="677" width="3.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1311.67" y="687.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="128.5" y="725" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="131.46" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (434,343,430 samples, 2.75%)</title><rect x="1142.5" y="725" width="38.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1145.47" y="735.5" >ext..</text>
+</g>
+<g >
+<title>add_dirent_to_buf (80,808,080 samples, 0.51%)</title><rect x="138.2" y="805" width="7.1" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="141.19" y="815.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (10,101,010 samples, 0.06%)</title><rect x="669.5" y="421" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="672.50" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="528.1" y="741" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="531.05" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="1173.4" y="565" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1176.41" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="925.9" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="928.87" y="623.5" ></text>
+</g>
+<g >
+<title>set_page_writeback (10,101,010 samples, 0.06%)</title><rect x="879.0" y="469" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="882.02" y="479.5" ></text>
+</g>
+<g >
+<title>path_openat (575,757,570 samples, 3.65%)</title><rect x="97.5" y="901" width="50.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="100.52" y="911.5" >path_..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="943.6" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="946.56" y="783.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.06%)</title><rect x="1142.5" y="661" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1145.47" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="330.9" y="741" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="333.91" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="493.6" y="661" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="496.57" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1351.1" y="597" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1354.10" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (30,303,030 samples, 0.19%)</title><rect x="396.3" y="581" width="2.7" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="399.33" y="591.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="501" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1107.45" y="511.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.06%)</title><rect x="323.8" y="677" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="326.84" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="561.6" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="564.65" y="735.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="231.9" y="517" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="234.90" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1191.1" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1194.09" y="687.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="306.2" y="549" width="0.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="309.16" y="559.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="743.8" y="709" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="746.76" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (90,909,090 samples, 0.58%)</title><rect x="1070.9" y="741" width="7.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1073.86" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="964.8" y="565" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="967.77" y="575.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (90,909,090 samples, 0.58%)</title><rect x="689.8" y="597" width="8.0" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="692.83" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="848.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="851.08" y="719.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1228.2" y="533" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1231.22" y="543.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="414.0" y="693" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="417.01" y="703.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="1085.9" y="517" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1088.89" y="527.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="243.4" y="581" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="246.39" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="208.0" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="211.03" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="870.2" y="709" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="873.18" y="719.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (50,505,050 samples, 0.32%)</title><rect x="704.9" y="837" width="4.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="707.86" y="847.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="636.8" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="639.79" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_free_inodes_count (10,101,010 samples, 0.06%)</title><rect x="121.4" y="821" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="124.39" y="831.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="819.8" y="821" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="822.79" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="1028.4" y="565" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1031.42" y="575.5" ></text>
+</g>
+<g >
+<title>walk_component (40,404,040 samples, 0.26%)</title><rect x="1075.3" y="677" width="3.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1078.28" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="968.3" y="469" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="971.31" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="115.2" y="821" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="118.20" y="831.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="251.3" y="613" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="254.35" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="856.0" y="565" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="859.03" y="575.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1180.5" y="741" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1183.48" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.13%)</title><rect x="1155.7" y="677" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1158.73" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="757" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1368.25" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="192.1" y="677" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="195.11" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.09%)</title><rect x="1272.4" y="853" width="15.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1275.42" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="567.0" y="677" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="569.95" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="551.0" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="554.04" y="703.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="1069.1" y="629" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1072.09" y="639.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="795.0" y="581" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="798.04" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="327.4" y="757" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="330.37" y="767.5" ></text>
+</g>
+<g >
+<title>fscrypt_prepare_new_inode (10,101,010 samples, 0.06%)</title><rect x="1285.7" y="757" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="1288.68" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="222.2" y="741" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="225.17" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.26%)</title><rect x="1101.8" y="565" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1104.80" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="565" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1075.63" y="575.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="482.1" y="677" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="485.08" y="687.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="208.9" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="211.91" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (50,505,050 samples, 0.32%)</title><rect x="1212.3" y="693" width="4.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1215.31" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (202,020,200 samples, 1.28%)</title><rect x="956.8" y="613" width="17.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="959.82" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1092.1" y="421" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1095.08" y="431.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="133.8" y="773" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="136.77" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="63.9" y="837" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="66.93" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (10,101,010 samples, 0.06%)</title><rect x="971.0" y="453" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="973.96" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="522.7" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="525.75" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="194.8" y="581" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="197.77" y="591.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_internal (10,101,010 samples, 0.06%)</title><rect x="1370.6" y="901" width="0.8" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1373.55" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="773.8" y="645" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="776.82" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_event_new_data_sent (10,101,010 samples, 0.06%)</title><rect x="1377.6" y="677" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1380.62" y="687.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="318.5" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="321.53" y="655.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="501" width="1.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1389.46" y="511.5" ></text>
+</g>
+<g >
+<title>evict (191,919,190 samples, 1.22%)</title><rect x="387.5" y="693" width="16.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="390.49" y="703.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="291.1" y="533" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="294.13" y="543.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="903.8" y="517" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="906.77" y="527.5" ></text>
+</g>
+<g >
+<title>kmalloc_trace (10,101,010 samples, 0.06%)</title><rect x="60.4" y="805" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="63.39" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.06%)</title><rect x="947.1" y="613" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="950.09" y="623.5" ></text>
+</g>
+<g >
+<title>mpage_process_page_bufs (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="485" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1107.45" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="919.15" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="629" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1387.70" y="639.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="437" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1253.32" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="679.2" y="437" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="682.22" y="447.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.06%)</title><rect x="847.2" y="725" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="850.19" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (202,020,200 samples, 1.28%)</title><rect x="203.6" y="677" width="17.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="206.61" y="687.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="235.4" y="533" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="238.43" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1224.7" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1227.68" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (90,909,090 samples, 0.58%)</title><rect x="872.8" y="725" width="8.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="875.83" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="836.6" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="839.59" y="639.5" ></text>
+</g>
+<g >
+<title>do_rmdir (50,505,050 samples, 0.32%)</title><rect x="431.7" y="773" width="4.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="434.69" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="492.7" y="709" width="3.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="495.69" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="661" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1210.00" y="671.5" ></text>
+</g>
+<g >
+<title>do_filp_open (101,010,100 samples, 0.64%)</title><rect x="1046.1" y="725" width="8.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1049.11" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.02%)</title><rect x="933.8" y="805" width="14.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="936.83" y="815.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.06%)</title><rect x="517.4" y="533" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="520.44" y="543.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (10,101,010 samples, 0.06%)</title><rect x="1019.6" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1022.58" y="575.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="11.8" y="469" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="14.77" y="479.5" ></text>
+</g>
+<g >
+<title>__netif_rx (10,101,010 samples, 0.06%)</title><rect x="1359.1" y="485" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1362.06" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (30,303,030 samples, 0.19%)</title><rect x="208.9" y="597" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="211.91" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.70%)</title><rect x="445.8" y="789" width="9.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.84" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="39.2" y="869" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="42.17" y="879.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="361.0" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="363.97" y="655.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="1258.3" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1261.28" y="719.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (30,303,030 samples, 0.19%)</title><rect x="856.0" y="661" width="2.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="859.03" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="208.0" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="211.03" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="1243.2" y="469" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1246.25" y="479.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.06%)</title><rect x="930.3" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="933.29" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1022.2" y="501" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1025.24" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (30,303,030 samples, 0.19%)</title><rect x="549.3" y="773" width="2.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="552.27" y="783.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="818.9" y="821" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="821.90" y="831.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="562.5" y="565" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="565.53" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="850.7" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="853.73" y="623.5" ></text>
+</g>
+<g >
+<title>sock_close (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="773" width="4.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1383.28" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.02%)</title><rect x="895.8" y="741" width="14.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="898.82" y="751.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="709" width="1.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1379.74" y="719.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="819.8" y="757" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="822.79" y="767.5" ></text>
+</g>
+<g >
+<title>security_inode_unlink (10,101,010 samples, 0.06%)</title><rect x="182.4" y="581" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="185.39" y="591.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="885.2" y="805" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="888.21" y="815.5" ></text>
+</g>
+<g >
+<title>__pv_queued_spin_lock_slowpath (10,101,010 samples, 0.06%)</title><rect x="424.6" y="661" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="427.62" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="279.6" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="282.63" y="607.5" ></text>
+</g>
+<g >
+<title>realpath (40,404,040 samples, 0.26%)</title><rect x="1193.7" y="789" width="3.6" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1196.74" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="693" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1112.76" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="429.9" y="821" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="432.92" y="831.5" ></text>
+</g>
+<g >
+<title>log_entry_start (60,606,060 samples, 0.38%)</title><rect x="437.9" y="901" width="5.3" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="440.88" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (60,606,060 samples, 0.38%)</title><rect x="381.3" y="741" width="5.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="384.30" y="751.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1234.4" y="677" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1237.41" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="513.0" y="613" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="516.02" y="623.5" ></text>
+</g>
+<g >
+<title>rename (131,313,130 samples, 0.83%)</title><rect x="460.9" y="805" width="11.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="463.86" y="815.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="1089.4" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1092.42" y="575.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.06%)</title><rect x="520.1" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="523.10" y="495.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1008.44" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="460.9" y="565" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="463.86" y="575.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.13%)</title><rect x="1110.6" y="565" width="1.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1113.64" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (171,717,170 samples, 1.09%)</title><rect x="822.4" y="821" width="15.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="825.44" y="831.5" ></text>
+</g>
+<g >
+<title>charge_memcg (10,101,010 samples, 0.06%)</title><rect x="827.7" y="485" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="830.75" y="495.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="666.0" y="517" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="668.96" y="527.5" ></text>
+</g>
+<g >
+<title>__send (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="869" width="6.2" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1349.68" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="443.2" y="805" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="446.18" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="194.8" y="597" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="197.77" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="919.7" y="405" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="922.69" y="415.5" ></text>
+</g>
+<g >
+<title>git_revparse_single (50,505,050 samples, 0.32%)</title><rect x="563.4" y="901" width="4.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="566.41" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="478.5" y="677" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="481.55" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.06%)</title><rect x="1344.9" y="773" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1347.91" y="783.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="122.3" y="613" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="125.27" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="825.1" y="725" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="828.09" y="735.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1241.5" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1244.48" y="639.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="848.1" y="741" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="851.08" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1281.3" y="677" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1284.26" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1017.28" y="655.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="1222.0" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1225.03" y="655.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="265.5" y="565" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="268.49" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (40,404,040 samples, 0.26%)</title><rect x="185.0" y="533" width="3.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="188.04" y="543.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="48.9" y="69" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="51.90" y="79.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (20,202,020 samples, 0.13%)</title><rect x="401.6" y="581" width="1.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="404.63" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (505,050,500 samples, 3.20%)</title><rect x="658.0" y="805" width="44.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="661.01" y="815.5" >[lib..</text>
+</g>
+<g >
+<title>ext4_mkdir (40,404,040 samples, 0.26%)</title><rect x="712.8" y="613" width="3.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="715.82" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (50,505,050 samples, 0.32%)</title><rect x="759.7" y="517" width="4.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="762.67" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="996.6" y="805" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="999.60" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="1267.1" y="661" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1270.12" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="919.15" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="911.7" y="485" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="914.73" y="495.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="670.4" y="597" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="673.38" y="607.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="776.5" y="613" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="779.47" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="169.1" y="901" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="172.13" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="201.8" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="204.84" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="953.3" y="661" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="956.28" y="671.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="357" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1114.52" y="367.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="229" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1137.51" y="239.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="411.4" y="581" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="414.36" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="479.4" y="629" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="482.43" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="207.1" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="210.14" y="575.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="231.9" y="501" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="234.90" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1001.9" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1004.90" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_rename (50,505,050 samples, 0.32%)</title><rect x="1100.9" y="629" width="4.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1103.92" y="639.5" ></text>
+</g>
+<g >
+<title>new_inode (20,202,020 samples, 0.13%)</title><rect x="1155.7" y="693" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1158.73" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (10,101,010 samples, 0.06%)</title><rect x="1368.8" y="869" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1371.78" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1197.3" y="693" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1200.28" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (70,707,070 samples, 0.45%)</title><rect x="1072.6" y="725" width="6.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1075.63" y="735.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="841.0" y="709" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="844.01" y="719.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1008.44" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="18.0" y="757" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="20.96" y="767.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1193.7" y="693" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1196.74" y="703.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="149.7" y="885" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="152.68" y="895.5" ></text>
+</g>
+<g >
+<title>__lookup_hash (10,101,010 samples, 0.06%)</title><rect x="1055.8" y="709" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1058.83" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (636,363,630 samples, 4.04%)</title><rect x="475.0" y="853" width="55.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="478.01" y="863.5" >[libg..</text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.13%)</title><rect x="832.2" y="773" width="1.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="835.17" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (181,818,180 samples, 1.15%)</title><rect x="204.5" y="629" width="15.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="207.49" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="642.1" y="661" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="645.09" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_add_journal_head (10,101,010 samples, 0.06%)</title><rect x="1040.8" y="597" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1043.80" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="849.0" y="629" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="851.96" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="468.8" y="661" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="471.82" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="941.8" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="944.79" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="572.3" y="773" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="575.25" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="754.4" y="549" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="757.37" y="559.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="484.7" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="487.73" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1067.3" y="597" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1070.32" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="741.1" y="581" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="744.11" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="797.7" y="581" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="800.69" y="591.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.06%)</title><rect x="429.0" y="869" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="432.04" y="879.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="1047.9" y="629" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1050.87" y="639.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1382.9" y="469" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1385.93" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1027.89" y="719.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="989.5" y="677" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="992.53" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1260.9" y="677" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1263.93" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="183.3" y="549" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="186.27" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="794.2" y="661" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="797.15" y="671.5" ></text>
+</g>
+<g >
+<title>file_close (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="933" width="4.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1383.28" y="943.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="990.4" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="993.41" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="918.8" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="921.80" y="703.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="618.2" y="629" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="621.23" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="122.3" y="661" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="125.27" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (50,505,050 samples, 0.32%)</title><rect x="1041.7" y="629" width="4.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1044.68" y="639.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="555.5" y="677" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="558.46" y="687.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="954.2" y="517" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="957.16" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="341.5" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="344.52" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="897.6" y="645" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="900.58" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="722.5" y="629" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="725.54" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="789" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1186.13" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (60,606,060 samples, 0.38%)</title><rect x="486.5" y="661" width="5.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="489.50" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.77%)</title><rect x="1216.7" y="805" width="10.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="1075.3" y="549" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1078.28" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="447.6" y="597" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="450.60" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1275.1" y="725" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1278.07" y="735.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="445.0" y="645" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="447.95" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1026.12" y="735.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.26%)</title><rect x="323.0" y="709" width="3.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="325.95" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.26%)</title><rect x="531.6" y="837" width="3.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="534.59" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="728.7" y="533" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="731.73" y="543.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="150.6" y="917" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="153.56" y="927.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1159.3" y="597" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1162.26" y="607.5" ></text>
+</g>
+<g >
+<title>__schedule (60,606,060 samples, 0.38%)</title><rect x="33.9" y="789" width="5.3" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="36.87" y="799.5" ></text>
+</g>
+<g >
+<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="405" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1137.51" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="193.9" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="196.88" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1191.1" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1194.09" y="671.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="669.5" y="693" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="672.50" y="703.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="83.4" y="773" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="86.38" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="439.6" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="442.65" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="738.5" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="741.46" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.06%)</title><rect x="1044.3" y="565" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1047.34" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="265.5" y="597" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="268.49" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="348.6" y="757" width="9.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="351.59" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (70,707,070 samples, 0.45%)</title><rect x="418.4" y="725" width="6.2" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="421.43" y="735.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="1064.7" y="677" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1067.67" y="687.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="725.2" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="728.20" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="491.8" y="709" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="494.81" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.06%)</title><rect x="806.5" y="453" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="809.53" y="463.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.06%)</title><rect x="749.9" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="752.95" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="893.2" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="896.16" y="767.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="530.7" y="805" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="533.70" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="919.7" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="922.69" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (20,202,020 samples, 0.13%)</title><rect x="550.2" y="741" width="1.7" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="553.15" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (40,404,040 samples, 0.26%)</title><rect x="515.7" y="613" width="3.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="518.68" y="623.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.06%)</title><rect x="897.6" y="661" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="900.58" y="671.5" ></text>
+</g>
+<g >
+<title>dentry_kill (121,212,120 samples, 0.77%)</title><rect x="1122.1" y="661" width="10.6" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1125.13" y="671.5" ></text>
+</g>
+<g >
+<title>mas_find (10,101,010 samples, 0.06%)</title><rect x="1306.9" y="725" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1309.90" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="184.2" y="533" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="187.16" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.58%)</title><rect x="918.8" y="741" width="8.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="921.80" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="848.1" y="613" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="851.08" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="447.6" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="450.60" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="941.8" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="944.79" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="881.7" y="757" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="884.67" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1186.13" y="831.5" ></text>
+</g>
+<g >
+<title>__get_task_ioprio (10,101,010 samples, 0.06%)</title><rect x="1374.1" y="757" width="0.9" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" />
+<text x="1377.09" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="854.3" y="757" width="9.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="857.27" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="788.0" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="790.96" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="437" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1389.46" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (70,707,070 samples, 0.45%)</title><rect x="597.9" y="581" width="6.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="600.89" y="591.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="645" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1024.35" y="655.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.19%)</title><rect x="1028.4" y="597" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1031.42" y="607.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.19%)</title><rect x="1201.7" y="773" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1204.70" y="783.5" ></text>
+</g>
+<g >
+<title>write (70,707,070 samples, 0.45%)</title><rect x="1064.7" y="805" width="6.2" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1067.67" y="815.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="158.5" y="629" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="161.52" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_pages (20,202,020 samples, 0.13%)</title><rect x="1303.4" y="645" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1306.36" y="655.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="838.4" y="757" width="0.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="841.35" y="767.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (212,121,210 samples, 1.35%)</title><rect x="955.9" y="629" width="18.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="958.93" y="639.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="612.0" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="615.04" y="607.5" ></text>
+</g>
+<g >
+<title>new_inode (70,707,070 samples, 0.45%)</title><rect x="126.7" y="821" width="6.2" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="129.69" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.06%)</title><rect x="239.9" y="597" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="242.85" y="607.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="526.3" y="597" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="529.28" y="607.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="414.0" y="757" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="417.01" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="741" width="1.8" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1379.74" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (70,707,070 samples, 0.45%)</title><rect x="338.0" y="677" width="6.2" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="340.98" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (181,818,180 samples, 1.15%)</title><rect x="1200.8" y="821" width="15.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1203.81" y="831.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="999.3" y="629" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1002.25" y="639.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="833.0" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="836.05" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (3,020,201,990 samples, 19.15%)</title><rect x="173.5" y="901" width="264.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="176.55" y="911.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="919.15" y="671.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="543.1" y="693" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="546.08" y="703.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="1252.1" y="629" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1255.09" y="639.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="464.4" y="565" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="467.40" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="879.9" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="882.90" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1252.1" y="661" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1255.09" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="341.5" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="344.52" y="639.5" ></text>
+</g>
+<g >
+<title>__sock_release (10,101,010 samples, 0.06%)</title><rect x="18.8" y="773" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="21.84" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (161,616,160 samples, 1.02%)</title><rect x="1255.6" y="805" width="14.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1258.62" y="815.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="1166.3" y="581" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1169.34" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="1062.0" y="693" width="2.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1065.02" y="703.5" ></text>
+</g>
+<g >
+<title>security_file_permission (20,202,020 samples, 0.13%)</title><rect x="906.4" y="597" width="1.8" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="909.43" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="797.7" y="709" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.69" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="269.0" y="597" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="272.03" y="607.5" ></text>
+</g>
+<g >
+<title>storvsc_on_io_completion (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="309" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1011.09" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="340.6" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="343.63" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1188.4" y="725" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1191.44" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1102.7" y="485" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1105.68" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="122.3" y="597" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="125.27" y="607.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="853.4" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="856.38" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="501.5" y="757" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="504.53" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="303.5" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="306.50" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="341.5" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="344.52" y="607.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="810.9" y="373" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="813.95" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="688.9" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="691.95" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="85.1" y="725" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="88.14" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="344.2" y="757" width="1.7" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="347.17" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_flush (40,404,040 samples, 0.26%)</title><rect x="876.4" y="629" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="879.37" y="639.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="453" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1100.38" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="595.2" y="613" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="598.24" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="184.2" y="645" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="187.16" y="655.5" ></text>
+</g>
+<g >
+<title>schedule (60,606,060 samples, 0.38%)</title><rect x="33.9" y="805" width="5.3" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="36.87" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="930.3" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="933.29" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="797.7" y="469" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="800.69" y="479.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="797.7" y="533" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="800.69" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1001.9" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1004.90" y="799.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="464.4" y="437" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="467.40" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.83%)</title><rect x="1025.8" y="725" width="11.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1028.77" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="216.9" y="437" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="219.87" y="447.5" ></text>
+</g>
+<g >
+<title>__pmd_alloc (10,101,010 samples, 0.06%)</title><rect x="1301.6" y="693" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1304.60" y="703.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.19%)</title><rect x="11.8" y="645" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="14.77" y="655.5" ></text>
+</g>
+<g >
+<title>net_send (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="901" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1379.74" y="911.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (10,101,010 samples, 0.06%)</title><rect x="1176.9" y="565" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1179.94" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1238.8" y="565" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1241.83" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (10,101,010 samples, 0.06%)</title><rect x="1161.0" y="645" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="1164.03" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="655.4" y="661" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="658.36" y="671.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.13%)</title><rect x="344.2" y="693" width="1.7" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="347.17" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="910.0" y="533" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="912.96" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1092.42" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1241.5" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1244.48" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="930.3" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="933.29" y="799.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1382.9" y="453" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1385.93" y="463.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="1114.2" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1117.18" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1275.1" y="757" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1278.07" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="932.1" y="725" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="935.06" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="47.1" y="197" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="50.13" y="207.5" ></text>
+</g>
+<g >
+<title>copy_pte_range (40,404,040 samples, 0.26%)</title><rect x="1302.5" y="693" width="3.5" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="1305.48" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_wait4 (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="821" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1339.96" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="560.8" y="821" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.76" y="831.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="165.6" y="837" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="168.59" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="661" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1024.35" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="364.5" y="661" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="367.50" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1041.7" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1044.68" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="563.4" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="566.41" y="767.5" ></text>
+</g>
+<g >
+<title>git_repository_init_ext (2,444,444,420 samples, 15.50%)</title><rect x="1002.8" y="853" width="213.9" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="1005.79" y="863.5" >git_repository_init_ext</text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="869" width="2.6" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1355.87" y="879.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="232.8" y="597" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="235.78" y="607.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="986.0" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="988.99" y="623.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (50,505,050 samples, 0.32%)</title><rect x="323.0" y="741" width="4.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="325.95" y="751.5" ></text>
+</g>
+<g >
+<title>drop_nlink (10,101,010 samples, 0.06%)</title><rect x="264.6" y="645" width="0.9" height="15.0" fill="rgb(0,223,140)" rx="2" ry="2" />
+<text x="267.61" y="655.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="546.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="549.62" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (20,202,020 samples, 0.13%)</title><rect x="960.4" y="533" width="1.7" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="963.35" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="389" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1360.29" y="399.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1331.7" y="869" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1334.65" y="879.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="991.3" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="994.29" y="543.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="667.7" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="670.73" y="751.5" ></text>
+</g>
+<g >
+<title>net_send_buf (30,303,030 samples, 0.19%)</title><rect x="11.8" y="949" width="2.6" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="14.77" y="959.5" ></text>
+</g>
+<g >
+<title>git_remote_create (515,151,510 samples, 3.27%)</title><rect x="842.8" y="869" width="45.1" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="845.77" y="879.5" >git_..</text>
+</g>
+<g >
+<title>__x64_sys_openat (70,707,070 samples, 0.45%)</title><rect x="634.1" y="725" width="6.2" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="637.14" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="16.2" y="901" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="19.19" y="911.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="254.9" y="501" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="257.88" y="511.5" ></text>
+</g>
+<g >
+<title>do_faccessat (40,404,040 samples, 0.26%)</title><rect x="1249.4" y="741" width="3.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1252.44" y="751.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.19%)</title><rect x="1028.4" y="581" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1031.42" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="988.6" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="991.64" y="767.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1062.37" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="227.5" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="230.48" y="735.5" ></text>
+</g>
+<g >
+<title>storvsc_on_io_completion (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="565" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1327.58" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1006.3" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1009.32" y="783.5" ></text>
+</g>
+<g >
+<title>filemap_read (20,202,020 samples, 0.13%)</title><rect x="538.7" y="581" width="1.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="541.66" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1201.7" y="757" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1204.70" y="767.5" ></text>
+</g>
+<g >
+<title>git_oid_nfmt (10,101,010 samples, 0.06%)</title><rect x="473.2" y="741" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="476.24" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="85.1" y="709" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="88.14" y="719.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="978.0" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="981.03" y="703.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="623.5" y="645" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="626.53" y="655.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (20,202,020 samples, 0.13%)</title><rect x="472.4" y="837" width="1.7" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="475.36" y="847.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="776.5" y="629" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="779.47" y="639.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="839.2" y="741" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="842.24" y="751.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="447.6" y="613" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="450.60" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="187.7" y="437" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="190.69" y="447.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="498.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="500.99" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="180.6" y="549" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="183.62" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="740.2" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="743.22" y="735.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1086.24" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="921.5" y="597" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="924.45" y="607.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="510.4" y="613" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="513.37" y="623.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="101" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1385.93" y="111.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="56.0" y="901" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="58.97" y="911.5" ></text>
+</g>
+<g >
+<title>ktime_get (10,101,010 samples, 0.06%)</title><rect x="625.3" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="628.30" y="607.5" ></text>
+</g>
+<g >
+<title>inet_release (10,101,010 samples, 0.06%)</title><rect x="18.8" y="741" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="21.84" y="751.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1327.58" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="955.0" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="958.05" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1260.0" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1263.04" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (40,404,040 samples, 0.26%)</title><rect x="944.4" y="741" width="3.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="947.44" y="751.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="170.9" y="837" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="173.90" y="847.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="567.0" y="693" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="569.95" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="517.4" y="549" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="520.44" y="559.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="619.1" y="645" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="622.11" y="655.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="497.1" y="597" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="500.11" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="366.3" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="369.27" y="671.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.06%)</title><rect x="10.9" y="949" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="13.88" y="959.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.06%)</title><rect x="900.2" y="533" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="903.24" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="217.8" y="485" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="220.75" y="495.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="904.7" y="533" width="0.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="907.66" y="543.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="709" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1342.61" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="670.4" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="673.38" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="522.7" y="757" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="525.75" y="767.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="199.2" y="565" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="202.19" y="575.5" ></text>
+</g>
+<g >
+<title>up_write (10,101,010 samples, 0.06%)</title><rect x="1354.6" y="757" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1357.64" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1114.2" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1117.18" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (20,202,020 samples, 0.13%)</title><rect x="1057.6" y="693" width="1.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1060.60" y="703.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.06%)</title><rect x="1350.2" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1353.22" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="478.5" y="693" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="481.55" y="703.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="10.0" y="917" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="13.00" y="927.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="971.8" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="974.84" y="559.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.06%)</title><rect x="803.9" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="806.88" y="511.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="1127.4" y="421" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1130.44" y="431.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.19%)</title><rect x="837.5" y="869" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="840.47" y="879.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="711.1" y="693" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="714.05" y="703.5" ></text>
+</g>
+<g >
+<title>mkdir (222,222,220 samples, 1.41%)</title><rect x="955.9" y="693" width="19.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="958.93" y="703.5" ></text>
+</g>
+<g >
+<title>log_entry_start (40,404,040 samples, 0.26%)</title><rect x="567.8" y="901" width="3.6" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="570.83" y="911.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="373" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1039.38" y="383.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="917.9" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="920.92" y="687.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="655.4" y="645" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="658.36" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="788.8" y="549" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="791.85" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="512.1" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="515.14" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="122.3" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="125.27" y="655.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="159.4" y="869" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="162.40" y="879.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.06%)</title><rect x="631.5" y="533" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="634.49" y="543.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="82.5" y="741" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="85.49" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="815.4" y="645" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="818.37" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="228.4" y="661" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="231.36" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="914.4" y="757" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="917.38" y="767.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="613" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1356.75" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="887.9" y="821" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="890.86" y="831.5" ></text>
+</g>
+<g >
+<title>__sock_release (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="757" width="4.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1383.28" y="767.5" ></text>
+</g>
+<g >
+<title>iput (60,606,060 samples, 0.38%)</title><rect x="332.7" y="677" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="335.68" y="687.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="979.8" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="982.80" y="543.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="597" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1212.65" y="607.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.06%)</title><rect x="306.2" y="501" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="309.16" y="511.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (10,101,010 samples, 0.06%)</title><rect x="200.1" y="581" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="203.07" y="591.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="43.6" y="517" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="46.59" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.06%)</title><rect x="1033.7" y="453" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1036.73" y="463.5" ></text>
+</g>
+<g >
+<title>release_task (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="725" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1339.96" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="485.6" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="488.62" y="671.5" ></text>
+</g>
+<g >
+<title>unlink_cb (212,121,210 samples, 1.35%)</title><rect x="203.6" y="741" width="18.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="206.61" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (20,202,020 samples, 0.13%)</title><rect x="714.6" y="485" width="1.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="717.59" y="495.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="826.0" y="597" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="828.98" y="607.5" ></text>
+</g>
+<g >
+<title>__inet_hash_connect (10,101,010 samples, 0.06%)</title><rect x="1360.8" y="773" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1363.83" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1136.3" y="373" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1139.28" y="383.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="723.4" y="677" width="5.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="726.43" y="687.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="261.1" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="264.07" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_bread (30,303,030 samples, 0.19%)</title><rect x="1281.3" y="725" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1284.26" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="521.9" y="501" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="524.86" y="511.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1329.0" y="741" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1332.00" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="208.9" y="389" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="211.91" y="399.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="18.0" y="901" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="20.96" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (141,414,140 samples, 0.90%)</title><rect x="302.6" y="597" width="12.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="305.62" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="263.7" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="266.72" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1033.7" y="405" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1036.73" y="415.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="479.4" y="549" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="482.43" y="559.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.06%)</title><rect x="1055.8" y="693" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1058.83" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="830.4" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="833.40" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="373" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1385.93" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="629" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1112.76" y="639.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="17.1" y="901" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="20.07" y="911.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="357" width="1.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1360.29" y="367.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1246.8" y="565" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1249.78" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="431.7" y="805" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="434.69" y="815.5" ></text>
+</g>
+<g >
+<title>iput (90,909,090 samples, 0.58%)</title><rect x="1091.2" y="597" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1094.19" y="607.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1091.2" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1094.19" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="921.5" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="924.45" y="687.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="949" width="1.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1379.74" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="192.1" y="661" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="195.11" y="671.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="510.4" y="597" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="513.37" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="788.0" y="709" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="790.96" y="719.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (30,303,030 samples, 0.19%)</title><rect x="440.5" y="885" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="443.53" y="895.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="919.7" y="421" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="922.69" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="563.4" y="773" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="566.41" y="783.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="424.6" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="427.62" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="927.6" y="821" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="930.64" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="187.7" y="469" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="190.69" y="479.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="356.5" y="725" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="359.55" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (50,505,050 samples, 0.32%)</title><rect x="294.7" y="597" width="4.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="297.66" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="728.7" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="731.73" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (505,050,500 samples, 3.20%)</title><rect x="658.0" y="789" width="44.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="661.01" y="799.5" >[lib..</text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="632.4" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="635.37" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="231.9" y="485" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="234.90" y="495.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="344.2" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="347.17" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1228.2" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1231.22" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1208.8" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1211.77" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="421" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1209.12" y="431.5" ></text>
+</g>
+<g >
+<title>folio_alloc (20,202,020 samples, 0.13%)</title><rect x="519.2" y="549" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="522.21" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.58%)</title><rect x="650.1" y="773" width="7.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="653.05" y="783.5" ></text>
+</g>
+<g >
+<title>__legitimize_mnt (10,101,010 samples, 0.06%)</title><rect x="941.8" y="597" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="944.79" y="607.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.06%)</title><rect x="1385.6" y="309" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1388.58" y="319.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="613" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1195.86" y="623.5" ></text>
+</g>
+<g >
+<title>cfree (20,202,020 samples, 0.13%)</title><rect x="1220.3" y="741" width="1.7" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1223.26" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="501" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1114.52" y="511.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="927.6" y="709" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="930.64" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="673.0" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="676.04" y="543.5" ></text>
+</g>
+<g >
+<title>git_repository_index (50,505,050 samples, 0.32%)</title><rect x="559.0" y="885" width="4.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="561.99" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="392.8" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="395.79" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="567.0" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="569.95" y="767.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.06%)</title><rect x="552.8" y="757" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="555.81" y="767.5" ></text>
+</g>
+<g >
+<title>net_send (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="901" width="6.2" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1349.68" y="911.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="831.3" y="677" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="834.28" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (20,202,020 samples, 0.13%)</title><rect x="731.4" y="677" width="1.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="734.38" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="1059.4" y="789" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1062.37" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="20.6" y="917" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="23.61" y="927.5" ></text>
+</g>
+<g >
+<title>rmdir (676,767,670 samples, 4.29%)</title><rect x="257.5" y="741" width="59.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="260.53" y="751.5" >rmdir</text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="350.4" y="645" width="0.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="353.36" y="655.5" ></text>
+</g>
+<g >
+<title>fscrypt_prepare_new_inode (10,101,010 samples, 0.06%)</title><rect x="124.9" y="821" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="127.93" y="831.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1247.13" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="252.2" y="613" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="255.23" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="706.6" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="709.63" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="725" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1387.70" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1385.6" y="357" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1388.58" y="367.5" ></text>
+</g>
+<g >
+<title>schedule (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="757" width="2.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1336.42" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="728.7" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="731.73" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (20,202,020 samples, 0.13%)</title><rect x="1371.4" y="821" width="1.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1374.43" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="943.6" y="741" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="946.56" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="853.4" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="856.38" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="1279.5" y="725" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1282.49" y="735.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="669.5" y="597" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="672.50" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="999.3" y="661" width="0.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1002.25" y="671.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="11.8" y="629" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="14.77" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="536.0" y="725" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="539.01" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="503.3" y="629" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="506.30" y="639.5" ></text>
+</g>
+<g >
+<title>grab_cache_page_write_begin (20,202,020 samples, 0.13%)</title><rect x="665.1" y="565" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="668.08" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="589.1" y="597" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="592.05" y="607.5" ></text>
+</g>
+<g >
+<title>git_index_open (20,202,020 samples, 0.13%)</title><rect x="559.0" y="853" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="561.99" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_generic_write_checks (10,101,010 samples, 0.06%)</title><rect x="718.1" y="581" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="721.12" y="591.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="190.3" y="645" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="193.35" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1199.0" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1202.05" y="687.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="893.2" y="517" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="896.16" y="527.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="501" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1086.24" y="511.5" ></text>
+</g>
+<g >
+<title>readdir64 (60,606,060 samples, 0.38%)</title><rect x="644.7" y="789" width="5.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="647.75" y="799.5" ></text>
+</g>
+<g >
+<title>sk_free (20,202,020 samples, 0.13%)</title><rect x="53.3" y="645" width="1.8" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="56.32" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="871.1" y="757" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="874.06" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="645" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1008.44" y="655.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="309.7" y="421" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="312.69" y="431.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="430.8" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="433.81" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="583.7" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="586.75" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1233.5" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1236.52" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_update_reserve_space (10,101,010 samples, 0.06%)</title><rect x="695.1" y="469" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="698.14" y="479.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="309" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1385.93" y="319.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="712.8" y="677" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="715.82" y="687.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.06%)</title><rect x="1236.2" y="597" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1239.18" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="948.0" y="741" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="950.98" y="751.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (30,303,030 samples, 0.19%)</title><rect x="568.7" y="885" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="571.72" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_get_dquots (10,101,010 samples, 0.06%)</title><rect x="296.4" y="565" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="299.43" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="740.2" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="743.22" y="639.5" ></text>
+</g>
+<g >
+<title>folio_lruvec_lock_irqsave (10,101,010 samples, 0.06%)</title><rect x="467.9" y="517" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="470.94" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="247.8" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="250.81" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="750.8" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="753.83" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="677.5" y="517" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="680.46" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="385.7" y="709" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="388.72" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="869" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1339.07" y="879.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="180.6" y="581" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="183.62" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="134.7" y="773" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="137.65" y="783.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1011.6" y="741" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1014.63" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="422.9" y="565" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="425.85" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="429.9" y="741" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="432.92" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="528.9" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="531.94" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="118.7" y="725" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="121.74" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="373.3" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="376.34" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="849.0" y="565" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="851.96" y="575.5" ></text>
+</g>
+<g >
+<title>dentry_kill (30,303,030 samples, 0.19%)</title><rect x="460.9" y="709" width="2.6" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="463.86" y="719.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.06%)</title><rect x="447.6" y="549" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="450.60" y="559.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (20,202,020 samples, 0.13%)</title><rect x="524.5" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="527.52" y="719.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1234.4" y="661" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1237.41" y="671.5" ></text>
+</g>
+<g >
+<title>rb_next (10,101,010 samples, 0.06%)</title><rect x="809.2" y="453" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="812.18" y="463.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.06%)</title><rect x="1291.0" y="741" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1293.99" y="751.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (10,101,010 samples, 0.06%)</title><rect x="1278.6" y="661" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1281.61" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1261.8" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1264.81" y="607.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="549" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1331.12" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1031.1" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1034.08" y="527.5" ></text>
+</g>
+<g >
+<title>fdopendir (10,101,010 samples, 0.06%)</title><rect x="346.8" y="805" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="349.82" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (30,303,030 samples, 0.19%)</title><rect x="1075.3" y="645" width="2.6" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1078.28" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="909.1" y="597" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="912.08" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="578.4" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="581.44" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="1093.8" y="453" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1096.84" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.77%)</title><rect x="1216.7" y="773" width="10.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="662.4" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="665.43" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="503.3" y="517" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="506.30" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1208.8" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1211.77" y="671.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="208.9" y="341" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="211.91" y="351.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.06%)</title><rect x="1275.1" y="709" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1278.07" y="719.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (50,505,050 samples, 0.32%)</title><rect x="1356.4" y="805" width="4.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1359.41" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="861.3" y="437" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="864.34" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="193.9" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="196.88" y="495.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1327.58" y="703.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="889.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="892.63" y="559.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="159.4" y="933" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="162.40" y="943.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="498.0" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="500.99" y="639.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.06%)</title><rect x="818.9" y="837" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="821.90" y="847.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (40,404,040 samples, 0.26%)</title><rect x="1027.5" y="629" width="3.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1030.54" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1260.0" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1263.04" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="759.7" y="565" width="4.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="762.67" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (2,848,484,820 samples, 18.07%)</title><rect x="572.3" y="853" width="249.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="575.25" y="863.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>iterate_dir (70,707,070 samples, 0.45%)</title><rect x="249.6" y="693" width="6.2" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="252.58" y="703.5" ></text>
+</g>
+<g >
+<title>__blk_mq_run_hw_queue (20,202,020 samples, 0.13%)</title><rect x="691.6" y="405" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="694.60" y="415.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="777.4" y="565" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="780.35" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1380.3" y="677" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1383.28" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (90,909,090 samples, 0.58%)</title><rect x="1070.9" y="773" width="7.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1073.86" y="783.5" ></text>
+</g>
+<g >
+<title>perf_iterate_ctx (10,101,010 samples, 0.06%)</title><rect x="29.4" y="901" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="32.45" y="911.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (30,303,030 samples, 0.19%)</title><rect x="1298.1" y="709" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1301.06" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="735.8" y="613" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="738.80" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1237.1" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1240.06" y="735.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1030.54" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="941.8" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="944.79" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (50,505,050 samples, 0.32%)</title><rect x="1276.0" y="757" width="4.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1278.96" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="630.6" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="633.60" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,363,636,340 samples, 14.99%)</title><rect x="173.5" y="821" width="206.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="176.55" y="831.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="445.0" y="709" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="447.95" y="719.5" ></text>
+</g>
+<g >
+<title>git_remote_download (80,808,080 samples, 0.51%)</title><rect x="926.8" y="853" width="7.0" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="929.76" y="863.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.06%)</title><rect x="420.2" y="661" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="423.20" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.77%)</title><rect x="774.7" y="757" width="10.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="777.70" y="767.5" ></text>
+</g>
+<g >
+<title>blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="261" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1140.16" y="271.5" ></text>
+</g>
+<g >
+<title>rename (111,111,110 samples, 0.70%)</title><rect x="854.3" y="773" width="9.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="857.27" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="661" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1010.21" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.06%)</title><rect x="18.8" y="421" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="21.84" y="431.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.32%)</title><rect x="1245.0" y="837" width="4.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1248.02" y="847.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="789.7" y="693" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="792.73" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="1242.4" y="613" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1245.36" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="645" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1092.42" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="395.4" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="398.45" y="543.5" ></text>
+</g>
+<g >
+<title>unlink_cb (60,606,060 samples, 0.38%)</title><rect x="431.7" y="869" width="5.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="434.69" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="563.4" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="566.41" y="735.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.06%)</title><rect x="817.1" y="677" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="820.14" y="687.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1199.39" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1198.2" y="741" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1201.16" y="751.5" ></text>
+</g>
+<g >
+<title>do_wait (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="773" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1339.96" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="141.7" y="757" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="144.72" y="767.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="437" width="0.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1356.75" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="421.1" y="645" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="424.08" y="655.5" ></text>
+</g>
+<g >
+<title>touch_atime (20,202,020 samples, 0.13%)</title><rect x="1238.8" y="645" width="1.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="1241.83" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="376.9" y="549" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="379.88" y="559.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="891.4" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="894.40" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="917.0" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="920.03" y="719.5" ></text>
+</g>
+<g >
+<title>pipe_write (50,505,050 samples, 0.32%)</title><rect x="71.0" y="757" width="4.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="74.00" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="546.6" y="677" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="549.62" y="687.5" ></text>
+</g>
+<g >
+<title>libjson_send (30,303,030 samples, 0.19%)</title><rect x="11.8" y="965" width="2.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="14.77" y="975.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="572.3" y="821" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="575.25" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="178.9" y="693" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="181.85" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="741" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1343.49" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="578.4" y="629" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="581.44" y="639.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.06%)</title><rect x="82.5" y="725" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="85.49" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="1236.2" y="629" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1239.18" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1077.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1080.05" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="189.5" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="192.46" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="1062.0" y="661" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1065.02" y="671.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="1254.7" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1257.74" y="671.5" ></text>
+</g>
+<g >
+<title>alloc_file (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="773" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="1339.07" y="783.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="95.8" y="917" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="98.75" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.15%)</title><rect x="865.8" y="805" width="15.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.76" y="815.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_begin_ordered_truncate (10,101,010 samples, 0.06%)</title><rect x="686.3" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="689.30" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="422.9" y="533" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="425.85" y="543.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="1155.7" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1158.73" y="623.5" ></text>
+</g>
+<g >
+<title>security_prepare_creds (10,101,010 samples, 0.06%)</title><rect x="528.1" y="677" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="531.05" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1269.8" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1272.77" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1086.24" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="1066.4" y="597" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1069.44" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="1136.3" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1139.28" y="463.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="1132.7" y="629" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1135.74" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="837.5" y="853" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="840.47" y="863.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="1382.9" y="389" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1385.93" y="399.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1054.1" y="533" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1057.06" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="309.7" y="293" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="312.69" y="303.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (30,303,030 samples, 0.19%)</title><rect x="426.4" y="741" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="429.39" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (30,303,030 samples, 0.19%)</title><rect x="97.5" y="885" width="2.7" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="100.52" y="895.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (90,909,090 samples, 0.58%)</title><rect x="1091.2" y="629" width="7.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1094.19" y="639.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="501" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1331.12" y="511.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="925.0" y="469" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="927.99" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="818.9" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="821.90" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="538.7" y="677" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="541.66" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="819.8" y="741" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="822.79" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1157.5" y="661" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1160.50" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="497.1" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="500.11" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (151,515,150 samples, 0.96%)</title><rect x="41.8" y="821" width="13.3" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="44.83" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="613" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1112.76" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="888.7" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="891.74" y="751.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="1350.2" y="677" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1353.22" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="958.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="961.58" y="559.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1155.7" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1158.73" y="639.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="666.0" y="453" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="668.96" y="463.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="243.4" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="246.39" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="910.0" y="677" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="912.96" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.96%)</title><rect x="1230.9" y="789" width="13.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1233.87" y="799.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="805" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1273.65" y="815.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="421" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1379.74" y="431.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="170.9" y="853" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="173.90" y="863.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="773.8" y="661" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="776.82" y="671.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="628.8" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="631.83" y="543.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="725" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1092.42" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="394.6" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="397.56" y="575.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="878.1" y="501" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="881.14" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.38%)</title><rect x="463.5" y="581" width="5.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="466.52" y="591.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="27.7" y="885" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="30.68" y="895.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="661" width="0.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1212.65" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.13%)</title><rect x="86.9" y="773" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="89.91" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="720.8" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="723.78" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 1.54%)</title><rect x="1016.0" y="773" width="21.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1019.05" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="766.7" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.75" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="693" width="3.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1384.16" y="703.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="1077.9" y="645" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1080.93" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="467.1" y="549" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="470.05" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1060.2" y="645" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1063.25" y="655.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="503.3" y="501" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="506.30" y="511.5" ></text>
+</g>
+<g >
+<title>dput (40,404,040 samples, 0.26%)</title><rect x="855.2" y="693" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="858.15" y="703.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1114.2" y="645" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1117.18" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="455.6" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="458.56" y="783.5" ></text>
+</g>
+<g >
+<title>client_destroy_handler (181,818,180 samples, 1.15%)</title><rect x="39.2" y="933" width="15.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="42.17" y="943.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (30,303,030 samples, 0.19%)</title><rect x="650.1" y="693" width="2.6" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="653.05" y="703.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="869" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1273.65" y="879.5" ></text>
+</g>
+<g >
+<title>__d_lookup_unhash (10,101,010 samples, 0.06%)</title><rect x="1076.2" y="581" width="0.8" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" />
+<text x="1079.16" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="909.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="912.08" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1237.1" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1240.06" y="719.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="517" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1364.71" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="448.5" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="451.49" y="639.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="18.8" y="613" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="21.84" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="178.0" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="180.97" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="791.5" y="549" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="794.50" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="380.4" y="709" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="383.42" y="719.5" ></text>
+</g>
+<g >
+<title>crc_49 (10,101,010 samples, 0.06%)</title><rect x="239.0" y="549" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="241.97" y="559.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="729.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="732.62" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1260.9" y="693" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1263.93" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="613" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1039.38" y="623.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="789.7" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="792.73" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="449.4" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="452.37" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.51%)</title><rect x="249.6" y="741" width="7.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="252.58" y="751.5" ></text>
+</g>
+<g >
+<title>mark_page_accessed (10,101,010 samples, 0.06%)</title><rect x="977.1" y="437" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="980.15" y="447.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="532.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="535.47" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="260.2" y="613" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="263.19" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1209.12" y="623.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="565.2" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="568.18" y="591.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1054.1" y="549" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1057.06" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="422.9" y="613" width="1.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="425.85" y="623.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="163.8" y="885" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="166.82" y="895.5" ></text>
+</g>
+<g >
+<title>free_uid (10,101,010 samples, 0.06%)</title><rect x="925.0" y="597" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="927.99" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (60,606,060 samples, 0.38%)</title><rect x="184.2" y="597" width="5.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="187.16" y="607.5" ></text>
+</g>
+<g >
+<title>__mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="317.6" y="661" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="320.65" y="671.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="231.9" y="405" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="234.90" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (70,707,070 samples, 0.45%)</title><rect x="1064.7" y="757" width="6.2" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1067.67" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1031.1" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1034.08" y="623.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="57.7" y="901" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="60.74" y="911.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="1131.0" y="453" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1133.97" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (888,888,880 samples, 5.64%)</title><rect x="474.1" y="885" width="77.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="477.13" y="895.5" >[libgit2..</text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="322.1" y="709" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="325.07" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1009.0" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1011.98" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1193.7" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1196.74" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="578.4" y="613" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="581.44" y="623.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.13%)</title><rect x="378.6" y="773" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="381.65" y="783.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.32%)</title><rect x="184.2" y="581" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="187.16" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="872.8" y="581" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="875.83" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="92.2" y="949" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="95.22" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 1.09%)</title><rect x="1272.4" y="837" width="15.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1275.42" y="847.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1161.9" y="629" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1164.92" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="985.1" y="661" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="988.11" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="660.7" y="693" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="663.66" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="542.2" y="725" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="545.20" y="735.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="1242.4" y="549" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1245.36" y="559.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="887.0" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="889.98" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="576.7" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="579.68" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="563.4" y="821" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="566.41" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_bread (70,707,070 samples, 0.45%)</title><rect x="965.7" y="549" width="6.1" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="968.66" y="559.5" ></text>
+</g>
+<g >
+<title>net_close (10,101,010 samples, 0.06%)</title><rect x="18.8" y="965" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="21.84" y="975.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="991.3" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="994.29" y="671.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="165.6" y="853" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="168.59" y="863.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="383.1" y="693" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="386.07" y="703.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="442.3" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="445.30" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1230.0" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1232.99" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (40,404,040 samples, 0.26%)</title><rect x="996.6" y="773" width="3.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="999.60" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="59.5" y="869" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="62.51" y="879.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1233.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1236.52" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.13%)</title><rect x="1110.6" y="581" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1113.64" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="453" width="0.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1306.36" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="819.8" y="709" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="822.79" y="719.5" ></text>
+</g>
+<g >
+<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="464.4" y="469" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="467.40" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="722.5" y="517" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="725.54" y="527.5" ></text>
+</g>
+<g >
+<title>llist_add_batch (10,101,010 samples, 0.06%)</title><rect x="565.2" y="485" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="568.18" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="722.5" y="549" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="725.54" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="207.1" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="210.14" y="527.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="581" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1253.32" y="591.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="565.2" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="568.18" y="703.5" ></text>
+</g>
+<g >
+<title>dentry_kill (10,101,010 samples, 0.06%)</title><rect x="944.4" y="693" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="947.44" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="513.9" y="677" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="516.91" y="687.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="831.3" y="773" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="834.28" y="783.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="635.0" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="638.02" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.19%)</title><rect x="1281.3" y="693" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1284.26" y="703.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1027.89" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="151.4" y="997" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="154.45" y="1007.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="304.4" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="307.39" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (484,848,480 samples, 3.07%)</title><rect x="951.5" y="789" width="42.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="954.51" y="799.5" >[li..</text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="999.3" y="645" width="0.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1002.25" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="886.1" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="889.09" y="751.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="27.7" y="917" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="30.68" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (50,505,050 samples, 0.32%)</title><rect x="85.1" y="821" width="4.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="88.14" y="831.5" ></text>
+</g>
+<g >
+<title>mas_commit_b_node.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1310.4" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1313.44" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="781.8" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="784.77" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="864.9" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="867.88" y="799.5" ></text>
+</g>
+<g >
+<title>irq_fpu_usable (10,101,010 samples, 0.06%)</title><rect x="301.7" y="517" width="0.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="304.74" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="830.4" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="833.40" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="677" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1387.70" y="687.5" ></text>
+</g>
+<g >
+<title>net_connect (101,010,100 samples, 0.64%)</title><rect x="1355.5" y="949" width="8.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1358.52" y="959.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1260.9" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1263.93" y="607.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="565.2" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="568.18" y="607.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (40,404,040 samples, 0.26%)</title><rect x="682.8" y="565" width="3.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="685.76" y="575.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="803.9" y="549" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="806.88" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1233.5" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1236.52" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="678.3" y="501" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="681.34" y="511.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1086.8" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1089.77" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="522.7" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="525.75" y="703.5" ></text>
+</g>
+<g >
+<title>git_signature_default (50,505,050 samples, 0.32%)</title><rect x="814.5" y="773" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="817.48" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="567.0" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="569.95" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="110.8" y="805" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="113.78" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="1145.1" y="693" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1148.12" y="703.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="581" width="0.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1212.65" y="591.5" ></text>
+</g>
+<g >
+<title>read (40,404,040 samples, 0.26%)</title><rect x="1332.5" y="869" width="3.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1335.54" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="810.9" y="421" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="813.95" y="431.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="247.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="250.81" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="583.7" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="586.75" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="155.0" y="917" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="157.98" y="927.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="703.1" y="805" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="706.09" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="919.7" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="922.69" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="792.4" y="485" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="795.38" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="535.1" y="821" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="538.12" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="803.0" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="805.99" y="527.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1222.38" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="794.2" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="797.15" y="687.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="1188.4" y="773" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1191.44" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="1273.3" y="613" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1276.31" y="623.5" ></text>
+</g>
+<g >
+<title>git_index_set_caps (30,303,030 samples, 0.19%)</title><rect x="560.8" y="853" width="2.6" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="563.76" y="863.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="631.5" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="634.49" y="607.5" ></text>
+</g>
+<g >
+<title>touch_atime (20,202,020 samples, 0.13%)</title><rect x="429.9" y="773" width="1.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="432.92" y="783.5" ></text>
+</g>
+<g >
+<title>do_futex (40,404,040 samples, 0.26%)</title><rect x="20.6" y="885" width="3.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="23.61" y="895.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="147.9" y="901" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="150.91" y="911.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="685.4" y="437" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="688.41" y="447.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (90,909,090 samples, 0.58%)</title><rect x="1070.9" y="757" width="7.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1073.86" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="532.5" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="535.47" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="261" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1100.38" y="271.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="245" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1100.38" y="255.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="177.1" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="180.09" y="687.5" ></text>
+</g>
+<g >
+<title>security_prepare_creds (20,202,020 samples, 0.13%)</title><rect x="923.2" y="629" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="926.22" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="640.3" y="677" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="643.33" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.92%)</title><rect x="445.8" y="821" width="26.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.84" y="831.5" >[..</text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="565" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1387.70" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="282.3" y="629" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="285.29" y="639.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="619.1" y="661" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="622.11" y="671.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.06%)</title><rect x="1182.2" y="821" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1185.25" y="831.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (10,101,010 samples, 0.06%)</title><rect x="795.0" y="565" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="798.04" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1017.28" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1184.0" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1187.02" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_alloc_sgtables (10,101,010 samples, 0.06%)</title><rect x="859.6" y="261" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="862.57" y="271.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="228.4" y="629" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="231.36" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_journal_mode (10,101,010 samples, 0.06%)</title><rect x="1131.9" y="581" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1134.86" y="591.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="741" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1026.12" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1031.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1034.08" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="102.8" y="885" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="105.83" y="895.5" ></text>
+</g>
+<g >
+<title>git_config_free (20,202,020 samples, 0.13%)</title><rect x="772.0" y="773" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="775.05" y="783.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="735.8" y="597" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="738.80" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="849.0" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="851.96" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="236.3" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="239.32" y="591.5" ></text>
+</g>
+<g >
+<title>clear_page_dirty_for_io (10,101,010 samples, 0.06%)</title><rect x="1138.0" y="469" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1141.05" y="479.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.19%)</title><rect x="1382.0" y="517" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1385.04" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="598.8" y="517" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="601.78" y="527.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="289.4" y="485" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="292.36" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="492.7" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="495.69" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="766.7" y="757" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.75" y="767.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="162.1" y="869" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="165.06" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="68.3" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="71.35" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="968.3" y="453" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="971.31" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="1093.0" y="517" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1095.96" y="527.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="717.2" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="720.24" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="216.0" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="218.98" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="787.1" y="581" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="790.08" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="868.4" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="871.41" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="947.1" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="950.09" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="655.4" y="565" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="658.36" y="575.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1053.2" y="533" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1056.18" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.83%)</title><rect x="1025.8" y="709" width="11.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1028.77" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="706.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="709.63" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1024.35" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="919.15" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (60,606,060 samples, 0.38%)</title><rect x="1264.5" y="725" width="5.3" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1267.47" y="735.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (20,202,020 samples, 0.13%)</title><rect x="1070.9" y="661" width="1.7" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1073.86" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="893.2" y="533" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="896.16" y="543.5" ></text>
+</g>
+<g >
+<title>remove (242,424,240 samples, 1.54%)</title><rect x="359.2" y="789" width="21.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="362.20" y="799.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (20,202,020 samples, 0.13%)</title><rect x="684.5" y="533" width="1.8" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="687.53" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="463.5" y="533" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="466.52" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="681.0" y="437" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="683.99" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (343,434,340 samples, 2.18%)</title><rect x="671.3" y="741" width="30.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="674.27" y="751.5" >en..</text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.06%)</title><rect x="119.6" y="741" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="122.62" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="769.4" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="772.40" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="909.1" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="912.08" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="1264.5" y="741" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1267.47" y="751.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="669.5" y="517" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="672.50" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="536.0" y="773" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="539.01" y="783.5" ></text>
+</g>
+<g >
+<title>wb_get_create (10,101,010 samples, 0.06%)</title><rect x="1282.1" y="613" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1285.15" y="623.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="777.4" y="581" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="780.35" y="591.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="137.3" y="757" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="140.30" y="767.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1220.61" y="607.5" ></text>
+</g>
+<g >
+<title>unlink (131,313,130 samples, 0.83%)</title><rect x="332.7" y="757" width="11.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="335.68" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="538.7" y="613" width="1.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="541.66" y="623.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="62.2" y="693" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="65.16" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="734.9" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="737.92" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="547.5" y="693" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="550.50" y="703.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (40,404,040 samples, 0.26%)</title><rect x="1065.6" y="629" width="3.5" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1068.55" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="935.6" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="938.60" y="735.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="18.0" y="885" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="20.96" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="181.5" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="184.51" y="527.5" ></text>
+</g>
+<g >
+<title>down_read (10,101,010 samples, 0.06%)</title><rect x="656.2" y="645" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="659.24" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1091.2" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1094.19" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (50,505,050 samples, 0.32%)</title><rect x="1041.7" y="613" width="4.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1044.68" y="623.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="549" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1039.38" y="559.5" ></text>
+</g>
+<g >
+<title>filemap_flush (40,404,040 samples, 0.26%)</title><rect x="1101.8" y="597" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1104.80" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_rename (101,010,100 samples, 0.64%)</title><rect x="463.5" y="693" width="8.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="466.52" y="703.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="1352.9" y="773" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1355.87" y="783.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="82.5" y="773" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="85.49" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1247.13" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="457.3" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="460.33" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="187.7" y="485" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="190.69" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="501.5" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="504.53" y="687.5" ></text>
+</g>
+<g >
+<title>readlink (20,202,020 samples, 0.13%)</title><rect x="914.4" y="741" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="917.38" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1158.4" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1161.38" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="681.0" y="405" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="683.99" y="415.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="1032.8" y="437" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1035.84" y="447.5" ></text>
+</g>
+<g >
+<title>git_reference_iterator_new (151,515,150 samples, 0.96%)</title><rect x="1230.9" y="837" width="13.2" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1233.87" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (40,404,040 samples, 0.26%)</title><rect x="712.8" y="629" width="3.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="715.82" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="171.8" y="869" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="174.78" y="879.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="709" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1273.65" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="229" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1100.38" y="239.5" ></text>
+</g>
+<g >
+<title>mas_find (10,101,010 samples, 0.06%)</title><rect x="1326.3" y="741" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1329.35" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="216.9" y="533" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="219.87" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="425.5" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="428.50" y="687.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="140.0" y="693" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="142.96" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="601.4" y="485" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="604.43" y="495.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.06%)</title><rect x="633.3" y="789" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="636.25" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="1028.4" y="549" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1031.42" y="559.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="597" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1075.63" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="833.9" y="725" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="836.93" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="449.4" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="452.37" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="418.4" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="421.43" y="671.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="757.0" y="517" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="760.02" y="527.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="709" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1343.49" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="266.4" y="613" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="269.37" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="780.9" y="613" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.89" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1009.0" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1011.98" y="607.5" ></text>
+</g>
+<g >
+<title>__kmalloc (20,202,020 samples, 0.13%)</title><rect x="156.8" y="901" width="1.7" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="159.75" y="911.5" ></text>
+</g>
+<g >
+<title>bio_associate_blkg_from_css (10,101,010 samples, 0.06%)</title><rect x="467.1" y="469" width="0.8" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="470.05" y="479.5" ></text>
+</g>
+<g >
+<title>do_writepages (30,303,030 samples, 0.19%)</title><rect x="1032.0" y="549" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1034.96" y="559.5" ></text>
+</g>
+<g >
+<title>security_prepare_creds (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="741" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1186.13" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="836.6" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="839.59" y="655.5" ></text>
+</g>
+<g >
+<title>__sock_create (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="853" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1358.52" y="863.5" ></text>
+</g>
+<g >
+<title>rmdir (202,020,200 samples, 1.28%)</title><rect x="203.6" y="709" width="17.7" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="206.61" y="719.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (30,303,030 samples, 0.19%)</title><rect x="549.3" y="757" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="552.27" y="767.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="436.1" y="837" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="439.11" y="847.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="469" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1039.38" y="479.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.06%)</title><rect x="789.7" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="792.73" y="575.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="330.0" y="741" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="333.03" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.92%)</title><rect x="952.4" y="709" width="26.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="955.40" y="719.5" >[..</text>
+</g>
+<g >
+<title>client_create_thread (10,101,010 samples, 0.06%)</title><rect x="58.6" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="61.62" y="895.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1245.9" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1248.90" y="751.5" ></text>
+</g>
+<g >
+<title>remove (292,929,290 samples, 1.86%)</title><rect x="386.6" y="805" width="25.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="389.60" y="815.5" >r..</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="830.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="833.40" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (80,808,080 samples, 0.51%)</title><rect x="1091.2" y="565" width="7.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1094.19" y="575.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="597" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1011.09" y="607.5" ></text>
+</g>
+<g >
+<title>touch_atime (20,202,020 samples, 0.13%)</title><rect x="201.8" y="645" width="1.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="204.84" y="655.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="837.5" y="757" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="840.47" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="321.2" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="324.19" y="703.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.13%)</title><rect x="39.2" y="789" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="42.17" y="799.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="932.9" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="935.95" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="380.4" y="789" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="383.42" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="469" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1253.32" y="479.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.06%)</title><rect x="944.4" y="661" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="947.44" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="709" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="1199.39" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1114.52" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_push (20,202,020 samples, 0.13%)</title><rect x="1350.2" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1353.22" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="844.5" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="847.54" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="999.3" y="597" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1002.25" y="607.5" ></text>
+</g>
+<g >
+<title>file_close (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="933" width="2.6" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1355.87" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1197.3" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1200.28" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="870.2" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="873.18" y="735.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="677" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1008.44" y="687.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="140.0" y="677" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="142.96" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (70,707,070 samples, 0.45%)</title><rect x="597.9" y="549" width="6.2" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="600.89" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.58%)</title><rect x="507.7" y="805" width="8.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="510.72" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.13%)</title><rect x="422.9" y="597" width="1.7" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="425.85" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1346.15" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="307.9" y="357" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="310.92" y="367.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="975.4" y="645" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="978.38" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="270.8" y="549" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="273.79" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="450.3" y="709" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="453.26" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="307.9" y="405" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="310.92" y="415.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="691.6" y="389" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="694.60" y="399.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="791.5" y="565" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="794.50" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="522.7" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="525.75" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1237.1" y="677" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1240.06" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="533" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1062.37" y="543.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="870.2" y="677" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="873.18" y="687.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="485" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1356.75" y="495.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.06%)</title><rect x="944.4" y="677" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="947.44" y="687.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="411.4" y="597" width="0.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="414.36" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (50,505,050 samples, 0.32%)</title><rect x="431.7" y="757" width="4.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="434.69" y="767.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1026.12" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="92.2" y="917" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="95.22" y="927.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1253.0" y="741" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1255.97" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (80,808,080 samples, 0.51%)</title><rect x="1047.9" y="677" width="7.0" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1050.87" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1142.5" y="709" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1145.47" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="856.0" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="859.03" y="495.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1222.38" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="501" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1253.32" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="1162.8" y="629" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1165.80" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="375.1" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="378.11" y="559.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1350.2" y="645" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1353.22" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="544.8" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="547.85" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="536.0" y="757" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="539.01" y="767.5" ></text>
+</g>
+<g >
+<title>wake_up_q (10,101,010 samples, 0.06%)</title><rect x="1278.6" y="629" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1281.61" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="932.1" y="741" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="935.06" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.83%)</title><rect x="230.1" y="693" width="11.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="233.13" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="444.1" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="447.07" y="783.5" ></text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="613" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1387.70" y="623.5" ></text>
+</g>
+<g >
+<title>d_lookup (30,303,030 samples, 0.19%)</title><rect x="107.2" y="853" width="2.7" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="110.25" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="751.7" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="754.72" y="719.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="636.8" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="639.79" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="905.5" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="908.54" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1228.2" y="549" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1231.22" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (50,505,050 samples, 0.32%)</title><rect x="424.6" y="773" width="4.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="427.62" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="117.9" y="757" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="120.85" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="388.4" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="391.37" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="578.4" y="645" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="581.44" y="655.5" ></text>
+</g>
+<g >
+<title>unlink_cb (90,909,090 samples, 0.58%)</title><rect x="416.7" y="837" width="7.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="419.66" y="847.5" ></text>
+</g>
+<g >
+<title>wait_task_zombie (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="741" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1339.96" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="87.8" y="757" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="90.80" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="661" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1331.12" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="1256.5" y="677" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1259.51" y="687.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1083.58" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="742.0" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="469.7" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="472.71" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="868.4" y="645" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="871.41" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_submit_page (10,101,010 samples, 0.06%)</title><rect x="879.0" y="501" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="882.02" y="511.5" ></text>
+</g>
+<g >
+<title>destroy_inode (20,202,020 samples, 0.13%)</title><rect x="284.9" y="613" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="287.94" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="84.3" y="757" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="87.26" y="767.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="357" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1011.09" y="367.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="429.9" y="837" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="432.92" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="132.0" y="805" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="135.00" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="826.0" y="613" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="828.98" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="844.5" y="773" width="7.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="847.54" y="783.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="341" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1100.38" y="351.5" ></text>
+</g>
+<g >
+<title>unlink (60,606,060 samples, 0.38%)</title><rect x="192.1" y="693" width="5.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="195.11" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="501.5" y="709" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="504.53" y="719.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="120.5" y="677" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="123.51" y="687.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="41.8" y="725" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="44.83" y="735.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="181" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1385.93" y="191.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="816.3" y="533" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="819.25" y="543.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (40,404,040 samples, 0.26%)</title><rect x="1128.3" y="549" width="3.6" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1131.32" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="79.8" y="869" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="82.84" y="879.5" ></text>
+</g>
+<g >
+<title>filename_parentat (40,404,040 samples, 0.26%)</title><rect x="258.4" y="661" width="3.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="261.42" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="917.0" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="920.03" y="751.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="480.3" y="565" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="483.31" y="575.5" ></text>
+</g>
+<g >
+<title>libjson_recv (60,606,060 samples, 0.38%)</title><rect x="1371.4" y="885" width="5.3" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1374.43" y="895.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept_handler (50,505,050 samples, 0.32%)</title><rect x="58.6" y="933" width="4.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="61.62" y="943.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="463.5" y="517" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="466.52" y="527.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="1235.3" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1238.29" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="469" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1075.63" y="479.5" ></text>
+</g>
+<g >
+<title>fstatat64 (90,909,090 samples, 0.58%)</title><rect x="608.5" y="773" width="8.0" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="611.50" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="397.2" y="549" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="400.21" y="559.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="310.6" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="313.58" y="463.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1273.3" y="629" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1276.31" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="840.1" y="741" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="843.12" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="1237.9" y="629" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1240.94" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1283.9" y="725" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1286.91" y="735.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1237.9" y="581" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1240.94" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="117.9" y="773" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="120.85" y="783.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="907.3" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="910.31" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_initialize_context (10,101,010 samples, 0.06%)</title><rect x="1171.6" y="597" width="0.9" height="15.0" fill="rgb(0,225,151)" rx="2" ry="2" />
+<text x="1174.64" y="607.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="257.5" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="260.53" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (60,606,060 samples, 0.38%)</title><rect x="635.0" y="709" width="5.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="638.02" y="719.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="883.4" y="757" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="886.44" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="432.6" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="435.58" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="565.2" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="568.18" y="671.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1350.2" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1353.22" y="607.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="776.5" y="645" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="779.47" y="655.5" ></text>
+</g>
+<g >
+<title>d_delete (10,101,010 samples, 0.06%)</title><rect x="431.7" y="741" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="434.69" y="751.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="874.6" y="693" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="877.60" y="703.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.06%)</title><rect x="540.4" y="597" width="0.9" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="543.43" y="607.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="378.6" y="709" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="381.65" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1157.5" y="677" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1160.50" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.58%)</title><rect x="1216.7" y="757" width="8.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="767.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="437.9" y="869" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="440.88" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="795.0" y="661" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="798.04" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="427.3" y="693" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="430.27" y="703.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (484,848,480 samples, 3.07%)</title><rect x="104.6" y="885" width="42.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="107.59" y="895.5" >ope..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="786.2" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="789.19" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="213" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1104.80" y="223.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.06%)</title><rect x="18.0" y="789" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="20.96" y="799.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="421" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1360.29" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="722.5" y="677" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="725.54" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="48.0" y="149" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="51.01" y="159.5" ></text>
+</g>
+<g >
+<title>git_repository_init (2,444,444,420 samples, 15.50%)</title><rect x="1002.8" y="869" width="213.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1005.79" y="879.5" >git_repository_init</text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1253.32" y="575.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="549" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1356.75" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="492.7" y="773" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="495.69" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.13%)</title><rect x="528.9" y="629" width="1.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="531.94" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="430.8" y="421" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="433.81" y="431.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1364.4" y="869" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1367.36" y="879.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="669.5" y="437" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="672.50" y="447.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="665.1" y="661" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="668.08" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="559.0" y="869" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="561.99" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1083.58" y="671.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="185.9" y="485" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="188.93" y="495.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="661" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1327.58" y="671.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.19%)</title><rect x="647.4" y="709" width="2.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="650.40" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="395.4" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="398.45" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_complete_request_remote (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="437" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1268.35" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_set_inode_flags (10,101,010 samples, 0.06%)</title><rect x="1284.8" y="757" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1287.80" y="767.5" ></text>
+</g>
+<g >
+<title>copy_page_range (70,707,070 samples, 0.45%)</title><rect x="1300.7" y="725" width="6.2" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1303.71" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="425.5" y="693" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="428.50" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="93.1" y="885" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="96.10" y="895.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="332.7" y="517" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="335.68" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.58%)</title><rect x="823.3" y="773" width="8.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="826.32" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="720.8" y="677" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="723.78" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="293" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1385.93" y="303.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="79.8" y="773" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="82.84" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="470.6" y="613" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="473.59" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="190.3" y="661" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="193.35" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="367.2" y="597" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="370.16" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="925.0" y="405" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="927.99" y="415.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="506.8" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="509.84" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="183.3" y="517" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="186.27" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_try_insert_merge (10,101,010 samples, 0.06%)</title><rect x="1135.4" y="421" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="1138.39" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.06%)</title><rect x="1272.4" y="757" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1275.42" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="277" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1104.80" y="287.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="377.8" y="677" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="380.76" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="669.5" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="672.50" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="833.0" y="629" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="836.05" y="639.5" ></text>
+</g>
+<g >
+<title>all (15,767,676,610 samples, 100%)</title><rect x="10.0" y="1077" width="1380.0" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="13.00" y="1087.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.06%)</title><rect x="249.6" y="629" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="252.58" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="573.1" y="757" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="576.14" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="18.0" y="933" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="20.96" y="943.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="833.9" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="836.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="795.0" y="613" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="798.04" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="722.5" y="533" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="725.54" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (646,464,640 samples, 4.10%)</title><rect x="94.9" y="933" width="56.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="97.87" y="943.5" >do_sy..</text>
+</g>
+<g >
+<title>vfs_symlink (30,303,030 samples, 0.19%)</title><rect x="1056.7" y="725" width="2.7" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1059.71" y="735.5" ></text>
+</g>
+<g >
+<title>git_reference_create (373,737,370 samples, 2.37%)</title><rect x="709.3" y="837" width="32.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="712.28" y="847.5" >gi..</text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="15.3" y="917" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="18.30" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="374.2" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="377.23" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="673.0" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="676.04" y="527.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="437" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1379.74" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="462.6" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="465.63" y="607.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="367.2" y="581" width="0.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="370.16" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="891.4" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="894.40" y="703.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="910.8" y="469" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="913.85" y="479.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="469" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1026.12" y="479.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (10,101,010 samples, 0.06%)</title><rect x="715.5" y="453" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="718.47" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="873.7" y="373" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="876.72" y="383.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (10,101,010 samples, 0.06%)</title><rect x="559.9" y="645" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="562.88" y="655.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (20,202,020 samples, 0.13%)</title><rect x="458.2" y="789" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="461.21" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_unload_buddy (10,101,010 samples, 0.06%)</title><rect x="398.1" y="549" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="401.10" y="559.5" ></text>
+</g>
+<g >
+<title>[libpcre.so.3.13.3] (10,101,010 samples, 0.06%)</title><rect x="864.0" y="789" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="866.99" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="773.8" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="776.82" y="607.5" ></text>
+</g>
+<g >
+<title>folio_memcg_lock (10,101,010 samples, 0.06%)</title><rect x="158.5" y="613" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="161.52" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="542.2" y="709" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="545.20" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="609.4" y="661" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="612.39" y="671.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="338.0" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="340.98" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="661" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1062.37" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="722.5" y="501" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="725.54" y="511.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="18.8" y="869" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="21.84" y="879.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_data (80,808,080 samples, 0.51%)</title><rect x="515.7" y="821" width="7.0" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="518.68" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="707.5" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="710.51" y="751.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="533" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1389.46" y="543.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="373" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1140.16" y="383.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="645" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1384.16" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_done (10,101,010 samples, 0.06%)</title><rect x="565.2" y="533" width="0.9" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="568.18" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1222.38" y="687.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="1029.3" y="533" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1032.31" y="543.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="806.5" y="309" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="809.53" y="319.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="330.9" y="709" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="333.91" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="702.2" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="705.21" y="783.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="709" width="3.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1087.12" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="982.5" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="985.45" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="1238.8" y="549" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1241.83" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="733.2" y="709" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.15" y="719.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="567.8" y="773" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="570.83" y="783.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1279.5" y="645" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1282.49" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1222.0" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1225.03" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1345.8" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1348.80" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="527.2" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="530.17" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="978.9" y="581" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="981.92" y="591.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="955.0" y="549" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="958.05" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1198.2" y="725" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1201.16" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1240.6" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1243.60" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="443.2" y="837" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="446.18" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="868.4" y="693" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="871.41" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="82.5" y="789" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="85.49" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.06%)</title><rect x="849.0" y="533" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="851.96" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_read (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="789" width="2.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1336.42" y="799.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="430.8" y="565" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="433.81" y="575.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="930.3" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="933.29" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="137.3" y="789" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="140.30" y="799.5" ></text>
+</g>
+<g >
+<title>grab_cache_page_write_begin (10,101,010 samples, 0.06%)</title><rect x="1085.0" y="549" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1088.00" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="759.7" y="677" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="762.67" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1199.9" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1202.93" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="676.6" y="469" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="679.57" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="881.7" y="789" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="884.67" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="692.5" y="229" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="695.49" y="239.5" ></text>
+</g>
+<g >
+<title>sk_reset_timer (10,101,010 samples, 0.06%)</title><rect x="1377.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1380.62" y="655.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="11.8" y="693" width="2.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="14.77" y="703.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (10,101,010 samples, 0.06%)</title><rect x="1349.3" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1352.33" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="660.7" y="741" width="7.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="663.66" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1253.0" y="805" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1255.97" y="815.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="353.0" y="693" width="3.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="356.01" y="703.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="179.7" y="581" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="182.74" y="591.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1357.3" y="581" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1360.29" y="591.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="18.8" y="341" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="21.84" y="351.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="344.2" y="805" width="1.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="347.17" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="798.6" y="581" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="801.57" y="591.5" ></text>
+</g>
+<g >
+<title>unlink_cb (252,525,250 samples, 1.60%)</title><rect x="358.3" y="805" width="22.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="361.32" y="815.5" >u..</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="799.5" y="517" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="802.46" y="527.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="629" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1364.71" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (151,515,150 samples, 0.96%)</title><rect x="688.1" y="661" width="13.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="691.07" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="201.8" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="204.84" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="919.7" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="922.69" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="430.8" y="677" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="433.81" y="687.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="1323.7" y="709" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1326.70" y="719.5" ></text>
+</g>
+<g >
+<title>pthread_create (10,101,010 samples, 0.06%)</title><rect x="58.6" y="869" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="61.62" y="879.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="18.8" y="501" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="21.84" y="511.5" ></text>
+</g>
+<g >
+<title>json_object_new_object (30,303,030 samples, 0.19%)</title><rect x="1366.1" y="885" width="2.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1369.13" y="895.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="120.5" y="661" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="123.51" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1159.3" y="613" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1162.26" y="623.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="565" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="1086.24" y="575.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.06%)</title><rect x="527.2" y="741" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="530.17" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="910.0" y="709" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="912.96" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.58%)</title><rect x="522.7" y="789" width="8.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="525.75" y="799.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.06%)</title><rect x="467.9" y="565" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="470.94" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="977.1" y="517" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="980.15" y="527.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1208.8" y="597" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1211.77" y="607.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (50,505,050 samples, 0.32%)</title><rect x="808.3" y="501" width="4.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="811.30" y="511.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="827.7" y="613" width="2.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="830.75" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="834.8" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="837.82" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="887.0" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="889.98" y="639.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="929.4" y="677" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="932.41" y="687.5" ></text>
+</g>
+<g >
+<title>security_cred_free (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="645" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1205.58" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="328.3" y="693" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="331.26" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_writepage_trans_blocks (10,101,010 samples, 0.06%)</title><rect x="314.1" y="581" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="317.11" y="591.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="553.7" y="661" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="556.69" y="671.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.19%)</title><rect x="414.0" y="837" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="417.01" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="996.6" y="693" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="999.60" y="703.5" ></text>
+</g>
+<g >
+<title>rename (131,313,130 samples, 0.83%)</title><rect x="1025.8" y="741" width="11.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1028.77" y="751.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="591.7" y="629" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="594.70" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="795.9" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="798.92" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (30,303,030 samples, 0.19%)</title><rect x="538.7" y="645" width="2.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="541.66" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="661" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1112.76" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (202,020,200 samples, 1.28%)</title><rect x="203.6" y="693" width="17.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="206.61" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1078.8" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1081.81" y="687.5" ></text>
+</g>
+<g >
+<title>crc_array (10,101,010 samples, 0.06%)</title><rect x="1042.6" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1045.57" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="939.1" y="645" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="942.14" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1260.0" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1263.04" y="719.5" ></text>
+</g>
+<g >
+<title>do_writepages (40,404,040 samples, 0.26%)</title><rect x="876.4" y="581" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="879.37" y="591.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="727.0" y="549" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="729.96" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1255.6" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1258.62" y="719.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.19%)</title><rect x="460.9" y="645" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="463.86" y="655.5" ></text>
+</g>
+<g >
+<title>log_entry_start (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="885" width="0.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1273.65" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (90,909,090 samples, 0.58%)</title><rect x="1038.1" y="757" width="8.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1041.15" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1198.2" y="693" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1201.16" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.26%)</title><rect x="876.4" y="565" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="879.37" y="575.5" ></text>
+</g>
+<g >
+<title>ip_rcv (70,707,070 samples, 0.45%)</title><rect x="44.5" y="325" width="6.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="47.48" y="335.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1100.0" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1103.03" y="607.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (40,404,040 samples, 0.26%)</title><rect x="1101.8" y="581" width="3.5" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1104.80" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="367.2" y="629" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="370.16" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="669.5" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="672.50" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="320.3" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="323.30" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_rename (70,707,070 samples, 0.45%)</title><rect x="1133.6" y="677" width="6.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1136.63" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (40,404,040 samples, 0.26%)</title><rect x="1186.7" y="821" width="3.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1189.67" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="427.3" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="430.27" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.06%)</title><rect x="396.3" y="565" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="399.33" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="717.2" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="720.24" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="729.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="732.62" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="323.0" y="789" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="325.95" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="506.8" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="509.84" y="703.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.13%)</title><rect x="640.3" y="645" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="643.33" y="655.5" ></text>
+</g>
+<g >
+<title>dx_probe (10,101,010 samples, 0.06%)</title><rect x="1274.2" y="693" width="0.9" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="1277.19" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="413.1" y="741" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="416.13" y="751.5" ></text>
+</g>
+<g >
+<title>json_tokener_new_ex (20,202,020 samples, 0.13%)</title><rect x="1371.4" y="837" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1374.43" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="418.4" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="421.43" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (474,747,470 samples, 3.01%)</title><rect x="1288.3" y="837" width="41.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1291.33" y="847.5" >do_..</text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="223.9" y="645" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="226.94" y="655.5" ></text>
+</g>
+<g >
+<title>eventfd (20,202,020 samples, 0.13%)</title><rect x="59.5" y="885" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="62.51" y="895.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1350.2" y="629" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1353.22" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="158.5" y="789" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="161.52" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="462.6" y="613" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="465.63" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="848.1" y="693" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="851.08" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="178.9" y="645" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="181.85" y="655.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="1375.9" y="725" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1378.86" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1031.1" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1034.08" y="543.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1260.0" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1263.04" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="853.4" y="725" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="856.38" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_link (10,101,010 samples, 0.06%)</title><rect x="986.9" y="661" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="989.87" y="671.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="1167.2" y="597" width="3.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1170.22" y="607.5" ></text>
+</g>
+<g >
+<title>libgit_clone_to_tmp (8,181,818,100 samples, 51.89%)</title><rect x="571.4" y="917" width="716.1" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="574.37" y="927.5" >libgit_clone_to_tmp</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="197.4" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="200.42" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="930.3" y="629" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="933.29" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="309" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1104.80" y="319.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1247.13" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="853.4" y="533" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="856.38" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1344.9" y="821" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1347.91" y="831.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="711.1" y="549" width="0.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="714.05" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="728.7" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="731.73" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="165" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1100.38" y="175.5" ></text>
+</g>
+<g >
+<title>fscrypt_match_name (10,101,010 samples, 0.06%)</title><rect x="143.5" y="757" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="146.49" y="767.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="797.7" y="485" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="800.69" y="495.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="373" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1104.80" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="889.6" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="892.63" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (70,707,070 samples, 0.45%)</title><rect x="1072.6" y="709" width="6.2" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1075.63" y="719.5" ></text>
+</g>
+<g >
+<title>iput (10,101,010 samples, 0.06%)</title><rect x="232.8" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="235.78" y="655.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="379.5" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="382.53" y="655.5" ></text>
+</g>
+<g >
+<title>crc_96 (10,101,010 samples, 0.06%)</title><rect x="968.3" y="421" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="971.31" y="431.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="389" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1026.12" y="399.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="442.3" y="725" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="445.30" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="910.0" y="517" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="912.96" y="527.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="501.5" y="629" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="504.53" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="796.8" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="799.80" y="591.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="737.6" y="709" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="740.57" y="719.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="517" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1011.09" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="501.5" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="504.53" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="18.8" y="357" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="21.84" y="367.5" ></text>
+</g>
+<g >
+<title>alloc_page_buffers (10,101,010 samples, 0.06%)</title><rect x="1007.2" y="581" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1010.21" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="507.7" y="709" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="510.72" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1364.4" y="885" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1367.36" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="509.5" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="512.49" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="868.4" y="677" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="871.41" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.06%)</title><rect x="873.7" y="565" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="876.72" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="982.5" y="613" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="985.45" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="661" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1022.58" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="208.9" y="517" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="211.91" y="527.5" ></text>
+</g>
+<g >
+<title>iput (101,010,100 samples, 0.64%)</title><rect x="368.9" y="677" width="8.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="371.92" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="808.3" y="437" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="811.30" y="447.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="837" width="4.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1383.28" y="847.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="447.6" y="581" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="450.60" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="885" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1355.87" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="901.1" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="904.12" y="687.5" ></text>
+</g>
+<g >
+<title>inode_maybe_inc_iversion (10,101,010 samples, 0.06%)</title><rect x="284.1" y="629" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="287.06" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (20,202,020 samples, 0.13%)</title><rect x="860.5" y="485" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="863.45" y="495.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="709" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1083.58" y="719.5" ></text>
+</g>
+<g >
+<title>charge_memcg (10,101,010 samples, 0.06%)</title><rect x="452.0" y="517" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="455.02" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.06%)</title><rect x="1084.1" y="501" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1087.12" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="199.2" y="709" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="202.19" y="719.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="853.4" y="693" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="856.38" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="765.9" y="725" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="768.86" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="991.3" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="994.29" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="987.8" y="693" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="990.76" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="560.8" y="741" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="563.76" y="751.5" ></text>
+</g>
+<g >
+<title>prepare_creds (10,101,010 samples, 0.06%)</title><rect x="1213.2" y="661" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1216.19" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="679.2" y="421" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="682.22" y="431.5" ></text>
+</g>
+<g >
+<title>log_entry_start (121,212,120 samples, 0.77%)</title><rect x="64.8" y="949" width="10.6" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="67.81" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="866.6" y="773" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="869.64" y="783.5" ></text>
+</g>
+<g >
+<title>mas_pop_node (10,101,010 samples, 0.06%)</title><rect x="1310.4" y="645" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1313.44" y="655.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="39.2" y="885" width="1.7" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="42.17" y="895.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="735.8" y="549" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="738.80" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="421" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1140.16" y="431.5" ></text>
+</g>
+<g >
+<title>security_cred_free (10,101,010 samples, 0.06%)</title><rect x="159.4" y="885" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="162.40" y="895.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1357.3" y="597" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1360.29" y="607.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (40,404,040 samples, 0.26%)</title><rect x="1128.3" y="565" width="3.6" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1131.32" y="575.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="629" width="1.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1026.12" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="247.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="250.81" y="639.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="117" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1385.93" y="127.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="231.0" y="597" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="234.01" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="142.6" y="773" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="145.61" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (30,303,030 samples, 0.19%)</title><rect x="620.0" y="645" width="2.6" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="622.99" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="677" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1356.75" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="693" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1026.12" y="703.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.06%)</title><rect x="848.1" y="581" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="851.08" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.51%)</title><rect x="249.6" y="725" width="7.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="252.58" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="957.7" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="960.70" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="706.6" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="709.63" y="687.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (484,848,480 samples, 3.07%)</title><rect x="951.5" y="805" width="42.4" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="954.51" y="815.5" >git..</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1143.4" y="693" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1146.35" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_open_ondisk (40,404,040 samples, 0.26%)</title><rect x="1078.8" y="821" width="3.6" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="1081.81" y="831.5" ></text>
+</g>
+<g >
+<title>rmdir (222,222,220 samples, 1.41%)</title><rect x="359.2" y="773" width="19.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="362.20" y="783.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="987.8" y="677" width="0.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="990.76" y="687.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="412.2" y="741" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="415.24" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="779.1" y="661" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="782.12" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="965.7" y="485" width="0.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="968.66" y="495.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (20,202,020 samples, 0.13%)</title><rect x="171.8" y="885" width="1.7" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="174.78" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.13%)</title><rect x="113.4" y="821" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="116.43" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="510.4" y="629" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="513.37" y="639.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="870.2" y="613" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="873.18" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="853.4" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="856.38" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="919.15" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="472.4" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="475.36" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="576.7" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="579.68" y="703.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (40,404,040 samples, 0.26%)</title><rect x="14.4" y="965" width="3.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="17.42" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="250.5" y="549" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="253.46" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="421" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1026.12" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 1.54%)</title><rect x="1016.0" y="789" width="21.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1019.05" y="799.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="129.3" y="773" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="132.35" y="783.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="719.9" y="485" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="722.89" y="495.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="469" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1389.46" y="479.5" ></text>
+</g>
+<g >
+<title>read_hv_clock_tsc (10,101,010 samples, 0.06%)</title><rect x="29.4" y="805" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="32.45" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="1148.7" y="581" width="1.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1151.65" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="827.7" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="830.75" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1016.9" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1019.93" y="719.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="612.9" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="615.92" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="993.9" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="996.95" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="612.0" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="615.04" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="551.0" y="645" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="554.04" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="893.2" y="789" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="896.16" y="799.5" ></text>
+</g>
+<g >
+<title>mkdir (474,747,470 samples, 3.01%)</title><rect x="1140.7" y="821" width="41.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1143.70" y="831.5" >mkdir</text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="556.3" y="757" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="559.34" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1382.0" y="357" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1385.04" y="367.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="82.5" y="709" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="85.49" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="17.1" y="933" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="20.07" y="943.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (20,202,020 samples, 0.13%)</title><rect x="1076.2" y="613" width="1.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1079.16" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (10,101,010 samples, 0.06%)</title><rect x="1045.2" y="565" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1048.22" y="575.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="661" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1364.71" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1075.63" y="671.5" ></text>
+</g>
+<g >
+<title>link (40,404,040 samples, 0.26%)</title><rect x="545.7" y="821" width="3.6" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="548.73" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1227.3" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.34" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="932.1" y="693" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="935.06" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="792.4" y="501" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="795.38" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="583.7" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="586.75" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="849.0" y="645" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="851.96" y="655.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="325" width="0.8" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1306.36" y="335.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1100.0" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1103.03" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="711.9" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="714.93" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="740.2" y="645" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="743.22" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="806.5" y="325" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="809.53" y="335.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="429.9" y="869" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="432.92" y="879.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="963.0" y="565" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="966.00" y="575.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="850.7" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="853.73" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="914.4" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="917.38" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="901" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1355.87" y="911.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1256.5" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1259.51" y="671.5" ></text>
+</g>
+<g >
+<title>kmalloc_slab (10,101,010 samples, 0.06%)</title><rect x="903.8" y="453" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="906.77" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="446.7" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="449.72" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="710.2" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="713.17" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1012.5" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1015.51" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="79.8" y="789" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="82.84" y="799.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1120.4" y="597" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1123.37" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="1347.6" y="709" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1350.57" y="719.5" ></text>
+</g>
+<g >
+<title>__sys_socket (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="869" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1358.52" y="879.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="485" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1360.29" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="780.9" y="629" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.89" y="639.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.06%)</title><rect x="580.2" y="645" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="583.21" y="655.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (20,202,020 samples, 0.13%)</title><rect x="1148.7" y="565" width="1.7" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1151.65" y="575.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="522.7" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="525.75" y="607.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.19%)</title><rect x="1386.5" y="661" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1389.46" y="671.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="453" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1140.16" y="463.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1229.1" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1232.10" y="591.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="530.7" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="533.70" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="754.4" y="565" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="757.37" y="575.5" ></text>
+</g>
+<g >
+<title>pipe_read (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="773" width="2.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1336.42" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="805" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1340.84" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="790.6" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="793.61" y="591.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="252.2" y="661" width="3.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="255.23" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="626.2" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="629.18" y="607.5" ></text>
+</g>
+<g >
+<title>verify_dirent_name (10,101,010 samples, 0.06%)</title><rect x="704.0" y="677" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="706.98" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="837" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1379.74" y="847.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="675.7" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="678.69" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="414.0" y="789" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="417.01" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="423.7" y="533" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="426.73" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (10,101,010 samples, 0.06%)</title><rect x="603.2" y="517" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="606.20" y="527.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="838.4" y="773" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="841.35" y="783.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1026.12" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="521.9" y="485" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="524.86" y="495.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (30,303,030 samples, 0.19%)</title><rect x="460.9" y="677" width="2.6" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="463.86" y="687.5" ></text>
+</g>
+<g >
+<title>d_alloc_pseudo (10,101,010 samples, 0.06%)</title><rect x="59.5" y="757" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="62.51" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="559.9" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="562.88" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="217.8" y="469" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="220.75" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="141.7" y="741" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="144.72" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="531.6" y="821" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="534.59" y="831.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.06%)</title><rect x="995.7" y="789" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="998.71" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.06%)</title><rect x="970.1" y="453" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="973.08" y="463.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.06%)</title><rect x="1274.2" y="645" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1277.19" y="655.5" ></text>
+</g>
+<g >
+<title>netif_rx_internal (10,101,010 samples, 0.06%)</title><rect x="1359.1" y="469" width="0.8" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="1362.06" y="479.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="703.1" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="706.09" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="948.0" y="789" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="950.98" y="799.5" ></text>
+</g>
+<g >
+<title>new_inode_pseudo (20,202,020 samples, 0.13%)</title><rect x="61.3" y="773" width="1.7" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="64.27" y="783.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1102.7" y="421" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1105.68" y="431.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="783.5" y="661" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="786.54" y="671.5" ></text>
+</g>
+<g >
+<title>up_write (10,101,010 samples, 0.06%)</title><rect x="88.7" y="805" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="91.68" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1114.2" y="677" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1117.18" y="687.5" ></text>
+</g>
+<g >
+<title>libgit_checkout (1,464,646,450 samples, 9.29%)</title><rect x="443.2" y="917" width="128.2" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="446.18" y="927.5" >libgit_checkout</text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="434.3" y="661" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="437.34" y="671.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.06%)</title><rect x="859.6" y="485" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="862.57" y="495.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="570.5" y="805" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="573.49" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="840.1" y="805" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="843.12" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (70,707,070 samples, 0.45%)</title><rect x="956.8" y="581" width="6.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="959.82" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="836.6" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="839.59" y="607.5" ></text>
+</g>
+<g >
+<title>make_pollfds (10,101,010 samples, 0.06%)</title><rect x="57.7" y="933" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="60.74" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_fc_del (10,101,010 samples, 0.06%)</title><rect x="391.0" y="629" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="394.02" y="639.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="140.0" y="725" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="142.96" y="735.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.32%)</title><rect x="184.2" y="565" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="187.16" y="575.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="208.9" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="211.91" y="543.5" ></text>
+</g>
+<g >
+<title>d_same_name (20,202,020 samples, 0.13%)</title><rect x="108.1" y="837" width="1.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="111.13" y="847.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="943.6" y="725" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="946.56" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="734.9" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="737.92" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="353.0" y="645" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="356.01" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_journal_check_start (10,101,010 samples, 0.06%)</title><rect x="677.5" y="501" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="680.46" y="511.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="597" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1026.12" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="795.0" y="645" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="798.04" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="85.1" y="741" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="88.14" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="766.7" y="709" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="769.75" y="719.5" ></text>
+</g>
+<g >
+<title>__lookup_hash (30,303,030 samples, 0.19%)</title><rect x="1272.4" y="773" width="2.7" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1275.42" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="911.7" y="533" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="914.73" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="1280.4" y="757" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="1283.38" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_append (80,808,080 samples, 0.51%)</title><rect x="84.3" y="853" width="7.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="87.26" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="250.5" y="645" width="1.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="253.46" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="1152.2" y="677" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1155.19" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.26%)</title><rect x="501.5" y="773" width="3.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="504.53" y="783.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="629" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1379.74" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1146.9" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1149.89" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.38%)</title><rect x="1133.6" y="549" width="5.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1136.63" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="788.0" y="693" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="790.96" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1116.8" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1119.83" y="671.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="1117.7" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1120.71" y="671.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.06%)</title><rect x="1258.3" y="629" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1261.28" y="639.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="936.5" y="613" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="939.48" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1382.0" y="421" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1385.04" y="431.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="1212.3" y="645" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1215.31" y="655.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="419.3" y="645" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="422.31" y="655.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="39.2" y="757" width="1.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="42.17" y="767.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="505.1" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="508.07" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1220.61" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="526.3" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="529.28" y="735.5" ></text>
+</g>
+<g >
+<title>current_time (10,101,010 samples, 0.06%)</title><rect x="81.6" y="853" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="84.61" y="863.5" ></text>
+</g>
+<g >
+<title>__send (30,303,030 samples, 0.19%)</title><rect x="11.8" y="901" width="2.6" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="14.77" y="911.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="493.6" y="645" width="2.6" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="496.57" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="1223.8" y="693" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1226.80" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="873.7" y="437" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="876.72" y="447.5" ></text>
+</g>
+<g >
+<title>__fsnotify_inode_delete (10,101,010 samples, 0.06%)</title><rect x="671.3" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="674.27" y="559.5" ></text>
+</g>
+<g >
+<title>__blk_rq_map_sg (10,101,010 samples, 0.06%)</title><rect x="859.6" y="245" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="862.57" y="255.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="826.0" y="533" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="828.98" y="543.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="63.0" y="949" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="66.04" y="959.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="567.8" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="570.83" y="863.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.06%)</title><rect x="412.2" y="837" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="415.24" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1007.2" y="613" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1010.21" y="623.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="405" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1140.16" y="415.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1241.5" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1244.48" y="623.5" ></text>
+</g>
+<g >
+<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="464.4" y="453" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="467.40" y="463.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="465.3" y="549" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="468.29" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="677" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1190.55" y="687.5" ></text>
+</g>
+<g >
+<title>remove (60,606,060 samples, 0.38%)</title><rect x="192.1" y="709" width="5.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="195.11" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (40,404,040 samples, 0.26%)</title><rect x="1249.4" y="757" width="3.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1252.44" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="214.2" y="517" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="217.22" y="527.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="815.4" y="533" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="818.37" y="543.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="178.0" y="597" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="180.97" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="902.9" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="905.89" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1224.7" y="709" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1227.68" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_push (30,303,030 samples, 0.19%)</title><rect x="11.8" y="757" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="14.77" y="767.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="826.9" y="549" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="829.86" y="559.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="893.2" y="661" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="896.16" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="1166.3" y="613" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1169.34" y="623.5" ></text>
+</g>
+<g >
+<title>libgit_repository_free (20,202,020 samples, 0.13%)</title><rect x="171.8" y="917" width="1.7" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="174.78" y="927.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="727.0" y="581" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="729.96" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1092.1" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1095.08" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="729.6" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="732.62" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_page_buffers (10,101,010 samples, 0.06%)</title><rect x="791.5" y="501" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="794.50" y="511.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="79.0" y="837" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="81.96" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="749.9" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="752.95" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="900.2" y="581" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="903.24" y="591.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.06%)</title><rect x="813.6" y="469" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="816.60" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1144.2" y="645" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1147.23" y="655.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="261" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1104.80" y="271.5" ></text>
+</g>
+<g >
+<title>pipe2 (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="885" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1339.07" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_socket (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="885" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1358.52" y="895.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="800.3" y="517" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="803.34" y="527.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="450.3" y="645" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="453.26" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1273.3" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1276.31" y="687.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="609.4" y="677" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="612.39" y="687.5" ></text>
+</g>
+<g >
+<title>prepare_creds (60,606,060 samples, 0.38%)</title><rect x="154.1" y="933" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="157.10" y="943.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (90,909,090 samples, 0.58%)</title><rect x="1356.4" y="853" width="8.0" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1359.41" y="863.5" ></text>
+</g>
+<g >
+<title>release_sock (20,202,020 samples, 0.13%)</title><rect x="1347.6" y="741" width="1.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1350.57" y="751.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="155.0" y="901" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="157.98" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1079.7" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1082.70" y="751.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.06%)</title><rect x="935.6" y="709" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="938.60" y="719.5" ></text>
+</g>
+<g >
+<title>file_close (161,616,160 samples, 1.02%)</title><rect x="40.9" y="885" width="14.2" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="43.94" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (7,979,797,900 samples, 50.61%)</title><rect x="571.4" y="885" width="698.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="574.37" y="895.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="458.2" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="461.21" y="703.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="485" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1364.71" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="422.0" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="424.97" y="671.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="1131.0" y="437" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1133.97" y="447.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="836.6" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="839.59" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1263.6" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1266.58" y="671.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="786.2" y="613" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="789.19" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="543.1" y="709" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="546.08" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="932.1" y="661" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="935.06" y="671.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="768.5" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="771.51" y="575.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (70,707,070 samples, 0.45%)</title><rect x="69.2" y="869" width="6.2" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="72.23" y="879.5" ></text>
+</g>
+<g >
+<title>git_worktree_list (30,303,030 samples, 0.19%)</title><rect x="785.3" y="789" width="2.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="788.31" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="630.6" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="633.60" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="472.4" y="821" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="475.36" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1136.3" y="405" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1139.28" y="415.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="597" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1062.37" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="849.0" y="693" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="851.96" y="703.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="677" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1331.12" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="613" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1022.58" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="759.7" y="597" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="762.67" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.06%)</title><rect x="859.6" y="469" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="862.57" y="479.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="665.1" y="597" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="668.08" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="501.5" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="504.53" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="990.4" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="993.41" y="623.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="10.0" y="981" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="13.00" y="991.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (777,777,770 samples, 4.93%)</title><rect x="1002.8" y="821" width="68.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1005.79" y="831.5" >[libgit..</text>
+</g>
+<g >
+<title>__x64_sys_unlink (40,404,040 samples, 0.26%)</title><rect x="317.6" y="693" width="3.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="320.65" y="703.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (10,101,010 samples, 0.06%)</title><rect x="988.6" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="991.64" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="1116.8" y="709" width="4.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1119.83" y="719.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="817.1" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="820.14" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="1062.0" y="597" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1065.02" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="921.5" y="565" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="924.45" y="575.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="419.3" y="661" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="422.31" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_append (70,707,070 samples, 0.45%)</title><rect x="965.7" y="565" width="6.1" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="968.66" y="575.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1081.5" y="725" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1084.47" y="735.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1364.71" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="332.7" y="581" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="335.68" y="591.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1238.8" y="629" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1241.83" y="639.5" ></text>
+</g>
+<g >
+<title>remove (131,313,130 samples, 0.83%)</title><rect x="332.7" y="773" width="11.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="335.68" y="783.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (70,707,070 samples, 0.45%)</title><rect x="44.5" y="357" width="6.2" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="47.48" y="367.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="849.0" y="677" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="851.96" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="709.3" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="712.28" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="718.1" y="677" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="721.12" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="647.4" y="757" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="650.40" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="468.8" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="471.82" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="18.8" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="21.84" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="186.8" y="453" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="189.81" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="858.7" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="861.69" y="655.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="565.2" y="613" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="568.18" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (50,505,050 samples, 0.32%)</title><rect x="808.3" y="485" width="4.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="811.30" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (30,303,030 samples, 0.19%)</title><rect x="538.7" y="661" width="2.6" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="541.66" y="671.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.06%)</title><rect x="565.2" y="565" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="568.18" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="757.0" y="677" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="760.02" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="181.5" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="184.51" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_link (30,303,030 samples, 0.19%)</title><rect x="546.6" y="741" width="2.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="549.62" y="751.5" ></text>
+</g>
+<g >
+<title>mpage_submit_page (10,101,010 samples, 0.06%)</title><rect x="1138.0" y="485" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1141.05" y="495.5" ></text>
+</g>
+<g >
+<title>copy_page_to_iter (10,101,010 samples, 0.06%)</title><rect x="848.1" y="597" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="851.08" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v6_conn_request (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="405" width="0.8" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="1389.46" y="415.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="661" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1268.35" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="853" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1342.61" y="863.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="581" width="1.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1092.42" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="783.5" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="786.54" y="623.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="559.9" y="677" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="562.88" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="425.5" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="428.50" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="897.6" y="693" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="900.58" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="722.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="725.54" y="703.5" ></text>
+</g>
+<g >
+<title>mb_mark_used (10,101,010 samples, 0.06%)</title><rect x="1176.1" y="549" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1179.06" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_check_limits (10,101,010 samples, 0.06%)</title><rect x="714.6" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="717.59" y="463.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="469" width="0.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1306.36" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1114.52" y="479.5" ></text>
+</g>
+<g >
+<title>git_object_peel (80,808,080 samples, 0.51%)</title><rect x="551.9" y="885" width="7.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="554.92" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1238.8" y="501" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1241.83" y="511.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="191.2" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="194.23" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="231.9" y="453" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="234.90" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="563.4" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="566.41" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.45%)</title><rect x="634.1" y="757" width="6.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="637.14" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.19%)</title><rect x="528.1" y="725" width="2.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="531.05" y="735.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="848.1" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="851.08" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="389" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1387.70" y="399.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1282.1" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1285.15" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="332.7" y="613" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="335.68" y="623.5" ></text>
+</g>
+<g >
+<title>unlink_cb (60,606,060 samples, 0.38%)</title><rect x="192.1" y="725" width="5.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="195.11" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="222.2" y="757" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="225.17" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (30,303,030 samples, 0.19%)</title><rect x="249.6" y="677" width="2.6" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="252.58" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (222,222,220 samples, 1.41%)</title><rect x="955.9" y="661" width="19.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="958.93" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="581" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1075.63" y="591.5" ></text>
+</g>
+<g >
+<title>mkdir (323,232,320 samples, 2.05%)</title><rect x="580.2" y="757" width="28.3" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="583.21" y="767.5" >m..</text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="450.3" y="757" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="453.26" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="798.6" y="597" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="801.57" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.88" y="879.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="833.9" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="836.93" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1260.9" y="613" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1263.93" y="623.5" ></text>
+</g>
+<g >
+<title>mntget (10,101,010 samples, 0.06%)</title><rect x="1047.0" y="629" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1049.99" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="710.2" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="713.17" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="522.7" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="525.75" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="955.0" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="958.05" y="575.5" ></text>
+</g>
+<g >
+<title>mas_store (70,707,070 samples, 0.45%)</title><rect x="1307.8" y="725" width="6.2" height="15.0" fill="rgb(0,213,96)" rx="2" ry="2" />
+<text x="1310.78" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="201.8" y="597" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="204.84" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1032.8" y="485" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1035.84" y="495.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="819.8" y="613" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="822.79" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 1.67%)</title><rect x="1082.4" y="789" width="22.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1085.35" y="799.5" >[..</text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="696.9" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="699.91" y="511.5" ></text>
+</g>
+<g >
+<title>wbt_wait (10,101,010 samples, 0.06%)</title><rect x="807.4" y="373" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="810.41" y="383.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="478.5" y="709" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="481.55" y="719.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (181,818,180 samples, 1.15%)</title><rect x="821.6" y="837" width="15.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="824.56" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="563.4" y="693" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="566.41" y="703.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.06%)</title><rect x="978.0" y="549" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="981.03" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (80,808,080 samples, 0.51%)</title><rect x="307.0" y="565" width="7.1" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="310.04" y="575.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="702.2" y="805" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="705.21" y="815.5" ></text>
+</g>
+<g >
+<title>iput (353,535,350 samples, 2.24%)</title><rect x="284.9" y="645" width="31.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="287.94" y="655.5" >iput</text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="669.5" y="629" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="672.50" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (20,202,020 samples, 0.13%)</title><rect x="808.3" y="469" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="811.30" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="792.4" y="517" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="795.38" y="527.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="851.6" y="725" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="854.61" y="735.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="197.4" y="661" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="200.42" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="498.9" y="789" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="501.88" y="799.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.06%)</title><rect x="254.0" y="581" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="257.00" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1212.65" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="365.4" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="368.39" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (323,232,320 samples, 2.05%)</title><rect x="580.2" y="741" width="28.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="583.21" y="751.5" >e..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="742.0" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="744.99" y="687.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="437" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1039.38" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (191,919,190 samples, 1.22%)</title><rect x="361.9" y="693" width="16.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="364.85" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="891.4" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="894.40" y="639.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="155.0" y="885" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="157.98" y="895.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.06%)</title><rect x="556.3" y="773" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="559.34" y="783.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="421" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1253.32" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1144.2" y="661" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1147.23" y="671.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="350.4" y="597" width="0.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="353.36" y="607.5" ></text>
+</g>
+<g >
+<title>file_update_time (10,101,010 samples, 0.06%)</title><rect x="16.2" y="773" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="19.19" y="783.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="581" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1011.09" y="591.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (20,202,020 samples, 0.13%)</title><rect x="56.0" y="917" width="1.7" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="58.97" y="927.5" ></text>
+</g>
+<g >
+<title>getdents64 (121,212,120 samples, 0.77%)</title><rect x="347.7" y="789" width="10.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="350.71" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1267.1" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1270.12" y="655.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (30,303,030 samples, 0.19%)</title><rect x="11.8" y="981" width="2.6" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="14.77" y="991.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1146.0" y="645" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1149.00" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="986.9" y="613" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="989.87" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="909.1" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="912.08" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (10,101,010 samples, 0.06%)</title><rect x="990.4" y="757" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="993.41" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (70,707,070 samples, 0.45%)</title><rect x="69.2" y="901" width="6.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="72.23" y="911.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="769.4" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="772.40" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="517" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1086.24" y="527.5" ></text>
+</g>
+<g >
+<title>wait_for_child (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="885" width="0.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1339.96" y="895.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="902.0" y="645" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="905.01" y="655.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="485" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1387.70" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="565" width="1.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1024.35" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (40,404,040 samples, 0.26%)</title><rect x="299.1" y="597" width="3.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="302.08" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="799.5" y="485" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="802.46" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="546.6" y="789" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="549.62" y="799.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="613" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1208.23" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="833.0" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="836.05" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="747.3" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="750.30" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="630.6" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="633.60" y="559.5" ></text>
+</g>
+<g >
+<title>do_rmdir (191,919,190 samples, 1.22%)</title><rect x="203.6" y="645" width="16.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="206.61" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="521.9" y="565" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="524.86" y="575.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="1012.5" y="741" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1015.51" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="1062.0" y="581" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1065.02" y="591.5" ></text>
+</g>
+<g >
+<title>remove (131,313,130 samples, 0.83%)</title><rect x="230.1" y="741" width="11.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="233.13" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="759.7" y="549" width="4.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="762.67" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="853" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1379.74" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="994.8" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="997.83" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="703.1" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="706.09" y="783.5" ></text>
+</g>
+<g >
+<title>git_odb_exists (10,101,010 samples, 0.06%)</title><rect x="932.9" y="837" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="935.95" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="16.2" y="853" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="19.19" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mb_use_best_found (10,101,010 samples, 0.06%)</title><rect x="714.6" y="437" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="717.59" y="447.5" ></text>
+</g>
+<g >
+<title>alloc_pages (20,202,020 samples, 0.13%)</title><rect x="452.9" y="533" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="455.91" y="543.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,090,909,080 samples, 6.92%)</title><rect x="75.4" y="1045" width="95.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="78.42" y="1055.5" >[unknown]</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="731.4" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="734.38" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="445.0" y="725" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="447.95" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="869.3" y="581" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="872.30" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="803.0" y="533" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="805.99" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="1016.9" y="741" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1019.93" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="1127.4" y="453" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1130.44" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1205.2" y="757" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1208.23" y="767.5" ></text>
+</g>
+<g >
+<title>__tcp_close (121,212,120 samples, 0.77%)</title><rect x="42.7" y="645" width="10.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="45.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="184.2" y="501" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="187.16" y="511.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="420.2" y="677" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="423.20" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1380.3" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1383.28" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.06%)</title><rect x="771.2" y="661" width="0.8" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="774.17" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="491.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="494.81" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="78.1" y="853" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="81.07" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (50,505,050 samples, 0.32%)</title><rect x="759.7" y="533" width="4.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="762.67" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="517" width="1.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1024.35" y="527.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="567.8" y="837" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="570.83" y="847.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="677" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1017.28" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="810.9" y="389" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="813.95" y="399.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.19%)</title><rect x="1118.6" y="613" width="2.6" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1121.60" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1053.2" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1056.18" y="575.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="629" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1279.84" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1010.21" y="751.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (20,202,020 samples, 0.13%)</title><rect x="350.4" y="661" width="1.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="353.36" y="671.5" ></text>
+</g>
+<g >
+<title>git_reference_create (323,232,320 samples, 2.05%)</title><rect x="445.8" y="885" width="28.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="448.84" y="895.5" >g..</text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="132.9" y="821" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="135.88" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="460.9" y="597" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="463.86" y="607.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1199.9" y="565" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1202.93" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="435.2" y="645" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="438.23" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="325" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1356.75" y="335.5" ></text>
+</g>
+<g >
+<title>do_open (30,303,030 samples, 0.19%)</title><rect x="323.8" y="693" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="326.84" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="437" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1086.24" y="447.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="871.9" y="661" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="874.95" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="860.5" y="469" width="1.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="863.45" y="479.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="134.7" y="741" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="137.65" y="751.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.06%)</title><rect x="815.4" y="581" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="818.37" y="591.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="716.4" y="709" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="719.35" y="719.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.06%)</title><rect x="231.9" y="389" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="234.90" y="399.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="236.3" y="565" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="239.32" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="503.3" y="677" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="506.30" y="687.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1331.12" y="591.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="674.8" y="437" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="677.80" y="447.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="373" width="0.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1356.75" y="383.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="309.7" y="261" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="312.69" y="271.5" ></text>
+</g>
+<g >
+<title>crc_57 (10,101,010 samples, 0.06%)</title><rect x="1179.6" y="661" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1182.60" y="671.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="569.6" y="869" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="572.60" y="879.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (90,909,090 samples, 0.58%)</title><rect x="806.5" y="565" width="8.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="809.53" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (212,121,210 samples, 1.35%)</title><rect x="1121.2" y="725" width="18.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1124.25" y="735.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="1126.6" y="405" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1129.55" y="415.5" ></text>
+</g>
+<g >
+<title>net_close (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="949" width="2.6" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1355.87" y="959.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="1079.7" y="789" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1082.70" y="799.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (90,909,090 samples, 0.58%)</title><rect x="918.8" y="757" width="8.0" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="921.80" y="767.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (10,101,010 samples, 0.06%)</title><rect x="590.8" y="629" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="593.82" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1198.2" y="789" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1201.16" y="799.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="464.4" y="485" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="467.40" y="495.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="151.4" y="965" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="154.45" y="975.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="893.2" y="645" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="896.16" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_append (111,111,110 samples, 0.70%)</title><rect x="595.2" y="629" width="9.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="598.24" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="850.7" y="709" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="853.73" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="270.8" y="565" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="273.79" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (111,111,110 samples, 0.70%)</title><rect x="917.0" y="773" width="9.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="920.03" y="783.5" ></text>
+</g>
+<g >
+<title>mas_next_entry (10,101,010 samples, 0.06%)</title><rect x="1306.9" y="709" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1309.90" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1083.58" y="735.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1350.2" y="533" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1353.22" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="388.4" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="391.37" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.38%)</title><rect x="1133.6" y="533" width="5.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1136.63" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="909.1" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="912.08" y="655.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="772.9" y="757" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="775.93" y="767.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="384.0" y="661" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="386.95" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1008.44" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="927.6" y="693" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="930.64" y="703.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="724.3" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="727.31" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_discard_preallocations (10,101,010 samples, 0.06%)</title><rect x="673.9" y="533" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="676.92" y="543.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="755.3" y="485" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="758.25" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (80,808,080 samples, 0.51%)</title><rect x="609.4" y="725" width="7.1" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="612.39" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_table (10,101,010 samples, 0.06%)</title><rect x="202.7" y="549" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="205.72" y="559.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_in (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="469" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1364.71" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="505.1" y="725" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="508.07" y="735.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="439.6" y="805" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="442.65" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="710.2" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="713.17" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_link (30,303,030 samples, 0.19%)</title><rect x="546.6" y="725" width="2.7" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="549.62" y="735.5" ></text>
+</g>
+<g >
+<title>client_destroy (181,818,180 samples, 1.15%)</title><rect x="39.2" y="917" width="15.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="42.17" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="825.1" y="693" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="828.09" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="170.0" y="933" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="173.01" y="943.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="430.8" y="661" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="433.81" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1199.0" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1202.05" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="506.0" y="677" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="508.95" y="687.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.06%)</title><rect x="771.2" y="645" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="774.17" y="655.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.13%)</title><rect x="563.4" y="613" width="1.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="566.41" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="805.6" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="808.64" y="623.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="383.1" y="677" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="386.07" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="765.9" y="693" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="768.86" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="455.6" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="458.56" y="767.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="559.0" y="773" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="561.99" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="987.8" y="629" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="990.76" y="639.5" ></text>
+</g>
+<g >
+<title>access (40,404,040 samples, 0.26%)</title><rect x="482.1" y="757" width="3.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="485.08" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="839.2" y="757" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="842.24" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="978.9" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="981.92" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="541.3" y="821" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="544.31" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="166.5" y="837" width="1.7" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="169.48" y="847.5" ></text>
+</g>
+<g >
+<title>lock_page_memcg (10,101,010 samples, 0.06%)</title><rect x="940.0" y="565" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="943.02" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="12.7" y="389" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="15.65" y="399.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="645" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1075.63" y="655.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="1013.4" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1016.40" y="671.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1209.12" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (10,101,010 samples, 0.06%)</title><rect x="1368.8" y="885" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1371.78" y="895.5" ></text>
+</g>
+<g >
+<title>map_id_range_down (10,101,010 samples, 0.06%)</title><rect x="962.1" y="517" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="965.12" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.02%)</title><rect x="445.8" y="805" width="14.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.84" y="815.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="1048.8" y="613" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1051.76" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="542.2" y="741" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="545.20" y="751.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.06%)</title><rect x="996.6" y="661" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="999.60" y="671.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="1230.9" y="677" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1233.87" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (40,404,040 samples, 0.26%)</title><rect x="759.7" y="501" width="3.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="762.67" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1260.9" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1263.93" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone (474,747,470 samples, 3.01%)</title><rect x="1288.3" y="805" width="41.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1291.33" y="815.5" >__d..</text>
+</g>
+<g >
+<title>__close (161,616,160 samples, 1.02%)</title><rect x="40.9" y="869" width="14.2" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="43.94" y="879.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="942.7" y="677" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="945.67" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="888.7" y="773" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="891.74" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="640.3" y="725" width="3.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="643.33" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="759.7" y="661" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="762.67" y="671.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (10,101,010 samples, 0.06%)</title><rect x="1330.8" y="725" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1333.77" y="735.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (50,505,050 samples, 0.32%)</title><rect x="179.7" y="597" width="4.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="182.74" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (20,202,020 samples, 0.13%)</title><rect x="113.4" y="805" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="116.43" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="78.1" y="869" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="81.07" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="982.5" y="725" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="985.45" y="735.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="168.2" y="869" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="171.24" y="879.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="503.3" y="485" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="506.30" y="495.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="614.7" y="629" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="617.69" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="64.8" y="789" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="67.81" y="799.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="83.4" y="853" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="86.38" y="863.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="619.1" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="622.11" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="797.7" y="693" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.69" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1257.4" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1260.39" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="367.2" y="549" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="370.16" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="241.6" y="741" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="244.62" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="581" width="0.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1195.86" y="591.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="949" width="6.2" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1349.68" y="959.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="751.7" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="754.72" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_delay_run_hw_queue (20,202,020 samples, 0.13%)</title><rect x="691.6" y="421" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="694.60" y="431.5" ></text>
+</g>
+<g >
+<title>evict (121,212,120 samples, 0.77%)</title><rect x="1122.1" y="597" width="10.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1125.13" y="607.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="777.4" y="549" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="780.35" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="1143.4" y="709" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1146.35" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1075.3" y="613" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1078.28" y="623.5" ></text>
+</g>
+<g >
+<title>perf_event_task_output (10,101,010 samples, 0.06%)</title><rect x="29.4" y="885" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="32.45" y="895.5" ></text>
+</g>
+<g >
+<title>unlink_cb (131,313,130 samples, 0.83%)</title><rect x="230.1" y="757" width="11.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="233.13" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (20,202,020 samples, 0.13%)</title><rect x="1164.6" y="613" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1167.57" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="797.7" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="800.69" y="559.5" ></text>
+</g>
+<g >
+<title>fscrypt_put_encryption_info (10,101,010 samples, 0.06%)</title><rect x="335.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="338.33" y="607.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="719.9" y="533" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="722.89" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1198.2" y="709" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1201.16" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (505,050,500 samples, 3.20%)</title><rect x="658.0" y="821" width="44.2" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="661.01" y="831.5" >git_..</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="630.6" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="633.60" y="623.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="159.4" y="853" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="162.40" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="1191.1" y="821" width="7.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1194.09" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="582.9" y="629" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="585.86" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1265.3" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1268.35" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="858.7" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="861.69" y="575.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1114.2" y="661" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1117.18" y="671.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.06%)</title><rect x="148.8" y="917" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="151.80" y="927.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1260.9" y="629" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1263.93" y="639.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="657.1" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="660.12" y="703.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="120.5" y="741" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="123.51" y="751.5" ></text>
+</g>
+<g >
+<title>task_work_run (151,515,150 samples, 0.96%)</title><rect x="41.8" y="773" width="13.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="44.83" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="445.0" y="741" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="447.95" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="277.9" y="581" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="280.87" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1184.0" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1187.02" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="991.3" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="994.29" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="779.1" y="709" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="782.12" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="925.0" y="453" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="927.99" y="463.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="735.8" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="738.80" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="741" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1359.41" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="405.2" y="661" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="408.17" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="1216.7" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="751.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="63.0" y="917" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="66.04" y="927.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="18.8" y="805" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="21.84" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="413.1" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="416.13" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="733.2" y="725" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.15" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="1167.2" y="565" width="3.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1170.22" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1245.9" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1248.90" y="655.5" ></text>
+</g>
+<g >
+<title>__mutex_lock_slowpath (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="709" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1368.25" y="719.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="769.4" y="581" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="772.40" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="773.8" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.82" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="551.9" y="805" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.92" y="815.5" ></text>
+</g>
+<g >
+<title>git_index_write (121,212,120 samples, 0.77%)</title><rect x="541.3" y="869" width="10.6" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="544.31" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="563.4" y="837" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="566.41" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (70,707,070 samples, 0.45%)</title><rect x="965.7" y="533" width="6.1" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="968.66" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (282,828,280 samples, 1.79%)</title><rect x="387.5" y="741" width="24.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="390.49" y="751.5" >_..</text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="640.3" y="661" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="643.33" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="925.0" y="421" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="927.99" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (40,404,040 samples, 0.26%)</title><rect x="600.5" y="533" width="3.6" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="603.54" y="543.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1385.6" y="373" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1388.58" y="383.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="542.2" y="661" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="545.20" y="671.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="904.7" y="565" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="907.66" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="728.7" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="731.73" y="719.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="777.4" y="645" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="780.35" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (222,222,220 samples, 1.41%)</title><rect x="844.5" y="789" width="19.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="847.54" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="693" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1379.74" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="113.4" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="116.43" y="799.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1234.4" y="645" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1237.41" y="655.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="928.5" y="677" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="931.53" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.19%)</title><rect x="161.2" y="885" width="2.6" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="164.17" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="265.5" y="629" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="268.49" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="859.6" y="373" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="862.57" y="383.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="165" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1385.93" y="175.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="741" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1382.39" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="836.6" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="839.59" y="591.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (30,303,030 samples, 0.19%)</title><rect x="511.3" y="629" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="514.26" y="639.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="170.0" y="965" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="173.01" y="975.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="764.1" y="565" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="767.09" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="977.1" y="485" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="980.15" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1200.8" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1203.81" y="783.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="827.7" y="517" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="830.75" y="527.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1253.32" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.58%)</title><rect x="872.8" y="757" width="8.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="875.83" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (30,303,030 samples, 0.19%)</title><rect x="985.1" y="693" width="2.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="988.11" y="703.5" ></text>
+</g>
+<g >
+<title>mkdir (40,404,040 samples, 0.26%)</title><rect x="712.8" y="709" width="3.6" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="715.82" y="719.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="681.9" y="437" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="684.88" y="447.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="382.2" y="725" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="385.18" y="735.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (30,303,030 samples, 0.19%)</title><rect x="827.7" y="565" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="830.75" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="452.0" y="629" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="455.02" y="639.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1077.9" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1080.93" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (242,424,240 samples, 1.54%)</title><rect x="1016.0" y="805" width="21.3" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1019.05" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (505,050,500 samples, 3.20%)</title><rect x="31.2" y="1013" width="44.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="34.22" y="1023.5" >[lib..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="528.1" y="757" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="531.05" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="978.9" y="565" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="981.92" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="381.3" y="709" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="384.30" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="704.9" y="805" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="707.86" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="819.8" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="822.79" y="815.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="437.9" y="853" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="440.88" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="141.7" y="789" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="144.72" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.58%)</title><rect x="1038.1" y="789" width="8.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1041.15" y="799.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="456.4" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="459.44" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="846.3" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="849.31" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1222.38" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="750.8" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="753.83" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_insert_requests (20,202,020 samples, 0.13%)</title><rect x="1134.5" y="453" width="1.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1137.51" y="463.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (40,404,040 samples, 0.26%)</title><rect x="1078.8" y="805" width="3.6" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1081.81" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="477.7" y="677" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="480.66" y="687.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="581" width="0.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1062.37" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="513.9" y="645" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="516.91" y="655.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="550.2" y="661" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="553.15" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1006.3" y="789" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1009.32" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="868.4" y="629" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="871.41" y="639.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="149.7" y="917" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="152.68" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (90,909,090 samples, 0.58%)</title><rect x="404.3" y="693" width="7.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="407.29" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1022.2" y="485" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1025.24" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="169.1" y="917" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="172.13" y="927.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1073.5" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1076.51" y="655.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="554.6" y="597" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="557.57" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="837.5" y="837" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="840.47" y="847.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="638.6" y="661" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="641.56" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_init_security (10,101,010 samples, 0.06%)</title><rect x="605.8" y="645" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="608.85" y="655.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="191.2" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="194.23" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_open_default (70,707,070 samples, 0.45%)</title><rect x="1184.0" y="837" width="6.2" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1187.02" y="847.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="166.5" y="789" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="169.48" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="695.1" y="405" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="698.14" y="415.5" ></text>
+</g>
+<g >
+<title>path_get (10,101,010 samples, 0.06%)</title><rect x="1047.0" y="645" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1049.99" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (40,404,040 samples, 0.26%)</title><rect x="85.1" y="805" width="3.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="88.14" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="122.3" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="125.27" y="591.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="853.4" y="773" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="856.38" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="827.7" y="645" width="2.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="830.75" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (40,404,040 samples, 0.26%)</title><rect x="876.4" y="645" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="879.37" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="251.3" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="254.35" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_file_clone (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="789" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1339.07" y="799.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="807.4" y="485" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="810.41" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (70,707,070 samples, 0.45%)</title><rect x="338.0" y="645" width="6.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="340.98" y="655.5" ></text>
+</g>
+<g >
+<title>d_delete (10,101,010 samples, 0.06%)</title><rect x="361.9" y="677" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="364.85" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1017.28" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="668.6" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="671.62" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1114.52" y="463.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="482.1" y="645" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="485.08" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_create_access (10,101,010 samples, 0.06%)</title><rect x="1040.8" y="613" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1043.80" y="623.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="159.4" y="917" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="162.40" y="927.5" ></text>
+</g>
+<g >
+<title>vma_do_get_file (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="725" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1327.58" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="993.9" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="996.95" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="1173.4" y="581" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1176.41" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="863.1" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="866.11" y="575.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="1055.8" y="725" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1058.83" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="903.8" y="629" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="906.77" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1184.0" y="821" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1187.02" y="831.5" ></text>
+</g>
+<g >
+<title>symlink (40,404,040 samples, 0.26%)</title><rect x="1055.8" y="805" width="3.6" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1058.83" y="815.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.06%)</title><rect x="666.0" y="437" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="668.96" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1146.0" y="677" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1149.00" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="501" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1039.38" y="511.5" ></text>
+</g>
+<g >
+<title>git_index_add (70,707,070 samples, 0.45%)</title><rect x="535.1" y="853" width="6.2" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="538.12" y="863.5" ></text>
+</g>
+<g >
+<title>iput (121,212,120 samples, 0.77%)</title><rect x="1122.1" y="613" width="10.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1125.13" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="819.8" y="677" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="822.79" y="687.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="424.6" y="725" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="427.62" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="740.2" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="743.22" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_close (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="725" width="4.4" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1383.28" y="735.5" ></text>
+</g>
+<g >
+<title>mas_wr_modify (50,505,050 samples, 0.32%)</title><rect x="1307.8" y="693" width="4.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1310.78" y="703.5" ></text>
+</g>
+<g >
+<title>__sock_release (141,414,140 samples, 0.90%)</title><rect x="42.7" y="709" width="12.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="45.71" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1200.8" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1203.81" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.83%)</title><rect x="742.0" y="789" width="11.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="947.1" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="950.09" y="655.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="657.1" y="677" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="660.12" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="389" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1039.38" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="83.4" y="821" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="86.38" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1254.7" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1257.74" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="115.2" y="805" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="118.20" y="815.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1093.8" y="405" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1096.84" y="415.5" ></text>
+</g>
+<g >
+<title>tcp_done (10,101,010 samples, 0.06%)</title><rect x="1380.3" y="645" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1383.28" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="115.2" y="789" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="118.20" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="372.5" y="597" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="375.46" y="607.5" ></text>
+</g>
+<g >
+<title>pcpu_alloc (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="693" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1331.12" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1011.6" y="757" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1014.63" y="767.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="128.5" y="741" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="131.46" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="212.4" y="549" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="215.45" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1017.28" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_journal_mode (10,101,010 samples, 0.06%)</title><rect x="376.0" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="379.00" y="575.5" ></text>
+</g>
+<g >
+<title>kmalloc_trace (10,101,010 samples, 0.06%)</title><rect x="414.0" y="709" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="417.01" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="1167.2" y="501" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1170.22" y="511.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="737.6" y="581" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="740.57" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="307.0" y="437" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="310.04" y="447.5" ></text>
+</g>
+<g >
+<title>closedir (10,101,010 samples, 0.06%)</title><rect x="345.9" y="805" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="348.94" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (242,424,240 samples, 1.54%)</title><rect x="10.0" y="1045" width="21.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1055.5" ></text>
+</g>
+<g >
+<title>git_signature_now (30,303,030 samples, 0.19%)</title><rect x="991.3" y="773" width="2.6" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="994.29" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="791.5" y="597" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="794.50" y="607.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="766.7" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="769.75" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1343.49" y="799.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="915.3" y="661" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="918.27" y="671.5" ></text>
+</g>
+<g >
+<title>crc_1 (10,101,010 samples, 0.06%)</title><rect x="1060.2" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1063.25" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1032.8" y="421" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1035.84" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="493.6" y="581" width="1.7" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="496.57" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="549" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1195.86" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="852.5" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="855.50" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1117.7" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1120.71" y="655.5" ></text>
+</g>
+<g >
+<title>do_accept (20,202,020 samples, 0.13%)</title><rect x="61.3" y="805" width="1.7" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="64.27" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="882.6" y="693" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="885.56" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="830.4" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="833.40" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1062.0" y="645" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1065.02" y="655.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="625.3" y="613" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="628.30" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (40,404,040 samples, 0.26%)</title><rect x="712.8" y="661" width="3.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="715.82" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="254.9" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="257.88" y="591.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="831.3" y="709" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="834.28" y="719.5" ></text>
+</g>
+<g >
+<title>rename (161,616,160 samples, 1.02%)</title><rect x="1091.2" y="741" width="14.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1094.19" y="751.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1350.2" y="581" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1353.22" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="759.7" y="629" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="762.67" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1008.44" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="655.4" y="581" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="658.36" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="978.0" y="645" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="981.03" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="62.2" y="725" width="0.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="65.16" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="700.4" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="703.44" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="449.4" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="452.37" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="737.6" y="629" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="740.57" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (505,050,500 samples, 3.20%)</title><rect x="31.2" y="1029" width="44.2" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="34.22" y="1039.5" >__li..</text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="369.8" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="372.81" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1207.9" y="725" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1210.89" y="735.5" ></text>
+</g>
+<g >
+<title>sched_clock (10,101,010 samples, 0.06%)</title><rect x="29.4" y="821" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="32.45" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="885.2" y="789" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="888.21" y="799.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="549" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1011.09" y="559.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.06%)</title><rect x="934.7" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="937.71" y="767.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="867.5" y="709" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="870.53" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="978.0" y="629" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="981.03" y="639.5" ></text>
+</g>
+<g >
+<title>git_reference_create (484,848,480 samples, 3.07%)</title><rect x="951.5" y="821" width="42.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="954.51" y="831.5" >git..</text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="374.2" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="377.23" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="978.9" y="645" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="981.92" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="444.1" y="741" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="447.07" y="751.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="555.5" y="645" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="558.46" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="300.9" y="549" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.85" y="559.5" ></text>
+</g>
+<g >
+<title>do_faccessat (40,404,040 samples, 0.26%)</title><rect x="774.7" y="661" width="3.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="777.70" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="728.7" y="565" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="731.73" y="575.5" ></text>
+</g>
+<g >
+<title>evict (90,909,090 samples, 0.58%)</title><rect x="1091.2" y="581" width="7.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1094.19" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="250.5" y="581" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="253.46" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="754.4" y="613" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="757.37" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1339.07" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="990.4" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="993.41" y="687.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.06%)</title><rect x="558.1" y="661" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="561.11" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="948.9" y="693" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="951.86" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (10,101,010 samples, 0.06%)</title><rect x="916.1" y="789" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="919.15" y="799.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="986.0" y="597" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="988.99" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="325" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1100.38" y="335.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="666.8" y="485" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="669.85" y="495.5" ></text>
+</g>
+<g >
+<title>cgroup_sk_free (10,101,010 samples, 0.06%)</title><rect x="54.2" y="581" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="57.20" y="591.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="1085.0" y="485" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1088.00" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="825.1" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="828.09" y="655.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="558.1" y="725" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="561.11" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="559.0" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="561.99" y="831.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="1176.9" y="549" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1179.94" y="559.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.06%)</title><rect x="230.1" y="645" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="233.13" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1344.9" y="805" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1347.91" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1087.7" y="709" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1090.66" y="719.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="237.2" y="533" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="240.20" y="543.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="885" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1343.49" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="827.7" y="629" width="2.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="830.75" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="1048.8" y="629" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1051.76" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="231.9" y="581" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="234.90" y="591.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="1181.4" y="773" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1184.36" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="227.5" y="677" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="230.48" y="687.5" ></text>
+</g>
+<g >
+<title>ip_output (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="581" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1384.16" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="736.7" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="739.69" y="607.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="429.9" y="853" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="432.92" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="891.4" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="894.40" y="687.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (10,101,010 samples, 0.06%)</title><rect x="49.8" y="101" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="52.78" y="111.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="62.2" y="677" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="65.16" y="687.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="517" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1075.63" y="527.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="829.5" y="453" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="832.51" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="833.0" y="645" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="836.05" y="655.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="453" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1387.70" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="914.4" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="917.38" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_write (50,505,050 samples, 0.32%)</title><rect x="71.0" y="789" width="4.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="74.00" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="851.6" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="854.61" y="767.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="850.7" y="757" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="853.73" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="1131.0" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1133.97" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1247.13" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="378.6" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="381.65" y="671.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="18.8" y="565" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="21.84" y="575.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="859.6" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="862.57" y="543.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.19%)</title><rect x="665.1" y="725" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="668.08" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="47.1" y="181" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="50.13" y="191.5" ></text>
+</g>
+<g >
+<title>fstatat64 (70,707,070 samples, 0.45%)</title><rect x="485.6" y="757" width="6.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="488.62" y="767.5" ></text>
+</g>
+<g >
+<title>git_reference_foreach_name (161,616,160 samples, 1.02%)</title><rect x="1230.0" y="853" width="14.1" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1232.99" y="863.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="848.1" y="677" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="851.08" y="687.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="645" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1389.46" y="655.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="807.4" y="469" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="810.41" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="344.2" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="347.17" y="799.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="693" width="3.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1359.41" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1222.38" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="343.3" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="346.29" y="623.5" ></text>
+</g>
+<g >
+<title>client_create (30,303,030 samples, 0.19%)</title><rect x="58.6" y="901" width="2.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="61.62" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="802.1" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="805.11" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (70,707,070 samples, 0.45%)</title><rect x="44.5" y="309" width="6.2" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="47.48" y="319.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="878.1" y="517" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="881.14" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.51%)</title><rect x="609.4" y="741" width="7.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="612.39" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_ack (20,202,020 samples, 0.13%)</title><rect x="46.2" y="213" width="1.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="49.25" y="223.5" ></text>
+</g>
+<g >
+<title>path_parentat (40,404,040 samples, 0.26%)</title><rect x="258.4" y="645" width="3.6" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="261.42" y="655.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="505.1" y="773" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="508.07" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1327.2" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1330.23" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1182.2" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1185.25" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="553.7" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="556.69" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1035.5" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1038.50" y="559.5" ></text>
+</g>
+<g >
+<title>iterate_dir (50,505,050 samples, 0.32%)</title><rect x="199.2" y="661" width="4.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="202.19" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="82.5" y="821" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="85.49" y="831.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.19%)</title><rect x="927.6" y="741" width="2.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="930.64" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="990.4" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="993.41" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="978.9" y="629" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="981.92" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="647.4" y="741" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="650.40" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="140.8" y="757" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="143.84" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="82.5" y="805" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="85.49" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (30,303,030 samples, 0.19%)</title><rect x="224.8" y="677" width="2.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="227.82" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="769.4" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="772.40" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="873.7" y="421" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="876.72" y="431.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="559.9" y="741" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="562.88" y="751.5" ></text>
+</g>
+<g >
+<title>read (30,303,030 samples, 0.19%)</title><rect x="1374.1" y="837" width="2.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1377.09" y="847.5" ></text>
+</g>
+<g >
+<title>ci_run (616,161,610 samples, 3.91%)</title><rect x="1287.5" y="933" width="53.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1290.45" y="943.5" >ci_run</text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="709" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1195.86" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (70,707,070 samples, 0.45%)</title><rect x="33.0" y="869" width="6.2" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="35.99" y="879.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="742.9" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="745.88" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="1253.0" y="693" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1255.97" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="1243.2" y="533" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1246.25" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="394.6" y="613" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="397.56" y="623.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="452.9" y="485" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="455.91" y="495.5" ></text>
+</g>
+<g >
+<title>readdir64 (50,505,050 samples, 0.32%)</title><rect x="199.2" y="741" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="202.19" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="515.7" y="789" width="7.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="518.68" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="856.0" y="549" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="859.03" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="485" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1086.24" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="797.7" y="565" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="800.69" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="578.4" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="581.44" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="948.0" y="773" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="950.98" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="460.9" y="629" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="463.86" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="301.7" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="304.74" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="741.1" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="744.11" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="265.5" y="613" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="268.49" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.13%)</title><rect x="378.6" y="725" width="1.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="381.65" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="891.4" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="894.40" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="784.4" y="645" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="787.43" y="655.5" ></text>
+</g>
+<g >
+<title>mkdir (171,717,170 samples, 1.09%)</title><rect x="1272.4" y="869" width="15.1" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1275.42" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="734.9" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="737.92" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="676.6" y="453" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="679.57" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1191.1" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1194.09" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (40,404,040 samples, 0.26%)</title><rect x="1386.5" y="805" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1389.46" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="755.3" y="501" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="758.25" y="511.5" ></text>
+</g>
+<g >
+<title>rmdir (50,505,050 samples, 0.32%)</title><rect x="431.7" y="837" width="4.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="434.69" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="843.7" y="789" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="846.66" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.13%)</title><rect x="624.4" y="645" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="627.41" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="1157.5" y="709" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1160.50" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="1054.1" y="581" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1057.06" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (20,202,020 samples, 0.13%)</title><rect x="110.8" y="821" width="1.7" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="113.78" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="794.2" y="565" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="797.15" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="825.1" y="677" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="828.09" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="613" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1024.35" y="623.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="400.7" y="581" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="403.75" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 1.67%)</title><rect x="842.8" y="837" width="23.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="845.77" y="847.5" >[..</text>
+</g>
+<g >
+<title>dput (121,212,120 samples, 0.77%)</title><rect x="1122.1" y="677" width="10.6" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1125.13" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.06%)</title><rect x="765.9" y="789" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="768.86" y="799.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="975.4" y="405" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="978.38" y="415.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="140.0" y="661" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="142.96" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="551.9" y="821" width="7.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.92" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="676.6" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="679.57" y="511.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="519.2" y="581" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="522.21" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="429.9" y="725" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="432.92" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1268.9" y="661" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1271.89" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1268.0" y="613" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1271.00" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="497.1" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="500.11" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="852.5" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="855.50" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (70,707,070 samples, 0.45%)</title><rect x="1031.1" y="645" width="6.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1034.08" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (191,919,190 samples, 1.22%)</title><rect x="1253.0" y="821" width="16.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1255.97" y="831.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.06%)</title><rect x="806.5" y="485" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="809.53" y="495.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="631.5" y="581" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="634.49" y="591.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="884.3" y="757" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="887.32" y="767.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="501" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1062.37" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.06%)</title><rect x="391.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="394.02" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="19.7" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="22.72" y="911.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1017.28" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="849.0" y="549" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="851.96" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.02%)</title><rect x="895.8" y="757" width="14.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="898.82" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="759.7" y="693" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="762.67" y="703.5" ></text>
+</g>
+<g >
+<title>tzset (30,303,030 samples, 0.19%)</title><rect x="991.3" y="741" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="994.29" y="751.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="853.4" y="549" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="856.38" y="559.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="891.4" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="894.40" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (343,434,340 samples, 2.18%)</title><rect x="671.3" y="725" width="30.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="674.27" y="735.5" >do..</text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1288.3" y="773" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1291.33" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="773" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1190.55" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="567.0" y="629" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="569.95" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1238.8" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1241.83" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1191.1" y="757" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1194.09" y="767.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (20,202,020 samples, 0.13%)</title><rect x="923.2" y="597" width="1.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="926.22" y="607.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="1176.1" y="533" width="0.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1179.06" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="604.1" y="597" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="607.08" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1073.5" y="661" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1076.51" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="422.9" y="629" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="425.85" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="859.6" y="325" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="862.57" y="335.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1256.5" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1259.51" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (40,404,040 samples, 0.26%)</title><rect x="682.8" y="549" width="3.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="685.76" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (60,606,060 samples, 0.38%)</title><rect x="222.2" y="725" width="5.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="225.17" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="796.8" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="799.80" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="470.6" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="473.59" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1022.58" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1100.9" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1103.92" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="42.7" y="613" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="45.71" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (2,060,606,040 samples, 13.07%)</title><rect x="1002.8" y="837" width="180.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1005.79" y="847.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>mutex_lock (10,101,010 samples, 0.06%)</title><rect x="1063.8" y="661" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1066.79" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="681.0" y="469" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="683.99" y="479.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="453" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1356.75" y="463.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="277" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1100.38" y="287.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="779.1" y="677" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="782.12" y="687.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="613" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1017.28" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1084.1" y="549" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1087.12" y="559.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="870.2" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="873.18" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (161,616,160 samples, 1.02%)</title><rect x="10.0" y="1029" width="14.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1039.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="254.9" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="257.88" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="714.6" y="517" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="717.59" y="527.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="818.0" y="677" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="821.02" y="687.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.06%)</title><rect x="1375.9" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1378.86" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="889.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="892.63" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="677" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1112.76" y="687.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1156.6" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1159.61" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (1,090,909,080 samples, 6.92%)</title><rect x="75.4" y="1029" width="95.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="78.42" y="1039.5" >[libgit2.so..</text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="978.9" y="517" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="981.92" y="527.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="453" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1086.24" y="463.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (30,303,030 samples, 0.19%)</title><rect x="1227.3" y="805" width="2.7" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1230.34" y="815.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="549" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1360.29" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_done (10,101,010 samples, 0.06%)</title><rect x="42.7" y="581" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="45.71" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="795.0" y="629" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="798.04" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="742.9" y="629" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="745.88" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_done (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="485" width="0.9" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="1268.35" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="905.5" y="581" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="908.54" y="591.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="613.8" y="629" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="616.81" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (40,404,040 samples, 0.26%)</title><rect x="126.7" y="789" width="3.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="129.69" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="547.5" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="550.50" y="655.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (50,505,050 samples, 0.32%)</title><rect x="1065.6" y="677" width="4.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1068.55" y="687.5" ></text>
+</g>
+<g >
+<title>__legitimize_mnt (10,101,010 samples, 0.06%)</title><rect x="746.4" y="517" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="749.41" y="527.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1364.71" y="607.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="879.9" y="613" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="882.90" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="675.7" y="421" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="678.69" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="769.4" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="772.40" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="309.7" y="485" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="312.69" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1114.2" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1117.18" y="719.5" ></text>
+</g>
+<g >
+<title>check_stack_object (10,101,010 samples, 0.06%)</title><rect x="1241.5" y="597" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1244.48" y="607.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.06%)</title><rect x="945.3" y="677" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="948.32" y="687.5" ></text>
+</g>
+<g >
+<title>end_page_writeback (10,101,010 samples, 0.06%)</title><rect x="919.7" y="293" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="922.69" y="303.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="893.2" y="501" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="896.16" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="946.2" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="949.21" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="873.7" y="357" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="876.72" y="367.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="740.2" y="677" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="743.22" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="18.8" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="21.84" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.06%)</title><rect x="826.0" y="549" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="828.98" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="912.6" y="725" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="915.61" y="735.5" ></text>
+</g>
+<g >
+<title>memcg_alloc_slab_cgroups (10,101,010 samples, 0.06%)</title><rect x="903.8" y="469" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="906.77" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.06%)</title><rect x="975.4" y="533" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="978.38" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.19%)</title><rect x="1201.7" y="725" width="2.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1204.70" y="735.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (10,101,010 samples, 0.06%)</title><rect x="705.7" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="708.75" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="946.2" y="613" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="949.21" y="623.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (10,101,010 samples, 0.06%)</title><rect x="540.4" y="581" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="543.43" y="591.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1382.0" y="549" width="2.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1385.04" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 1.54%)</title><rect x="842.8" y="821" width="21.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="845.77" y="831.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="151.4" y="981" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="154.45" y="991.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="920.6" y="693" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="923.57" y="703.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="380.4" y="757" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="383.42" y="767.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (20,202,020 samples, 0.13%)</title><rect x="452.9" y="501" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="455.91" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="853" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1339.07" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (40,404,040 samples, 0.26%)</title><rect x="85.1" y="789" width="3.6" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="88.14" y="799.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="903.8" y="613" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="906.77" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="470.6" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="473.59" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="669.5" y="533" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="672.50" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="512.1" y="549" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="515.14" y="559.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="507.7" y="693" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="510.72" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="728.7" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="731.73" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="357" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1039.38" y="367.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="1199.9" y="549" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1202.93" y="559.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.13%)</title><rect x="452.9" y="517" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="455.91" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (70,707,070 samples, 0.45%)</title><rect x="418.4" y="757" width="6.2" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="421.43" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (60,606,060 samples, 0.38%)</title><rect x="1059.4" y="757" width="5.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1062.37" y="767.5" ></text>
+</g>
+<g >
+<title>chmod (30,303,030 samples, 0.19%)</title><rect x="1009.0" y="789" width="2.6" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="1011.98" y="799.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="629" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1062.37" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="463.5" y="549" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="466.52" y="559.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="222.2" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="225.17" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="443.2" y="821" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="446.18" y="831.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (20,202,020 samples, 0.13%)</title><rect x="587.3" y="629" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="590.28" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="206.3" y="565" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="209.26" y="575.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.19%)</title><rect x="856.0" y="629" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="859.03" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="469" width="0.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1140.16" y="479.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="1337.8" y="741" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1340.84" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="878.1" y="533" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="881.14" y="543.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.19%)</title><rect x="1382.0" y="485" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1385.04" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="783.5" y="645" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="786.54" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="661" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1017.28" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="498.9" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="501.88" y="767.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.06%)</title><rect x="111.7" y="789" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="114.67" y="799.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="1330.8" y="677" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1333.77" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="910.0" y="629" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="912.96" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="353.0" y="613" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="356.01" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1371.4" y="805" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1374.43" y="815.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="805" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1274.54" y="815.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="484.7" y="581" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="487.73" y="591.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="1085.0" y="501" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1088.00" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="381.3" y="789" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="384.30" y="799.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="1257.4" y="693" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1260.39" y="703.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="501" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1387.70" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="357" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1379.74" y="367.5" ></text>
+</g>
+<g >
+<title>mas_wr_store_entry.isra.0 (60,606,060 samples, 0.38%)</title><rect x="1307.8" y="709" width="5.3" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1310.78" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="413.1" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="416.13" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="367.2" y="613" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="370.16" y="623.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="955.9" y="613" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="958.93" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1229.1" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1232.10" y="607.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (20,202,020 samples, 0.13%)</title><rect x="401.6" y="597" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="404.63" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="861.3" y="421" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="864.34" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="334.4" y="597" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="337.45" y="607.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1144.2" y="613" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1147.23" y="623.5" ></text>
+</g>
+<g >
+<title>kmalloc_slab (10,101,010 samples, 0.06%)</title><rect x="157.6" y="885" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="160.64" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="826.0" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="828.98" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1251.2" y="709" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1254.20" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="840.1" y="773" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="843.12" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="116.1" y="789" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="119.09" y="799.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="501" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1075.63" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="894.9" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="897.93" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="975.4" y="421" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="978.38" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="397.2" y="565" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="400.21" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="421" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1137.51" y="431.5" ></text>
+</g>
+<g >
+<title>path_lookupat (40,404,040 samples, 0.26%)</title><rect x="759.7" y="485" width="3.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="762.67" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (212,121,210 samples, 1.35%)</title><rect x="360.1" y="741" width="18.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="363.08" y="751.5" ></text>
+</g>
+<g >
+<title>do_rmdir (60,606,060 samples, 0.38%)</title><rect x="184.2" y="613" width="5.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="187.16" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="368.0" y="661" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="371.04" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="670.4" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="673.38" y="655.5" ></text>
+</g>
+<g >
+<title>ipv4_dst_check (10,101,010 samples, 0.06%)</title><rect x="50.7" y="533" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="53.67" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="994.8" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="997.83" y="607.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="908.2" y="581" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="911.19" y="591.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="162.9" y="853" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="165.94" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="777.4" y="597" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="780.35" y="607.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="381.3" y="677" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="384.30" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="246.0" y="693" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="249.04" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1062.0" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1065.02" y="639.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="1075.3" y="533" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1078.28" y="543.5" ></text>
+</g>
+<g >
+<title>pcre_compile2 (10,101,010 samples, 0.06%)</title><rect x="864.0" y="805" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="866.99" y="815.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="374.2" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="377.23" y="559.5" ></text>
+</g>
+<g >
+<title>git_remote_is_valid_name (10,101,010 samples, 0.06%)</title><rect x="864.9" y="821" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="867.88" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="532.5" y="741" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="535.47" y="751.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.19%)</title><rect x="11.8" y="597" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="14.77" y="607.5" ></text>
+</g>
+<g >
+<title>access (50,505,050 samples, 0.32%)</title><rect x="922.3" y="725" width="4.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="925.34" y="735.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="628.0" y="581" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="630.95" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1212.65" y="703.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1054.1" y="565" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1057.06" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="925.0" y="341" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="927.99" y="351.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1368.25" y="895.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="570.5" y="821" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="573.49" y="831.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (40,404,040 samples, 0.26%)</title><rect x="876.4" y="613" width="3.5" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="879.37" y="623.5" ></text>
+</g>
+<g >
+<title>____fput (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="805" width="4.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1383.28" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="941.8" y="789" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="944.79" y="799.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="613" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1253.32" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1073.5" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1076.51" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (60,606,060 samples, 0.38%)</title><rect x="267.3" y="629" width="5.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="270.26" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="573.1" y="741" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="576.14" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (60,606,060 samples, 0.38%)</title><rect x="610.3" y="661" width="5.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="613.27" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1359.1" y="453" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1362.06" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (484,848,480 samples, 3.07%)</title><rect x="658.9" y="773" width="42.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="661.89" y="783.5" >[li..</text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="227.5" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="230.48" y="767.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1253.9" y="613" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1256.86" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="799.5" y="597" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="802.46" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_complete_request (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="453" width="0.9" height="15.0" fill="rgb(0,195,25)" rx="2" ry="2" />
+<text x="1268.35" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="346.8" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="349.82" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="858.7" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="861.69" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="19.7" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="22.72" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="954.2" y="597" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="957.16" y="607.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="381.3" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="384.30" y="655.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="736.7" y="613" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="739.69" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1188.4" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1191.44" y="767.5" ></text>
+</g>
+<g >
+<title>lock_timer_base (10,101,010 samples, 0.06%)</title><rect x="1377.6" y="613" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1380.62" y="623.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="786.2" y="629" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="789.19" y="639.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.13%)</title><rect x="1112.4" y="709" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1115.41" y="719.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="1048.8" y="597" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1051.76" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="921.5" y="645" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="924.45" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (80,808,080 samples, 0.51%)</title><rect x="391.9" y="661" width="7.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="394.91" y="671.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="789" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1274.54" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="353.0" y="629" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="356.01" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="449.4" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="452.37" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="395.4" y="501" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="398.45" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1178.7" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1181.71" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1103.6" y="469" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1106.57" y="479.5" ></text>
+</g>
+<g >
+<title>event_loop_run (363,636,360 samples, 2.31%)</title><rect x="31.2" y="949" width="31.8" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="34.22" y="959.5" >ev..</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="236.3" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="239.32" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1078.8" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1081.81" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="496.2" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="499.23" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="92.2" y="965" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="95.22" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="681.0" y="373" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="683.99" y="383.5" ></text>
+</g>
+<g >
+<title>libjson_send (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="933" width="6.2" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1349.68" y="943.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="478.5" y="645" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="481.55" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (50,505,050 samples, 0.32%)</title><rect x="486.5" y="645" width="4.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="489.50" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1263.6" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1266.58" y="719.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.06%)</title><rect x="106.4" y="869" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="109.36" y="879.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (10,101,010 samples, 0.06%)</title><rect x="18.8" y="677" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="21.84" y="687.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.13%)</title><rect x="1364.4" y="933" width="1.7" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1367.36" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="274.3" y="581" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="277.33" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="553.7" y="613" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="556.69" y="623.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="925.0" y="613" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="927.99" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="346.8" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="349.82" y="799.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (151,515,150 samples, 0.96%)</title><rect x="79.0" y="917" width="13.2" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="81.96" y="927.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="853" width="5.3" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1387.70" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="505.1" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="508.07" y="751.5" ></text>
+</g>
+<g >
+<title>ip_skb_dst_mtu (10,101,010 samples, 0.06%)</title><rect x="1363.5" y="677" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1366.48" y="687.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="165.6" y="821" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="168.59" y="831.5" ></text>
+</g>
+<g >
+<title>file_close (10,101,010 samples, 0.06%)</title><rect x="1331.7" y="885" width="0.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1334.65" y="895.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="773" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1274.54" y="783.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.06%)</title><rect x="900.2" y="549" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="903.24" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="871.9" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="874.95" y="703.5" ></text>
+</g>
+<g >
+<title>folio_account_cleaned (10,101,010 samples, 0.06%)</title><rect x="401.6" y="501" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="404.63" y="511.5" ></text>
+</g>
+<g >
+<title>xas_find (10,101,010 samples, 0.06%)</title><rect x="400.7" y="613" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="403.75" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1136.3" y="501" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1139.28" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="814.5" y="677" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="817.48" y="687.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (90,909,090 samples, 0.58%)</title><rect x="1091.2" y="613" width="7.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1094.19" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="744.6" y="645" width="4.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="747.64" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="567.0" y="661" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="569.95" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1263.6" y="645" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1266.58" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_link (90,909,090 samples, 0.58%)</title><rect x="624.4" y="677" width="8.0" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="627.41" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 1.54%)</title><rect x="842.8" y="805" width="21.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="845.77" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1108.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1110.99" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="678.3" y="469" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="681.34" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.83%)</title><rect x="742.0" y="821" width="11.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="831.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.26%)</title><rect x="635.0" y="693" width="3.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="638.02" y="703.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="756.1" y="485" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="759.14" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (323,232,320 samples, 2.05%)</title><rect x="286.7" y="613" width="28.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="289.71" y="623.5" >e..</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="696.0" y="405" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="699.02" y="415.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="1040.8" y="581" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1043.80" y="591.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit (10,101,010 samples, 0.06%)</title><rect x="685.4" y="501" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="688.41" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1224.7" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1227.68" y="767.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1352.0" y="709" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1354.99" y="719.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.06%)</title><rect x="542.2" y="613" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="545.20" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.13%)</title><rect x="418.4" y="709" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="421.43" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1061.48" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="548.4" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="551.39" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="597" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1195.86" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="533" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1195.86" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="886.1" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="889.09" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1382.0" y="405" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1385.04" y="415.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="921.5" y="581" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="924.45" y="591.5" ></text>
+</g>
+<g >
+<title>json_tokener_parse_verbose (20,202,020 samples, 0.13%)</title><rect x="1371.4" y="853" width="1.8" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1374.43" y="863.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.38%)</title><rect x="1133.6" y="597" width="5.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1136.63" y="607.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="357" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1356.75" y="367.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="471.5" y="613" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="474.47" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="669.5" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="672.50" y="623.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="1120.4" y="581" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1123.37" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.06%)</title><rect x="998.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1001.37" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="10.0" y="869" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="13.00" y="879.5" ></text>
+</g>
+<g >
+<title>free_page_and_swap_cache (10,101,010 samples, 0.06%)</title><rect x="669.5" y="469" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="672.50" y="479.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="542.2" y="789" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="545.20" y="799.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1356.4" y="597" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1359.41" y="607.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="565.2" y="645" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="568.18" y="655.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="868.4" y="613" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="871.41" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="116.1" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="119.09" y="783.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (20,202,020 samples, 0.13%)</title><rect x="872.8" y="645" width="1.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="875.83" y="655.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="98.4" y="837" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="101.40" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (323,232,320 samples, 2.05%)</title><rect x="580.2" y="725" width="28.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="583.21" y="735.5" >d..</text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="410.5" y="645" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="413.47" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (30,303,030 samples, 0.19%)</title><rect x="1136.3" y="517" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1139.28" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="246.0" y="757" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="249.04" y="767.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="917" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1382.39" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.51%)</title><rect x="24.1" y="1013" width="7.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="27.14" y="1023.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="849.0" y="661" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="851.96" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="690.7" y="517" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="693.72" y="527.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="453" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1062.37" y="463.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1208.8" y="613" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1211.77" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="905.5" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="908.54" y="623.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="167.4" y="805" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="170.36" y="815.5" ></text>
+</g>
+<g >
+<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="357" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1137.51" y="367.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_in (10,101,010 samples, 0.06%)</title><rect x="1387.3" y="469" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1390.35" y="479.5" ></text>
+</g>
+<g >
+<title>__fput (151,515,150 samples, 0.96%)</title><rect x="41.8" y="741" width="13.3" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="44.83" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1167.2" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1170.22" y="495.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1193.7" y="677" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1196.74" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="755.3" y="517" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="758.25" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="932.9" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="935.95" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1242.4" y="629" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1245.36" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1277.7" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1280.73" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1258.3" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1261.28" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="221.3" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="224.29" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="720.8" y="661" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="723.78" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="430.8" y="501" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="433.81" y="511.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="597" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1112.76" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="293" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1104.80" y="303.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.13%)</title><rect x="497.1" y="773" width="1.8" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="500.11" y="783.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.19%)</title><rect x="1237.9" y="661" width="2.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1240.94" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="711.9" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="714.93" y="719.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="1193.7" y="629" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1196.74" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="1212.3" y="725" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1215.31" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1041.7" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1044.68" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.13%)</title><rect x="810.1" y="437" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="813.06" y="447.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="893.2" y="725" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="896.16" y="735.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="180.6" y="565" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="183.62" y="575.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="437" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1034.96" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="893.2" y="741" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="896.16" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="805.6" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="808.64" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="414.0" y="741" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="417.01" y="751.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="925.0" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="927.99" y="527.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="122.3" y="709" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="125.27" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="938.3" y="629" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="941.25" y="639.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="553.7" y="677" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="556.69" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_insert_requests (20,202,020 samples, 0.13%)</title><rect x="691.6" y="453" width="1.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="694.60" y="463.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1268.35" y="655.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="151.4" y="949" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="154.45" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (70,707,070 samples, 0.45%)</title><rect x="362.7" y="677" width="6.2" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="365.74" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_page (10,101,010 samples, 0.06%)</title><rect x="879.0" y="485" width="0.9" height="15.0" fill="rgb(0,213,96)" rx="2" ry="2" />
+<text x="882.02" y="495.5" ></text>
+</g>
+<g >
+<title>access (40,404,040 samples, 0.26%)</title><rect x="1249.4" y="805" width="3.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1252.44" y="815.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="1212.3" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1215.31" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="604.1" y="581" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="607.08" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="93.1" y="901" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="96.10" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="795.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="798.04" y="687.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.06%)</title><rect x="10.9" y="917" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="13.88" y="927.5" ></text>
+</g>
+<g >
+<title>do_fchmodat (30,303,030 samples, 0.19%)</title><rect x="1009.0" y="725" width="2.6" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1011.98" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1179.6" y="677" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1182.60" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1222.0" y="741" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1225.03" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="757.0" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="760.02" y="607.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="262.8" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="265.84" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.90%)</title><rect x="822.4" y="805" width="12.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="825.44" y="815.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="687.2" y="581" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="690.18" y="591.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.06%)</title><rect x="193.9" y="597" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="196.88" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1233.5" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1236.52" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="18.8" y="885" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="21.84" y="895.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="309.7" y="277" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="312.69" y="287.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="64.8" y="805" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="67.81" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="560.8" y="805" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.76" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1078.8" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1081.81" y="703.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="965.7" y="469" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="968.66" y="479.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.13%)</title><rect x="1134.5" y="501" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1137.51" y="511.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (10,101,010 samples, 0.06%)</title><rect x="351.2" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="354.24" y="655.5" ></text>
+</g>
+<g >
+<title>__fget_light (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="693" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1273.65" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (444,444,440 samples, 2.82%)</title><rect x="887.9" y="853" width="38.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="890.86" y="863.5" >[li..</text>
+</g>
+<g >
+<title>ext4_dirty_inode (40,404,040 samples, 0.26%)</title><rect x="353.0" y="677" width="3.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="356.01" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="853" width="6.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1349.68" y="863.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.06%)</title><rect x="785.3" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="788.31" y="719.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="64.8" y="917" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="67.81" y="927.5" ></text>
+</g>
+<g >
+<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="943.6" y="709" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="946.56" y="719.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="130.2" y="757" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="133.23" y="767.5" ></text>
+</g>
+<g >
+<title>dput (101,010,100 samples, 0.64%)</title><rect x="1091.2" y="661" width="8.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1094.19" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1015.2" y="805" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1018.16" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="919.7" y="261" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="922.69" y="271.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.06%)</title><rect x="453.8" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="456.79" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="172.7" y="853" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="175.66" y="863.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.06%)</title><rect x="361.9" y="661" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="364.85" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="565" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1306.36" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="859.6" y="389" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="862.57" y="399.5" ></text>
+</g>
+<g >
+<title>new_inode (30,303,030 samples, 0.19%)</title><rect x="960.4" y="565" width="2.6" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="963.35" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="725" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1382.39" y="735.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.06%)</title><rect x="18.8" y="437" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="21.84" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.06%)</title><rect x="100.2" y="837" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="103.17" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (353,535,350 samples, 2.24%)</title><rect x="788.0" y="789" width="30.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="790.96" y="799.5" >[l..</text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="799.5" y="549" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="802.46" y="559.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.19%)</title><rect x="414.0" y="821" width="2.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="417.01" y="831.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="222.2" y="661" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="225.17" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.06%)</title><rect x="909.1" y="565" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="912.08" y="575.5" ></text>
+</g>
+<g >
+<title>rq_qos_wait (10,101,010 samples, 0.06%)</title><rect x="807.4" y="357" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="810.41" y="367.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="986.0" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="988.99" y="639.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="887.0" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="889.98" y="559.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="161.2" y="869" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="164.17" y="879.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="453" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1107.45" y="463.5" ></text>
+</g>
+<g >
+<title>nf_nat_setup_info (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="629" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1392.12" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.13%)</title><rect x="714.6" y="469" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="717.59" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1009.0" y="645" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1011.98" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="253.1" y="629" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="256.11" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="850.7" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="853.73" y="735.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="373" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1100.38" y="383.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="798.6" y="549" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="801.57" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="393.7" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="396.68" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="252.2" y="629" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="255.23" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="799.5" y="565" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="802.46" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="231.9" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="234.90" y="623.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="309.7" y="181" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="312.69" y="191.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1205.2" y="725" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1208.23" y="735.5" ></text>
+</g>
+<g >
+<title>local_clock (10,101,010 samples, 0.06%)</title><rect x="29.4" y="853" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="32.45" y="863.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.06%)</title><rect x="349.5" y="661" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="352.47" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="661" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1356.75" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="885" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1382.39" y="895.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="307.0" y="485" width="2.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="310.04" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="629" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1010.21" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="533" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1075.63" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="757" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1359.41" y="767.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="114.3" y="789" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="117.32" y="799.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1194.6" y="661" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1197.63" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="506.8" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="509.84" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1081.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1084.47" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="754.4" y="629" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="757.37" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="908.2" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="911.19" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="357" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1306.36" y="367.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="935.6" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="938.60" y="751.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.13%)</title><rect x="1329.9" y="837" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1332.88" y="847.5" ></text>
+</g>
+<g >
+<title>free_pcp_prepare (10,101,010 samples, 0.06%)</title><rect x="1128.3" y="501" width="0.9" height="15.0" fill="rgb(0,233,180)" rx="2" ry="2" />
+<text x="1131.32" y="511.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="401.6" y="549" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="404.63" y="559.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="798.6" y="517" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="801.57" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="485.6" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="488.62" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="566.1" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="569.07" y="735.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1230.9" y="645" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1233.87" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="191.2" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="194.23" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1222.0" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1225.03" y="671.5" ></text>
+</g>
+<g >
+<title>net_recv (30,303,030 samples, 0.19%)</title><rect x="1374.1" y="853" width="2.6" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1377.09" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="930.3" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="933.29" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="370.7" y="613" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="373.69" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1227.3" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.34" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="877.3" y="533" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="880.25" y="543.5" ></text>
+</g>
+<g >
+<title>dentry_kill (191,919,190 samples, 1.22%)</title><rect x="671.3" y="661" width="16.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="674.27" y="671.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="597" width="1.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1022.58" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="460.9" y="581" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="463.86" y="591.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="441.4" y="869" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="444.42" y="879.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1199.39" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="737.6" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="740.57" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="336.2" y="613" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="339.21" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="293" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1140.16" y="303.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1011.6" y="789" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1014.63" y="799.5" ></text>
+</g>
+<g >
+<title>__release_sock (20,202,020 samples, 0.13%)</title><rect x="1347.6" y="725" width="1.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1350.57" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="967.4" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="970.42" y="463.5" ></text>
+</g>
+<g >
+<title>bio_associate_blkg (10,101,010 samples, 0.06%)</title><rect x="467.1" y="485" width="0.8" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="470.05" y="495.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="490.9" y="645" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="493.92" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="902.9" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="905.89" y="655.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="805" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1387.70" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="1021.4" y="501" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1024.35" y="511.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="533" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1364.71" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1380.3" y="613" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1383.28" y="623.5" ></text>
+</g>
+<g >
+<title>__pagevec_release (10,101,010 samples, 0.06%)</title><rect x="467.9" y="549" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="470.94" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="882.6" y="741" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="885.56" y="751.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="789.7" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="792.73" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="897.6" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="900.58" y="639.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="940.9" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="943.90" y="783.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (60,606,060 samples, 0.38%)</title><rect x="192.1" y="629" width="5.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="195.11" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="785.3" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="788.31" y="783.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="725" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1190.55" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.13%)</title><rect x="521.0" y="629" width="1.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="523.98" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1160.1" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1163.15" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1251.2" y="725" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1254.20" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="921.5" y="549" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="924.45" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (60,606,060 samples, 0.38%)</title><rect x="184.2" y="629" width="5.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="187.16" y="639.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.06%)</title><rect x="940.0" y="597" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="943.02" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1102.7" y="469" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1105.68" y="479.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="59.5" y="741" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="62.51" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="1200.8" y="789" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1203.81" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="309" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1306.36" y="319.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_out (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="677" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1392.12" y="687.5" ></text>
+</g>
+<g >
+<title>git_remote_create_with_opts (515,151,510 samples, 3.27%)</title><rect x="842.8" y="853" width="45.1" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="845.77" y="863.5" >git_..</text>
+</g>
+<g >
+<title>filemap_flush (90,909,090 samples, 0.58%)</title><rect x="689.8" y="613" width="8.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="692.83" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (444,444,440 samples, 2.82%)</title><rect x="887.9" y="837" width="38.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="890.86" y="847.5" >[li..</text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1083.58" y="591.5" ></text>
+</g>
+<g >
+<title>__mutex_lock.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1368.25" y="703.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="674.8" y="453" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="677.80" y="463.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="220.4" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="223.40" y="655.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="330.9" y="693" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="333.91" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="757" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1274.54" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="919.15" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1032.8" y="405" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1035.84" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (20,202,020 samples, 0.13%)</title><rect x="976.3" y="533" width="1.7" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="979.27" y="543.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="323.0" y="677" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="325.95" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="517" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1062.37" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="834.8" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="837.82" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="795.9" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="798.92" y="703.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="1214.1" y="661" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1217.07" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="493.6" y="597" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="496.57" y="607.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="769.4" y="533" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="772.40" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1078.8" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1081.81" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_write (50,505,050 samples, 0.32%)</title><rect x="451.1" y="709" width="4.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="454.14" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="1070.9" y="709" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1073.86" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1178.7" y="645" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1181.71" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="786.2" y="725" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="789.19" y="735.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="469" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1379.74" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1016.9" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1019.93" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1234.4" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1237.41" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1159.3" y="661" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1162.26" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="927.6" y="773" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="930.64" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (30,303,030 samples, 0.19%)</title><rect x="1281.3" y="709" width="2.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1284.26" y="719.5" ></text>
+</g>
+<g >
+<title>git_oid_fromstrn (10,101,010 samples, 0.06%)</title><rect x="752.6" y="741" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="755.60" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="332.7" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="335.68" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_set_inode_flags (10,101,010 samples, 0.06%)</title><rect x="589.9" y="629" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="592.94" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="905.5" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="908.54" y="639.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="1096.5" y="533" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1099.50" y="543.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="448.5" y="645" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="451.49" y="655.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.06%)</title><rect x="940.0" y="581" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="943.02" y="591.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.32%)</title><rect x="420.2" y="709" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="423.20" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="122.3" y="693" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="125.27" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (90,909,090 samples, 0.58%)</title><rect x="1070.9" y="821" width="7.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1073.86" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="948.9" y="645" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="951.86" y="655.5" ></text>
+</g>
+<g >
+<title>lh_table_new (20,202,020 samples, 0.13%)</title><rect x="1366.1" y="869" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1369.13" y="879.5" ></text>
+</g>
+<g >
+<title>net_recv_buf (40,404,040 samples, 0.26%)</title><rect x="1373.2" y="869" width="3.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1376.20" y="879.5" ></text>
+</g>
+<g >
+<title>alloc_pages (20,202,020 samples, 0.13%)</title><rect x="828.6" y="501" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="831.63" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="704.9" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="707.86" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="511.3" y="613" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="514.26" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="458.2" y="629" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="461.21" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1245.9" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1248.90" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="344.2" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="347.17" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1031.1" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1034.08" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (10,101,010 samples, 0.06%)</title><rect x="773.8" y="773" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="776.82" y="783.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="192.1" y="597" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="195.11" y="607.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="833.9" y="709" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="836.93" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mb_use_best_found (10,101,010 samples, 0.06%)</title><rect x="1176.1" y="565" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1179.06" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="669.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="672.50" y="687.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="789.7" y="533" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="792.73" y="543.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="741" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1017.28" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="853" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1247.13" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="978.0" y="581" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="981.03" y="591.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1386.5" y="693" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1389.46" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.19%)</title><rect x="511.3" y="645" width="2.6" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="514.26" y="655.5" ></text>
+</g>
+<g >
+<title>grab_cache_page_write_begin (20,202,020 samples, 0.13%)</title><rect x="519.2" y="613" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="522.21" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1008.44" y="767.5" ></text>
+</g>
+<g >
+<title>faccessat (20,202,020 samples, 0.13%)</title><rect x="1193.7" y="757" width="1.8" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1196.74" y="767.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (70,707,070 samples, 0.45%)</title><rect x="44.5" y="293" width="6.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="47.48" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="629" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1210.00" y="639.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="559.9" y="725" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="562.88" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.02%)</title><rect x="933.8" y="821" width="14.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="936.83" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="16.2" y="837" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="19.19" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1366.1" y="837" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1369.13" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="764.1" y="533" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="767.09" y="543.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="837" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1368.25" y="847.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="279.6" y="565" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="282.63" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bread (202,020,200 samples, 1.28%)</title><rect x="1161.0" y="677" width="17.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1164.03" y="687.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="559.9" y="821" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="562.88" y="831.5" ></text>
+</g>
+<g >
+<title>remove (90,909,090 samples, 0.58%)</title><rect x="416.7" y="821" width="7.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="419.66" y="831.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (90,909,090 samples, 0.58%)</title><rect x="1038.1" y="741" width="8.0" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1041.15" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1227.3" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.34" y="783.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="447.6" y="661" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="450.60" y="671.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.06%)</title><rect x="962.1" y="533" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="965.12" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="309.7" y="309" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="312.69" y="319.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="987.8" y="741" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="990.76" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="926.8" y="837" width="6.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="929.76" y="847.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (20,202,020 samples, 0.13%)</title><rect x="903.8" y="677" width="1.7" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="906.77" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="375.1" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="378.11" y="543.5" ></text>
+</g>
+<g >
+<title>iput (191,919,190 samples, 1.22%)</title><rect x="387.5" y="709" width="16.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="390.49" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.64%)</title><rect x="742.0" y="741" width="8.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="1039.9" y="693" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1042.92" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.58%)</title><rect x="507.7" y="789" width="8.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="510.72" y="799.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="469" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1356.75" y="479.5" ></text>
+</g>
+<g >
+<title>dd_insert_requests (10,101,010 samples, 0.06%)</title><rect x="1135.4" y="437" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1138.39" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="1039.0" y="677" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1042.03" y="687.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="443.2" y="789" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="446.18" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="921.5" y="709" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="924.45" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="565" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1112.76" y="575.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="27.7" y="933" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="30.68" y="943.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="11.8" y="453" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="14.77" y="463.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="522.7" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="525.75" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="917.0" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="920.03" y="703.5" ></text>
+</g>
+<g >
+<title>folio_activate (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1220.61" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1078.8" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1081.81" y="735.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="204.5" y="549" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="207.49" y="559.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="340.6" y="549" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="343.63" y="559.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="722.5" y="661" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="725.54" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="853" width="4.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1383.28" y="863.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="405" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1026.12" y="415.5" ></text>
+</g>
+<g >
+<title>mb_mark_used (10,101,010 samples, 0.06%)</title><rect x="714.6" y="421" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="717.59" y="431.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="793.3" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="796.27" y="719.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="781.8" y="597" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="784.77" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1273.65" y="783.5" ></text>
+</g>
+<g >
+<title>_Fork (484,848,480 samples, 3.07%)</title><rect x="1287.5" y="869" width="42.4" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="1290.45" y="879.5" >_Fork</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="937.4" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="940.37" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="722.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="725.54" y="719.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="493.6" y="613" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="496.57" y="623.5" ></text>
+</g>
+<g >
+<title>filename_create (30,303,030 samples, 0.19%)</title><rect x="1272.4" y="789" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1275.42" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="423.7" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="426.73" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (191,919,190 samples, 1.22%)</title><rect x="956.8" y="597" width="16.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="959.82" y="607.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.06%)</title><rect x="110.8" y="789" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="113.78" y="799.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.06%)</title><rect x="703.1" y="677" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="706.09" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="403.4" y="597" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="406.40" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="883.4" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="886.44" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="729.6" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="732.62" y="671.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="405" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1107.45" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (40,404,040 samples, 0.26%)</title><rect x="1124.8" y="469" width="3.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1127.79" y="479.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1253.0" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1255.97" y="687.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.06%)</title><rect x="540.4" y="613" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="543.43" y="623.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (20,202,020 samples, 0.13%)</title><rect x="1096.5" y="517" width="1.8" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1099.50" y="527.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1253.9" y="645" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1256.86" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="487.4" y="565" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="490.39" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="939.1" y="709" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="942.14" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="629" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1024.35" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="567.0" y="645" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="569.95" y="655.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="460.9" y="549" width="0.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="463.86" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="231.9" y="373" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="234.90" y="383.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (10,101,010 samples, 0.06%)</title><rect x="125.8" y="821" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="128.81" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="779.1" y="693" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="782.12" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="754.4" y="597" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="757.37" y="607.5" ></text>
+</g>
+<g >
+<title>free_page_and_swap_cache (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="533" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1331.12" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_remove_folio (10,101,010 samples, 0.06%)</title><rect x="1096.5" y="501" width="0.9" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="1099.50" y="511.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.13%)</title><rect x="1155.7" y="645" width="1.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1158.73" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.58%)</title><rect x="1070.9" y="805" width="7.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1073.86" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="994.8" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="997.83" y="655.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="925.0" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="927.99" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="1148.7" y="629" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1151.65" y="639.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1028.4" y="501" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1031.42" y="511.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="65.7" y="853" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="68.70" y="863.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="856.0" y="437" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="859.03" y="447.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (30,303,030 samples, 0.19%)</title><rect x="11.8" y="773" width="2.6" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="14.77" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1245.0" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1248.02" y="751.5" ></text>
+</g>
+<g >
+<title>wait4 (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="869" width="0.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="1339.96" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (40,404,040 samples, 0.26%)</title><rect x="1124.8" y="485" width="3.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1127.79" y="495.5" ></text>
+</g>
+<g >
+<title>os_xsave (20,202,020 samples, 0.13%)</title><rect x="1152.2" y="613" width="1.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1155.19" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (20,202,020 samples, 0.13%)</title><rect x="550.2" y="725" width="1.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="553.15" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="340.6" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="343.63" y="591.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="872.8" y="629" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="875.83" y="639.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1361.7" y="693" width="2.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1364.71" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1237.9" y="709" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1240.94" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="816.3" y="645" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="819.25" y="655.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="910.0" y="437" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="912.96" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="978.9" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="981.92" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.06%)</title><rect x="788.8" y="501" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="791.85" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="1164.6" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1167.57" y="607.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (20,202,020 samples, 0.13%)</title><rect x="97.5" y="853" width="1.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="100.52" y="863.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="201.8" y="629" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="204.84" y="639.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="1295.4" y="677" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1298.41" y="687.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (10,101,010 samples, 0.06%)</title><rect x="1348.4" y="645" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1351.45" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="688.9" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="691.95" y="591.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (50,505,050 samples, 0.32%)</title><rect x="1245.0" y="853" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1248.02" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (30,303,030 samples, 0.19%)</title><rect x="647.4" y="677" width="2.7" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="650.40" y="687.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="18.8" y="517" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="21.84" y="527.5" ></text>
+</g>
+<g >
+<title>iput (191,919,190 samples, 1.22%)</title><rect x="671.3" y="613" width="16.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="674.27" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="856.9" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="859.92" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="193.9" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="196.88" y="511.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="544.8" y="661" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="547.85" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (70,707,070 samples, 0.45%)</title><rect x="1133.6" y="661" width="6.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1136.63" y="671.5" ></text>
+</g>
+<g >
+<title>do_futex (10,101,010 samples, 0.06%)</title><rect x="19.7" y="869" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="22.72" y="879.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="798.6" y="501" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="801.57" y="511.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="976.3" y="453" width="0.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="979.27" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.26%)</title><rect x="80.7" y="869" width="3.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="83.72" y="879.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1009.0" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1011.98" y="559.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="211.6" y="517" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="214.56" y="527.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="430.8" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="433.81" y="623.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="534.2" y="773" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="537.24" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="934.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="937.71" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="150.6" y="901" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="153.56" y="911.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.06%)</title><rect x="43.6" y="485" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="46.59" y="495.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="450.3" y="677" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="453.26" y="687.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="738.5" y="725" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="741.46" y="735.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.19%)</title><rect x="1237.9" y="725" width="2.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1240.94" y="735.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="1053.2" y="613" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1056.18" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="309" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1137.51" y="319.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="221.3" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="224.29" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="792.4" y="469" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="795.38" y="479.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="497.1" y="613" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="500.11" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.26%)</title><rect x="452.0" y="661" width="3.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="455.02" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1241.5" y="693" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1244.48" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (262,626,260 samples, 1.67%)</title><rect x="1082.4" y="805" width="22.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1085.35" y="815.5" >g..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="431.7" y="821" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="434.69" y="831.5" ></text>
+</g>
+<g >
+<title>scsi_done (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="549" width="0.9" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="1327.58" y="559.5" ></text>
+</g>
+<g >
+<title>rename (151,515,150 samples, 0.96%)</title><rect x="801.2" y="741" width="13.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="804.22" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1038.1" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1041.15" y="703.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="128.5" y="709" width="0.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="131.46" y="719.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="806.5" y="501" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="809.53" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="948.0" y="709" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="950.98" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.19%)</title><rect x="1361.7" y="773" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1364.71" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="84.3" y="789" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="87.26" y="799.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="670.4" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="673.38" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (70,707,070 samples, 0.45%)</title><rect x="1064.7" y="725" width="6.2" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1067.67" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="887.0" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="889.98" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="565" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1331.12" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="492.7" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="495.69" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="395.4" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="398.45" y="559.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (20,202,020 samples, 0.13%)</title><rect x="691.6" y="437" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="694.60" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (20,202,020 samples, 0.13%)</title><rect x="1152.2" y="693" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1155.19" y="703.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="1214.1" y="629" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1217.07" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="1030.2" y="501" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1033.19" y="511.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.06%)</title><rect x="909.1" y="549" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="912.08" y="559.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="919.7" y="453" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="922.69" y="463.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="1131.0" y="485" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1133.97" y="495.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="901" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1342.61" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="700.4" y="629" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="703.44" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1010.21" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="39.2" y="805" width="1.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="42.17" y="815.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="691.6" y="373" width="1.8" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="694.60" y="383.5" ></text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.06%)</title><rect x="1001.9" y="869" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1004.90" y="879.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="469" width="0.8" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1034.96" y="479.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="586.4" y="613" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="589.40" y="623.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="1037.3" y="805" width="0.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1040.26" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.51%)</title><rect x="515.7" y="757" width="7.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="518.68" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.06%)</title><rect x="930.3" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="933.29" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="235.4" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="238.43" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (60,606,060 samples, 0.38%)</title><rect x="277.0" y="629" width="5.3" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="279.98" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1208.23" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="666.8" y="501" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="669.85" y="511.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="910.8" y="485" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="913.85" y="495.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="593.5" y="629" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="596.47" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="409.6" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="412.59" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="977.1" y="469" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="980.15" y="479.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1382.0" y="389" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1385.04" y="399.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="455.6" y="789" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="458.56" y="799.5" ></text>
+</g>
+<g >
+<title>__sk_destruct (10,101,010 samples, 0.06%)</title><rect x="44.5" y="181" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="47.48" y="191.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1268.35" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="709.3" y="709" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.28" y="719.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.06%)</title><rect x="521.0" y="597" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="523.98" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1368.25" y="815.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="533" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1253.32" y="543.5" ></text>
+</g>
+<g >
+<title>server_wait (50,505,050 samples, 0.32%)</title><rect x="19.7" y="981" width="4.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="22.72" y="991.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="932.9" y="741" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="935.95" y="751.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (30,303,030 samples, 0.19%)</title><rect x="1032.0" y="581" width="2.6" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1034.96" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.58%)</title><rect x="1038.1" y="773" width="8.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1041.15" y="783.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="526.3" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="529.28" y="751.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="567.8" y="805" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="570.83" y="815.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="792.4" y="437" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="795.38" y="447.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="444.1" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="447.07" y="687.5" ></text>
+</g>
+<g >
+<title>__close (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="917" width="4.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1383.28" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1053.2" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1056.18" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_initialize_context (10,101,010 samples, 0.06%)</title><rect x="86.9" y="757" width="0.9" height="15.0" fill="rgb(0,225,151)" rx="2" ry="2" />
+<text x="89.91" y="767.5" ></text>
+</g>
+<g >
+<title>file_close (10,101,010 samples, 0.06%)</title><rect x="18.8" y="949" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="21.84" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (212,121,210 samples, 1.35%)</title><rect x="152.3" y="997" width="18.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="155.33" y="1007.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1385.6" y="293" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1388.58" y="303.5" ></text>
+</g>
+<g >
+<title>__sg_free_table (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="677" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1274.54" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="751.7" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="754.72" y="671.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.06%)</title><rect x="130.2" y="773" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="133.23" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="919.15" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1042.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1045.57" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (20,202,020 samples, 0.13%)</title><rect x="110.8" y="837" width="1.7" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="113.78" y="847.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="978.9" y="533" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="981.92" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.58%)</title><rect x="1070.9" y="789" width="7.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1073.86" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (545,454,540 samples, 3.46%)</title><rect x="174.4" y="757" width="47.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="177.43" y="767.5" >[lib..</text>
+</g>
+<g >
+<title>inet_stream_connect (90,909,090 samples, 0.58%)</title><rect x="1356.4" y="837" width="8.0" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1359.41" y="847.5" ></text>
+</g>
+<g >
+<title>__fput (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="789" width="2.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1355.87" y="799.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="597" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1030.54" y="607.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="517" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1301.94" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_link (90,909,090 samples, 0.58%)</title><rect x="624.4" y="661" width="8.0" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="627.41" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1027.89" y="703.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="786.2" y="597" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="789.19" y="607.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (111,111,110 samples, 0.70%)</title><rect x="160.3" y="933" width="9.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="163.29" y="943.5" ></text>
+</g>
+<g >
+<title>mpage_submit_page (10,101,010 samples, 0.06%)</title><rect x="696.9" y="485" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="699.91" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="783.5" y="549" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="786.54" y="559.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (10,101,010 samples, 0.06%)</title><rect x="399.0" y="581" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="401.98" y="591.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.06%)</title><rect x="41.8" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="44.83" y="687.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="1030.2" y="485" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1033.19" y="495.5" ></text>
+</g>
+<g >
+<title>__schedule (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="741" width="2.7" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1336.42" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="741.1" y="533" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="744.11" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="532.5" y="757" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="535.47" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (10,101,010 samples, 0.06%)</title><rect x="773.8" y="757" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="776.82" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="741.1" y="549" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="744.11" y="559.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="199.2" y="533" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="202.19" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1258.3" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1261.28" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="994.8" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="997.83" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1191.1" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1194.09" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="430.8" y="373" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="433.81" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (292,929,290 samples, 1.86%)</title><rect x="582.0" y="661" width="25.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="584.98" y="671.5" >e..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (353,535,350 samples, 2.24%)</title><rect x="443.2" y="901" width="30.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="446.18" y="911.5" >[l..</text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1188.4" y="709" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1191.44" y="719.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.13%)</title><rect x="729.6" y="693" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="732.62" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="955.0" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="958.05" y="655.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="258.4" y="597" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="261.42" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="893.2" y="773" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="896.16" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="477.7" y="757" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="480.66" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="229.2" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="232.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (202,020,200 samples, 1.28%)</title><rect x="1161.0" y="661" width="17.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1164.03" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="833.9" y="661" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="836.93" y="671.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="295.5" y="565" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="298.55" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_link (30,303,030 samples, 0.19%)</title><rect x="546.6" y="709" width="2.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="549.62" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="240.7" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="243.74" y="671.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (30,303,030 samples, 0.19%)</title><rect x="1028.4" y="613" width="2.7" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1031.42" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="392.8" y="629" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="395.79" y="639.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="140.0" y="645" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="142.96" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="869.3" y="565" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="872.30" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1230.0" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1232.99" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="550.2" y="693" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="553.15" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="499.8" y="709" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="502.76" y="719.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="505.1" y="709" width="1.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="508.07" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1209.12" y="639.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="566.1" y="709" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="569.07" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="368.0" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="371.04" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (50,505,050 samples, 0.32%)</title><rect x="268.1" y="613" width="4.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="271.14" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="871.9" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="874.95" y="751.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1208.8" y="629" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1211.77" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1100.0" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1103.03" y="639.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1228.2" y="517" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1231.22" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="912.6" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="915.61" y="751.5" ></text>
+</g>
+<g >
+<title>anon_vma_clone (10,101,010 samples, 0.06%)</title><rect x="1295.4" y="709" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1298.41" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="89.6" y="837" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="92.56" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="901" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1387.70" y="911.5" ></text>
+</g>
+<g >
+<title>rename (40,404,040 samples, 0.26%)</title><rect x="944.4" y="789" width="3.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="947.44" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="190.3" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="193.35" y="703.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="430.8" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="433.81" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="1057.6" y="677" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1060.60" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="485" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1114.52" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 1.02%)</title><rect x="1091.2" y="709" width="14.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1094.19" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="710.2" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="713.17" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="987.8" y="661" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="990.76" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1184.9" y="693" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1187.90" y="703.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="755.3" y="469" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="758.25" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="849.8" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="852.85" y="607.5" ></text>
+</g>
+<g >
+<title>do_rmdir (676,767,670 samples, 4.29%)</title><rect x="257.5" y="677" width="59.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="260.53" y="687.5" >do_rmdir</text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="990.4" y="565" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="993.41" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (80,808,080 samples, 0.51%)</title><rect x="515.7" y="725" width="7.0" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="518.68" y="735.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="501" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1112.76" y="511.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.06%)</title><rect x="596.1" y="565" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="599.12" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="300.0" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="302.97" y="575.5" ></text>
+</g>
+<g >
+<title>errseq_check (10,101,010 samples, 0.06%)</title><rect x="1145.1" y="677" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="1148.12" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="487.4" y="517" width="1.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="490.39" y="527.5" ></text>
+</g>
+<g >
+<title>crc_62 (10,101,010 samples, 0.06%)</title><rect x="1157.5" y="645" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1160.50" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="706.6" y="629" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="709.63" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1131.0" y="421" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1133.97" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="766.7" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.75" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="906.4" y="629" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="909.43" y="639.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="77.2" y="901" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="80.19" y="911.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="919.7" y="373" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="922.69" y="383.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="986.9" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="989.87" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1050.5" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1053.53" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1253.0" y="789" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1255.97" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (90,909,090 samples, 0.58%)</title><rect x="806.5" y="533" width="8.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="809.53" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="995.7" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="998.71" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="597" width="3.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1384.16" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="472.4" y="805" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="475.36" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,414,140 samples, 0.90%)</title><rect x="802.1" y="709" width="12.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="805.11" y="719.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.06%)</title><rect x="211.6" y="565" width="0.8" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="214.56" y="575.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1186.13" y="703.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="826.9" y="581" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="829.86" y="591.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="405" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1356.75" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="921.5" y="661" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="924.45" y="671.5" ></text>
+</g>
+<g >
+<title>get_current_dir_name (30,303,030 samples, 0.19%)</title><rect x="1344.0" y="917" width="2.7" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1347.03" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.58%)</title><rect x="872.8" y="741" width="8.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="875.83" y="751.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (111,111,110 samples, 0.70%)</title><rect x="917.0" y="805" width="9.8" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="920.03" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="765.9" y="709" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="768.86" y="719.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.06%)</title><rect x="567.8" y="885" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="570.83" y="895.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (131,313,130 samples, 0.83%)</title><rect x="460.9" y="741" width="11.5" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="463.86" y="751.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="208.9" y="357" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="211.91" y="367.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="773.8" y="549" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="776.82" y="559.5" ></text>
+</g>
+<g >
+<title>walk_component (40,404,040 samples, 0.26%)</title><rect x="487.4" y="613" width="3.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="490.39" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="1116.8" y="741" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1119.83" y="751.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="373" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1011.09" y="383.5" ></text>
+</g>
+<g >
+<title>folio_wait_writeback (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="501" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1100.38" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (60,606,060 samples, 0.38%)</title><rect x="287.6" y="581" width="5.3" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="290.59" y="591.5" ></text>
+</g>
+<g >
+<title>net_rx_action (70,707,070 samples, 0.45%)</title><rect x="44.5" y="405" width="6.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="47.48" y="415.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="519.2" y="485" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="522.21" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="541.3" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="544.31" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (30,303,030 samples, 0.19%)</title><rect x="620.0" y="661" width="2.6" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="622.99" y="671.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="789" width="1.8" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1379.74" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="742.9" y="597" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="745.88" y="607.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="450.3" y="629" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="453.26" y="639.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="936.5" y="645" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="939.48" y="655.5" ></text>
+</g>
+<g >
+<title>__check_object_size (20,202,020 samples, 0.13%)</title><rect x="1215.0" y="597" width="1.7" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1217.96" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="503.3" y="565" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="506.30" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="840.1" y="821" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="843.12" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (353,535,350 samples, 2.24%)</title><rect x="475.9" y="805" width="30.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="478.89" y="815.5" >[l..</text>
+</g>
+<g >
+<title>dentry_kill (10,101,010 samples, 0.06%)</title><rect x="1352.9" y="757" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1355.87" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="499.8" y="677" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="502.76" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_free_metadata.isra.0 (10,101,010 samples, 0.06%)</title><rect x="856.9" y="469" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="859.92" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="912.6" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="915.61" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="381.3" y="725" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="384.30" y="735.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="430.8" y="389" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="433.81" y="399.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="381.3" y="757" width="5.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="384.30" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="231.9" y="469" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="234.90" y="479.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="852.5" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="855.50" y="639.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.13%)</title><rect x="1046.1" y="693" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1049.11" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="419.3" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="422.31" y="703.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.06%)</title><rect x="874.6" y="661" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="877.60" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="561.6" y="613" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="564.65" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="443.2" y="869" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="446.18" y="879.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="690.7" y="469" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="693.72" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="797.7" y="517" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="800.69" y="527.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="784.4" y="693" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="787.43" y="703.5" ></text>
+</g>
+<g >
+<title>apparmor_file_free_security (10,101,010 samples, 0.06%)</title><rect x="460.0" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="462.98" y="671.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="464.4" y="421" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="467.40" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="735.8" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="738.80" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="466.2" y="485" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="469.17" y="495.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="325" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1039.38" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="791.5" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="794.50" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1282.1" y="677" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1285.15" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (90,909,090 samples, 0.58%)</title><rect x="806.5" y="581" width="8.0" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="809.53" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_symlink (30,303,030 samples, 0.19%)</title><rect x="1056.7" y="709" width="2.7" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1059.71" y="719.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="1012.5" y="677" width="1.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1015.51" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="771.2" y="629" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="774.17" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="1016.9" y="725" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1019.93" y="735.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="378.6" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="381.65" y="687.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="517" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1387.70" y="527.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="102.8" y="869" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="105.83" y="879.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="549" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1301.94" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="447.6" y="677" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="450.60" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="353.0" y="661" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="356.01" y="671.5" ></text>
+</g>
+<g >
+<title>alloc_inode (60,606,060 samples, 0.38%)</title><rect x="126.7" y="805" width="5.3" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="129.69" y="815.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="1360.8" y="757" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1363.83" y="767.5" ></text>
+</g>
+<g >
+<title>evict (353,535,350 samples, 2.24%)</title><rect x="284.9" y="629" width="31.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="287.94" y="639.5" >ev..</text>
+</g>
+<g >
+<title>git_repository_open_ext (303,030,300 samples, 1.92%)</title><rect x="1190.2" y="837" width="26.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1193.20" y="847.5" >g..</text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.06%)</title><rect x="1297.2" y="709" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1300.17" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (70,707,070 samples, 0.45%)</title><rect x="597.9" y="565" width="6.2" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="600.89" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="986.9" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="989.87" y="575.5" ></text>
+</g>
+<g >
+<title>dput (30,303,030 samples, 0.19%)</title><rect x="802.1" y="661" width="2.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="805.11" y="671.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="850.7" y="645" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="853.73" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="728.7" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="731.73" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.83%)</title><rect x="709.3" y="725" width="11.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.28" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.64%)</title><rect x="1207.9" y="757" width="8.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1210.89" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="789" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1382.39" y="799.5" ></text>
+</g>
+<g >
+<title>git_odb_read (90,909,090 samples, 0.58%)</title><rect x="522.7" y="821" width="8.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="525.75" y="831.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1208.8" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1211.77" y="703.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.06%)</title><rect x="1364.4" y="901" width="0.8" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1367.36" y="911.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="464.4" y="389" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="467.40" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="373.3" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="376.34" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1241.5" y="677" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1244.48" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="952.4" y="693" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="955.40" y="703.5" ></text>
+</g>
+<g >
+<title>nft_meta_get_eval (10,101,010 samples, 0.06%)</title><rect x="43.6" y="453" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="46.59" y="463.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="893.2" y="629" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="896.16" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="395.4" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="398.45" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="172.7" y="837" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="175.66" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="526.3" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="529.28" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1144.2" y="677" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1147.23" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="978.0" y="597" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="981.03" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1092.42" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="183.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="186.27" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1344.0" y="869" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1347.03" y="879.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="357" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1104.80" y="367.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="853" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1339.96" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="872.8" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="875.83" y="575.5" ></text>
+</g>
+<g >
+<title>closedir (10,101,010 samples, 0.06%)</title><rect x="245.2" y="773" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="248.16" y="783.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1167.2" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1170.22" y="463.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1279.84" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="453" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1104.80" y="463.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="1235.3" y="709" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1238.29" y="719.5" ></text>
+</g>
+<g >
+<title>find_lock_entries (10,101,010 samples, 0.06%)</title><rect x="683.6" y="533" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="686.65" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="937.4" y="677" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="940.37" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (50,505,050 samples, 0.32%)</title><rect x="652.7" y="693" width="4.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="655.70" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="246.9" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="249.93" y="671.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="318.5" y="629" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="321.53" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="582.9" y="613" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="585.86" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="397.2" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="400.21" y="543.5" ></text>
+</g>
+<g >
+<title>destroy_inode (20,202,020 samples, 0.13%)</title><rect x="671.3" y="581" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="674.27" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="185.9" y="517" width="2.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="188.93" y="527.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="39.2" y="821" width="1.7" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="42.17" y="831.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="869" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1382.39" y="879.5" ></text>
+</g>
+<g >
+<title>unlink (60,606,060 samples, 0.38%)</title><rect x="1059.4" y="805" width="5.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1062.37" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="39.2" y="853" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="42.17" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="885" width="5.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1387.70" y="895.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="292.9" y="549" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="295.90" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="466.2" y="501" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="469.17" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="988.6" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="991.64" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,707,070,690 samples, 10.83%)</title><rect x="173.5" y="789" width="149.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="176.55" y="799.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="1022.2" y="469" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1025.24" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="184.2" y="453" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="187.16" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="494.5" y="565" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="497.46" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="740.2" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="743.22" y="719.5" ></text>
+</g>
+<g >
+<title>chdir (20,202,020 samples, 0.13%)</title><rect x="1342.3" y="917" width="1.7" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1345.26" y="927.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="982.5" y="597" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="985.45" y="607.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="360.1" y="677" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="363.08" y="687.5" ></text>
+</g>
+<g >
+<title>free_page_and_swap_cache (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="533" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1301.94" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="549.3" y="789" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="552.27" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="482.1" y="741" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="485.08" y="751.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="645" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1391.23" y="655.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="255.8" y="693" width="0.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="258.77" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="751.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="754.72" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="749.9" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="752.95" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1343.49" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="797.7" y="501" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="800.69" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1210.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1213.54" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="879.0" y="453" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="882.02" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="277.9" y="613" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="280.87" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.13%)</title><rect x="1085.9" y="565" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1088.89" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="667.7" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="670.73" y="703.5" ></text>
+</g>
+<g >
+<title>mas_wr_store_entry.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1314.0" y="725" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1316.97" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.26%)</title><rect x="383.1" y="725" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="386.07" y="735.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.19%)</title><rect x="927.6" y="805" width="2.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="930.64" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getcwd (10,101,010 samples, 0.06%)</title><rect x="1345.8" y="853" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1348.80" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="216.0" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="218.98" y="527.5" ></text>
+</g>
+<g >
+<title>iterate_dir (90,909,090 samples, 0.58%)</title><rect x="348.6" y="725" width="7.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="351.59" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="435.2" y="629" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="438.23" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_init_acl (10,101,010 samples, 0.06%)</title><rect x="712.8" y="581" width="0.9" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="715.82" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="932.9" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="935.95" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="738.5" y="677" width="0.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="741.46" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="572.3" y="805" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="575.25" y="815.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="928.5" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="931.53" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="853" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1343.49" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="787.1" y="565" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="790.08" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="231.9" y="437" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="234.90" y="447.5" ></text>
+</g>
+<g >
+<title>inet6_release (10,101,010 samples, 0.06%)</title><rect x="18.8" y="757" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="21.84" y="767.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.06%)</title><rect x="669.5" y="485" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="672.50" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="991.3" y="597" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="994.29" y="607.5" ></text>
+</g>
+<g >
+<title>git_branch_is_checked_out (393,939,390 samples, 2.50%)</title><rect x="753.5" y="821" width="34.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="756.48" y="831.5" >gi..</text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="79.0" y="901" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="81.96" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="376.9" y="533" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="379.88" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.64%)</title><rect x="1046.1" y="789" width="8.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1049.11" y="799.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="769.4" y="549" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="772.40" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="11.8" y="549" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="14.77" y="559.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="851.6" y="773" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="854.61" y="783.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="538.7" y="597" width="1.7" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="541.66" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="567.0" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="569.95" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1275.1" y="741" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1278.07" y="751.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="597" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1389.46" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="741.1" y="565" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="744.11" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="763.2" y="501" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="766.21" y="511.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.06%)</title><rect x="140.0" y="709" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="142.96" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="567.0" y="709" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="569.95" y="719.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1209.12" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="910.0" y="597" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="912.96" y="607.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (343,434,340 samples, 2.18%)</title><rect x="671.3" y="693" width="30.0" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="674.27" y="703.5" >do..</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="711.1" y="661" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="714.05" y="671.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.13%)</title><rect x="691.6" y="485" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="694.60" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.96%)</title><rect x="1230.9" y="821" width="13.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1233.87" y="831.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1268.35" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1342.61" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="877.3" y="501" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="880.25" y="511.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="666.8" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="669.85" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (80,808,080 samples, 0.51%)</title><rect x="177.1" y="709" width="7.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="180.09" y="719.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1253.0" y="661" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1255.97" y="671.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="685.4" y="469" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="688.41" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="82.5" y="837" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="85.49" y="847.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="669.5" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="672.50" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="184.2" y="517" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="187.16" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="196.5" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="199.53" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="735.8" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="738.80" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1061.48" y="591.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="764.1" y="517" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="767.09" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (40,404,040 samples, 0.26%)</title><rect x="1124.8" y="549" width="3.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1127.79" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="725" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1008.44" y="735.5" ></text>
+</g>
+<g >
+<title>complete_walk (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="597" width="1.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1092.42" y="607.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="821" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1343.49" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="501" width="0.8" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="1034.96" y="511.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="559.9" y="757" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="562.88" y="767.5" ></text>
+</g>
+<g >
+<title>futex_wait (10,101,010 samples, 0.06%)</title><rect x="19.7" y="853" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="22.72" y="863.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.19%)</title><rect x="493.6" y="629" width="2.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="496.57" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="919.7" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="922.69" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1237.1" y="661" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1240.06" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="993.9" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="996.95" y="751.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="83.4" y="789" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="86.38" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="1033.7" y="421" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1036.73" y="431.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="836.6" y="533" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="839.59" y="543.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="893.2" y="613" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="896.16" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="729.6" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="732.62" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.96%)</title><rect x="79.0" y="965" width="13.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="81.96" y="975.5" ></text>
+</g>
+<g >
+<title>__check_object_size (20,202,020 samples, 0.13%)</title><rect x="1070.9" y="677" width="1.7" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1073.86" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1260.9" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1263.93" y="719.5" ></text>
+</g>
+<g >
+<title>__release_sock (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="773" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1387.70" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="290.2" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="293.24" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="963.9" y="533" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="966.89" y="543.5" ></text>
+</g>
+<g >
+<title>crc_23 (10,101,010 samples, 0.06%)</title><rect x="971.8" y="533" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="974.84" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="522.7" y="773" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="525.75" y="783.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="562.5" y="549" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="565.53" y="559.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.06%)</title><rect x="1200.8" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1203.81" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="307.0" y="421" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="310.04" y="431.5" ></text>
+</g>
+<g >
+<title>do_filp_open (90,909,090 samples, 0.58%)</title><rect x="507.7" y="741" width="8.0" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="510.72" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="773.8" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="776.82" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="366.3" y="645" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="369.27" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1327.58" y="719.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="786.2" y="581" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="789.19" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="293" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1026.12" y="303.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (40,404,040 samples, 0.26%)</title><rect x="20.6" y="853" width="3.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="23.61" y="863.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="522.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="525.75" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1371.4" y="789" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1374.43" y="799.5" ></text>
+</g>
+<g >
+<title>wait_consider_task (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="757" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1339.96" y="767.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="447.6" y="725" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="450.60" y="735.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="1230.9" y="661" width="1.7" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1233.87" y="671.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="469" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1011.09" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="346.8" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="349.82" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="300.9" y="581" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="303.85" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1235.3" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1238.29" y="703.5" ></text>
+</g>
+<g >
+<title>find_get_entries (10,101,010 samples, 0.06%)</title><rect x="399.9" y="629" width="0.8" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="402.87" y="639.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="925.0" y="373" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="927.99" y="383.5" ></text>
+</g>
+<g >
+<title>libjson_get_int (10,101,010 samples, 0.06%)</title><rect x="1370.6" y="837" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1373.55" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1108.0" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1110.99" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_empty_dir (10,101,010 samples, 0.06%)</title><rect x="367.2" y="661" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="370.16" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (10,101,010 samples, 0.06%)</title><rect x="18.8" y="277" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="21.84" y="287.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="597" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1083.58" y="607.5" ></text>
+</g>
+<g >
+<title>security_file_free (10,101,010 samples, 0.06%)</title><rect x="936.5" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="939.48" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_connect (30,303,030 samples, 0.19%)</title><rect x="1361.7" y="789" width="2.7" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1364.71" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="442.3" y="757" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="445.30" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (50,505,050 samples, 0.32%)</title><rect x="486.5" y="629" width="4.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="489.50" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="937.4" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="940.37" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="448.5" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="451.49" y="623.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (20,202,020 samples, 0.13%)</title><rect x="819.8" y="693" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="822.79" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="338.9" y="533" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="341.87" y="543.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="629" width="1.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1389.46" y="639.5" ></text>
+</g>
+<g >
+<title>net_send_part (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="885" width="1.8" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1379.74" y="895.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.13%)</title><rect x="1012.5" y="693" width="1.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1015.51" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1228.2" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1231.22" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1249.4" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1252.44" y="719.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="178.0" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="180.97" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="375.1" y="565" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="378.11" y="575.5" ></text>
+</g>
+<g >
+<title>inet_release (141,414,140 samples, 0.90%)</title><rect x="42.7" y="677" width="12.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="45.71" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="405" width="1.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1387.70" y="415.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="837" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1336.42" y="847.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1205.58" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.19%)</title><rect x="810.1" y="469" width="2.6" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="813.06" y="479.5" ></text>
+</g>
+<g >
+<title>revert_creds (20,202,020 samples, 0.13%)</title><rect x="1201.7" y="693" width="1.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1204.70" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (191,919,190 samples, 1.22%)</title><rect x="1161.9" y="645" width="16.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1164.92" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="546.6" y="805" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="549.62" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="910.0" y="549" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="912.96" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1228.2" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1231.22" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="873.7" y="501" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="876.72" y="511.5" ></text>
+</g>
+<g >
+<title>rmdir (60,606,060 samples, 0.38%)</title><rect x="184.2" y="677" width="5.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="187.16" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1238.8" y="581" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1241.83" y="591.5" ></text>
+</g>
+<g >
+<title>inet_release (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="741" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1356.75" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="277.9" y="597" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="280.87" y="607.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="240.7" y="645" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="243.74" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="1151.3" y="693" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="1154.31" y="703.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (60,606,060 samples, 0.38%)</title><rect x="1059.4" y="741" width="5.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1062.37" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="1012.5" y="757" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1015.51" y="767.5" ></text>
+</g>
+<g >
+<title>evict (191,919,190 samples, 1.22%)</title><rect x="671.3" y="597" width="16.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="674.27" y="607.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.32%)</title><rect x="420.2" y="693" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="423.20" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.13%)</title><rect x="127.6" y="773" width="1.7" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="130.58" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_fin (30,303,030 samples, 0.19%)</title><rect x="48.0" y="197" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="51.01" y="207.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (141,414,140 samples, 0.90%)</title><rect x="133.8" y="837" width="12.3" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="136.77" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="863.1" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="866.11" y="607.5" ></text>
+</g>
+<g >
+<title>crc_11 (10,101,010 samples, 0.06%)</title><rect x="605.0" y="597" width="0.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="607.96" y="607.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="526.3" y="629" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="529.28" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="246.0" y="709" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="249.04" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1037.3" y="741" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1040.26" y="751.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.06%)</title><rect x="18.0" y="773" width="0.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="20.96" y="783.5" ></text>
+</g>
+<g >
+<title>__nf_nat_alloc_null_binding (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="645" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1392.12" y="655.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.13%)</title><rect x="1339.6" y="917" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1342.61" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="246.0" y="725" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="249.04" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="769.4" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="772.40" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1344.0" y="837" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1347.03" y="847.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_create (10,101,010 samples, 0.06%)</title><rect x="146.1" y="837" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="149.14" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_link (10,101,010 samples, 0.06%)</title><rect x="833.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="836.05" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (10,101,010 samples, 0.06%)</title><rect x="815.4" y="565" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="818.37" y="575.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1299.8" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1302.83" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1011.6" y="773" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1014.63" y="783.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="839.2" y="789" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="842.24" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (373,737,370 samples, 2.37%)</title><rect x="475.0" y="821" width="32.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="478.01" y="831.5" >[l..</text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="421" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1387.70" y="431.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="323.0" y="693" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="325.95" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="643.0" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="645.98" y="639.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="1337.8" y="757" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1340.84" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chdir (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1346.15" y="879.5" ></text>
+</g>
+<g >
+<title>blk_mq_complete_request (10,101,010 samples, 0.06%)</title><rect x="565.2" y="501" width="0.9" height="15.0" fill="rgb(0,195,25)" rx="2" ry="2" />
+<text x="568.18" y="511.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="405" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1379.74" y="415.5" ></text>
+</g>
+<g >
+<title>folio_memcg_lock.part.0 (10,101,010 samples, 0.06%)</title><rect x="521.0" y="565" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="523.98" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1191.1" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1194.09" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (20,202,020 samples, 0.13%)</title><rect x="487.4" y="533" width="1.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="490.39" y="543.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="226.6" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="229.59" y="607.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="326.5" y="725" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="329.49" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="350.4" y="581" width="0.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="353.36" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="544.0" y="693" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="546.97" y="703.5" ></text>
+</g>
+<g >
+<title>touch_atime (40,404,040 samples, 0.26%)</title><rect x="252.2" y="677" width="3.6" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="255.23" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="375.1" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="378.11" y="527.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="453" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1209.12" y="463.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="761.4" y="453" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="764.44" y="463.5" ></text>
+</g>
+<g >
+<title>server_wait_for_action (50,505,050 samples, 0.32%)</title><rect x="19.7" y="997" width="4.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="22.72" y="1007.5" ></text>
+</g>
+<g >
+<title>_start (13,929,292,790 samples, 88.34%)</title><rect x="170.9" y="1045" width="1219.1" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="173.90" y="1055.5" >_start</text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="786.2" y="565" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="789.19" y="575.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (10,101,010 samples, 0.06%)</title><rect x="452.0" y="501" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="455.02" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1009.0" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1011.98" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (50,505,050 samples, 0.32%)</title><rect x="814.5" y="757" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="817.48" y="767.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="377.8" y="597" width="0.8" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="380.76" y="607.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="566.1" y="677" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="569.07" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="944.4" y="773" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="947.44" y="783.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="853.4" y="661" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="856.38" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.06%)</title><rect x="48.9" y="37" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="51.90" y="47.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (70,707,070 samples, 0.45%)</title><rect x="33.0" y="853" width="6.2" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="35.99" y="863.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="458.2" y="613" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="461.21" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="987.8" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="990.76" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="733.2" y="741" width="6.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.15" y="751.5" ></text>
+</g>
+<g >
+<title>getname (30,303,030 samples, 0.19%)</title><rect x="224.8" y="693" width="2.7" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="227.82" y="703.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (121,212,120 samples, 0.77%)</title><rect x="230.1" y="661" width="10.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="233.13" y="671.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="734.9" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="737.92" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="409.6" y="581" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="412.59" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="837" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1340.84" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (30,303,030 samples, 0.19%)</title><rect x="1032.0" y="517" width="2.6" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1034.96" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="757.0" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="760.02" y="639.5" ></text>
+</g>
+<g >
+<title>dentry_kill (10,101,010 samples, 0.06%)</title><rect x="41.8" y="709" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="44.83" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="879.9" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="882.90" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="453" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1389.46" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1184.9" y="757" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1187.90" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="374.2" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="377.23" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="147.0" y="885" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="150.03" y="895.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="409.6" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="412.59" y="559.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="789.7" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="792.73" y="607.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.06%)</title><rect x="682.8" y="533" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="685.76" y="543.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="447.6" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="450.60" y="655.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.06%)</title><rect x="40.9" y="821" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="43.94" y="831.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="63.0" y="901" width="1.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="66.04" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_check (10,101,010 samples, 0.06%)</title><rect x="186.8" y="485" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="189.81" y="495.5" ></text>
+</g>
+<g >
+<title>__fget_light (10,101,010 samples, 0.06%)</title><rect x="1258.3" y="613" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1261.28" y="623.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="170.0" y="901" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="173.01" y="911.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="932.1" y="789" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="935.06" y="799.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="710.2" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="713.17" y="543.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="1330.8" y="741" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1333.77" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1228.2" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1231.22" y="591.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.06%)</title><rect x="64.8" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="67.81" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1263.6" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1266.58" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1190.55" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="710.2" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="713.17" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1049.6" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1052.64" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="449.4" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="452.37" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="789.7" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="792.73" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="327.4" y="725" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="330.37" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1168.1" y="485" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1171.10" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1242.4" y="661" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1245.36" y="671.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="961.2" y="501" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="964.24" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1197.3" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1200.28" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="757.0" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="760.02" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_link (10,101,010 samples, 0.06%)</title><rect x="986.9" y="629" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="989.87" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (90,909,090 samples, 0.58%)</title><rect x="689.8" y="629" width="8.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="692.83" y="639.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.06%)</title><rect x="377.8" y="629" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="380.76" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="437" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1104.80" y="447.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.19%)</title><rect x="1357.3" y="613" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1360.29" y="623.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="806.5" y="421" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="809.53" y="431.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1372.3" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1375.32" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="919.7" y="325" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="922.69" y="335.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.13%)</title><rect x="1102.7" y="501" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1105.68" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="958.6" y="565" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="961.58" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1273.65" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="741.1" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="744.11" y="623.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (20,202,020 samples, 0.13%)</title><rect x="199.2" y="597" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="202.19" y="607.5" ></text>
+</g>
+<g >
+<title>do_writepages (80,808,080 samples, 0.51%)</title><rect x="690.7" y="565" width="7.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="693.72" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="719.0" y="533" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="722.01" y="543.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1208.23" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.38%)</title><rect x="463.5" y="597" width="5.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="466.52" y="607.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_conn_internal (80,808,080 samples, 0.51%)</title><rect x="1369.7" y="917" width="7.0" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1372.67" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1191.1" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1194.09" y="735.5" ></text>
+</g>
+<g >
+<title>prepare_creds (10,101,010 samples, 0.06%)</title><rect x="1249.4" y="725" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1252.44" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="647.4" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="650.40" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="917.9" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="920.92" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="123.2" y="821" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="126.16" y="831.5" ></text>
+</g>
+<g >
+<title>blk_mq_do_dispatch_sched (20,202,020 samples, 0.13%)</title><rect x="691.6" y="357" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="694.60" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="946.2" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="949.21" y="655.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (454,545,450 samples, 2.88%)</title><rect x="107.2" y="869" width="39.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="110.25" y="879.5" >loo..</text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1253.9" y="677" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1256.86" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="597" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1024.35" y="607.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.06%)</title><rect x="766.7" y="613" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="769.75" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (101,010,100 samples, 0.64%)</title><rect x="1046.1" y="757" width="8.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1049.11" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (60,606,060 samples, 0.38%)</title><rect x="966.5" y="485" width="5.3" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="969.54" y="495.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="460.0" y="677" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="462.98" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="786.2" y="661" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="789.19" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="920.6" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="923.57" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="982.5" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="985.45" y="703.5" ></text>
+</g>
+<g >
+<title>crc_96 (10,101,010 samples, 0.06%)</title><rect x="1033.7" y="389" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="1036.73" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="918.8" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="921.80" y="719.5" ></text>
+</g>
+<g >
+<title>folio_wait_writeback (10,101,010 samples, 0.06%)</title><rect x="685.4" y="517" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="688.41" y="527.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (131,313,130 samples, 0.83%)</title><rect x="332.7" y="693" width="11.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="335.68" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="89.6" y="821" width="1.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="92.56" y="831.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="833.9" y="773" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="836.93" y="783.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1386.5" y="741" width="3.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1389.46" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="925.0" y="357" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="927.99" y="367.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="542.2" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="545.20" y="767.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="565" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1301.94" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="111.7" y="773" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="114.67" y="783.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1017.28" y="591.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="772.0" y="725" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="775.05" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="887.0" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="889.98" y="719.5" ></text>
+</g>
+<g >
+<title>git_reference_list (222,222,220 samples, 1.41%)</title><rect x="893.2" y="821" width="19.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="896.16" y="831.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="381.3" y="693" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="384.30" y="703.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (30,303,030 samples, 0.19%)</title><rect x="975.4" y="581" width="2.6" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="978.38" y="591.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="432.6" y="677" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="435.58" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1220.61" y="687.5" ></text>
+</g>
+<g >
+<title>security_prepare_creds (10,101,010 samples, 0.06%)</title><rect x="837.5" y="773" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="840.47" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1237.1" y="693" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1240.06" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="629.7" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="632.72" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="666.8" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="669.85" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="10.0" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="13.00" y="895.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="460.0" y="805" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="462.98" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.06%)</title><rect x="788.8" y="517" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="791.85" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="595.2" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="598.24" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (70,707,070 samples, 0.45%)</title><rect x="33.0" y="885" width="6.2" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="35.99" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1061.48" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="909.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="912.08" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="895.8" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="898.82" y="735.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.13%)</title><rect x="223.1" y="661" width="1.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="226.06" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="827.7" y="693" width="2.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="830.75" y="703.5" ></text>
+</g>
+<g >
+<title>grab_cache_page_write_begin (10,101,010 samples, 0.06%)</title><rect x="719.9" y="549" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="722.89" y="559.5" ></text>
+</g>
+<g >
+<title>dentry_kill (30,303,030 samples, 0.19%)</title><rect x="856.0" y="677" width="2.7" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="859.03" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="436.1" y="773" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="439.11" y="783.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="533.4" y="693" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="536.36" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="713.7" y="517" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="716.70" y="527.5" ></text>
+</g>
+<g >
+<title>__send (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="869" width="1.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1379.74" y="879.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="41.8" y="661" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="44.83" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.92%)</title><rect x="788.0" y="757" width="26.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="790.96" y="767.5" >[..</text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="434.3" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="437.34" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.38%)</title><rect x="463.5" y="677" width="5.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="466.52" y="687.5" ></text>
+</g>
+<g >
+<title>end_page_writeback (10,101,010 samples, 0.06%)</title><rect x="925.0" y="325" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="927.99" y="335.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="892.3" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="895.28" y="783.5" ></text>
+</g>
+<g >
+<title>flockfile (10,101,010 samples, 0.06%)</title><rect x="437.9" y="885" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="440.88" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="815.4" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="818.37" y="623.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1075.63" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="1198.2" y="805" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1201.16" y="815.5" ></text>
+</g>
+<g >
+<title>process_backlog (70,707,070 samples, 0.45%)</title><rect x="44.5" y="373" width="6.2" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="47.48" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="134.7" y="757" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="137.65" y="767.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.19%)</title><rect x="528.1" y="773" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="531.05" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="177.1" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="180.09" y="703.5" ></text>
+</g>
+<g >
+<title>sk_stream_kill_queues (10,101,010 samples, 0.06%)</title><rect x="49.8" y="133" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="52.78" y="143.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="517" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1356.75" y="527.5" ></text>
+</g>
+<g >
+<title>mnt_user_ns (10,101,010 samples, 0.06%)</title><rect x="549.3" y="725" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="552.27" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="327.4" y="773" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="330.37" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1344.0" y="853" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1347.03" y="863.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="874.6" y="677" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="877.60" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="77.2" y="933" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="80.19" y="943.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1160.1" y="613" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1163.15" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="994.8" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="997.83" y="623.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="737.6" y="613" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="740.57" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (171,717,170 samples, 1.09%)</title><rect x="1272.4" y="821" width="15.1" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1275.42" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (80,808,080 samples, 0.51%)</title><rect x="307.0" y="549" width="7.1" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="310.04" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fname_prepare_lookup (10,101,010 samples, 0.06%)</title><rect x="493.6" y="565" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="496.57" y="575.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="293" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1039.38" y="303.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="629" width="3.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1384.16" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="754.4" y="677" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="757.37" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="635.9" y="661" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="638.91" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="840.1" y="853" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="843.12" y="863.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (20,202,020 samples, 0.13%)</title><rect x="1329.9" y="805" width="1.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1332.88" y="815.5" ></text>
+</g>
+<g >
+<title>inet_release (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="741" width="4.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1383.28" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_write (70,707,070 samples, 0.45%)</title><rect x="1064.7" y="741" width="6.2" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1067.67" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="757" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1379.74" y="767.5" ></text>
+</g>
+<g >
+<title>mpage_submit_page (10,101,010 samples, 0.06%)</title><rect x="467.1" y="533" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="470.05" y="543.5" ></text>
+</g>
+<g >
+<title>log_entry_start (50,505,050 samples, 0.32%)</title><rect x="14.4" y="981" width="4.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="17.42" y="991.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="665.1" y="501" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="668.08" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.06%)</title><rect x="971.0" y="437" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="973.96" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="889.6" y="661" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="892.63" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="133.8" y="789" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="136.77" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="791.5" y="581" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="794.50" y="591.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (10,101,010 samples, 0.06%)</title><rect x="879.0" y="533" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="882.02" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="187.7" y="421" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="190.69" y="431.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="436.1" y="757" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="439.11" y="767.5" ></text>
+</g>
+<g >
+<title>bio_alloc_bioset (10,101,010 samples, 0.06%)</title><rect x="696.9" y="453" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="699.91" y="463.5" ></text>
+</g>
+<g >
+<title>git_signature_default (20,202,020 samples, 0.13%)</title><rect x="740.2" y="789" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="743.22" y="799.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="165.6" y="789" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="168.59" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="665.1" y="693" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="668.08" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1138.9" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1141.93" y="623.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="558.1" y="741" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="561.11" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="292.9" y="565" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="295.90" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="990.4" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="993.41" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1165.5" y="597" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1168.45" y="607.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="122.3" y="725" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="125.27" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_inode (30,303,030 samples, 0.19%)</title><rect x="960.4" y="549" width="2.6" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="963.35" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="389" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1011.09" y="399.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (20,202,020 samples, 0.13%)</title><rect x="64.8" y="933" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="67.81" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="300.0" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="302.97" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="816.3" y="597" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="819.25" y="607.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.06%)</title><rect x="208.9" y="325" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="211.91" y="335.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1228.2" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1231.22" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="885" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1383.28" y="895.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1180.5" y="725" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1183.48" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="565.2" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="568.18" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1167.2" y="533" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1170.22" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="665.1" y="517" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="668.08" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="666.8" y="533" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="669.85" y="543.5" ></text>
+</g>
+<g >
+<title>end_page_writeback (10,101,010 samples, 0.06%)</title><rect x="158.5" y="661" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="161.52" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="458.2" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="461.21" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1190.55" y="703.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="169.1" y="885" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="172.13" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="912.6" y="805" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="915.61" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1263.6" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1266.58" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="982.5" y="629" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="985.45" y="639.5" ></text>
+</g>
+<g >
+<title>__rq_qos_throttle (10,101,010 samples, 0.06%)</title><rect x="807.4" y="389" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="810.41" y="399.5" ></text>
+</g>
+<g >
+<title>vfs_write (80,808,080 samples, 0.51%)</title><rect x="515.7" y="693" width="7.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="518.68" y="703.5" ></text>
+</g>
+<g >
+<title>dput (191,919,190 samples, 1.22%)</title><rect x="671.3" y="677" width="16.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="674.27" y="687.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="629" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1301.94" y="639.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="330.9" y="725" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="333.91" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (40,404,040 samples, 0.26%)</title><rect x="1281.3" y="757" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1284.26" y="767.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="389" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1379.74" y="399.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1208.23" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1215.0" y="581" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1217.96" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="794.2" y="629" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="797.15" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="991.3" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="994.29" y="655.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="827.7" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="830.75" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="250.5" y="597" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="253.46" y="607.5" ></text>
+</g>
+<g >
+<title>ip_skb_dst_mtu (10,101,010 samples, 0.06%)</title><rect x="1362.6" y="661" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1365.59" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="706.6" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="709.63" y="751.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (20,202,020 samples, 0.13%)</title><rect x="1152.2" y="661" width="1.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1155.19" y="671.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="757" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1118.94" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="141.7" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="144.72" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1184.0" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1187.02" y="767.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (30,303,030 samples, 0.19%)</title><rect x="910.0" y="741" width="2.6" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="912.96" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="10.0" y="837" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="13.00" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1222.9" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1225.91" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="451.1" y="757" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="454.14" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.77%)</title><rect x="1216.7" y="821" width="10.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="506.0" y="661" width="0.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="508.95" y="671.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.06%)</title><rect x="901.1" y="629" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="904.12" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="859.6" y="341" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="862.57" y="351.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="985.1" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="988.11" y="719.5" ></text>
+</g>
+<g >
+<title>dentry_kill (101,010,100 samples, 0.64%)</title><rect x="1091.2" y="645" width="8.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1094.19" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1222.9" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1225.91" y="559.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="925.9" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="928.87" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="120.5" y="789" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="123.51" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="645" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1022.58" y="655.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="613" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1212.65" y="623.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="553.7" y="693" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="556.69" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1041.7" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1044.68" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_get_new_requests (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="405" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1034.96" y="415.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="586.4" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="589.40" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="797.7" y="629" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.69" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="500.6" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="503.65" y="703.5" ></text>
+</g>
+<g >
+<title>do_rmdir (212,121,210 samples, 1.35%)</title><rect x="360.1" y="709" width="18.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="363.08" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.19%)</title><rect x="1361.7" y="725" width="2.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1364.71" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="593.5" y="645" width="1.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="596.47" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (101,010,100 samples, 0.64%)</title><rect x="1046.1" y="805" width="8.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1049.11" y="815.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.13%)</title><rect x="828.6" y="485" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="831.63" y="495.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="791.5" y="629" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="794.50" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (757,575,750 samples, 4.80%)</title><rect x="933.8" y="837" width="66.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="936.83" y="847.5" >[libgit..</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="911.7" y="517" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="914.73" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (767,676,760 samples, 4.87%)</title><rect x="174.4" y="773" width="67.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="177.43" y="783.5" >[libc.s..</text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="414.0" y="725" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="417.01" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (383,838,380 samples, 2.43%)</title><rect x="1106.2" y="773" width="33.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1109.22" y="783.5" >[l..</text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="957.7" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="960.70" y="495.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (80,808,080 samples, 0.51%)</title><rect x="515.7" y="645" width="7.0" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="518.68" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="83.4" y="837" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="86.38" y="847.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="499.8" y="629" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="502.76" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="852.5" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="855.50" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="620.9" y="597" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="623.88" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="582.9" y="645" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="585.86" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1169.9" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1172.87" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1027.89" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="133.8" y="821" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="136.77" y="831.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="941.8" y="613" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="944.79" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="814.5" y="709" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="817.48" y="719.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1330.8" y="789" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1333.77" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="422.9" y="485" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="425.85" y="495.5" ></text>
+</g>
+<g >
+<title>scsi_prepare_cmd (10,101,010 samples, 0.06%)</title><rect x="859.6" y="309" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="862.57" y="319.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (3,030,303,000 samples, 19.22%)</title><rect x="572.3" y="869" width="265.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="575.25" y="879.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>fsnotify_destroy_marks (10,101,010 samples, 0.06%)</title><rect x="671.3" y="533" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="674.27" y="543.5" ></text>
+</g>
+<g >
+<title>git_reference_dwim (50,505,050 samples, 0.32%)</title><rect x="563.4" y="853" width="4.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="566.41" y="863.5" ></text>
+</g>
+<g >
+<title>mempool_free_slab (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="629" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1274.54" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="406.9" y="613" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="409.94" y="623.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="958.6" y="501" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="961.58" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="469.7" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="472.71" y="607.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit_common (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="469" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1100.38" y="479.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.06%)</title><rect x="702.2" y="821" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="705.21" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="1063.8" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1066.79" y="687.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="803.9" y="533" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="806.88" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1136.3" y="469" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1139.28" y="479.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (40,404,040 samples, 0.26%)</title><rect x="628.8" y="629" width="3.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="631.83" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1251.2" y="677" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1254.20" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (10,101,010 samples, 0.06%)</title><rect x="1108.9" y="661" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1111.87" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="445.0" y="693" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="447.95" y="703.5" ></text>
+</g>
+<g >
+<title>task_work_run (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="821" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1355.87" y="831.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="725" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1253.32" y="735.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="122.3" y="757" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="125.27" y="767.5" ></text>
+</g>
+<g >
+<title>readdir64 (121,212,120 samples, 0.77%)</title><rect x="347.7" y="805" width="10.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="350.71" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (111,111,110 samples, 0.70%)</title><rect x="43.6" y="629" width="9.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="46.59" y="639.5" ></text>
+</g>
+<g >
+<title>connect (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="933" width="5.3" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1387.70" y="943.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="806.5" y="373" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="809.53" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="517" width="0.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="1112.76" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="853.4" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="856.38" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="477.7" y="709" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="480.66" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="501.5" y="645" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="504.53" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.26%)</title><rect x="1386.5" y="773" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1389.46" y="783.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="274.3" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="277.33" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="10.0" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="13.00" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="566.1" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="569.07" y="751.5" ></text>
+</g>
+<g >
+<title>find_group_orlov (20,202,020 samples, 0.13%)</title><rect x="1154.0" y="693" width="1.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1156.96" y="703.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="666.0" y="469" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="668.96" y="479.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="982.5" y="661" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="985.45" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="301.7" y="581" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="304.74" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="771.2" y="581" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="774.17" y="591.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="437" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1107.45" y="447.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="939.1" y="693" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="942.14" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="863.1" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="866.11" y="559.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="707.5" y="757" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="710.51" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="706.6" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="709.63" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1047.9" y="645" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1050.87" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="553.7" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="556.69" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (151,515,150 samples, 0.96%)</title><rect x="177.1" y="725" width="13.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="180.09" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="10.0" y="933" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="13.00" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (1,515,151,500 samples, 9.61%)</title><rect x="572.3" y="837" width="132.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="575.25" y="847.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="501" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1364.71" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="1237.9" y="677" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1240.94" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (40,404,040 samples, 0.26%)</title><rect x="1124.8" y="565" width="3.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1127.79" y="575.5" ></text>
+</g>
+<g >
+<title>inflate (30,303,030 samples, 0.19%)</title><rect x="523.6" y="725" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="526.63" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="991.3" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="994.29" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (676,767,670 samples, 4.29%)</title><rect x="257.5" y="693" width="59.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="260.53" y="703.5" >__x64_..</text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.13%)</title><rect x="598.8" y="533" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="601.78" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (40,404,040 samples, 0.26%)</title><rect x="20.6" y="901" width="3.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="23.61" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1136.3" y="357" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1139.28" y="367.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="491.8" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="494.81" y="751.5" ></text>
+</g>
+<g >
+<title>__napi_poll (70,707,070 samples, 0.45%)</title><rect x="44.5" y="389" width="6.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="47.48" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="993.9" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="996.95" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="675.7" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="678.69" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="640.3" y="773" width="3.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="643.33" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="890.5" y="597" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="893.51" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="406.1" y="661" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="409.05" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="394.6" y="597" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="397.56" y="607.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="128.5" y="757" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="131.46" y="767.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (30,303,030 samples, 0.19%)</title><rect x="802.1" y="629" width="2.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="805.11" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="1075.3" y="597" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1078.28" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1039.38" y="591.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="805" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1379.74" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="724.3" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="727.31" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="932.1" y="645" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="935.06" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="166.5" y="853" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="169.48" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.19%)</title><rect x="259.3" y="629" width="2.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="262.30" y="639.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.06%)</title><rect x="734.9" y="693" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="737.92" y="703.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (161,616,160 samples, 1.02%)</title><rect x="912.6" y="821" width="14.2" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="915.61" y="831.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1268.35" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="204.5" y="597" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="207.49" y="607.5" ></text>
+</g>
+<g >
+<title>security_capable (10,101,010 samples, 0.06%)</title><rect x="1251.2" y="629" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="1254.20" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="302.6" y="581" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="305.62" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="235.4" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="238.43" y="559.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="291.1" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="294.13" y="527.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1222.38" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="547.5" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="550.50" y="671.5" ></text>
+</g>
+<g >
+<title>notify_change (20,202,020 samples, 0.13%)</title><rect x="1009.0" y="693" width="1.7" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1011.98" y="703.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="879.0" y="517" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="882.02" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="141.7" y="773" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="144.72" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="773" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1195.86" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="245" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1140.16" y="255.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1186.13" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="993.9" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="996.95" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1382.39" y="911.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.06%)</title><rect x="739.3" y="789" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="742.34" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="412.2" y="789" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="415.24" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="569.6" y="853" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="572.60" y="863.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="254.9" y="517" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="257.88" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (40,404,040 samples, 0.26%)</title><rect x="1360.8" y="805" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1363.83" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="732.3" y="661" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="735.27" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="742.0" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="772.9" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="775.93" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="917" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1387.70" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="978.9" y="661" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="981.92" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (101,010,100 samples, 0.64%)</title><rect x="855.2" y="725" width="8.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="858.15" y="735.5" ></text>
+</g>
+<g >
+<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="103.7" y="885" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="106.71" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (393,939,390 samples, 2.50%)</title><rect x="1105.3" y="805" width="34.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1108.34" y="815.5" >[l..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1012.5" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1015.51" y="783.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="566.1" y="613" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="569.07" y="623.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="11.8" y="533" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="14.77" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="912.6" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="915.61" y="687.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="445.0" y="661" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="447.95" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (50,505,050 samples, 0.32%)</title><rect x="199.2" y="677" width="4.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="202.19" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="837" width="6.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1349.68" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (181,818,180 samples, 1.15%)</title><rect x="388.4" y="677" width="15.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="391.37" y="687.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="629" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1331.12" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_fork (505,050,500 samples, 3.20%)</title><rect x="1287.5" y="885" width="44.2" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1290.45" y="895.5" >__li..</text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="166.5" y="805" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="169.48" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="309.7" y="437" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="312.69" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="795.0" y="597" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="798.04" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="948.0" y="757" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="950.98" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="725" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1359.41" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="737.6" y="661" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="740.57" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="785.3" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="788.31" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="783.5" y="581" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="786.54" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="1237.9" y="613" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1240.94" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="541.3" y="805" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="544.31" y="815.5" ></text>
+</g>
+<g >
+<title>prepare_creds (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="757" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1186.13" y="767.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="631.5" y="549" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="634.49" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="575.8" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="578.79" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="806.5" y="293" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="809.53" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="833.9" y="677" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="836.93" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="368.0" y="629" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="371.04" y="639.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="936.5" y="629" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="939.48" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1061.48" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="497.1" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="500.11" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="806.5" y="405" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="809.53" y="415.5" ></text>
+</g>
+<g >
+<title>ip_output (40,404,040 samples, 0.26%)</title><rect x="1386.5" y="709" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1389.46" y="719.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="11.8" y="501" width="1.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="14.77" y="511.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="786.2" y="693" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="789.19" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="666.0" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="668.96" y="495.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="919.7" y="469" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="922.69" y="479.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="655.4" y="549" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="658.36" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="203.6" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="206.61" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (50,505,050 samples, 0.32%)</title><rect x="323.0" y="757" width="4.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="325.95" y="767.5" ></text>
+</g>
+<g >
+<title>ip_output (70,707,070 samples, 0.45%)</title><rect x="44.5" y="517" width="6.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="47.48" y="527.5" ></text>
+</g>
+<g >
+<title>filename_lookup (101,010,100 samples, 0.64%)</title><rect x="160.3" y="917" width="8.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="163.29" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="1093.8" y="469" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1096.84" y="479.5" ></text>
+</g>
+<g >
+<title>from_kuid_munged (10,101,010 samples, 0.06%)</title><rect x="948.9" y="629" width="0.8" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="951.86" y="639.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="384.8" y="709" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="387.84" y="719.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="379.5" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="382.53" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1253.0" y="773" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1255.97" y="783.5" ></text>
+</g>
+<g >
+<title>filename_parentat (20,202,020 samples, 0.13%)</title><rect x="192.1" y="613" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="195.11" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="903.8" y="581" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="906.77" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.06%)</title><rect x="275.2" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="278.21" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (30,303,030 samples, 0.19%)</title><rect x="213.3" y="565" width="2.7" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="216.33" y="575.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="914.4" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="917.38" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1222.9" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1225.91" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="910.8" y="501" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="913.85" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (10,101,010 samples, 0.06%)</title><rect x="1099.1" y="629" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1102.15" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="272.6" y="613" width="0.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="275.56" y="623.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (80,808,080 samples, 0.51%)</title><rect x="551.9" y="869" width="7.1" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="554.92" y="879.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.06%)</title><rect x="510.4" y="565" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="513.37" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="578.4" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="581.44" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="831.3" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="834.28" y="767.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="1108.9" y="629" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1111.87" y="639.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="695.1" y="453" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="698.14" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="720.8" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="723.78" y="719.5" ></text>
+</g>
+<g >
+<title>inet_create (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="837" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1358.52" y="847.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="499.8" y="661" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="502.76" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="469.7" y="613" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="472.71" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (10,101,010 samples, 0.06%)</title><rect x="916.1" y="805" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="919.15" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="978.9" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="981.92" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_set_state (10,101,010 samples, 0.06%)</title><rect x="1380.3" y="629" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1383.28" y="639.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="613" width="1.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1026.12" y="623.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="389" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1140.16" y="399.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="785.3" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="788.31" y="751.5" ></text>
+</g>
+<g >
+<title>up_write (10,101,010 samples, 0.06%)</title><rect x="262.0" y="661" width="0.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="264.95" y="671.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="579.3" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="582.33" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="771.2" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="774.17" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="201.8" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="204.84" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (272,727,270 samples, 1.73%)</title><rect x="709.3" y="773" width="23.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.28" y="783.5" >[..</text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="16.2" y="805" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="19.19" y="815.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="688.9" y="565" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="691.95" y="575.5" ></text>
+</g>
+<g >
+<title>wbt_inflight_cb (10,101,010 samples, 0.06%)</title><rect x="807.4" y="341" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="810.41" y="351.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="181.5" y="501" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="184.51" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="824.2" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="827.21" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="940.9" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="943.90" y="751.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge_list (10,101,010 samples, 0.06%)</title><rect x="399.0" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="401.98" y="607.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.06%)</title><rect x="1352.9" y="693" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1355.87" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="361.0" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="363.97" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_close (10,101,010 samples, 0.06%)</title><rect x="18.8" y="709" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="21.84" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="856.0" y="597" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="859.03" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="496.2" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="499.23" y="767.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="82.5" y="661" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="85.49" y="671.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="485" width="0.8" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1062.37" y="495.5" ></text>
+</g>
+<g >
+<title>futex_wait (40,404,040 samples, 0.26%)</title><rect x="20.6" y="869" width="3.5" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="23.61" y="879.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="301.7" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="304.74" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="362.7" y="645" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="365.74" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="202.7" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="205.72" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="821" width="2.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1336.42" y="831.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="158.5" y="757" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="161.52" y="767.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.26%)</title><rect x="996.6" y="725" width="3.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="999.60" y="735.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="773.8" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="776.82" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="380.4" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="383.42" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="559.9" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="562.88" y="799.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="344.2" y="725" width="1.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="347.17" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (60,606,060 samples, 0.38%)</title><rect x="1040.8" y="645" width="5.3" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1043.80" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1038.1" y="677" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1041.15" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="1108.0" y="741" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1110.99" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (222,222,220 samples, 1.41%)</title><rect x="955.9" y="645" width="19.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="958.93" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="852.5" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="855.50" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="383.1" y="709" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="386.07" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="455.6" y="677" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="458.56" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="370.7" y="565" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="373.69" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="955.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="958.05" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1247.13" y="767.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="441.4" y="821" width="1.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="444.42" y="831.5" ></text>
+</g>
+<g >
+<title>unlink_cb (757,575,750 samples, 4.80%)</title><rect x="256.6" y="773" width="66.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="259.65" y="783.5" >unlink_cb</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="769.4" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="772.40" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1386.5" y="677" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1389.46" y="687.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="944.4" y="709" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="947.44" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="378.6" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="381.65" y="767.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="872.8" y="613" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="875.83" y="623.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="757" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1342.61" y="767.5" ></text>
+</g>
+<g >
+<title>prepare_creds (10,101,010 samples, 0.06%)</title><rect x="837.5" y="789" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="840.47" y="799.5" ></text>
+</g>
+<g >
+<title>git_odb_read (80,808,080 samples, 0.51%)</title><rect x="551.9" y="853" width="7.1" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="554.92" y="863.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (70,707,070 samples, 0.45%)</title><rect x="44.5" y="277" width="6.2" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="47.48" y="287.5" ></text>
+</g>
+<g >
+<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="405" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1104.80" y="415.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="824.2" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="827.21" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_bread (70,707,070 samples, 0.45%)</title><rect x="597.9" y="613" width="6.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="600.89" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="823.3" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="826.32" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.06%)</title><rect x="513.9" y="661" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="516.91" y="671.5" ></text>
+</g>
+<g >
+<title>__poll (10,101,010 samples, 0.06%)</title><rect x="1368.8" y="933" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1371.78" y="943.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="549" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1253.32" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="195.7" y="565" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="198.65" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.70%)</title><rect x="1230.9" y="757" width="9.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1233.87" y="767.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="469" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1062.37" y="479.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="955.9" y="581" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="958.93" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1160.1" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1163.15" y="639.5" ></text>
+</g>
+<g >
+<title>vm_area_dup (111,111,110 samples, 0.70%)</title><rect x="1314.9" y="725" width="9.7" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1317.86" y="735.5" ></text>
+</g>
+<g >
+<title>inflate (20,202,020 samples, 0.13%)</title><rect x="704.9" y="725" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="707.86" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="837" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1343.49" y="847.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="830.4" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="833.40" y="703.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="84.3" y="725" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="87.26" y="735.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="170.9" y="821" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="173.90" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1206.1" y="677" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1209.12" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="770.3" y="725" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="773.28" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="891.4" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="894.40" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="207.1" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="210.14" y="543.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (20,202,020 samples, 0.13%)</title><rect x="1201.7" y="661" width="1.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1204.70" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="253.1" y="597" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="256.11" y="607.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="622.6" y="661" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="625.65" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="976.3" y="469" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="979.27" y="479.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1268.35" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="327.4" y="789" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="330.37" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="1249.4" y="821" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1252.44" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="888.7" y="757" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="891.74" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="766.7" y="645" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="769.75" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1241.5" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1244.48" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="938.3" y="613" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="941.25" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="84.3" y="837" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="87.26" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="413.1" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="416.13" y="815.5" ></text>
+</g>
+<g >
+<title>__sk_free (10,101,010 samples, 0.06%)</title><rect x="44.5" y="213" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="47.48" y="223.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="881.7" y="773" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="884.67" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="565" width="0.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1062.37" y="575.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="261" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1137.51" y="271.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.06%)</title><rect x="1359.1" y="517" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1362.06" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="863.1" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="866.11" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="1070.9" y="725" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1073.86" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.06%)</title><rect x="1108.9" y="677" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1111.87" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="852.5" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="855.50" y="655.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="18.8" y="549" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="21.84" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="821" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1340.84" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="16.2" y="869" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="19.19" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="59.5" y="853" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="62.51" y="863.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="501" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1104.80" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="856.0" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="859.03" y="511.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (20,202,020 samples, 0.13%)</title><rect x="745.5" y="533" width="1.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="748.53" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1199.39" y="655.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="768.5" y="533" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="771.51" y="543.5" ></text>
+</g>
+<g >
+<title>net_send (30,303,030 samples, 0.19%)</title><rect x="11.8" y="933" width="2.6" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="14.77" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="532.5" y="709" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="535.47" y="719.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="159.4" y="901" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="162.40" y="911.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="133.8" y="757" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="136.77" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="915.3" y="629" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="918.27" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="629" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1190.55" y="639.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="479.4" y="565" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="482.43" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (30,303,030 samples, 0.19%)</title><rect x="249.6" y="661" width="2.6" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="252.58" y="671.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="899.4" y="677" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="902.35" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="903.8" y="661" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="906.77" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (70,707,070 samples, 0.45%)</title><rect x="485.6" y="677" width="6.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="488.62" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1248.6" y="757" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1251.55" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="533" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1112.76" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="742.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="745.88" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="497.1" y="661" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="500.11" y="671.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.06%)</title><rect x="18.8" y="581" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="21.84" y="591.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="1001.9" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1004.90" y="831.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (40,404,040 samples, 0.26%)</title><rect x="797.7" y="725" width="3.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="800.69" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="455.6" y="725" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="458.56" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="722.5" y="581" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="725.54" y="591.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="661" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1190.55" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="407.8" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="410.82" y="655.5" ></text>
+</g>
+<g >
+<title>net_send_part (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="885" width="6.2" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1349.68" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (90,909,090 samples, 0.58%)</title><rect x="806.5" y="517" width="8.0" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="809.53" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="208.9" y="565" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="211.91" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="908.2" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="911.19" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (40,404,040 samples, 0.26%)</title><rect x="859.6" y="613" width="3.5" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="862.57" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="902.9" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="905.89" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="1093.0" y="501" width="1.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1095.96" y="511.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="383.1" y="661" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="386.07" y="671.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (10,101,010 samples, 0.06%)</title><rect x="1007.2" y="597" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1010.21" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (373,737,370 samples, 2.37%)</title><rect x="709.3" y="805" width="32.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.28" y="815.5" >[l..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="718.1" y="693" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="721.12" y="703.5" ></text>
+</g>
+<g >
+<title>git_buf_set (10,101,010 samples, 0.06%)</title><rect x="496.2" y="773" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="499.23" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (202,020,200 samples, 1.28%)</title><rect x="203.6" y="661" width="17.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="206.61" y="671.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="344.2" y="677" width="1.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="347.17" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="413.1" y="757" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="416.13" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.26%)</title><rect x="876.4" y="597" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="879.37" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="446.7" y="773" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="449.72" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="470.6" y="629" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="473.59" y="639.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="533" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1039.38" y="543.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="460.0" y="725" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="462.98" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1245.0" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1248.02" y="783.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.13%)</title><rect x="11.8" y="405" width="1.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="14.77" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.83%)</title><rect x="230.1" y="709" width="11.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="233.13" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="1055.8" y="773" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1058.83" y="783.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="789.7" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="792.73" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="902.9" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="905.89" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="699.6" y="629" width="0.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="702.56" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (40,404,040 samples, 0.26%)</title><rect x="1124.8" y="533" width="3.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1127.79" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1184.0" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1187.02" y="815.5" ></text>
+</g>
+<g >
+<title>crc_4 (10,101,010 samples, 0.06%)</title><rect x="598.8" y="485" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="601.78" y="495.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="1189.3" y="693" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1192.32" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1247.13" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="784.4" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="787.43" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1200.8" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1203.81" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.83%)</title><rect x="460.9" y="773" width="11.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="463.86" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="355.7" y="645" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="358.66" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="863.1" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="866.11" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="931.2" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="934.18" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="725" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1274.54" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="833.9" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="836.93" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="757" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1343.49" y="767.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="495.3" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="498.34" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="437" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1140.16" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.77%)</title><rect x="541.3" y="837" width="10.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="544.31" y="847.5" ></text>
+</g>
+<g >
+<title>iput (80,808,080 samples, 0.51%)</title><rect x="211.6" y="613" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="214.56" y="623.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="932.1" y="677" width="0.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="935.06" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept (50,505,050 samples, 0.32%)</title><rect x="58.6" y="917" width="4.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="61.62" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_page (10,101,010 samples, 0.06%)</title><rect x="696.9" y="469" width="0.9" height="15.0" fill="rgb(0,213,96)" rx="2" ry="2" />
+<text x="699.91" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.26%)</title><rect x="452.0" y="677" width="3.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="455.02" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="487.4" y="549" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="490.39" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1192.0" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1194.97" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1210.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1213.54" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="20.6" y="933" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="23.61" y="943.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="720.8" y="645" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="723.78" y="655.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="373" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1114.52" y="383.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="872.8" y="533" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="875.83" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1241.5" y="709" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1244.48" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1235.3" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1238.29" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="574.0" y="725" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="577.02" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.13%)</title><rect x="1051.4" y="581" width="1.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1054.41" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="558.1" y="757" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="561.11" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.51%)</title><rect x="609.4" y="757" width="7.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="612.39" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="486.5" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="489.50" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="543.1" y="773" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="546.08" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="357.4" y="741" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="360.43" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.70%)</title><rect x="917.0" y="789" width="9.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="920.03" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="488.3" y="501" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="491.27" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="393.7" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="396.68" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="819.8" y="581" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="822.79" y="591.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="501" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1301.94" y="511.5" ></text>
+</g>
+<g >
+<title>git_revparse_ext (50,505,050 samples, 0.32%)</title><rect x="563.4" y="885" width="4.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="566.41" y="895.5" ></text>
+</g>
+<g >
+<title>access (222,222,220 samples, 1.41%)</title><rect x="151.4" y="1013" width="19.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="154.45" y="1023.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (272,727,270 samples, 1.73%)</title><rect x="709.3" y="789" width="23.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.28" y="799.5" >[..</text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (151,515,150 samples, 0.96%)</title><rect x="41.8" y="805" width="13.3" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="44.83" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1228.2" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1231.22" y="607.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="837" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1186.13" y="847.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="491.8" y="757" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="494.81" y="767.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.19%)</title><rect x="802.1" y="597" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="805.11" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="558.1" y="677" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="561.11" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="604.1" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="607.08" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="208.0" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="211.03" y="559.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="528.9" y="693" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="531.94" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (20,202,020 samples, 0.13%)</title><rect x="624.4" y="629" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="627.41" y="639.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="661" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1387.70" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="788.8" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="791.85" y="591.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="92.2" y="869" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="95.22" y="879.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="543.1" y="725" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="546.08" y="735.5" ></text>
+</g>
+<g >
+<title>unlink (292,929,290 samples, 1.86%)</title><rect x="386.6" y="789" width="25.6" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="389.60" y="799.5" >u..</text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="1237.9" y="645" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1240.94" y="655.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="936.5" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="939.48" y="751.5" ></text>
+</g>
+<g >
+<title>build_open_flags (10,101,010 samples, 0.06%)</title><rect x="897.6" y="597" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="900.58" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="816.3" y="565" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="819.25" y="575.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="656.2" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="659.24" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_open (30,303,030 samples, 0.19%)</title><rect x="100.2" y="869" width="2.6" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="103.17" y="879.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="281.4" y="613" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="284.40" y="623.5" ></text>
+</g>
+<g >
+<title>__sbitmap_queue_get (10,101,010 samples, 0.06%)</title><rect x="464.4" y="373" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="467.40" y="383.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1259.2" y="725" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1262.16" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="39.2" y="837" width="1.7" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="42.17" y="847.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="815.4" y="629" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="818.37" y="639.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="521.9" y="597" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="524.86" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="350.4" y="677" width="1.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="353.36" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="206.3" y="581" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="209.26" y="591.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="749.1" y="725" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="752.06" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1260.9" y="741" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1263.93" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="995.7" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="998.71" y="767.5" ></text>
+</g>
+<g >
+<title>__sk_destruct (20,202,020 samples, 0.13%)</title><rect x="53.3" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="56.32" y="607.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1350.2" y="661" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1353.22" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="853.4" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="856.38" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="674.8" y="549" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="677.80" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="645" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1062.37" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (70,707,070 samples, 0.45%)</title><rect x="44.5" y="261" width="6.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="47.48" y="271.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="681.0" y="421" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="683.99" y="431.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.06%)</title><rect x="243.4" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="246.39" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="629" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1092.42" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="757" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1195.86" y="767.5" ></text>
+</g>
+<g >
+<title>sk_destruct (20,202,020 samples, 0.13%)</title><rect x="53.3" y="613" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="56.32" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="692.5" y="309" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="695.49" y="319.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1086.24" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (20,202,020 samples, 0.13%)</title><rect x="370.7" y="629" width="1.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="373.69" y="639.5" ></text>
+</g>
+<g >
+<title>do_rmdir (70,707,070 samples, 0.45%)</title><rect x="418.4" y="741" width="6.2" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="421.43" y="751.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.13%)</title><rect x="521.0" y="613" width="1.7" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="523.98" y="623.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (20,202,020 samples, 0.13%)</title><rect x="519.2" y="597" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="522.21" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (30,303,030 samples, 0.19%)</title><rect x="713.7" y="597" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="716.70" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1216.7" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="735.5" ></text>
+</g>
+<g >
+<title>__pagevec_release (10,101,010 samples, 0.06%)</title><rect x="803.9" y="517" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="806.88" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="654.5" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="657.47" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="766.7" y="773" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.75" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.13%)</title><rect x="729.6" y="709" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="732.62" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="455.6" y="741" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="458.56" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="704.9" y="789" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="707.86" y="799.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="1189.3" y="677" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1192.32" y="687.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="565" width="1.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1389.46" y="575.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="309" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1100.38" y="319.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="872.8" y="549" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="875.83" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="871.1" y="693" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="874.06" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="506.8" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="509.84" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (20,202,020 samples, 0.13%)</title><rect x="828.6" y="533" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="831.63" y="543.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.13%)</title><rect x="197.4" y="629" width="1.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="200.42" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="16.2" y="821" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="19.19" y="831.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="208.9" y="453" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="211.91" y="463.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="722.5" y="725" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="725.54" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="751.7" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="754.72" y="639.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="805" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1057.95" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="83.4" y="805" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="86.38" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (80,808,080 samples, 0.51%)</title><rect x="391.9" y="645" width="7.1" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="394.91" y="655.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (20,202,020 samples, 0.13%)</title><rect x="1129.2" y="533" width="1.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1132.21" y="543.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (30,303,030 samples, 0.19%)</title><rect x="536.0" y="693" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="539.01" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="216.9" y="549" width="1.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="219.87" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone (474,747,470 samples, 3.01%)</title><rect x="1288.3" y="821" width="41.6" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1291.33" y="831.5" >__x..</text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="453" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1360.29" y="463.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1075.63" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="1169.0" y="549" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1171.99" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (50,505,050 samples, 0.32%)</title><rect x="1065.6" y="661" width="4.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1068.55" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1138.9" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1141.93" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="376.9" y="565" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="379.88" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="694.3" y="469" width="0.8" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="697.25" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="477.7" y="725" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="480.66" y="735.5" ></text>
+</g>
+<g >
+<title>git_checkout_tree (1,020,202,010 samples, 6.47%)</title><rect x="474.1" y="901" width="89.3" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="477.13" y="911.5" >git_checko..</text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="257.5" y="645" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="260.53" y="655.5" ></text>
+</g>
+<g >
+<title>hook_cred_prepare (10,101,010 samples, 0.06%)</title><rect x="154.1" y="917" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="157.10" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="522.7" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="525.75" y="639.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.06%)</title><rect x="1150.4" y="629" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1153.42" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="932.1" y="709" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="935.06" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (50,505,050 samples, 0.32%)</title><rect x="922.3" y="677" width="4.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="925.34" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="806.5" y="341" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="809.53" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="521.9" y="549" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="524.86" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_create (414,141,410 samples, 2.63%)</title><rect x="109.9" y="853" width="36.2" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="112.90" y="863.5" >ext..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1345.8" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1348.80" y="895.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="455.6" y="693" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="458.56" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.83%)</title><rect x="896.7" y="709" width="11.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="899.70" y="719.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="838.4" y="789" width="0.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="841.35" y="799.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1116.8" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1119.83" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="788.0" y="677" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="790.96" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="300.9" y="565" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="303.85" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.38%)</title><rect x="463.5" y="629" width="5.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="466.52" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.45%)</title><rect x="33.0" y="917" width="6.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="35.99" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="449.4" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="452.37" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="955.0" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="958.05" y="703.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="158.5" y="805" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="161.52" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="955.0" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="958.05" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1017.28" y="783.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="930.3" y="661" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="933.29" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1247.13" y="799.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="764.1" y="549" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="767.09" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1268.35" y="591.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1209.7" y="709" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1212.65" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.26%)</title><rect x="531.6" y="853" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="534.59" y="863.5" ></text>
+</g>
+<g >
+<title>prepare_creds (10,101,010 samples, 0.06%)</title><rect x="528.1" y="693" width="0.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="531.05" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_close (10,101,010 samples, 0.06%)</title><rect x="18.8" y="725" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="21.84" y="735.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1132.7" y="645" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1135.74" y="655.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="711.1" y="613" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="714.05" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="591.7" y="597" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="594.70" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="551.9" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="554.92" y="767.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1379.74" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="749.9" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="752.95" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="380.4" y="741" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="383.42" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="591.7" y="613" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="594.70" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1049.6" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1052.64" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1086.24" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="710.2" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="713.17" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1164.6" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1167.57" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="221.3" y="661" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="224.29" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1203.5" y="693" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1206.47" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="479.4" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="482.43" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="745.5" y="581" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="748.53" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="246.9" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="249.93" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="726.1" y="613" width="2.6" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="729.08" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="561.6" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="564.65" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="665.1" y="645" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="668.08" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="859.6" y="357" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="862.57" y="367.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="850.7" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="853.73" y="751.5" ></text>
+</g>
+<g >
+<title>iput (10,101,010 samples, 0.06%)</title><rect x="1352.9" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1355.87" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="534.2" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="537.24" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="771.2" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="774.17" y="703.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="685.4" y="453" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="688.41" y="463.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="827.7" y="533" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="830.75" y="543.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.06%)</title><rect x="472.4" y="741" width="0.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="475.36" y="751.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="910.0" y="453" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="912.96" y="463.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (10,101,010 samples, 0.06%)</title><rect x="59.5" y="773" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="62.51" y="783.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="19.7" y="789" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="22.72" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.38%)</title><rect x="1133.6" y="629" width="5.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1136.63" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (70,707,070 samples, 0.45%)</title><rect x="338.0" y="661" width="6.2" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="340.98" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (10,101,010 samples, 0.06%)</title><rect x="990.4" y="741" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="993.41" y="751.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="1020.5" y="533" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1023.47" y="543.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1215.8" y="581" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1218.84" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.13%)</title><rect x="432.6" y="741" width="1.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="435.58" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1032.8" y="469" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1035.84" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1200.8" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1203.81" y="735.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="1260.9" y="581" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1263.93" y="591.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1031.1" y="501" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1034.08" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_rename (111,111,110 samples, 0.70%)</title><rect x="804.8" y="629" width="9.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="807.76" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="532.5" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="535.47" y="783.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.06%)</title><rect x="1380.3" y="693" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1383.28" y="703.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (121,212,120 samples, 0.77%)</title><rect x="774.7" y="773" width="10.6" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="777.70" y="783.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="615.6" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="618.57" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1220.61" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.45%)</title><rect x="485.6" y="725" width="6.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="488.62" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1225.6" y="645" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1228.57" y="655.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="518.3" y="533" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="521.33" y="543.5" ></text>
+</g>
+<g >
+<title>end_page_writeback (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="325" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="1026.12" y="335.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="421" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1100.38" y="431.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1253.32" y="607.5" ></text>
+</g>
+<g >
+<title>unlink (50,505,050 samples, 0.32%)</title><rect x="424.6" y="821" width="4.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="427.62" y="831.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.06%)</title><rect x="215.1" y="501" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="218.10" y="511.5" ></text>
+</g>
+<g >
+<title>unlink (50,505,050 samples, 0.32%)</title><rect x="179.7" y="661" width="4.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="182.74" y="671.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (10,101,010 samples, 0.06%)</title><rect x="18.0" y="965" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="20.96" y="975.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="725" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1342.61" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="503.3" y="581" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="506.30" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="183.3" y="533" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="186.27" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="938.3" y="645" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="941.25" y="655.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="533" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1356.75" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1247.13" y="783.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (90,909,090 samples, 0.58%)</title><rect x="1356.4" y="821" width="8.0" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1359.41" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1061.48" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="246.0" y="677" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="249.04" y="687.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="381.3" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="384.30" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_rename (70,707,070 samples, 0.45%)</title><rect x="1133.6" y="645" width="6.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1136.63" y="655.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="549" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1389.46" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="665.1" y="581" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="668.08" y="591.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (353,535,350 samples, 2.24%)</title><rect x="788.0" y="821" width="30.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="790.96" y="831.5" >gi..</text>
+</g>
+<g >
+<title>__pagevec_release (20,202,020 samples, 0.13%)</title><rect x="812.7" y="485" width="1.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="815.72" y="495.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="1199.9" y="533" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1202.93" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="373" width="0.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1306.36" y="383.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="102.8" y="837" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="105.83" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_rename (70,707,070 samples, 0.45%)</title><rect x="1031.1" y="629" width="6.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1034.08" y="639.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.06%)</title><rect x="619.1" y="597" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="622.11" y="607.5" ></text>
+</g>
+<g >
+<title>file_exists (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="917" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1340.84" y="927.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (70,707,070 samples, 0.45%)</title><rect x="508.6" y="709" width="6.2" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="511.60" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (40,404,040 samples, 0.26%)</title><rect x="1061.1" y="709" width="3.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1064.13" y="719.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.13%)</title><rect x="1303.4" y="629" width="1.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1306.36" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="368.0" y="613" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="371.04" y="623.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1138.9" y="533" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1141.93" y="543.5" ></text>
+</g>
+<g >
+<title>fscrypt_policy_to_inherit (10,101,010 samples, 0.06%)</title><rect x="124.9" y="805" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="127.93" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="424.6" y="789" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="427.62" y="799.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="211.6" y="533" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="214.56" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="867.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="870.53" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (50,505,050 samples, 0.32%)</title><rect x="46.2" y="229" width="4.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="49.25" y="239.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="309.7" y="453" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="312.69" y="463.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="773.8" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="776.82" y="575.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.19%)</title><rect x="11.8" y="709" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="14.77" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="589.1" y="613" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="592.05" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.26%)</title><rect x="881.7" y="821" width="3.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="884.67" y="831.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1071.7" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1074.74" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="289.4" y="469" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="292.36" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="458.2" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="461.21" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (80,808,080 samples, 0.51%)</title><rect x="675.7" y="549" width="7.1" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="678.69" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1230.9" y="693" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1233.87" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="452.0" y="549" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="455.02" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="395.4" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="398.45" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="744.6" y="693" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="747.64" y="703.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (90,909,090 samples, 0.58%)</title><rect x="43.6" y="581" width="8.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="46.59" y="591.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1062.0" y="613" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1065.02" y="623.5" ></text>
+</g>
+<g >
+<title>git_oid_tostr (10,101,010 samples, 0.06%)</title><rect x="980.7" y="709" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="983.69" y="719.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="293.8" y="533" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="296.78" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="772.0" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="775.05" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="422.9" y="645" width="1.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="425.85" y="655.5" ></text>
+</g>
+<g >
+<title>link (30,303,030 samples, 0.19%)</title><rect x="985.1" y="741" width="2.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="988.11" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="996.6" y="789" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="999.60" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="693" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1010.21" y="703.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.06%)</title><rect x="786.2" y="549" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="789.19" y="559.5" ></text>
+</g>
+<g >
+<title>ip_sabotage_in (10,101,010 samples, 0.06%)</title><rect x="1383.8" y="373" width="0.9" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="1386.81" y="383.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.06%)</title><rect x="399.0" y="613" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="401.98" y="623.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.19%)</title><rect x="927.6" y="725" width="2.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="930.64" y="735.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="808.3" y="453" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="811.30" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="819.8" y="597" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="822.79" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="179.7" y="533" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="182.74" y="543.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="901" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1368.25" y="911.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="320.3" y="661" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="323.30" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="325.6" y="677" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="328.61" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="235.4" y="581" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="238.43" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="578.4" y="757" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="581.44" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="622.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="625.65" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="757.0" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="760.02" y="559.5" ></text>
+</g>
+<g >
+<title>git_repository_set_head (878,787,870 samples, 5.57%)</title><rect x="742.0" y="837" width="76.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="744.99" y="847.5" >git_repo..</text>
+</g>
+<g >
+<title>unlink_cb (292,929,290 samples, 1.86%)</title><rect x="386.6" y="821" width="25.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="389.60" y="831.5" >u..</text>
+</g>
+<g >
+<title>mas_wr_slot_store (10,101,010 samples, 0.06%)</title><rect x="1312.2" y="693" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1315.20" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1188.4" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1191.44" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="867.5" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="870.53" y="767.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="1100.0" y="661" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1103.03" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="589.1" y="629" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="592.05" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_destroy_inode (10,101,010 samples, 0.06%)</title><rect x="672.2" y="565" width="0.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="675.15" y="575.5" ></text>
+</g>
+<g >
+<title>dup_mm.constprop.0 (434,343,430 samples, 2.75%)</title><rect x="1291.0" y="757" width="38.0" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1293.99" y="767.5" >dup..</text>
+</g>
+<g >
+<title>tcp_send_fin (10,101,010 samples, 0.06%)</title><rect x="18.8" y="693" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="21.84" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="429.9" y="757" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="432.92" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1102.7" y="437" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1105.68" y="447.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="501.5" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="504.53" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1108.9" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1111.87" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="221.3" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="224.29" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="903.8" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="906.77" y="559.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="379.5" y="677" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="382.53" y="687.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="837" width="5.3" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1387.70" y="847.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.38%)</title><rect x="463.5" y="661" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="466.52" y="671.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="1127.4" y="405" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1130.44" y="415.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (30,303,030 samples, 0.19%)</title><rect x="139.1" y="789" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="142.07" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1057.95" y="671.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.13%)</title><rect x="731.4" y="693" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="734.38" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="757.0" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="760.02" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="927.6" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="930.64" y="687.5" ></text>
+</g>
+<g >
+<title>mutex_lock (10,101,010 samples, 0.06%)</title><rect x="280.5" y="613" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="283.52" y="623.5" ></text>
+</g>
+<g >
+<title>sk_destruct (10,101,010 samples, 0.06%)</title><rect x="44.5" y="197" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="47.48" y="207.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.06%)</title><rect x="18.8" y="293" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="21.84" y="303.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="178.0" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="180.97" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.13%)</title><rect x="422.9" y="581" width="1.7" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="425.85" y="591.5" ></text>
+</g>
+<g >
+<title>__dquot_initialize (10,101,010 samples, 0.06%)</title><rect x="592.6" y="629" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="595.59" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1027.89" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1185.8" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1188.78" y="687.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="245" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1104.80" y="255.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="726.1" y="645" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="729.08" y="655.5" ></text>
+</g>
+<g >
+<title>rb_insert_color (10,101,010 samples, 0.06%)</title><rect x="90.4" y="789" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="93.45" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.06%)</title><rect x="593.5" y="613" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="596.47" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="217.8" y="453" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="220.75" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="645" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1210.00" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="298.2" y="581" width="0.9" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="301.20" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="711.9" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="714.93" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="469.7" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="472.71" y="655.5" ></text>
+</g>
+<g >
+<title>git_oid_nfmt (10,101,010 samples, 0.06%)</title><rect x="980.7" y="693" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="983.69" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="946.2" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="949.21" y="671.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="277" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1140.16" y="287.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="487.4" y="501" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="490.39" y="511.5" ></text>
+</g>
+<g >
+<title>evict (80,808,080 samples, 0.51%)</title><rect x="211.6" y="597" width="7.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="214.56" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1136.3" y="437" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1139.28" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="886.1" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="889.09" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="206.3" y="597" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="209.26" y="607.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="1361.7" y="757" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1364.71" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (10,101,010 samples, 0.06%)</title><rect x="18.8" y="661" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="21.84" y="671.5" ></text>
+</g>
+<g >
+<title>opendir (121,212,120 samples, 0.77%)</title><rect x="634.1" y="789" width="10.6" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="637.14" y="799.5" ></text>
+</g>
+<g >
+<title>may_delete (10,101,010 samples, 0.06%)</title><rect x="319.4" y="645" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="322.42" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="597" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1301.94" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="388.4" y="629" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="391.37" y="639.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="389" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1209.12" y="399.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="231.9" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="234.90" y="575.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="597" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1306.36" y="607.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="430.8" y="469" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="433.81" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (80,808,080 samples, 0.51%)</title><rect x="690.7" y="533" width="7.1" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="693.72" y="543.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="968.3" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="971.31" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.06%)</title><rect x="1046.1" y="645" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1049.11" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.06%)</title><rect x="464.4" y="501" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="467.40" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="976.3" y="485" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="979.27" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="848.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="851.08" y="735.5" ></text>
+</g>
+<g >
+<title>__mutex_unlock_slowpath.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1278.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1281.61" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="753.5" y="725" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="756.48" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="854.3" y="741" width="9.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="857.27" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="910.0" y="661" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="912.96" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1210.89" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1185.8" y="661" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1188.78" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1180.5" y="757" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1183.48" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="987.8" y="613" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="990.76" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="558.1" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="561.11" y="783.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="434.3" y="725" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="437.34" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="93.1" y="869" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="96.10" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="673.0" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="676.04" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="941.8" y="693" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="944.79" y="703.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="741" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1368.25" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1260.9" y="661" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1263.93" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="533" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1086.24" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (90,909,090 samples, 0.58%)</title><rect x="507.7" y="757" width="8.0" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="510.72" y="767.5" ></text>
+</g>
+<g >
+<title>touch_atime (50,505,050 samples, 0.32%)</title><rect x="352.1" y="709" width="4.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="355.13" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="503.3" y="549" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="506.30" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1245.9" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1248.90" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="772.0" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="775.05" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="1215.0" y="629" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1217.96" y="639.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="631.5" y="565" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="634.49" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1278.6" y="613" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1281.61" y="623.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.13%)</title><rect x="39.2" y="773" width="1.7" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="42.17" y="783.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="1132.7" y="677" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1135.74" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (232,323,230 samples, 1.47%)</title><rect x="1249.4" y="837" width="20.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1252.44" y="847.5" ></text>
+</g>
+<g >
+<title>page_counter_uncharge (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="469" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1301.94" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (60,606,060 samples, 0.38%)</title><rect x="192.1" y="645" width="5.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="195.11" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="773" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1382.39" y="783.5" ></text>
+</g>
+<g >
+<title>unlink (131,313,130 samples, 0.83%)</title><rect x="230.1" y="725" width="11.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="233.13" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1379.74" y="607.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.06%)</title><rect x="1359.1" y="549" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1362.06" y="559.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (20,202,020 samples, 0.13%)</title><rect x="517.4" y="565" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="520.44" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="551.9" y="773" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.92" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="372.5" y="613" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="375.46" y="623.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="189.5" y="613" width="0.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="192.46" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (969,696,960 samples, 6.15%)</title><rect x="573.1" y="821" width="84.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="576.14" y="831.5" >[libgit2...</text>
+</g>
+<g >
+<title>try_to_unlazy (20,202,020 samples, 0.13%)</title><rect x="745.5" y="549" width="1.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="748.53" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="987.8" y="645" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="990.76" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (30,303,030 samples, 0.19%)</title><rect x="1075.3" y="629" width="2.6" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1078.28" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1050.5" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1053.53" y="591.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (80,808,080 samples, 0.51%)</title><rect x="758.8" y="741" width="7.1" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="761.79" y="751.5" ></text>
+</g>
+<g >
+<title>net_accept (20,202,020 samples, 0.13%)</title><rect x="61.3" y="901" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="64.27" y="911.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="912.6" y="773" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="915.61" y="783.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="231.0" y="613" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="234.01" y="623.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="580.2" y="677" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="583.21" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.13%)</title><rect x="714.6" y="501" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="717.59" y="511.5" ></text>
+</g>
+<g >
+<title>storvsc_on_io_completion (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="501" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1268.35" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1237.1" y="741" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1240.06" y="751.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="790.6" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="793.61" y="575.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.06%)</title><rect x="309.7" y="213" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="312.69" y="223.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="227.5" y="709" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="230.48" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="853.4" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="856.38" y="607.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="880.8" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="883.79" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (50,505,050 samples, 0.32%)</title><rect x="744.6" y="613" width="4.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="747.64" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="92.2" y="981" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="95.22" y="991.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1095.6" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1098.61" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="442.3" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="445.30" y="799.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.13%)</title><rect x="1134.5" y="517" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1137.51" y="527.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="168.2" y="853" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="171.24" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="421.1" y="661" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="424.08" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="1253.0" y="709" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1255.97" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="901.1" y="645" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="904.12" y="655.5" ></text>
+</g>
+<g >
+<title>crc_1 (10,101,010 samples, 0.06%)</title><rect x="397.2" y="517" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="400.21" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="835.7" y="677" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="838.70" y="687.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="681.0" y="453" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="683.99" y="463.5" ></text>
+</g>
+<g >
+<title>tcp_push (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1379.74" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1224.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1227.68" y="671.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="533" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1387.70" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="693" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1195.86" y="703.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="701.3" y="773" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="704.33" y="783.5" ></text>
+</g>
+<g >
+<title>__dquot_alloc_space (10,101,010 samples, 0.06%)</title><rect x="1084.1" y="485" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1087.12" y="495.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (20,202,020 samples, 0.13%)</title><rect x="1152.2" y="629" width="1.8" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="1155.19" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="544.0" y="709" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="546.97" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1347.6" y="661" width="1.7" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1350.57" y="671.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="597" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1387.70" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.45%)</title><rect x="1064.7" y="773" width="6.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1067.67" y="783.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="725" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1343.49" y="735.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="677" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1026.12" y="687.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="871.9" y="773" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="874.95" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1274.2" y="661" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1277.19" y="671.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.06%)</title><rect x="930.3" y="741" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="933.29" y="751.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="932.9" y="789" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="935.95" y="799.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.06%)</title><rect x="807.4" y="421" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="810.41" y="431.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (60,606,060 samples, 0.38%)</title><rect x="1384.7" y="821" width="5.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1387.70" y="831.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="953.3" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="956.28" y="607.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (10,101,010 samples, 0.06%)</title><rect x="997.5" y="597" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1000.48" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1203.5" y="661" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1206.47" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1032.8" y="373" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1035.84" y="383.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="558.1" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="561.11" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1083.58" y="575.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.13%)</title><rect x="1134.5" y="485" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1137.51" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="773.8" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.82" y="687.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="567.8" y="821" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="570.83" y="831.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (30,303,030 samples, 0.19%)</title><rect x="997.5" y="709" width="2.6" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1000.48" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="910.0" y="613" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="912.96" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (141,414,140 samples, 0.90%)</title><rect x="79.8" y="885" width="12.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="82.84" y="895.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (50,505,050 samples, 0.32%)</title><rect x="1319.3" y="709" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1322.28" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="1118.6" y="661" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1121.60" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="851.6" y="693" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="854.61" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="837" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1346.15" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="696.0" y="437" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="699.02" y="447.5" ></text>
+</g>
+<g >
+<title>up_read (10,101,010 samples, 0.06%)</title><rect x="1231.8" y="645" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1234.76" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="640.3" y="741" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="643.33" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1247.13" y="735.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (30,303,030 samples, 0.19%)</title><rect x="516.6" y="597" width="2.6" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="519.56" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1136.3" y="421" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1139.28" y="431.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="709" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1024.35" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="660.7" y="709" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="663.66" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_read (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="805" width="2.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1336.42" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (40,404,040 samples, 0.26%)</title><rect x="693.4" y="485" width="3.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="696.37" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="999.3" y="581" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1002.25" y="591.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="709" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1186.13" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.06%)</title><rect x="337.1" y="661" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="340.10" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1344.9" y="789" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1347.91" y="799.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="581" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1222.38" y="591.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="203.6" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="206.61" y="591.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (10,101,010 samples, 0.06%)</title><rect x="377.8" y="661" width="0.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="380.76" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="437" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1306.36" y="447.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1222.0" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1225.03" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="837" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1273.65" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="406.1" y="645" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="409.05" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1084.1" y="517" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1087.12" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="922.3" y="709" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="925.34" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (464,646,460 samples, 2.95%)</title><rect x="1140.7" y="773" width="40.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1143.70" y="783.5" >__x..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="906.4" y="661" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="909.43" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="728.7" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="731.73" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_flush (40,404,040 samples, 0.26%)</title><rect x="859.6" y="629" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="862.57" y="639.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="703.1" y="741" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="706.09" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="578.4" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="581.44" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1224.7" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1227.68" y="735.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.06%)</title><rect x="757.9" y="629" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="760.91" y="639.5" ></text>
+</g>
+<g >
+<title>remove (60,606,060 samples, 0.38%)</title><rect x="431.7" y="853" width="5.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="434.69" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (383,838,380 samples, 2.43%)</title><rect x="951.5" y="741" width="33.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="954.51" y="751.5" >[l..</text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1179.6" y="693" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1182.60" y="703.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="438.8" y="837" width="1.7" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="441.76" y="847.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.26%)</title><rect x="859.6" y="597" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="862.57" y="607.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="1112.4" y="725" width="1.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1115.41" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="342.4" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="345.40" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="628.8" y="613" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="631.83" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (50,505,050 samples, 0.32%)</title><rect x="71.0" y="773" width="4.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="74.00" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1197.3" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1200.28" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="871.1" y="677" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="874.06" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="738.5" y="645" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="741.46" y="655.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="1322.8" y="693" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1325.81" y="703.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="901" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1343.49" y="911.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="315.9" y="645" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="318.88" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="422.9" y="517" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="425.85" y="527.5" ></text>
+</g>
+<g >
+<title>filename_create (60,606,060 samples, 0.38%)</title><rect x="619.1" y="693" width="5.3" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="622.11" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="915.3" y="613" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="918.27" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="389" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1100.38" y="399.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="661" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1301.94" y="671.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="16.2" y="885" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="19.19" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1225.6" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1228.57" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="1116.8" y="693" width="4.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1119.83" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="424.6" y="693" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="427.62" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="975.4" y="453" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="978.38" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (171,717,170 samples, 1.09%)</title><rect x="1163.7" y="629" width="15.0" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1166.68" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="750.8" y="661" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="753.83" y="671.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="170.9" y="869" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="173.90" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="697.8" y="629" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="700.79" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="424.6" y="677" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="427.62" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="492.7" y="741" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="495.69" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="426.4" y="725" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="429.39" y="735.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="1029.3" y="549" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1032.31" y="559.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="618.2" y="645" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="621.23" y="655.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="100.2" y="805" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="103.17" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="825.1" y="661" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="828.09" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (101,010,100 samples, 0.64%)</title><rect x="1207.9" y="773" width="8.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1210.89" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="711.1" y="645" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="714.05" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="939.1" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="942.14" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="517" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1379.74" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="719.0" y="565" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="722.01" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1061.48" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_faccessat2 (20,202,020 samples, 0.13%)</title><rect x="1193.7" y="709" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1196.74" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="392.8" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="395.79" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="940.9" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="943.90" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (10,101,010 samples, 0.06%)</title><rect x="101.1" y="837" width="0.8" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="104.06" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="501.5" y="725" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="504.53" y="735.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="119.6" y="725" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="122.62" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="869.3" y="549" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="872.30" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="1212.3" y="709" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1215.31" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_fin (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="261" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1385.93" y="271.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="563.4" y="645" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="566.41" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="517" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1039.38" y="527.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (10,101,010 samples, 0.06%)</title><rect x="454.7" y="629" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="457.68" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1180.5" y="709" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1183.48" y="719.5" ></text>
+</g>
+<g >
+<title>main (505,050,500 samples, 3.20%)</title><rect x="31.2" y="997" width="44.2" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="34.22" y="1007.5" >main</text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1215.0" y="661" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1217.96" y="671.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="635.0" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="638.02" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_eventfd2 (20,202,020 samples, 0.13%)</title><rect x="59.5" y="837" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="62.51" y="847.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="325.6" y="661" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="328.61" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="1012.5" y="725" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1015.51" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1204.3" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1207.35" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="536.0" y="741" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="539.01" y="751.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="1070.9" y="645" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1073.86" y="655.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="558.1" y="709" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="561.11" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="930.3" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="933.29" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (40,404,040 samples, 0.26%)</title><rect x="1124.8" y="517" width="3.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1127.79" y="527.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="751.7" y="565" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="754.72" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="677" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1087.12" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1167.2" y="549" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1170.22" y="559.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="82.5" y="677" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="85.49" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_meta_trans_blocks (10,101,010 samples, 0.06%)</title><rect x="314.1" y="565" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="317.11" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="740.2" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="743.22" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="458.2" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="461.21" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="543.1" y="821" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="546.08" y="831.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="501" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1026.12" y="511.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (20,202,020 samples, 0.13%)</title><rect x="250.5" y="629" width="1.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="253.46" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.06%)</title><rect x="572.3" y="789" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="575.25" y="799.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="11.8" y="677" width="2.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="14.77" y="687.5" ></text>
+</g>
+<g >
+<title>security_prepare_creds (30,303,030 samples, 0.19%)</title><rect x="156.8" y="917" width="2.6" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="159.75" y="927.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="171.8" y="837" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="174.78" y="847.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="563.4" y="677" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="566.41" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="559.0" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="561.99" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="443.2" y="853" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="446.18" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1062.9" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1065.90" y="655.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="615.6" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="618.57" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1368.8" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1371.78" y="911.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (181,818,180 samples, 1.15%)</title><rect x="617.3" y="725" width="16.0" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="620.34" y="735.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="13.5" y="565" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="16.54" y="575.5" ></text>
+</g>
+<g >
+<title>ci_run_git_repo (13,434,343,300 samples, 85.20%)</title><rect x="170.9" y="949" width="1175.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="173.90" y="959.5" >ci_run_git_repo</text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="191.2" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="194.23" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="975.4" y="677" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="978.38" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="692.5" y="293" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="695.49" y="303.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="919.7" y="437" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="922.69" y="447.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1026.12" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="932.1" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="935.06" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="688.9" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="691.95" y="607.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="448.5" y="581" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="451.49" y="591.5" ></text>
+</g>
+<g >
+<title>lru_add_drain_cpu (10,101,010 samples, 0.06%)</title><rect x="467.9" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="470.94" y="543.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="997.5" y="629" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1000.48" y="639.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="212.4" y="533" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="215.45" y="543.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (101,010,100 samples, 0.64%)</title><rect x="66.6" y="933" width="8.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="69.58" y="943.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="158.5" y="901" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="161.52" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="957.7" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="960.70" y="511.5" ></text>
+</g>
+<g >
+<title>__close (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="917" width="2.6" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1355.87" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="422.9" y="453" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="425.85" y="463.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="421" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1104.80" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="460.0" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="462.98" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="910.0" y="501" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="912.96" y="511.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.26%)</title><rect x="635.0" y="677" width="3.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="638.02" y="687.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="1180.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1183.48" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="825.1" y="741" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="828.09" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.90%)</title><rect x="753.5" y="789" width="12.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="756.48" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="449.4" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="452.37" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="484.7" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="487.73" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1169.9" y="517" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1172.87" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1078.8" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1081.81" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="918.8" y="725" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="921.80" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="840.1" y="837" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="843.12" y="847.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="453" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1253.32" y="463.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="709" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1008.44" y="719.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.06%)</title><rect x="1204.3" y="741" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1207.35" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1079.7" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1082.70" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="574.9" y="757" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="577.91" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="836.6" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="839.59" y="623.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1138.9" y="549" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1141.93" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="435.2" y="581" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="438.23" y="591.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="389" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1356.75" y="399.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="567.8" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="570.83" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.13%)</title><rect x="681.0" y="485" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="683.99" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="269.9" y="581" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="272.91" y="591.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="925.0" y="501" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="927.99" y="511.5" ></text>
+</g>
+<g >
+<title>crc_33 (10,101,010 samples, 0.06%)</title><rect x="208.9" y="549" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="211.91" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.19%)</title><rect x="975.4" y="613" width="2.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="978.38" y="623.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1208.23" y="639.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1386.5" y="757" width="3.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1389.46" y="767.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (10,101,010 samples, 0.06%)</title><rect x="619.1" y="581" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="622.11" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="1273.3" y="741" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1276.31" y="751.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="339.8" y="581" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="342.75" y="591.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.06%)</title><rect x="1247.7" y="773" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1250.67" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="774.7" y="693" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="777.70" y="703.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="1379.4" y="853" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1382.39" y="863.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="906.4" y="677" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="909.43" y="687.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="196.5" y="501" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="199.53" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1374.1" y="805" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1377.09" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="394.6" y="581" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="397.56" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (80,808,080 samples, 0.51%)</title><rect x="249.6" y="709" width="7.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="252.58" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_flush (90,909,090 samples, 0.58%)</title><rect x="806.5" y="597" width="8.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="809.53" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="276.1" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="279.10" y="639.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1268.0" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1271.00" y="607.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="645" width="3.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1359.41" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1222.9" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1225.91" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="852.5" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="855.50" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="542.2" y="677" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="545.20" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="885.2" y="821" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="888.21" y="831.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="870.2" y="645" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="873.18" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_iterator_glob_new (10,101,010 samples, 0.06%)</title><rect x="864.0" y="821" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="866.99" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="988.6" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="991.64" y="719.5" ></text>
+</g>
+<g >
+<title>crc_29 (10,101,010 samples, 0.06%)</title><rect x="513.0" y="581" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="516.02" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="289.4" y="517" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="292.36" y="527.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (101,010,100 samples, 0.64%)</title><rect x="1046.1" y="741" width="8.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1049.11" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.13%)</title><rect x="691.6" y="469" width="1.8" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="694.60" y="479.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1037.3" y="709" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1040.26" y="719.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="76.3" y="901" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="79.30" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="393.7" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="396.68" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="597" width="3.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1087.12" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="339.8" y="613" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="342.75" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (30,303,030 samples, 0.19%)</title><rect x="511.3" y="661" width="2.6" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="514.26" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="269.9" y="597" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="272.91" y="607.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1243.2" y="485" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1246.25" y="495.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1086.24" y="559.5" ></text>
+</g>
+<g >
+<title>release_sock (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="789" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1387.70" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="917.0" y="757" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="920.03" y="767.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="341" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1385.93" y="351.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="583.7" y="533" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="586.75" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (101,010,100 samples, 0.64%)</title><rect x="160.3" y="901" width="8.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="163.29" y="911.5" ></text>
+</g>
+<g >
+<title>security_inode_free (10,101,010 samples, 0.06%)</title><rect x="211.6" y="549" width="0.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="214.56" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="909.1" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="912.08" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="434.3" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="437.34" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="957.7" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="960.70" y="527.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="756.1" y="501" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="759.14" y="511.5" ></text>
+</g>
+<g >
+<title>filename_parentat (20,202,020 samples, 0.13%)</title><rect x="622.6" y="677" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="625.65" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="831.3" y="725" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="834.28" y="735.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="1076.2" y="597" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1079.16" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="787.1" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="790.08" y="623.5" ></text>
+</g>
+<g >
+<title>mkdtemp (181,818,180 samples, 1.15%)</title><rect x="1271.5" y="901" width="16.0" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1274.54" y="911.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="836.6" y="549" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="839.59" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.06%)</title><rect x="239.9" y="581" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="242.85" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.13%)</title><rect x="731.4" y="709" width="1.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="734.38" y="719.5" ></text>
+</g>
+<g >
+<title>json_object_get_int64 (10,101,010 samples, 0.06%)</title><rect x="1370.6" y="821" width="0.8" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="1373.55" y="831.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="899.4" y="581" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="902.35" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.58%)</title><rect x="1356.4" y="917" width="8.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1359.41" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="757" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1017.28" y="767.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="565" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1268.35" y="575.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="246.9" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="249.93" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="612.9" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="615.92" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1382.0" y="437" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1385.04" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="936.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="939.48" y="735.5" ></text>
+</g>
+<g >
+<title>server_listen_thread (505,050,500 samples, 3.20%)</title><rect x="31.2" y="965" width="44.2" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="34.22" y="975.5" >serv..</text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1157.5" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1160.50" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="815.4" y="501" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="818.37" y="511.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="421" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1356.75" y="431.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1083.58" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (30,303,030 samples, 0.19%)</title><rect x="194.8" y="613" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="197.77" y="623.5" ></text>
+</g>
+<g >
+<title>remove (50,505,050 samples, 0.32%)</title><rect x="424.6" y="837" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="427.62" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="971.8" y="565" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="974.84" y="575.5" ></text>
+</g>
+<g >
+<title>perf_iterate_sb (10,101,010 samples, 0.06%)</title><rect x="29.4" y="917" width="0.9" height="15.0" fill="rgb(0,229,163)" rx="2" ry="2" />
+<text x="32.45" y="927.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (20,202,020 samples, 0.13%)</title><rect x="1321.0" y="693" width="1.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1324.04" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="48.9" y="85" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="51.90" y="95.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="533" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1011.09" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="166.5" y="821" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="169.48" y="831.5" ></text>
+</g>
+<g >
+<title>remove (50,505,050 samples, 0.32%)</title><rect x="179.7" y="677" width="4.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="182.74" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1205.2" y="741" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1208.23" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="751.7" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="754.72" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="561.6" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="564.65" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1227.3" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.34" y="751.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="558.1" y="693" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="561.11" y="703.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="231.0" y="629" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="234.01" y="639.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.06%)</title><rect x="349.5" y="677" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="352.47" y="687.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="368.0" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="371.04" y="559.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="171.8" y="805" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="174.78" y="815.5" ></text>
+</g>
+<g >
+<title>process_measurement (10,101,010 samples, 0.06%)</title><rect x="324.7" y="677" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="327.72" y="687.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1331.12" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1246.8" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1249.78" y="623.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.06%)</title><rect x="1070.0" y="693" width="0.9" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="1072.97" y="703.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="1239.7" y="533" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1242.71" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="930.3" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="933.29" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="586.4" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="589.40" y="639.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range (60,606,060 samples, 0.38%)</title><rect x="33.9" y="837" width="5.3" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="36.87" y="847.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="517" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1360.29" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="435.2" y="565" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="438.23" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="888.7" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="891.74" y="735.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="709" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1253.32" y="719.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="853" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1368.25" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="437.0" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="440.00" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="581" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1112.76" y="591.5" ></text>
+</g>
+<g >
+<title>do_writepages (10,101,010 samples, 0.06%)</title><rect x="689.8" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="692.83" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1041.7" y="501" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1044.68" y="511.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="889.6" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="892.63" y="575.5" ></text>
+</g>
+<g >
+<title>libgit_clone (7,999,999,920 samples, 50.74%)</title><rect x="571.4" y="901" width="700.1" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="574.37" y="911.5" >libgit_clone</text>
+</g>
+<g >
+<title>[libc.so.6] (3,010,100,980 samples, 19.09%)</title><rect x="173.5" y="885" width="263.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="176.55" y="895.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1056.7" y="693" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1059.71" y="703.5" ></text>
+</g>
+<g >
+<title>do_writepages (40,404,040 samples, 0.26%)</title><rect x="1101.8" y="549" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1104.80" y="559.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (40,404,040 samples, 0.26%)</title><rect x="241.6" y="773" width="3.6" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="244.62" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1243.2" y="501" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1246.25" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="191.2" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="194.23" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.26%)</title><rect x="859.6" y="549" width="3.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="862.57" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="858.7" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="861.69" y="623.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="751.7" y="581" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="754.72" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1193.7" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1196.74" y="655.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.06%)</title><rect x="18.8" y="389" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="21.84" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (50,505,050 samples, 0.32%)</title><rect x="628.0" y="645" width="4.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="630.95" y="655.5" ></text>
+</g>
+<g >
+<title>ip_local_out (80,808,080 samples, 0.51%)</title><rect x="43.6" y="533" width="7.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="46.59" y="543.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.06%)</title><rect x="849.8" y="565" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="852.85" y="575.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="1100.0" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1103.03" y="655.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="1074.4" y="677" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1077.39" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1246.8" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1249.78" y="591.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="908.2" y="597" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="911.19" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1011.6" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1014.63" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="628.0" y="613" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="630.95" y="623.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="1329.9" y="869" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1332.88" y="879.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="499.8" y="613" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="502.76" y="623.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="725" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1273.65" y="735.5" ></text>
+</g>
+<g >
+<title>jsonrpc_notification_create (30,303,030 samples, 0.19%)</title><rect x="1366.1" y="933" width="2.7" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1369.13" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (50,505,050 samples, 0.32%)</title><rect x="407.8" y="661" width="4.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="410.82" y="671.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="725" width="2.7" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1336.42" y="735.5" ></text>
+</g>
+<g >
+<title>____fput (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="805" width="2.6" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1355.87" y="815.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1220.61" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="444.1" y="725" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="447.07" y="735.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (20,202,020 samples, 0.13%)</title><rect x="438.8" y="885" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="441.76" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="975.4" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="978.38" y="495.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="373" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1379.74" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1078.8" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1081.81" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="18.0" y="853" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="20.96" y="863.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.06%)</title><rect x="232.8" y="629" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="235.78" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_fd (10,101,010 samples, 0.06%)</title><rect x="148.8" y="901" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="151.80" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (60,606,060 samples, 0.38%)</title><rect x="372.5" y="629" width="5.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="375.46" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1049.6" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1052.64" y="607.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="325" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1011.09" y="335.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="784.4" y="613" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="787.43" y="623.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="222.2" y="613" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="225.17" y="623.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.06%)</title><rect x="167.4" y="821" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="170.36" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 1.54%)</title><rect x="1016.0" y="757" width="21.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1019.05" y="767.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="499.8" y="645" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="502.76" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="538.7" y="693" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="541.66" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="485" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1209.12" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="936.5" y="693" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="939.48" y="703.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="211.6" y="581" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="214.56" y="591.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="405" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1306.36" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="605.0" y="629" width="0.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="607.96" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1224.7" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1227.68" y="751.5" ></text>
+</g>
+<g >
+<title>filename_parentat (20,202,020 samples, 0.13%)</title><rect x="360.1" y="693" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="363.08" y="703.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="547.5" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="550.50" y="687.5" ></text>
+</g>
+<g >
+<title>access (40,404,040 samples, 0.26%)</title><rect x="774.7" y="725" width="3.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="777.70" y="735.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="645" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1026.12" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 1.02%)</title><rect x="40.9" y="837" width="14.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="43.94" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="378.6" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="381.65" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="484.7" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="487.73" y="607.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="297.3" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="300.32" y="575.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="179.7" y="501" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="182.74" y="511.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="526.3" y="613" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="529.28" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1031.1" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1034.08" y="575.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="853.4" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="856.38" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="834.8" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="837.82" y="735.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="120.5" y="709" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="123.51" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.19%)</title><rect x="837.5" y="821" width="2.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="840.47" y="831.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="724.3" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="727.31" y="623.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="526.3" y="645" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="529.28" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="521.9" y="533" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="524.86" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (70,707,070 samples, 0.45%)</title><rect x="485.6" y="709" width="6.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="488.62" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1254.7" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1257.74" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="795.0" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="798.04" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="357" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1026.12" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="309.7" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="312.69" y="479.5" ></text>
+</g>
+<g >
+<title>do_eventfd (20,202,020 samples, 0.13%)</title><rect x="59.5" y="821" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="62.51" y="831.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="43.6" y="501" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="46.59" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (30,303,030 samples, 0.19%)</title><rect x="237.2" y="597" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="240.20" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="521.9" y="581" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="524.86" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="422.9" y="469" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="425.85" y="479.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="373" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1137.51" y="383.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="789" width="6.2" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1349.68" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="950.6" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="953.63" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="870.2" y="693" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="873.18" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (101,010,100 samples, 0.64%)</title><rect x="305.3" y="581" width="8.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="308.27" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="229.2" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="232.24" y="623.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.06%)</title><rect x="203.6" y="629" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="206.61" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="441.4" y="853" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="444.42" y="863.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="457.3" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="460.33" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (292,929,290 samples, 1.86%)</title><rect x="582.0" y="677" width="25.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="584.98" y="687.5" >v..</text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="341" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1356.75" y="351.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="749.9" y="613" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="752.95" y="623.5" ></text>
+</g>
+<g >
+<title>ci_prepare_git_repo (9,646,464,550 samples, 61.18%)</title><rect x="443.2" y="933" width="844.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="446.18" y="943.5" >ci_prepare_git_repo</text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="991.3" y="693" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="994.29" y="703.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="237.2" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="240.20" y="559.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="444.1" y="709" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="447.07" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="517" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1331.12" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags (30,303,030 samples, 0.19%)</title><rect x="650.1" y="709" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="653.05" y="719.5" ></text>
+</g>
+<g >
+<title>__kmalloc (20,202,020 samples, 0.13%)</title><rect x="923.2" y="613" width="1.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="926.22" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="522.7" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="525.75" y="735.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="994.8" y="549" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="997.83" y="559.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="10.9" y="885" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="13.88" y="895.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="1132.7" y="661" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1135.74" y="671.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.13%)</title><rect x="770.3" y="741" width="1.7" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="773.28" y="751.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (30,303,030 samples, 0.19%)</title><rect x="100.2" y="853" width="2.6" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="103.17" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="937.4" y="693" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="940.37" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="1167.2" y="517" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1170.22" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="563.4" y="629" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="566.41" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1199.39" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1184.9" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1187.90" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (212,121,210 samples, 1.35%)</title><rect x="152.3" y="981" width="18.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="155.33" y="991.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="325" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1114.52" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="833.0" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="836.05" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="412.2" y="757" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="415.24" y="767.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="901.1" y="693" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="904.12" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="186.8" y="469" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="189.81" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="434.3" y="693" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="437.34" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="437" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1026.12" y="447.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1352.0" y="725" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1354.99" y="735.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="446.7" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="449.72" y="719.5" ></text>
+</g>
+<g >
+<title>inet_csk_destroy_sock (10,101,010 samples, 0.06%)</title><rect x="42.7" y="565" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="45.71" y="575.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="18.8" y="597" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="21.84" y="607.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.06%)</title><rect x="581.1" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="584.10" y="687.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="1279.5" y="741" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1282.49" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1032.8" y="453" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1035.84" y="463.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1116.29" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="720.8" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="723.78" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="63.0" y="933" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="66.04" y="943.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="925.9" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="928.87" y="639.5" ></text>
+</g>
+<g >
+<title>____fput (151,515,150 samples, 0.96%)</title><rect x="41.8" y="757" width="13.3" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="44.83" y="767.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="487.4" y="485" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="490.39" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="742.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="745.88" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (50,505,050 samples, 0.32%)</title><rect x="1116.8" y="677" width="4.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1119.83" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="85.1" y="757" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="88.14" y="767.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1199.39" y="623.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="402.5" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="405.52" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="875.5" y="661" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="878.48" y="671.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="885" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1342.61" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1159.3" y="677" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1162.26" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (90,909,090 samples, 0.58%)</title><rect x="1356.4" y="885" width="8.0" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1359.41" y="895.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="871.9" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="874.95" y="687.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1339.07" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="773.8" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.82" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="197.4" y="693" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="200.42" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="303.5" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="306.50" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="982.5" y="677" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="985.45" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (30,303,030 samples, 0.19%)</title><rect x="401.6" y="613" width="2.7" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="404.63" y="623.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="189.5" y="597" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="192.46" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="893.2" y="581" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="896.16" y="591.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="773" width="1.8" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1379.74" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (30,303,030 samples, 0.19%)</title><rect x="307.0" y="469" width="2.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="310.04" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="673.0" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="676.04" y="575.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (151,515,150 samples, 0.96%)</title><rect x="41.8" y="789" width="13.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="44.83" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="887.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="889.98" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="79.8" y="853" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="82.84" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1091.2" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1094.19" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="773.8" y="581" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="776.82" y="591.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="574.0" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="577.02" y="671.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="725" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1339.07" y="735.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (292,929,290 samples, 1.86%)</title><rect x="1244.1" y="869" width="25.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1247.13" y="879.5" >g..</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="975.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="978.38" y="511.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1246.8" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1249.78" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="645" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1190.55" y="655.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="882.6" y="709" width="0.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="885.56" y="719.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1279.5" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1282.49" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.06%)</title><rect x="447.6" y="565" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="450.60" y="575.5" ></text>
+</g>
+<g >
+<title>task_work_add (10,101,010 samples, 0.06%)</title><rect x="757.9" y="597" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="760.91" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="346.8" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="349.82" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_time_wait (10,101,010 samples, 0.06%)</title><rect x="49.8" y="181" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="52.78" y="191.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1245.9" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1248.90" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="368.0" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="371.04" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="484.7" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="487.73" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="1083.2" y="725" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1086.24" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="191.2" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="194.23" y="687.5" ></text>
+</g>
+<g >
+<title>libjson_new_object (30,303,030 samples, 0.19%)</title><rect x="1366.1" y="901" width="2.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1369.13" y="911.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="458.2" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="461.21" y="607.5" ></text>
+</g>
+<g >
+<title>__vsnprintf_chk (10,101,010 samples, 0.06%)</title><rect x="481.2" y="741" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="484.20" y="751.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1364.71" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_append (60,606,060 samples, 0.38%)</title><rect x="1040.8" y="677" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1043.80" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="859.6" y="501" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="862.57" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.06%)</title><rect x="466.2" y="517" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="469.17" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 1.67%)</title><rect x="475.9" y="789" width="23.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="478.89" y="799.5" >[..</text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="199.2" y="549" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="202.19" y="559.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="315.0" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="318.00" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="327.4" y="709" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="330.37" y="719.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="914.4" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="917.38" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1203.5" y="629" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1206.47" y="639.5" ></text>
+</g>
+<g >
+<title>pmd_install (10,101,010 samples, 0.06%)</title><rect x="1302.5" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1305.48" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="179.7" y="645" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="182.74" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="1033.7" y="437" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1036.73" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_create (30,303,030 samples, 0.19%)</title><rect x="975.4" y="549" width="2.6" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="978.38" y="559.5" ></text>
+</g>
+<g >
+<title>fdopendir (10,101,010 samples, 0.06%)</title><rect x="413.1" y="837" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="416.13" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="640.3" y="757" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="643.33" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="864.9" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="867.88" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="802.1" y="565" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="805.11" y="575.5" ></text>
+</g>
+<g >
+<title>cimple-server (747,474,740 samples, 4.74%)</title><rect x="10.0" y="1061" width="65.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="13.00" y="1071.5" >cimple-..</text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.06%)</title><rect x="363.6" y="629" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="366.62" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_create (60,606,060 samples, 0.38%)</title><rect x="508.6" y="677" width="5.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="511.60" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="941.8" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="944.79" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (353,535,350 samples, 2.24%)</title><rect x="951.5" y="725" width="31.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="954.51" y="735.5" >[l..</text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="437.9" y="837" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="440.88" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="245" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1039.38" y="255.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.06%)</title><rect x="984.2" y="725" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="987.22" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="616.5" y="741" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="619.46" y="751.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (70,707,070 samples, 0.45%)</title><rect x="69.2" y="885" width="6.2" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="72.23" y="895.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="59.5" y="725" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="62.51" y="735.5" ></text>
+</g>
+<g >
+<title>security_current_getsecid_subj (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="581" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1190.55" y="591.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1328.1" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1331.12" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (50,505,050 samples, 0.32%)</title><rect x="164.7" y="885" width="4.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="167.71" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="703.1" y="757" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="706.09" y="767.5" ></text>
+</g>
+<g >
+<title>anon_vma_fork (80,808,080 samples, 0.51%)</title><rect x="1293.6" y="725" width="7.1" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1296.64" y="735.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="430.8" y="549" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="433.81" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="884.3" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="887.32" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1062.0" y="677" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1065.02" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="137.3" y="773" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="140.30" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.06%)</title><rect x="122.3" y="821" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="125.27" y="831.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="189.5" y="581" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="192.46" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (90,909,090 samples, 0.58%)</title><rect x="137.3" y="821" width="8.0" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="140.30" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (252,525,250 samples, 1.60%)</title><rect x="175.3" y="741" width="22.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="178.32" y="751.5" >[..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.77%)</title><rect x="541.3" y="853" width="10.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="544.31" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="199.2" y="581" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="202.19" y="591.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="170.9" y="901" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="173.90" y="911.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="831.3" y="645" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="834.28" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_get_read_batch (10,101,010 samples, 0.06%)</title><rect x="1020.5" y="549" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1023.47" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="833.0" y="613" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="836.05" y="623.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="325" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1104.80" y="335.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.13%)</title><rect x="225.7" y="661" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="228.71" y="671.5" ></text>
+</g>
+<g >
+<title>fdopendir (30,303,030 samples, 0.19%)</title><rect x="246.0" y="773" width="2.7" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="249.04" y="783.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="645" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1379.74" y="655.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="996.6" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="999.60" y="719.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.13%)</title><rect x="1230.9" y="709" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1233.87" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="466.2" y="533" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="469.17" y="543.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="566.1" y="661" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="569.07" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.06%)</title><rect x="712.8" y="597" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="715.82" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1344.0" y="901" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1347.03" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.06%)</title><rect x="787.1" y="597" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="790.08" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1247.13" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="893.2" y="677" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="896.16" y="687.5" ></text>
+</g>
+<g >
+<title>copy_thread (10,101,010 samples, 0.06%)</title><rect x="1290.1" y="757" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="1293.10" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="677" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1075.63" y="687.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="663.3" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="666.31" y="719.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1382.9" y="421" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1385.93" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="300.0" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="302.97" y="591.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="773" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1186.13" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="742.0" y="725" width="7.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="735.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1301.94" y="623.5" ></text>
+</g>
+<g >
+<title>__lookup_hash (10,101,010 samples, 0.06%)</title><rect x="580.2" y="661" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="583.21" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.06%)</title><rect x="551.9" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="554.92" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="522.7" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="525.75" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.26%)</title><rect x="1101.8" y="533" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1104.80" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.45%)</title><rect x="634.1" y="741" width="6.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="637.14" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="309.7" y="373" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="312.69" y="383.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="853" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1346.15" y="863.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1268.0" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1271.00" y="639.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="871.9" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="874.95" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="887.0" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="889.98" y="671.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1215.0" y="549" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1217.96" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_datasem_ensure_credits (10,101,010 samples, 0.06%)</title><rect x="680.1" y="501" width="0.9" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="683.11" y="511.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="561.6" y="629" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="564.65" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="165.6" y="805" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="168.59" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1387.70" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="881.7" y="805" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="884.67" y="815.5" ></text>
+</g>
+<g >
+<title>readlink (20,202,020 samples, 0.13%)</title><rect x="497.1" y="741" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="500.11" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (60,606,060 samples, 0.38%)</title><rect x="1064.7" y="709" width="5.3" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1067.67" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="827.7" y="597" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="830.75" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="728.7" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="731.73" y="735.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="63.0" y="885" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="66.04" y="895.5" ></text>
+</g>
+<g >
+<title>step_into (20,202,020 samples, 0.13%)</title><rect x="489.2" y="597" width="1.7" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="492.15" y="607.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.06%)</title><rect x="18.8" y="453" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="21.84" y="463.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="1184.9" y="805" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1187.90" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.06%)</title><rect x="243.4" y="629" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="246.39" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1035.5" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1038.50" y="575.5" ></text>
+</g>
+<g >
+<title>mktime (30,303,030 samples, 0.19%)</title><rect x="991.3" y="757" width="2.6" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="994.29" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1062.9" y="677" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1065.90" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.13%)</title><rect x="810.1" y="453" width="1.7" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="813.06" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_statx (60,606,060 samples, 0.38%)</title><rect x="652.7" y="709" width="5.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="655.70" y="719.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="1110.6" y="533" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1113.64" y="543.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="831.3" y="661" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="834.28" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="767.6" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="770.63" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="440.5" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="443.53" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.58%)</title><rect x="1255.6" y="757" width="8.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1258.62" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1240.6" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1243.60" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="788.8" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="791.85" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (30,303,030 samples, 0.19%)</title><rect x="48.0" y="213" width="2.7" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="51.01" y="223.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="742.9" y="613" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="745.88" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="472.4" y="757" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="475.36" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1092.1" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1095.08" y="479.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.19%)</title><rect x="1382.0" y="533" width="2.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1385.04" y="543.5" ></text>
+</g>
+<g >
+<title>inflate (30,303,030 samples, 0.19%)</title><rect x="536.0" y="709" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="539.01" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="728.7" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="731.73" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="1375.0" y="757" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1377.97" y="767.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="318.5" y="661" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="321.53" y="671.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="670.4" y="661" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="673.38" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="915.3" y="645" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="918.27" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.13%)</title><rect x="691.6" y="341" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="694.60" y="351.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="767.6" y="629" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="770.63" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="199.2" y="645" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="202.19" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="948.9" y="677" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="951.86" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="64.8" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="67.81" y="911.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="715.5" y="437" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="718.47" y="447.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1367.9" y="869" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1370.90" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="277" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1385.93" y="287.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1358.52" y="911.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="738.5" y="597" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="741.46" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="370.7" y="581" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="373.69" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (131,313,130 samples, 0.83%)</title><rect x="460.9" y="757" width="11.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="463.86" y="767.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="942.7" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="945.67" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1098.3" y="565" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1101.26" y="575.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="111.7" y="805" width="0.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="114.67" y="815.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="261" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1039.38" y="271.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1215.0" y="565" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1217.96" y="575.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.06%)</title><rect x="757.9" y="613" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="760.91" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="469" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1107.45" y="479.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.32%)</title><rect x="332.7" y="661" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="335.68" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="542.2" y="693" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="545.20" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="919.7" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="922.69" y="639.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="908.2" y="645" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="911.19" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="517" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1253.32" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1196.4" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1199.39" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1245.9" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1248.90" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.96%)</title><rect x="788.0" y="741" width="13.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="790.96" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="430.8" y="437" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="433.81" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="695.1" y="437" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="698.14" y="447.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="405" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1086.24" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="563.4" y="805" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="566.41" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="581" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1306.36" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="412.2" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="415.24" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="765.9" y="757" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="768.86" y="767.5" ></text>
+</g>
+<g >
+<title>rm_rf (3,080,808,050 samples, 19.54%)</title><rect x="173.5" y="917" width="269.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="176.55" y="927.5" >rm_rf</text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="899.4" y="597" width="1.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="902.35" y="607.5" ></text>
+</g>
+<g >
+<title>crc_44 (10,101,010 samples, 0.06%)</title><rect x="238.1" y="549" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="241.08" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="379.5" y="709" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="382.53" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="712.8" y="693" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="715.82" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="577.6" y="709" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="580.56" y="719.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="378.6" y="693" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="381.65" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="905.5" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="908.54" y="655.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="919.7" y="549" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="922.69" y="559.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (10,101,010 samples, 0.06%)</title><rect x="803.9" y="485" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="806.88" y="495.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="565" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1209.12" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="1243.2" y="453" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1246.25" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="434.3" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="437.34" y="591.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="517" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1268.35" y="527.5" ></text>
+</g>
+<g >
+<title>event_loop_run (90,909,090 samples, 0.58%)</title><rect x="1368.8" y="949" width="7.9" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="1371.78" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="696.0" y="469" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="699.02" y="479.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="750.8" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="753.83" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="899.4" y="613" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="902.35" y="623.5" ></text>
+</g>
+<g >
+<title>git_remote_fetch (1,282,828,270 samples, 8.14%)</title><rect x="887.9" y="869" width="112.2" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="890.86" y="879.5" >git_remote_fe..</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1083.58" y="687.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (20,202,020 samples, 0.13%)</title><rect x="601.4" y="501" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="604.43" y="511.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="254.9" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="257.88" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="669.5" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="672.50" y="559.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="18.0" y="917" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="20.96" y="927.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="480.3" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="483.31" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1091.2" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1094.19" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (20,202,020 samples, 0.13%)</title><rect x="497.1" y="693" width="1.8" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="500.11" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone3 (80,808,080 samples, 0.51%)</title><rect x="24.1" y="981" width="7.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="27.14" y="991.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="479.4" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="482.43" y="623.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="662.4" y="693" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="665.43" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="837" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1339.96" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.26%)</title><rect x="640.3" y="693" width="3.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="643.33" y="703.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1382.9" y="437" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1385.93" y="447.5" ></text>
+</g>
+<g >
+<title>sock_alloc (20,202,020 samples, 0.13%)</title><rect x="61.3" y="789" width="1.7" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="64.27" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="678.3" y="485" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="681.34" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1233.5" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1236.52" y="671.5" ></text>
+</g>
+<g >
+<title>task_work_run (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="821" width="4.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1383.28" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.58%)</title><rect x="1083.2" y="741" width="8.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1086.24" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="885" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1340.84" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="185.9" y="453" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="188.93" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="178.9" y="661" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="181.85" y="671.5" ></text>
+</g>
+<g >
+<title>__perf_event_header__init_id (10,101,010 samples, 0.06%)</title><rect x="29.4" y="869" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="32.45" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="888.7" y="789" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="891.74" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.13%)</title><rect x="48.0" y="181" width="1.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="51.01" y="191.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="308.8" y="389" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="311.81" y="399.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="449.4" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="452.37" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="348.6" y="773" width="9.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="351.59" y="783.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="565.2" y="677" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="568.18" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (50,505,050 samples, 0.32%)</title><rect x="394.6" y="629" width="4.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="397.56" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="911.7" y="501" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="914.73" y="511.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="469" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1387.70" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="999.3" y="613" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1002.25" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="48.9" y="117" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="51.90" y="127.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="757" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1339.07" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="558.1" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="561.11" y="799.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.06%)</title><rect x="820.7" y="645" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="823.67" y="655.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.06%)</title><rect x="101.9" y="837" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="104.94" y="847.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1279.84" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="937.4" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="940.37" y="623.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.13%)</title><rect x="872.8" y="693" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="875.83" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="821" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1346.15" y="831.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="421" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1114.52" y="431.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="849.8" y="549" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="852.85" y="559.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="507.7" y="677" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="510.72" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.06%)</title><rect x="198.3" y="613" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="201.30" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.45%)</title><rect x="485.6" y="741" width="6.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="488.62" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="762.3" y="469" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="765.33" y="479.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="11.8" y="581" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="14.77" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1247.13" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="738.5" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="741.46" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="444.1" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="447.07" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="522.7" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="525.75" y="671.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="978.9" y="549" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="981.92" y="559.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.06%)</title><rect x="892.3" y="789" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="895.28" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1085.0" y="469" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1088.00" y="479.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="632.4" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="635.37" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="613" width="3.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1087.12" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="513.0" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="516.02" y="607.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="643.9" y="773" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="646.86" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1142.5" y="677" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1145.47" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="422.9" y="661" width="1.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="425.85" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="799.5" y="581" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="802.46" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="867.5" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="870.53" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="839.2" y="773" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="842.24" y="783.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1222.9" y="565" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1225.91" y="575.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="932.1" y="629" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="935.06" y="639.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="939.1" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="942.14" y="639.5" ></text>
+</g>
+<g >
+<title>__folio_mark_dirty (10,101,010 samples, 0.06%)</title><rect x="542.2" y="597" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="545.20" y="607.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="309.7" y="357" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="312.69" y="367.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="789.7" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="792.73" y="623.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="197" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1385.93" y="207.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="369.8" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="372.81" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="332.7" y="629" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="335.68" y="639.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="389" width="0.8" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1306.36" y="399.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1253.0" y="725" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1255.97" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1273.3" y="661" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1276.31" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="430.8" y="533" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="433.81" y="543.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="736.7" y="581" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="739.69" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (40,404,040 samples, 0.26%)</title><rect x="1061.1" y="725" width="3.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1064.13" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chmod (30,303,030 samples, 0.19%)</title><rect x="1009.0" y="741" width="2.6" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="1011.98" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="990.4" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="993.41" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (101,010,100 samples, 0.64%)</title><rect x="463.5" y="709" width="8.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="466.52" y="719.5" ></text>
+</g>
+<g >
+<title>server_main (505,050,500 samples, 3.20%)</title><rect x="31.2" y="981" width="44.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="34.22" y="991.5" >serv..</text>
+</g>
+<g >
+<title>lh_table_free (10,101,010 samples, 0.06%)</title><rect x="10.9" y="933" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="13.88" y="943.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="566.1" y="693" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="569.07" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="709" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1112.76" y="719.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="357" width="0.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1140.16" y="367.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="1269.8" y="885" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1272.77" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (40,404,040 samples, 0.26%)</title><rect x="395.4" y="613" width="3.6" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="398.45" y="623.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1199.0" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1202.05" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="542.2" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="545.20" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="859.6" y="437" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="862.57" y="447.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="293.8" y="517" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="296.78" y="527.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (181,818,180 samples, 1.15%)</title><rect x="821.6" y="853" width="15.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="824.56" y="863.5" ></text>
+</g>
+<g >
+<title>do_faccessat (40,404,040 samples, 0.26%)</title><rect x="482.1" y="693" width="3.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="485.08" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="954.2" y="565" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="957.16" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="774.7" y="741" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="777.70" y="751.5" ></text>
+</g>
+<g >
+<title>apparmor_current_getsecid_subj (10,101,010 samples, 0.06%)</title><rect x="223.1" y="613" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="226.06" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="848.1" y="661" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="851.08" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="434.3" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="437.34" y="607.5" ></text>
+</g>
+<g >
+<title>dentry_kill (20,202,020 samples, 0.13%)</title><rect x="872.8" y="677" width="1.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="875.83" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.19%)</title><rect x="713.7" y="533" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="716.70" y="543.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="955.9" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="958.93" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (40,404,040 samples, 0.26%)</title><rect x="117.9" y="821" width="3.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="120.85" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="141.7" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="144.72" y="719.5" ></text>
+</g>
+<g >
+<title>d_instantiate (10,101,010 samples, 0.06%)</title><rect x="627.1" y="645" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="630.07" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="870.2" y="757" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="873.18" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (20,202,020 samples, 0.13%)</title><rect x="89.6" y="805" width="1.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="92.56" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="189.5" y="629" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="192.46" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="921.5" y="629" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="924.45" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="338.9" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="341.87" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="852.5" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="855.50" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="274.3" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="277.33" y="607.5" ></text>
+</g>
+<g >
+<title>security_current_getsecid_subj (10,101,010 samples, 0.06%)</title><rect x="223.1" y="629" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="226.06" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="1172.5" y="581" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1175.52" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1238.8" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1241.83" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (40,404,040 samples, 0.26%)</title><rect x="1167.2" y="581" width="3.6" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1170.22" y="591.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="354.8" y="613" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="357.78" y="623.5" ></text>
+</g>
+<g >
+<title>pte_alloc_one (20,202,020 samples, 0.13%)</title><rect x="1303.4" y="661" width="1.7" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1306.36" y="671.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.06%)</title><rect x="377.8" y="613" width="0.8" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="380.76" y="623.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.06%)</title><rect x="48.9" y="53" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="51.90" y="63.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.13%)</title><rect x="1134.5" y="469" width="1.8" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1137.51" y="479.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="1320.2" y="693" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1323.16" y="703.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (70,707,070 samples, 0.45%)</title><rect x="44.5" y="501" width="6.2" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="47.48" y="511.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="664.2" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="667.20" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="665.1" y="613" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="668.08" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1254.7" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1257.74" y="687.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1379.74" y="511.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="710.2" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="713.17" y="559.5" ></text>
+</g>
+<g >
+<title>events_to_string (20,202,020 samples, 0.13%)</title><rect x="56.0" y="933" width="1.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="58.97" y="943.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="329.1" y="677" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="332.14" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="993.9" y="805" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="996.95" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="950.6" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="953.63" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (50,505,050 samples, 0.32%)</title><rect x="24.1" y="949" width="4.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="27.14" y="959.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.19%)</title><rect x="1232.6" y="725" width="2.7" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="1235.64" y="735.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="279.6" y="581" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="282.63" y="591.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="1278.6" y="709" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1281.61" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="899.4" y="629" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="902.35" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (191,919,190 samples, 1.22%)</title><rect x="895.8" y="773" width="16.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="898.82" y="783.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="345.9" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="348.94" y="799.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.06%)</title><rect x="1382.0" y="373" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1385.04" y="383.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="925.9" y="581" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="928.87" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1208.8" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1211.77" y="591.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="851.6" y="709" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="854.61" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_pid (10,101,010 samples, 0.06%)</title><rect x="28.6" y="933" width="0.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="31.57" y="943.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="925.0" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="927.99" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="917.0" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="920.03" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="408.7" y="629" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="411.71" y="639.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1178.7" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1181.71" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="485" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1389.46" y="495.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.06%)</title><rect x="42.7" y="629" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="45.71" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (40,404,040 samples, 0.26%)</title><rect x="996.6" y="757" width="3.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="999.60" y="767.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="208.9" y="469" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="211.91" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1061.48" y="575.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="889.6" y="645" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="892.63" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="437" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1137.51" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="279.6" y="613" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="282.63" y="623.5" ></text>
+</g>
+<g >
+<title>open64 (40,404,040 samples, 0.26%)</title><rect x="996.6" y="821" width="3.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="999.60" y="831.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (50,505,050 samples, 0.32%)</title><rect x="1265.3" y="693" width="4.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1268.35" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="803.0" y="549" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="805.99" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="70.1" y="821" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="73.12" y="831.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1085.9" y="533" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1088.89" y="543.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.06%)</title><rect x="502.4" y="677" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="505.42" y="687.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (60,606,060 samples, 0.38%)</title><rect x="1347.6" y="773" width="5.3" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1350.57" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (424,242,420 samples, 2.69%)</title><rect x="951.5" y="773" width="37.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="954.51" y="783.5" >[li..</text>
+</g>
+<g >
+<title>__libc_calloc (20,202,020 samples, 0.13%)</title><rect x="1366.1" y="853" width="1.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1369.13" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="750.8" y="693" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="753.83" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="737.6" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="740.57" y="687.5" ></text>
+</g>
+<g >
+<title>cfree (20,202,020 samples, 0.13%)</title><rect x="1087.7" y="725" width="1.7" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1090.66" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.26%)</title><rect x="421.1" y="677" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="424.08" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="58.6" y="853" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="61.62" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="332.7" y="597" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="335.68" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (30,303,030 samples, 0.19%)</title><rect x="1374.1" y="789" width="2.6" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1377.09" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="1245.0" y="805" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1248.02" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1193.7" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1196.74" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.15%)</title><rect x="76.3" y="997" width="15.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="79.30" y="1007.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="677" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1010.21" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (212,121,210 samples, 1.35%)</title><rect x="766.7" y="789" width="18.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="769.75" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="988.6" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="991.64" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="740.2" y="661" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="743.22" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (252,525,250 samples, 1.60%)</title><rect x="1158.4" y="709" width="22.1" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1161.38" y="719.5" >e..</text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="272.6" y="597" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="275.56" y="607.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="309" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1114.52" y="319.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="485" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1034.96" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="478.5" y="661" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="481.55" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.13%)</title><rect x="1093.0" y="485" width="1.7" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1095.96" y="495.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="79.0" y="869" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="81.96" y="879.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="773" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1340.84" y="783.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="1237.9" y="597" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1240.94" y="607.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="549" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1306.36" y="559.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="567.0" y="613" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="569.95" y="623.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="472.4" y="725" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="475.36" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="675.7" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="678.69" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (40,404,040 samples, 0.26%)</title><rect x="1101.8" y="613" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1104.80" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="937.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="940.37" y="655.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="908.2" y="613" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="911.19" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1379.74" y="463.5" ></text>
+</g>
+<g >
+<title>write (50,505,050 samples, 0.32%)</title><rect x="451.1" y="773" width="4.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="454.14" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.13%)</title><rect x="960.4" y="517" width="1.7" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="963.35" y="527.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="786.2" y="709" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="789.19" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_init_sock (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="805" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1358.52" y="815.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="11.8" y="517" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="14.77" y="527.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="557.2" y="789" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="560.23" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (292,929,290 samples, 1.86%)</title><rect x="386.6" y="757" width="25.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="389.60" y="767.5" >d..</text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="42.7" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="45.71" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="445.0" y="677" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="447.95" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="435.2" y="597" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="438.23" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="449.4" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="452.37" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="856.0" y="581" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="859.03" y="591.5" ></text>
+</g>
+<g >
+<title>mark_page_accessed (10,101,010 samples, 0.06%)</title><rect x="204.5" y="533" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="207.49" y="543.5" ></text>
+</g>
+<g >
+<title>mkdir (151,515,150 samples, 0.96%)</title><rect x="79.0" y="981" width="13.2" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="81.96" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.32%)</title><rect x="332.7" y="645" width="4.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="335.68" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="193.9" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="196.88" y="543.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="565" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1379.74" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="991.3" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="994.29" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="179.7" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="182.74" y="559.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="850.7" y="693" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="853.73" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="819.8" y="645" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="822.79" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="830.4" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="833.40" y="687.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="309.7" y="405" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="312.69" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="897.6" y="613" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="900.58" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="423.7" y="501" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="426.73" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="217.8" y="437" width="0.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="220.75" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.90%)</title><rect x="753.5" y="773" width="12.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="756.48" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="231.9" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="234.90" y="607.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="826.9" y="565" width="0.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="829.86" y="575.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="380.4" y="693" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="383.42" y="703.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.06%)</title><rect x="671.3" y="565" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="674.27" y="575.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.06%)</title><rect x="542.2" y="629" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="545.20" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="939.1" y="677" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="942.14" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="67.5" y="869" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="70.46" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="1148.7" y="645" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1151.65" y="655.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="197.4" y="613" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="200.42" y="623.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="955.9" y="597" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="958.93" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="77.2" y="917" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="80.19" y="927.5" ></text>
+</g>
+<g >
+<title>unlink (30,303,030 samples, 0.19%)</title><rect x="549.3" y="821" width="2.6" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="552.27" y="831.5" ></text>
+</g>
+<g >
+<title>git_index_read (10,101,010 samples, 0.06%)</title><rect x="559.9" y="837" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="562.88" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1207.9" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1210.89" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="293" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1360.29" y="303.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="762.3" y="453" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="765.33" y="463.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="478.5" y="613" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="481.55" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="675.7" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="678.69" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="759.7" y="645" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="762.67" y="655.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="64.8" y="853" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="67.81" y="863.5" ></text>
+</g>
+<g >
+<title>dst_release (10,101,010 samples, 0.06%)</title><rect x="18.8" y="261" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="21.84" y="271.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="566.1" y="757" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="569.07" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="724.3" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="727.31" y="655.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="488.3" y="485" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="491.27" y="495.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="831.3" y="693" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="834.28" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="930.3" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="933.29" y="719.5" ></text>
+</g>
+<g >
+<title>unlink_cb (50,505,050 samples, 0.32%)</title><rect x="424.6" y="853" width="4.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="427.62" y="863.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="478.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="481.55" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1247.13" y="655.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="559.9" y="709" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="562.88" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1344.0" y="885" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1347.03" y="895.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="869" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1274.54" y="879.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1222.9" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1225.91" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1208.8" y="645" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1211.77" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="863.1" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="866.11" y="639.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1228.2" y="501" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1231.22" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="575.8" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="578.79" y="719.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="158.5" y="709" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="161.52" y="719.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="192.1" y="581" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="195.11" y="591.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="645" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1356.75" y="655.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (10,101,010 samples, 0.06%)</title><rect x="559.9" y="661" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="562.88" y="671.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="208.9" y="437" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="211.91" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.06%)</title><rect x="673.9" y="549" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="676.92" y="559.5" ></text>
+</g>
+<g >
+<title>security_path_link (10,101,010 samples, 0.06%)</title><rect x="730.5" y="677" width="0.9" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="733.50" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="976.3" y="517" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="979.27" y="527.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="93.1" y="853" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="96.10" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1017.8" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1020.82" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (20,202,020 samples, 0.13%)</title><rect x="963.0" y="549" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="966.00" y="559.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="18.8" y="821" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="21.84" y="831.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="491.8" y="693" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="494.81" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="1059.4" y="693" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1062.37" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="406.9" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="409.94" y="607.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="1183.1" y="725" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1186.13" y="735.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1058.5" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1061.48" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="693" width="0.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1356.75" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="246.9" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="249.93" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1199.9" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1202.93" y="639.5" ></text>
+</g>
+<g >
+<title>inet6_sendmsg (30,303,030 samples, 0.19%)</title><rect x="11.8" y="805" width="2.6" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="14.77" y="815.5" ></text>
+</g>
+<g >
+<title>security_cred_free (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="677" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1253.32" y="687.5" ></text>
+</g>
+<g >
+<title>__folio_cancel_dirty (10,101,010 samples, 0.06%)</title><rect x="401.6" y="517" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="404.63" y="527.5" ></text>
+</g>
+<g >
+<title>getdents64 (60,606,060 samples, 0.38%)</title><rect x="644.7" y="773" width="5.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="647.75" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="674.8" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="677.80" y="511.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="189.5" y="549" width="0.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="192.46" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="711.1" y="565" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="714.05" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="859.6" y="421" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="862.57" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1079.7" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1082.70" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="725" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1279.84" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="195.7" y="549" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="198.65" y="559.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.06%)</title><rect x="1237.9" y="565" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1240.94" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="660.7" y="725" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="663.66" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="902.9" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="905.89" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="503.3" y="613" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="506.30" y="623.5" ></text>
+</g>
+<g >
+<title>rename (343,434,340 samples, 2.18%)</title><rect x="671.3" y="757" width="30.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="674.27" y="767.5" >re..</text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="932.1" y="597" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="935.06" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1378.5" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1381.51" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="560.8" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.76" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="414.0" y="805" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="417.01" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_bread (60,606,060 samples, 0.38%)</title><rect x="1040.8" y="661" width="5.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1043.80" y="671.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="309" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1026.12" y="319.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="910.0" y="725" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="912.96" y="735.5" ></text>
+</g>
+<g >
+<title>rb_insert_color (10,101,010 samples, 0.06%)</title><rect x="713.7" y="501" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="716.70" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="118.7" y="741" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="121.74" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="568.7" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="571.72" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.06%)</title><rect x="655.4" y="613" width="0.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="658.36" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (50,505,050 samples, 0.32%)</title><rect x="1100.9" y="645" width="4.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1103.92" y="655.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="373" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1209.12" y="383.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="149" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1385.93" y="159.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1241.5" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1244.48" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="751.7" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="754.72" y="623.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.13%)</title><rect x="729.6" y="757" width="1.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="732.62" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (70,707,070 samples, 0.45%)</title><rect x="307.0" y="501" width="6.2" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="310.04" y="511.5" ></text>
+</g>
+<g >
+<title>do_faccessat (50,505,050 samples, 0.32%)</title><rect x="922.3" y="661" width="4.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="925.34" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1003.7" y="805" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1006.67" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="310.6" y="485" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="313.58" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1024.35" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="357" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1385.93" y="367.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="893.2" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="896.16" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="553.7" y="709" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="556.69" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1017.8" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1020.82" y="687.5" ></text>
+</g>
+<g >
+<title>cimple-worker (15,020,201,870 samples, 95.26%)</title><rect x="75.4" y="1061" width="1314.6" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="78.42" y="1071.5" >cimple-worker</text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="856.9" y="501" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="859.92" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="885.2" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="888.21" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="503.3" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="506.30" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="317.6" y="709" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="320.65" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="368.0" y="581" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="371.04" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="991.3" y="709" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="994.29" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="61.3" y="853" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="64.27" y="863.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1039.38" y="495.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.06%)</title><rect x="1240.6" y="693" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1243.60" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1075.3" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1078.28" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="856.0" y="533" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="859.03" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="503.3" y="645" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="506.30" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="700.4" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="703.44" y="607.5" ></text>
+</g>
+<g >
+<title>apparmor_file_open (10,101,010 samples, 0.06%)</title><rect x="635.0" y="597" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="638.02" y="607.5" ></text>
+</g>
+<g >
+<title>__blk_mq_get_tag (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="357" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1034.96" y="367.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (80,808,080 samples, 0.51%)</title><rect x="233.7" y="645" width="7.0" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="236.66" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="856.0" y="469" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="859.03" y="479.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="725" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1017.28" y="735.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (20,202,020 samples, 0.13%)</title><rect x="1029.3" y="517" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1032.31" y="527.5" ></text>
+</g>
+<g >
+<title>file_close (20,202,020 samples, 0.13%)</title><rect x="39.2" y="901" width="1.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="42.17" y="911.5" ></text>
+</g>
+<g >
+<title>net_close (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="949" width="4.4" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1383.28" y="959.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="510.4" y="581" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="513.37" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="560.8" y="837" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.76" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (20,202,020 samples, 0.13%)</title><rect x="1155.7" y="661" width="1.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="1158.73" y="671.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="461.7" y="613" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="464.75" y="623.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="859.6" y="405" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="862.57" y="415.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="437" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1387.70" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="620.9" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="623.88" y="591.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="485" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1301.94" y="495.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="438.8" y="821" width="1.7" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="441.76" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="17.1" y="917" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="20.07" y="927.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="485" width="0.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1306.36" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="253.1" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="256.11" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="64.8" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="67.81" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1374.1" y="821" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1377.09" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="767.6" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="770.63" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="751.7" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="754.72" y="703.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="669.5" y="645" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="672.50" y="655.5" ></text>
+</g>
+<g >
+<title>dquot_initialize (10,101,010 samples, 0.06%)</title><rect x="592.6" y="645" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="595.59" y="655.5" ></text>
+</g>
+<g >
+<title>unlink_cb (50,505,050 samples, 0.32%)</title><rect x="179.7" y="693" width="4.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="182.74" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="930.3" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="933.29" y="783.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1387.3" y="485" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1390.35" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (20,202,020 samples, 0.13%)</title><rect x="946.2" y="693" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="949.21" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="909.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="912.08" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="695.1" y="389" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="698.14" y="399.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="847.2" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="850.19" y="719.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (10,101,010 samples, 0.06%)</title><rect x="219.5" y="597" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="222.52" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="903.8" y="645" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="906.77" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="439.6" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="442.65" y="783.5" ></text>
+</g>
+<g >
+<title>fprintf (30,303,030 samples, 0.19%)</title><rect x="14.4" y="949" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="17.42" y="959.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="732.3" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="735.27" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1026.12" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (50,505,050 samples, 0.32%)</title><rect x="652.7" y="677" width="4.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="655.70" y="687.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="82.5" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="85.49" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="749.9" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="752.95" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1169.0" y="533" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1171.99" y="543.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="898.5" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="901.47" y="671.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="221.3" y="709" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="224.29" y="719.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="677.5" y="485" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="680.46" y="495.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1119.5" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1122.48" y="607.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="789" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1273.65" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="65.7" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="68.70" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_rename (20,202,020 samples, 0.13%)</title><rect x="946.2" y="677" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="949.21" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1035.5" y="597" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1038.50" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v4_send_check (10,101,010 samples, 0.06%)</title><rect x="51.6" y="581" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="54.55" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_append (40,404,040 samples, 0.26%)</title><rect x="1281.3" y="741" width="3.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1284.26" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="122.3" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="125.27" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="458.2" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="461.21" y="575.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1279.5" y="661" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1282.49" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (313,131,310 samples, 1.99%)</title><rect x="580.2" y="709" width="27.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="583.21" y="719.5" >_..</text>
+</g>
+<g >
+<title>dup_mmap (393,939,390 samples, 2.50%)</title><rect x="1291.9" y="741" width="34.4" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="1294.87" y="751.5" >du..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1187.6" y="789" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1190.55" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (20,202,020 samples, 0.13%)</title><rect x="1350.2" y="693" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1353.22" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (20,202,020 samples, 0.13%)</title><rect x="1277.7" y="725" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1280.73" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1017.8" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1020.82" y="639.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="485" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1379.74" y="495.5" ></text>
+</g>
+<g >
+<title>fsuidgid_has_mapping.isra.0 (10,101,010 samples, 0.06%)</title><rect x="973.6" y="597" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="976.61" y="607.5" ></text>
+</g>
+<g >
+<title>find_lock_entries (10,101,010 samples, 0.06%)</title><rect x="400.7" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="403.75" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="194.8" y="533" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="197.77" y="543.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (232,323,230 samples, 1.47%)</title><rect x="1249.4" y="853" width="20.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1252.44" y="863.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="910.0" y="421" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="912.96" y="431.5" ></text>
+</g>
+<g >
+<title>mod_zone_page_state (10,101,010 samples, 0.06%)</title><rect x="1138.0" y="453" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1141.05" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.96%)</title><rect x="896.7" y="725" width="13.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="899.70" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="436.1" y="789" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="439.11" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1234.4" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1237.41" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="628.0" y="597" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="630.95" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1004.6" y="773" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1007.55" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_cleanup_congestion_control (10,101,010 samples, 0.06%)</title><rect x="42.7" y="549" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="45.71" y="559.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.19%)</title><rect x="1109.8" y="725" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1112.76" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="421" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1011.09" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_used_dirs_set (10,101,010 samples, 0.06%)</title><rect x="606.7" y="645" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="609.73" y="655.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="155.9" y="917" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="158.87" y="927.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="156.8" y="885" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="159.75" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1378.5" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1381.51" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1204.3" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1207.35" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="754.4" y="645" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="757.37" y="655.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="495.3" y="597" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="498.34" y="607.5" ></text>
+</g>
+<g >
+<title>do_pipe2 (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="821" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1339.07" y="831.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.06%)</title><rect x="997.5" y="613" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1000.48" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.58%)</title><rect x="650.1" y="789" width="7.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="653.05" y="799.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (454,545,450 samples, 2.88%)</title><rect x="1140.7" y="757" width="39.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1143.70" y="767.5" >do_..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1227.3" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.34" y="735.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="581" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1327.58" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="77.2" y="981" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="80.19" y="991.5" ></text>
+</g>
+<g >
+<title>__ext4_link (10,101,010 samples, 0.06%)</title><rect x="833.0" y="661" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="836.05" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="902.0" y="613" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="905.01" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.19%)</title><rect x="222.2" y="677" width="2.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="225.17" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="797.7" y="661" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.69" y="671.5" ></text>
+</g>
+<g >
+<title>__pagevec_release (10,101,010 samples, 0.06%)</title><rect x="1133.6" y="517" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1136.63" y="527.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (60,606,060 samples, 0.38%)</title><rect x="33.9" y="821" width="5.3" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="36.87" y="831.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.13%)</title><rect x="1032.8" y="501" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1035.84" y="511.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="919.7" y="357" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="922.69" y="367.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.06%)</title><rect x="618.2" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="621.23" y="671.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="304.4" y="533" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="307.39" y="543.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.13%)</title><rect x="1378.5" y="949" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1381.51" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="1055.8" y="789" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1058.83" y="799.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="323.0" y="661" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="325.95" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1184.9" y="725" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1187.90" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_init_acl (10,101,010 samples, 0.06%)</title><rect x="998.4" y="645" width="0.9" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="1001.37" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="395.4" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="398.45" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (767,676,760 samples, 4.87%)</title><rect x="474.1" y="869" width="67.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="477.13" y="879.5" >[libgit..</text>
+</g>
+<g >
+<title>dquot_file_open (10,101,010 samples, 0.06%)</title><rect x="735.8" y="533" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="738.80" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="246.0" y="741" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="249.04" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="338.9" y="613" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="341.87" y="623.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="714.6" y="405" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="717.59" y="415.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="158.5" y="741" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="161.52" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="498.9" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="501.88" y="783.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (90,909,090 samples, 0.58%)</title><rect x="872.8" y="709" width="8.0" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="875.83" y="719.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="86.0" y="645" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="89.03" y="655.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1180.5" y="693" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1183.48" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="758.8" y="709" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="761.79" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.96%)</title><rect x="1230.9" y="805" width="13.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1233.87" y="815.5" ></text>
+</g>
+<g >
+<title>nf_nat_inet_fn (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="661" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1392.12" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.26%)</title><rect x="492.7" y="693" width="3.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="495.69" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="413.1" y="725" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="416.13" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="782.7" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="785.66" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="927.6" y="789" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="930.64" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1164.6" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1167.57" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="725" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1195.86" y="735.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="666.0" y="501" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="668.96" y="511.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.06%)</title><rect x="1199.0" y="613" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1202.05" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="773" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1343.49" y="783.5" ></text>
+</g>
+<g >
+<title>new_inode (20,202,020 samples, 0.13%)</title><rect x="1051.4" y="629" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1054.41" y="639.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.06%)</title><rect x="223.1" y="645" width="0.8" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="226.06" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1108.0" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1110.99" y="735.5" ></text>
+</g>
+<g >
+<title>filename_parentat (10,101,010 samples, 0.06%)</title><rect x="79.0" y="885" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="81.96" y="895.5" ></text>
+</g>
+<g >
+<title>blk_mq_get_tag (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="373" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1034.96" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="667.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="670.73" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="871.1" y="725" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="874.06" y="735.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (101,010,100 samples, 0.64%)</title><rect x="855.2" y="709" width="8.8" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="858.15" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="718.1" y="613" width="2.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="721.12" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="11.8" y="613" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="14.77" y="623.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="430.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="433.81" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="975.4" y="437" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="978.38" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1050.5" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1053.53" y="607.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1083.58" y="623.5" ></text>
+</g>
+<g >
+<title>getdents64 (90,909,090 samples, 0.58%)</title><rect x="248.7" y="757" width="7.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="251.69" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="788.8" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="791.85" y="607.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="720.8" y="597" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="723.78" y="607.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="768.5" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="771.51" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (20,202,020 samples, 0.13%)</title><rect x="1347.6" y="693" width="1.7" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1350.57" y="703.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="158.5" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="161.52" y="831.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (20,202,020 samples, 0.13%)</title><rect x="988.6" y="773" width="1.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="991.64" y="783.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="628.8" y="581" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="631.83" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="506.0" y="693" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="508.95" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="178.0" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="180.97" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="1034.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1037.61" y="623.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="695.1" y="373" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="698.14" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="429.9" y="709" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="432.92" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="597" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1039.38" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1136.3" y="485" width="1.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1139.28" y="495.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="925.9" y="645" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="928.87" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="184.2" y="661" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="187.16" y="671.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (161,616,160 samples, 1.02%)</title><rect x="1091.2" y="677" width="14.1" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1094.19" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (141,414,140 samples, 0.90%)</title><rect x="79.8" y="901" width="12.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="82.84" y="911.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="667.7" y="661" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="670.73" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="990.4" y="549" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="993.41" y="559.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="717.2" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="720.24" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="1350.2" y="565" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1353.22" y="575.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1075.63" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="389" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1137.51" y="399.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="506.0" y="645" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="508.95" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="643.9" y="757" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="646.86" y="767.5" ></text>
+</g>
+<g >
+<title>libjson_send (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="933" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1379.74" y="943.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (70,707,070 samples, 0.45%)</title><rect x="44.5" y="485" width="6.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="47.48" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1333.4" y="853" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1336.42" y="863.5" ></text>
+</g>
+<g >
+<title>__x86_indirect_thunk_rax (10,101,010 samples, 0.06%)</title><rect x="1121.2" y="677" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1124.25" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="583.7" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="586.75" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1266.2" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1269.23" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (50,505,050 samples, 0.32%)</title><rect x="744.6" y="597" width="4.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="747.64" y="607.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="893.2" y="597" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="896.16" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (70,707,070 samples, 0.45%)</title><rect x="485.6" y="693" width="6.2" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="488.62" y="703.5" ></text>
+</g>
+<g >
+<title>__pagevec_release (10,101,010 samples, 0.06%)</title><rect x="232.8" y="565" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="235.78" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="208.9" y="421" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="211.91" y="431.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (60,606,060 samples, 0.38%)</title><rect x="399.0" y="661" width="5.3" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="401.98" y="671.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.06%)</title><rect x="666.8" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="669.85" y="575.5" ></text>
+</g>
+<g >
+<title>git_refdb_new (10,101,010 samples, 0.06%)</title><rect x="765.0" y="725" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="767.98" y="735.5" ></text>
+</g>
+<g >
+<title>folio_memcg_lock.part.0 (10,101,010 samples, 0.06%)</title><rect x="158.5" y="597" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="161.52" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="799.5" y="613" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="802.46" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="250.5" y="613" width="0.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="253.46" y="623.5" ></text>
+</g>
+<g >
+<title>hook_file_open (10,101,010 samples, 0.06%)</title><rect x="904.7" y="501" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="907.66" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1057.95" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.13%)</title><rect x="1042.6" y="581" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1045.57" y="591.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="1085.0" y="517" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1088.00" y="527.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="293" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1137.51" y="303.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1052.3" y="565" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1055.29" y="575.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="1009.0" y="565" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1011.98" y="575.5" ></text>
+</g>
+<g >
+<title>security_path_unlink (10,101,010 samples, 0.06%)</title><rect x="549.3" y="741" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="552.27" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="551.9" y="837" width="7.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.92" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="986.9" y="581" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="989.87" y="591.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="635.0" y="629" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="638.02" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1245.0" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1248.02" y="767.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="258.4" y="629" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="261.42" y="639.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="341" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1039.38" y="351.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="754.4" y="709" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="757.37" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="532.5" y="725" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="535.47" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="868.4" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="871.41" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="856.0" y="453" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="859.03" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="871.9" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="874.95" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="826.0" y="629" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="828.98" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="791.5" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="794.50" y="671.5" ></text>
+</g>
+<g >
+<title>queued_read_lock_slowpath (10,101,010 samples, 0.06%)</title><rect x="550.2" y="629" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="553.15" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="595.2" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="598.24" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1056.7" y="677" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1059.71" y="687.5" ></text>
+</g>
+<g >
+<title>do_linkat (171,717,170 samples, 1.09%)</title><rect x="617.3" y="709" width="15.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="620.34" y="719.5" ></text>
+</g>
+<g >
+<title>lstat64 (10,101,010 samples, 0.06%)</title><rect x="1139.8" y="821" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1142.81" y="831.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="1112.4" y="741" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1115.41" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="726.1" y="597" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="729.08" y="607.5" ></text>
+</g>
+<g >
+<title>__fput (30,303,030 samples, 0.19%)</title><rect x="241.6" y="645" width="2.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="244.62" y="655.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="693" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1057.95" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="894.9" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="897.93" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="371.6" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="374.58" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="1191.1" y="805" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1194.09" y="815.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.19%)</title><rect x="718.1" y="709" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="721.12" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="861.3" y="405" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="864.34" y="415.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="419.3" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="422.31" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="816.3" y="613" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="819.25" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="1092.1" y="533" width="2.6" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1095.08" y="543.5" ></text>
+</g>
+<g >
+<title>sock_put (10,101,010 samples, 0.06%)</title><rect x="44.5" y="245" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="47.48" y="255.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="381.3" y="661" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="384.30" y="671.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="422.9" y="549" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="425.85" y="559.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="170.0" y="917" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="173.01" y="927.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="783.5" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="786.54" y="575.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="226.6" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="229.59" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="253.1" y="613" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="256.11" y="623.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="751.7" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="754.72" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1368.25" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (212,121,210 samples, 1.35%)</title><rect x="360.1" y="725" width="18.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="363.08" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1238.8" y="597" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1241.83" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1108.0" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1110.99" y="719.5" ></text>
+</g>
+<g >
+<title>do_writepages (90,909,090 samples, 0.58%)</title><rect x="806.5" y="549" width="8.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="809.53" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="796.8" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="799.80" y="623.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="102.8" y="853" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="105.83" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (30,303,030 samples, 0.19%)</title><rect x="647.4" y="693" width="2.7" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="650.40" y="703.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="922.3" y="629" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="925.34" y="639.5" ></text>
+</g>
+<g >
+<title>bio_associate_blkg_from_css (10,101,010 samples, 0.06%)</title><rect x="696.9" y="421" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="699.91" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="18.0" y="837" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="20.96" y="847.5" ></text>
+</g>
+<g >
+<title>__close (30,303,030 samples, 0.19%)</title><rect x="1011.6" y="805" width="2.7" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1014.63" y="815.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.13%)</title><rect x="691.6" y="501" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="694.60" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="531.6" y="805" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="534.59" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="873.7" y="533" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="876.72" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1197.3" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1200.28" y="815.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="784.4" y="629" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="787.43" y="639.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.06%)</title><rect x="1352.9" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1355.87" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="1007.2" y="725" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1010.21" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="703.1" y="709" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="706.09" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="158.5" y="693" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="161.52" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="186.8" y="501" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="189.81" y="511.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1208.23" y="655.5" ></text>
+</g>
+<g >
+<title>readdir64 (90,909,090 samples, 0.58%)</title><rect x="248.7" y="773" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="251.69" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="1123.9" y="565" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1126.90" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="852.5" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="855.50" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (60,606,060 samples, 0.38%)</title><rect x="515.7" y="629" width="5.3" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="518.68" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="798.6" y="565" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="801.57" y="575.5" ></text>
+</g>
+<g >
+<title>gettid (10,101,010 samples, 0.06%)</title><rect x="17.1" y="949" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="20.07" y="959.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="293" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1100.38" y="303.5" ></text>
+</g>
+<g >
+<title>dentry_kill (40,404,040 samples, 0.26%)</title><rect x="1027.5" y="645" width="3.6" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1030.54" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="436.1" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="439.11" y="815.5" ></text>
+</g>
+<g >
+<title>inet_hash_connect (10,101,010 samples, 0.06%)</title><rect x="1360.8" y="789" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1363.83" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="796.8" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="799.80" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (70,707,070 samples, 0.45%)</title><rect x="676.6" y="533" width="6.2" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="679.57" y="543.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (121,212,120 samples, 0.77%)</title><rect x="1122.1" y="645" width="10.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1125.13" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="678.3" y="453" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="681.34" y="463.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="120.5" y="725" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="123.51" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1083.58" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="858.7" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="861.69" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="757.0" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="760.02" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1035.5" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1038.50" y="623.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="10.0" y="853" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="13.00" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="805" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1346.15" y="815.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (20,202,020 samples, 0.13%)</title><rect x="1329.9" y="821" width="1.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1332.88" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="869" width="4.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1383.28" y="879.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="430.8" y="517" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="433.81" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="1037.3" y="757" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1040.26" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="700.4" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="703.44" y="559.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="661" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1253.32" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="728.7" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="731.73" y="703.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="89.6" y="789" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="92.56" y="799.5" ></text>
+</g>
+<g >
+<title>do_softirq (70,707,070 samples, 0.45%)</title><rect x="44.5" y="437" width="6.2" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="47.48" y="447.5" ></text>
+</g>
+<g >
+<title>revert_creds (10,101,010 samples, 0.06%)</title><rect x="925.0" y="645" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="927.99" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="216.9" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="219.87" y="479.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (212,121,210 samples, 1.35%)</title><rect x="1121.2" y="693" width="18.6" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1124.25" y="703.5" ></text>
+</g>
+<g >
+<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="229" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1104.80" y="239.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="989.5" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="992.53" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="891.4" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="894.40" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.83%)</title><rect x="332.7" y="725" width="11.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="335.68" y="735.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1238.8" y="485" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1241.83" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.15%)</title><rect x="865.8" y="821" width="15.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.76" y="831.5" ></text>
+</g>
+<g >
+<title>__dput_to_list (10,101,010 samples, 0.06%)</title><rect x="377.8" y="645" width="0.8" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="380.76" y="655.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (40,404,040 samples, 0.26%)</title><rect x="712.8" y="645" width="3.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="715.82" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (20,202,020 samples, 0.13%)</title><rect x="85.1" y="773" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="88.14" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="171.8" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="174.78" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (90,909,090 samples, 0.58%)</title><rect x="584.6" y="645" width="8.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="587.63" y="655.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="448.5" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="451.49" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.13%)</title><rect x="669.5" y="709" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="672.50" y="719.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.19%)</title><rect x="827.7" y="741" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="830.75" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="131.1" y="773" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="134.11" y="783.5" ></text>
+</g>
+<g >
+<title>do_writepages (40,404,040 samples, 0.26%)</title><rect x="859.6" y="581" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="862.57" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="362.7" y="661" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="365.74" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="563.4" y="869" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="566.41" y="879.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (10,101,010 samples, 0.06%)</title><rect x="13.5" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="16.54" y="559.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (10,101,010 samples, 0.06%)</title><rect x="728.7" y="741" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="731.73" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="723.4" y="709" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="726.43" y="719.5" ></text>
+</g>
+<g >
+<title>rename (90,909,090 samples, 0.58%)</title><rect x="872.8" y="773" width="8.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="875.83" y="783.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.06%)</title><rect x="788.8" y="485" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="791.85" y="495.5" ></text>
+</g>
+<g >
+<title>sg_pool_free (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="661" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1274.54" y="671.5" ></text>
+</g>
+<g >
+<title>do_linkat (30,303,030 samples, 0.19%)</title><rect x="985.1" y="677" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="988.11" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="977.1" y="501" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="980.15" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (131,313,130 samples, 0.83%)</title><rect x="1275.1" y="773" width="11.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1278.07" y="783.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="719.0" y="581" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="722.01" y="591.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="309" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1360.29" y="319.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1253.9" y="661" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1256.86" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (121,212,120 samples, 0.77%)</title><rect x="1146.9" y="709" width="10.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1149.89" y="719.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1000.1" y="853" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1003.13" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="893.2" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="896.16" y="719.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="613" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1247.13" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1222.0" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1225.03" y="703.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (131,313,130 samples, 0.83%)</title><rect x="1025.8" y="677" width="11.5" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1028.77" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="978.0" y="613" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="981.03" y="623.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1364.71" y="591.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="709" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1057.95" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="184.2" y="437" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="187.16" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (393,939,390 samples, 2.50%)</title><rect x="753.5" y="805" width="34.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="756.48" y="815.5" >[l..</text>
+</g>
+<g >
+<title>__x64_sys_faccessat2 (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="725" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1057.95" y="735.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="820.7" y="677" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="823.67" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.38%)</title><rect x="463.5" y="645" width="5.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="466.52" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.26%)</title><rect x="876.4" y="549" width="3.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="879.37" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="757.0" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="760.02" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="336.2" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="339.21" y="607.5" ></text>
+</g>
+<g >
+<title>git_odb_read (50,505,050 samples, 0.32%)</title><rect x="704.9" y="821" width="4.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="707.86" y="831.5" ></text>
+</g>
+<g >
+<title>filemap_flush (30,303,030 samples, 0.19%)</title><rect x="1032.0" y="597" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1034.96" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="997.5" y="661" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1000.48" y="671.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="458.2" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="461.21" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="673.0" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="676.04" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.83%)</title><rect x="460.9" y="789" width="11.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="463.86" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="807.4" y="501" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="810.41" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="642.1" y="677" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="645.09" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="957.7" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="960.70" y="559.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="361.0" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="363.97" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="869.3" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="872.30" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1250.3" y="405" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1253.32" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1198.2" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1201.16" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="236.3" y="549" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="239.32" y="559.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="581" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1379.74" y="591.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="1214.1" y="645" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1217.07" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_close (141,414,140 samples, 0.90%)</title><rect x="42.7" y="661" width="12.4" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="45.71" y="671.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="166.5" y="773" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="169.48" y="783.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="441.4" y="805" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="444.42" y="815.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="950.6" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="953.63" y="559.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="908.2" y="629" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="911.19" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="749.9" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="752.95" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.77%)</title><rect x="1216.7" y="789" width="10.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1219.73" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="873.7" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="876.72" y="527.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.26%)</title><rect x="501.5" y="789" width="3.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="504.53" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="891.4" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="894.40" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="922.3" y="693" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="925.34" y="703.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="1021.4" y="469" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1024.35" y="479.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.06%)</title><rect x="978.0" y="533" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="981.03" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (131,313,130 samples, 0.83%)</title><rect x="230.1" y="677" width="11.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="233.13" y="687.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="727.8" y="597" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="730.85" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (30,303,030 samples, 0.19%)</title><rect x="647.4" y="661" width="2.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="650.40" y="671.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="930.3" y="677" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="933.29" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="820.7" y="661" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="823.67" y="671.5" ></text>
+</g>
+<g >
+<title>__sys_connect (90,909,090 samples, 0.58%)</title><rect x="1356.4" y="869" width="8.0" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1359.41" y="879.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (20,202,020 samples, 0.13%)</title><rect x="733.2" y="677" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="736.15" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="677" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1195.86" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="470.6" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="473.59" y="591.5" ></text>
+</g>
+<g >
+<title>end_page_writeback (10,101,010 samples, 0.06%)</title><rect x="430.8" y="405" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="433.81" y="415.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (30,303,030 samples, 0.19%)</title><rect x="401.6" y="629" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="404.63" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1009.0" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1011.98" y="639.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="140.0" y="741" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="142.96" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="811.8" y="453" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="814.83" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="375.1" y="613" width="2.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="378.11" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="214.2" y="549" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="217.22" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="845.4" y="757" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="848.43" y="767.5" ></text>
+</g>
+<g >
+<title>git_remote_free (20,202,020 samples, 0.13%)</title><rect x="1000.1" y="869" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1003.13" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="204.5" y="565" width="1.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="207.49" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="368.9" y="645" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="371.92" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1001.9" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1004.90" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (70,707,070 samples, 0.45%)</title><rect x="212.4" y="581" width="6.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="215.45" y="591.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="757.0" y="533" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="760.02" y="543.5" ></text>
+</g>
+<g >
+<title>faccessat (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="773" width="0.9" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1057.95" y="783.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (60,606,060 samples, 0.38%)</title><rect x="33.9" y="773" width="5.3" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="36.87" y="783.5" ></text>
+</g>
+<g >
+<title>request_parse_start_run (10,101,010 samples, 0.06%)</title><rect x="1370.6" y="869" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1373.55" y="879.5" ></text>
+</g>
+<g >
+<title>__anon_inode_getfile (10,101,010 samples, 0.06%)</title><rect x="59.5" y="789" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="62.51" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.06%)</title><rect x="1039.0" y="693" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1042.03" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="831.3" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="834.28" y="751.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.06%)</title><rect x="807.4" y="437" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="810.41" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="693" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1087.12" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="757.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="760.91" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="1059.4" y="773" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1062.37" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="754.4" y="581" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="757.37" y="591.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="229.2" y="581" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="232.24" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="408.7" y="645" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="411.71" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="893.2" y="485" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="896.16" y="495.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="229" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1385.93" y="239.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="834.8" y="789" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="837.82" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="735.8" y="565" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="738.80" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="910.0" y="565" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="912.96" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.06%)</title><rect x="185.9" y="469" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="188.93" y="479.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1053.2" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1056.18" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="709" width="1.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1387.70" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1243.2" y="517" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1246.25" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="307.0" y="453" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="310.04" y="463.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="870.2" y="661" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="873.18" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="194.8" y="549" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="197.77" y="559.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="711.1" y="597" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="714.05" y="607.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="709" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1279.84" y="719.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="221.3" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="224.29" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="11.8" y="869" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="14.77" y="879.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="480.3" y="581" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="483.31" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="430.8" y="485" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="433.81" y="495.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="1108.9" y="597" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1111.87" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="814.5" y="693" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="817.48" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1057.95" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="912.6" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="915.61" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (20,202,020 samples, 0.13%)</title><rect x="334.4" y="613" width="1.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="337.45" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="434.3" y="677" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="437.34" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_current_mss (10,101,010 samples, 0.06%)</title><rect x="52.4" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="55.43" y="623.5" ></text>
+</g>
+<g >
+<title>current_time (10,101,010 samples, 0.06%)</title><rect x="414.9" y="725" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="417.89" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="555.5" y="661" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="558.46" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.83%)</title><rect x="332.7" y="741" width="11.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="335.68" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="985.1" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="988.11" y="735.5" ></text>
+</g>
+<g >
+<title>grab_cache_page_write_begin (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="613" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1011.09" y="623.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (313,131,310 samples, 1.99%)</title><rect x="580.2" y="693" width="27.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="583.21" y="703.5" >d..</text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="482.1" y="661" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="485.08" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="253.1" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="256.11" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="728.7" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="731.73" y="527.5" ></text>
+</g>
+<g >
+<title>new_slab (10,101,010 samples, 0.06%)</title><rect x="903.8" y="501" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="906.77" y="511.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="18.8" y="933" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="21.84" y="943.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="341" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1137.51" y="351.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1247.7" y="757" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1250.67" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (30,303,030 samples, 0.19%)</title><rect x="997.5" y="693" width="2.6" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1000.48" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1059.4" y="549" width="0.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1062.37" y="559.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (30,303,030 samples, 0.19%)</title><rect x="856.0" y="645" width="2.7" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="859.03" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="330.9" y="661" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="333.91" y="671.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="309.7" y="245" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="312.69" y="255.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (20,202,020 samples, 0.13%)</title><rect x="497.1" y="677" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="500.11" y="687.5" ></text>
+</g>
+<g >
+<title>readlink (10,101,010 samples, 0.06%)</title><rect x="771.2" y="709" width="0.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="774.17" y="719.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.13%)</title><rect x="691.6" y="517" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="694.60" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="449.4" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="452.37" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="369.8" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="372.81" y="623.5" ></text>
+</g>
+<g >
+<title>proc_fork_connector (10,101,010 samples, 0.06%)</title><rect x="30.3" y="933" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="33.33" y="943.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="194.8" y="565" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="197.77" y="575.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1266.2" y="645" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1269.23" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1205.2" y="693" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1208.23" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (90,909,090 samples, 0.58%)</title><rect x="286.7" y="597" width="8.0" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="289.71" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="916.1" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="919.15" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1306.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1309.02" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="559.9" y="693" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="562.88" y="703.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="829.5" y="469" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="832.51" y="479.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="277" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1039.38" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1164.6" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1167.57" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="753.5" y="741" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="756.48" y="751.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1376.7" y="549" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1379.74" y="559.5" ></text>
+</g>
+<g >
+<title>pthread_cond_wait (50,505,050 samples, 0.32%)</title><rect x="19.7" y="965" width="4.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="22.72" y="975.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="1268.9" y="677" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1271.89" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.38%)</title><rect x="1133.6" y="581" width="5.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1136.63" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="208.9" y="309" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="211.91" y="319.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="470.6" y="661" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="473.59" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1222.0" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1225.03" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="498.9" y="741" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="501.88" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="526.3" y="693" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="529.28" y="703.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="919.7" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="922.69" y="591.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="64.8" y="885" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="67.81" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="530.7" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="533.70" y="847.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="210.7" y="581" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="213.68" y="591.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="1059.4" y="725" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1062.37" y="735.5" ></text>
+</g>
+<g >
+<title>release_sock (50,505,050 samples, 0.32%)</title><rect x="1356.4" y="789" width="4.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1359.41" y="799.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (70,707,070 samples, 0.45%)</title><rect x="44.5" y="341" width="6.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="47.48" y="351.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="987.8" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="990.76" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="213" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1385.93" y="223.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (323,232,320 samples, 2.05%)</title><rect x="445.8" y="853" width="28.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.84" y="863.5" >[..</text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="640.3" y="709" width="3.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="643.33" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1144.2" y="629" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1147.23" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="145.3" y="821" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="148.26" y="831.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="18.8" y="629" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="21.84" y="639.5" ></text>
+</g>
+<g >
+<title>kernel_clone (80,808,080 samples, 0.51%)</title><rect x="24.1" y="965" width="7.1" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="27.14" y="975.5" ></text>
+</g>
+<g >
+<title>events_to_string (10,101,010 samples, 0.06%)</title><rect x="57.7" y="917" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="60.74" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (40,404,040 samples, 0.26%)</title><rect x="289.4" y="549" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="292.36" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_cancel_revoke (10,101,010 samples, 0.06%)</title><rect x="1161.0" y="629" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1164.03" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="203.6" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="206.61" y="623.5" ></text>
+</g>
+<g >
+<title>__release_sock (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="773" width="3.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1359.41" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1137.2" y="309" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1140.16" y="319.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="749.9" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="752.95" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="655.4" y="629" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="658.36" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="954.2" y="549" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="957.16" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="434.3" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="437.34" y="639.5" ></text>
+</g>
+<g >
+<title>ima_file_free (10,101,010 samples, 0.06%)</title><rect x="851.6" y="645" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="854.61" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.06%)</title><rect x="1020.5" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1023.47" y="575.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.19%)</title><rect x="528.1" y="709" width="2.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="531.05" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1072.6" y="549" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1075.63" y="559.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="737.6" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="740.57" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="527.2" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="530.17" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1053.2" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1056.18" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="675.7" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="678.69" y="543.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="910.0" y="485" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="912.96" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="629" width="3.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1087.12" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1199.0" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1202.05" y="703.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="415.8" y="757" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="418.78" y="767.5" ></text>
+</g>
+<g >
+<title>main (13,929,292,790 samples, 88.34%)</title><rect x="170.9" y="997" width="1219.1" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="173.90" y="1007.5" >main</text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="744.6" y="677" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="747.64" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="910.0" y="645" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="912.96" y="655.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="613" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1279.84" y="623.5" ></text>
+</g>
+<g >
+<title>git_repository_is_empty (313,131,310 samples, 1.99%)</title><rect x="1216.7" y="869" width="27.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1219.73" y="879.5" >g..</text>
+</g>
+<g >
+<title>git_reference_foreach_name (222,222,220 samples, 1.41%)</title><rect x="893.2" y="805" width="19.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="896.16" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="184.2" y="485" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="187.16" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1037.3" y="789" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1040.26" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="465.3" y="565" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="468.29" y="575.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="364.5" y="645" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="367.50" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="718.1" y="645" width="2.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="721.12" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="84.3" y="773" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="87.26" y="783.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.13%)</title><rect x="860.5" y="533" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="863.45" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="759.7" y="581" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="762.67" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1049.6" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1052.64" y="623.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_blob (80,808,080 samples, 0.51%)</title><rect x="515.7" y="837" width="7.0" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="518.68" y="847.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="574.0" y="677" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="577.02" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (50,505,050 samples, 0.32%)</title><rect x="71.0" y="725" width="4.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="74.00" y="735.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1086.24" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="449.4" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="452.37" y="735.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.06%)</title><rect x="1018.7" y="693" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1021.70" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="620.9" y="629" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="623.88" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (20,202,020 samples, 0.13%)</title><rect x="553.7" y="645" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="556.69" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (474,747,470 samples, 3.01%)</title><rect x="1140.7" y="805" width="41.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1143.70" y="815.5" >ent..</text>
+</g>
+<g >
+<title>locks_remove_posix (10,101,010 samples, 0.06%)</title><rect x="901.1" y="597" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="904.12" y="607.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="18.8" y="533" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="21.84" y="543.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.06%)</title><rect x="908.2" y="709" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="911.19" y="719.5" ></text>
+</g>
+<g >
+<title>sock_close (20,202,020 samples, 0.13%)</title><rect x="1353.8" y="773" width="1.7" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1356.75" y="783.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="792.4" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="795.38" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1089.4" y="677" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1092.42" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.45%)</title><rect x="1064.7" y="789" width="6.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1067.67" y="799.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1169.9" y="485" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1172.87" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="649.2" y="629" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="652.17" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1205.2" y="773" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1208.23" y="783.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="526.3" y="661" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="529.28" y="671.5" ></text>
+</g>
+<g >
+<title>do_faccessat (60,606,060 samples, 0.38%)</title><rect x="1264.5" y="709" width="5.3" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1267.47" y="719.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (30,303,030 samples, 0.19%)</title><rect x="317.6" y="677" width="2.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="320.65" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (80,808,080 samples, 0.51%)</title><rect x="609.4" y="693" width="7.1" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="612.39" y="703.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="1276.8" y="645" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1279.84" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="450.3" y="661" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="453.26" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="61.3" y="869" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="64.27" y="879.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="224.8" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="227.82" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="628.0" y="629" width="0.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="630.95" y="639.5" ></text>
+</g>
+<g >
+<title>git_odb_backend_pack (30,303,030 samples, 0.19%)</title><rect x="930.3" y="805" width="2.6" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="933.29" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="902.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="905.89" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="950.6" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="953.63" y="575.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="858.7" y="533" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="861.69" y="543.5" ></text>
+</g>
+<g >
+<title>____fput (40,404,040 samples, 0.26%)</title><rect x="241.6" y="661" width="3.6" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="244.62" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1114.2" y="693" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1117.18" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="593.5" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="596.47" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="551.0" y="613" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="554.04" y="623.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="456.4" y="629" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="459.44" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1340.5" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1343.49" y="703.5" ></text>
+</g>
+<g >
+<title>current_umask (10,101,010 samples, 0.06%)</title><rect x="712.8" y="565" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="715.82" y="575.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.06%)</title><rect x="614.7" y="613" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="617.69" y="623.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="522.7" y="565" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="525.75" y="575.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="946.2" y="597" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="949.21" y="607.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="932.9" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="935.95" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="437" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1209.12" y="447.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="945.3" y="709" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="948.32" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="501" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1209.12" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="840.1" y="869" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="843.12" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="626.2" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="629.18" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="246.9" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="249.93" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="64.8" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="67.81" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="993.9" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="996.95" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="216.0" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="218.98" y="479.5" ></text>
+</g>
+<g >
+<title>__do_softirq (70,707,070 samples, 0.45%)</title><rect x="44.5" y="421" width="6.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="47.48" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="549" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1112.76" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_rearm_rto (10,101,010 samples, 0.06%)</title><rect x="1377.6" y="661" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1380.62" y="671.5" ></text>
+</g>
+<g >
+<title>copy_process (30,303,030 samples, 0.19%)</title><rect x="28.6" y="949" width="2.6" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="31.57" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1368.8" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1371.78" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="1255.6" y="741" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1258.62" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="497.1" y="757" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="500.11" y="767.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1226.5" y="693" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1229.45" y="703.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="450.3" y="613" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="453.26" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="990.4" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="993.41" y="671.5" ></text>
+</g>
+<g >
+<title>libjson_from_string (20,202,020 samples, 0.13%)</title><rect x="1371.4" y="869" width="1.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1374.43" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1191.1" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1194.09" y="719.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="925.0" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="927.99" y="543.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.06%)</title><rect x="16.2" y="789" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="19.19" y="799.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.06%)</title><rect x="784.4" y="597" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="787.43" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_reserved_space (10,101,010 samples, 0.06%)</title><rect x="719.0" y="485" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="722.01" y="495.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (60,606,060 samples, 0.38%)</title><rect x="399.0" y="645" width="5.3" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="401.98" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1301.94" y="591.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="830.4" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="833.40" y="607.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1017.8" y="661" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1020.82" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="681.0" y="389" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="683.99" y="399.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="207.1" y="597" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="210.14" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="778.2" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="781.24" y="735.5" ></text>
+</g>
+<g >
+<title>open64 (90,909,090 samples, 0.58%)</title><rect x="507.7" y="821" width="8.0" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="510.72" y="831.5" ></text>
+</g>
+<g >
+<title>handle_dots (10,101,010 samples, 0.06%)</title><rect x="247.8" y="613" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="250.81" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_dx_find_entry (20,202,020 samples, 0.13%)</title><rect x="1273.3" y="709" width="1.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1276.31" y="719.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1102.7" y="453" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1105.68" y="463.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="629" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1195.86" y="639.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="1138.0" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1141.05" y="511.5" ></text>
+</g>
+<g >
+<title>__next_zones_zonelist (10,101,010 samples, 0.06%)</title><rect x="1085.0" y="453" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1088.00" y="463.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="309.7" y="165" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="312.69" y="175.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="341" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1034.96" y="351.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="711.9" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="714.93" y="623.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="380.4" y="725" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="383.42" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="688.9" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="691.95" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="1021.4" y="485" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1024.35" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="380.4" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="383.42" y="815.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="223.9" y="629" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="226.94" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1327.58" y="655.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="309" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1039.38" y="319.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.38%)</title><rect x="551.9" y="789" width="5.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.92" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="1242.4" y="581" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1245.36" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="388.4" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="391.37" y="623.5" ></text>
+</g>
+<g >
+<title>worker_destroy (10,101,010 samples, 0.06%)</title><rect x="18.8" y="981" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="21.84" y="991.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="71.0" y="821" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="74.00" y="831.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1080.6" y="629" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1083.58" y="639.5" ></text>
+</g>
+<g >
+<title>wp_page_reuse (10,101,010 samples, 0.06%)</title><rect x="170.9" y="805" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="173.90" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="551.0" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="554.04" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (80,808,080 samples, 0.51%)</title><rect x="515.7" y="677" width="7.0" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="518.68" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="873.7" y="389" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="876.72" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="819.8" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="822.79" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="910.0" y="469" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="912.96" y="479.5" ></text>
+</g>
+<g >
+<title>call_filldir (20,202,020 samples, 0.13%)</title><rect x="703.1" y="693" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="706.09" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_get_string_buf (40,404,040 samples, 0.26%)</title><rect x="948.0" y="805" width="3.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="950.98" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="679.2" y="405" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="682.22" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.51%)</title><rect x="24.1" y="1029" width="7.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="27.14" y="1039.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="232.8" y="581" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="235.78" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="550.2" y="645" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="553.15" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1054.9" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1057.95" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="450.3" y="693" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="453.26" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="784.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="787.43" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="978.9" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="981.92" y="703.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.06%)</title><rect x="18.8" y="405" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="21.84" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 1.02%)</title><rect x="40.9" y="853" width="14.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="43.94" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="930.3" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="933.29" y="575.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.06%)</title><rect x="1232.6" y="709" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1235.64" y="719.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="189.5" y="677" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="192.46" y="687.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="1077.9" y="629" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1080.93" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="605.0" y="613" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="607.96" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="543.1" y="805" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="546.08" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (30,303,030 samples, 0.19%)</title><rect x="396.3" y="597" width="2.7" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="399.33" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (20,202,020 samples, 0.13%)</title><rect x="1044.3" y="581" width="1.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1047.34" y="591.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="1297.2" y="693" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1300.17" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="867.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="870.53" y="703.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="791.5" y="693" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="794.50" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="559.9" y="773" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="562.88" y="783.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.06%)</title><rect x="68.3" y="917" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="71.35" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="597.0" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="600.01" y="575.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="277" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1137.51" y="287.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.06%)</title><rect x="1361.7" y="565" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1364.71" y="575.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (30,303,030 samples, 0.19%)</title><rect x="139.1" y="773" width="2.6" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="142.07" y="783.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.06%)</title><rect x="815.4" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="818.37" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="1279.5" y="709" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="1282.49" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="773.8" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="776.82" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="650.1" y="677" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="653.05" y="687.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.19%)</title><rect x="837.5" y="805" width="2.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="840.47" y="815.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="806.5" y="469" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="809.53" y="479.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.06%)</title><rect x="1032.0" y="421" width="0.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1034.96" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="63.9" y="869" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="66.93" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="216.0" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="218.98" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (20,202,020 samples, 0.13%)</title><rect x="344.2" y="661" width="1.7" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="347.17" y="671.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="826.9" y="533" width="0.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="829.86" y="543.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="566.1" y="645" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="569.07" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="205.4" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="208.37" y="559.5" ></text>
+</g>
+<g >
+<title>do_faccessat (50,505,050 samples, 0.32%)</title><rect x="1212.3" y="677" width="4.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1215.31" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="1207.9" y="741" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1210.89" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="861.3" y="453" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="864.34" y="463.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (90,909,090 samples, 0.58%)</title><rect x="650.1" y="741" width="7.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="653.05" y="751.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="318.5" y="613" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="321.53" y="623.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="692.5" y="325" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="695.49" y="335.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1230.9" y="725" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1233.87" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="459.1" y="597" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="462.10" y="607.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1228.2" y="565" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1231.22" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="325" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1385.93" y="335.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1244.1" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1247.13" y="719.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="626.2" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="629.18" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="149.7" y="901" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="152.68" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (111,111,110 samples, 0.70%)</title><rect x="804.8" y="645" width="9.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="807.76" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="771.2" y="613" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="774.17" y="623.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="60.4" y="789" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="63.39" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="673.9" y="565" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="676.92" y="575.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1253.9" y="629" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1256.86" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="988.6" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="991.64" y="735.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (10,101,010 samples, 0.06%)</title><rect x="902.0" y="597" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="905.01" y="607.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="384.8" y="693" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="387.84" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (50,505,050 samples, 0.32%)</title><rect x="451.1" y="693" width="4.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="454.14" y="703.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="914.4" y="645" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="917.38" y="655.5" ></text>
+</g>
+<g >
+<title>lh_table_free (10,101,010 samples, 0.06%)</title><rect x="10.9" y="901" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="13.88" y="911.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="1123.0" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1126.02" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1037.3" y="773" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1040.26" y="783.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.13%)</title><rect x="11.8" y="421" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="14.77" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (20,202,020 samples, 0.13%)</title><rect x="601.4" y="517" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="604.43" y="527.5" ></text>
+</g>
+<g >
+<title>__schedule (40,404,040 samples, 0.26%)</title><rect x="20.6" y="821" width="3.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="23.61" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="185.9" y="501" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="188.93" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="635.0" y="645" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="638.02" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1301.6" y="677" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1304.60" y="687.5" ></text>
+</g>
+<g >
+<title>create_pipe_files (10,101,010 samples, 0.06%)</title><rect x="1336.1" y="805" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1339.07" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1246.8" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1249.78" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="754.4" y="533" width="2.6" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="757.37" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="549.3" y="805" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="552.27" y="815.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="414.9" y="741" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="417.89" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="1147.8" y="677" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1150.77" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (30,303,030 samples, 0.19%)</title><rect x="546.6" y="773" width="2.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="549.62" y="783.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.06%)</title><rect x="894.0" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="897.05" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1036.4" y="453" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1039.38" y="463.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="339.8" y="597" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="342.75" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1382.9" y="405" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1385.93" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (60,606,060 samples, 0.38%)</title><rect x="1040.8" y="693" width="5.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1043.80" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="665.1" y="533" width="1.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="668.08" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="432.6" y="693" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="435.58" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="405" width="1.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1360.29" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="789" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1368.25" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="718.1" y="661" width="2.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="721.12" y="671.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="400.7" y="597" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="403.75" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="723.4" y="693" width="5.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="726.43" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_rename (60,606,060 samples, 0.38%)</title><rect x="875.5" y="693" width="5.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="878.48" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="661" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1026.12" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1090.3" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1093.31" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="733.2" y="757" width="6.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.15" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1160.1" y="645" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1163.15" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="805.6" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="808.64" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (60,606,060 samples, 0.38%)</title><rect x="723.4" y="661" width="5.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="726.43" y="671.5" ></text>
+</g>
+<g >
+<title>__alloc_file (10,101,010 samples, 0.06%)</title><rect x="850.7" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="853.73" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="350.4" y="629" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="353.36" y="639.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="805" width="6.2" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1349.68" y="815.5" ></text>
+</g>
+<g >
+<title>kernel_clone (474,747,470 samples, 3.01%)</title><rect x="1288.3" y="789" width="41.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1291.33" y="799.5" >ker..</text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="341" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1026.12" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="1283.9" y="709" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1286.91" y="719.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1251.2" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1254.20" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="178.9" y="677" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="181.85" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="597" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1356.75" y="607.5" ></text>
+</g>
+<g >
+<title>net_send_buf (70,707,070 samples, 0.45%)</title><rect x="1346.7" y="917" width="6.2" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1349.68" y="927.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="936.5" y="677" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="939.48" y="687.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1009.0" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1011.98" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="785.3" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="788.31" y="767.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.06%)</title><rect x="1318.4" y="709" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="1321.39" y="719.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="996.6" y="677" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="999.60" y="687.5" ></text>
+</g>
+<g >
+<title>__get_free_pages (10,101,010 samples, 0.06%)</title><rect x="628.8" y="549" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="631.83" y="559.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="346.8" y="725" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="349.82" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (20,202,020 samples, 0.13%)</title><rect x="1051.4" y="597" width="1.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="1054.41" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="463.5" y="565" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="466.52" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="765.9" y="741" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="768.86" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="722.5" y="565" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="725.54" y="575.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.19%)</title><rect x="1382.0" y="501" width="2.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1385.04" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="932.9" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="935.95" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="1035.5" y="581" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1038.50" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="766.7" y="661" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="769.75" y="671.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.06%)</title><rect x="344.2" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="347.17" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bread (30,303,030 samples, 0.19%)</title><rect x="713.7" y="565" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="716.70" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="371.6" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="374.58" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="19.7" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="22.72" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="786.2" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="789.19" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="912.6" y="789" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="915.61" y="799.5" ></text>
+</g>
+<g >
+<title>allocate_slab (10,101,010 samples, 0.06%)</title><rect x="903.8" y="485" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="906.77" y="495.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="949.7" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="952.74" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="199.2" y="629" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="202.19" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (30,303,030 samples, 0.19%)</title><rect x="508.6" y="661" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="511.60" y="671.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="977.1" y="453" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="980.15" y="463.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="197" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1100.38" y="207.5" ></text>
+</g>
+<g >
+<title>vfs_link (10,101,010 samples, 0.06%)</title><rect x="833.0" y="693" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="836.05" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (10,101,010 samples, 0.06%)</title><rect x="1385.6" y="341" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1388.58" y="351.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.13%)</title><rect x="669.5" y="757" width="1.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="672.50" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="15.3" y="933" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="18.30" y="943.5" ></text>
+</g>
+<g >
+<title>unlink_cb (70,707,070 samples, 0.45%)</title><rect x="184.2" y="709" width="6.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="187.16" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (30,303,030 samples, 0.19%)</title><rect x="713.7" y="549" width="2.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="716.70" y="559.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="158.5" y="853" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="161.52" y="863.5" ></text>
+</g>
+<g >
+<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="245" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1137.51" y="255.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="1050.5" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1053.53" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="77.2" y="965" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="80.19" y="975.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1192.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1194.97" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (90,909,090 samples, 0.58%)</title><rect x="404.3" y="709" width="7.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="407.29" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="191.2" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="194.23" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="183.3" y="565" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="186.27" y="575.5" ></text>
+</g>
+<g >
+<title>mpage_release_unused_pages (10,101,010 samples, 0.06%)</title><rect x="862.2" y="533" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="865.22" y="543.5" ></text>
+</g>
+<g >
+<title>git_config_set_int64 (262,626,260 samples, 1.67%)</title><rect x="1082.4" y="821" width="22.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1085.35" y="831.5" >g..</text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.06%)</title><rect x="873.7" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="876.72" y="559.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="669.5" y="565" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="672.50" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="816.3" y="581" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="819.25" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="436.1" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="439.11" y="831.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (80,808,080 samples, 0.51%)</title><rect x="1047.9" y="693" width="7.0" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1050.87" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.26%)</title><rect x="1084.1" y="645" width="3.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1087.12" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1246.8" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1249.78" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="307.9" y="389" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="310.92" y="399.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="327.4" y="741" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="330.37" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1114.52" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="521.9" y="469" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="524.86" y="479.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="954.2" y="501" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="957.16" y="511.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="328.3" y="677" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="331.26" y="687.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="925.0" y="389" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="927.99" y="399.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="549" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1209.12" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.19%)</title><rect x="1092.1" y="549" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1095.08" y="559.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (121,212,120 samples, 0.77%)</title><rect x="1122.1" y="629" width="10.6" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1125.13" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="245" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1385.93" y="255.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.06%)</title><rect x="548.4" y="661" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="551.39" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="993.9" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="996.95" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="773.8" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.82" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (90,909,090 samples, 0.58%)</title><rect x="650.1" y="805" width="7.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="653.05" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="355.7" y="629" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="358.66" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="825.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="828.09" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1253.0" y="757" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1255.97" y="767.5" ></text>
+</g>
+<g >
+<title>remove (757,575,750 samples, 4.80%)</title><rect x="256.6" y="757" width="66.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="259.65" y="767.5" >remove</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="701.3" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="704.33" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,727,272,700 samples, 17.30%)</title><rect x="173.5" y="837" width="238.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="176.55" y="847.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="340.6" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="343.63" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="934.7" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="937.71" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1110.6" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1113.64" y="527.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="710.2" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="713.17" y="575.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="10.0" y="949" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="13.00" y="959.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.06%)</title><rect x="1128.3" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1131.32" y="527.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="939.1" y="757" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="942.14" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1197.3" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1200.28" y="767.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.19%)</title><rect x="975.4" y="597" width="2.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="978.38" y="607.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="795.0" y="709" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="798.04" y="719.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="514.8" y="709" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="517.79" y="719.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.06%)</title><rect x="309.7" y="197" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="312.69" y="207.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.13%)</title><rect x="1172.5" y="597" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1175.52" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="521.9" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="524.86" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1286.6" y="805" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1289.57" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_connect (40,404,040 samples, 0.26%)</title><rect x="1386.5" y="789" width="3.5" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1389.46" y="799.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="1131.0" y="501" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1133.97" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (80,808,080 samples, 0.51%)</title><rect x="233.7" y="629" width="7.0" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="236.66" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="628.8" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="631.83" y="607.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="272.6" y="581" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="275.56" y="591.5" ></text>
+</g>
+<g >
+<title>open64 (656,565,650 samples, 4.16%)</title><rect x="94.0" y="997" width="57.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="96.98" y="1007.5" >open64</text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="1365.2" y="869" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1368.25" y="879.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="661" width="3.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1359.41" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bread (50,505,050 samples, 0.32%)</title><rect x="85.1" y="837" width="4.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="88.14" y="847.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="135.5" y="725" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="138.53" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="669.5" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="672.50" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="802.1" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="805.11" y="527.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.06%)</title><rect x="607.6" y="709" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="610.62" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1126.6" y="437" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1129.55" y="447.5" ></text>
+</g>
+<g >
+<title>ksys_write (80,808,080 samples, 0.51%)</title><rect x="515.7" y="709" width="7.0" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="518.68" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="63.9" y="853" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="66.93" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="435.2" y="613" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="438.23" y="623.5" ></text>
+</g>
+<g >
+<title>end_page_writeback (10,101,010 samples, 0.06%)</title><rect x="1303.4" y="341" width="0.8" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="1306.36" y="351.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_bh (10,101,010 samples, 0.06%)</title><rect x="1359.9" y="773" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1362.94" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (40,404,040 samples, 0.26%)</title><rect x="610.3" y="629" width="3.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="613.27" y="639.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (10,101,010 samples, 0.06%)</title><rect x="791.5" y="517" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="794.50" y="527.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (30,303,030 samples, 0.19%)</title><rect x="827.7" y="549" width="2.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="830.75" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="208.9" y="405" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="211.91" y="415.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="379.5" y="693" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="382.53" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (30,303,030 samples, 0.19%)</title><rect x="237.2" y="581" width="2.7" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="240.20" y="591.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="188.6" y="581" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="191.58" y="591.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.06%)</title><rect x="18.8" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="21.84" y="479.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="767.6" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="770.63" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="491.8" y="677" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="494.81" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1199.9" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1202.93" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="918.8" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="921.80" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="877.3" y="517" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="880.25" y="527.5" ></text>
+</g>
+<g >
+<title>get_random_u32 (10,101,010 samples, 0.06%)</title><rect x="959.5" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="962.47" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (40,404,040 samples, 0.26%)</title><rect x="774.7" y="677" width="3.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="777.70" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.06%)</title><rect x="1001.9" y="853" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="1004.90" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="199.2" y="613" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="202.19" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.19%)</title><rect x="963.0" y="581" width="2.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="966.00" y="591.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (70,707,070 samples, 0.45%)</title><rect x="508.6" y="693" width="6.2" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="511.60" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="978.9" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="981.92" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_rename (111,111,110 samples, 0.70%)</title><rect x="804.8" y="661" width="9.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="807.76" y="671.5" ></text>
+</g>
+<g >
+<title>refcount_dec_and_lock_irqsave (10,101,010 samples, 0.06%)</title><rect x="838.4" y="741" width="0.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="841.35" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="676.6" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="679.57" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.64%)</title><rect x="1046.1" y="773" width="8.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1049.11" y="783.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="458.2" y="677" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="461.21" y="687.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.13%)</title><rect x="731.4" y="757" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="734.38" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1027.89" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1339.6" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1342.61" y="879.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1030.54" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="334.4" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="337.45" y="591.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1220.61" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.06%)</title><rect x="433.5" y="709" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="436.46" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="551.0" y="629" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="554.04" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="542.2" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="545.20" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="460.0" y="757" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="462.98" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="738.5" y="613" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="741.46" y="623.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (141,414,140 samples, 0.90%)</title><rect x="802.1" y="677" width="12.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="805.11" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_read (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="581" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1022.58" y="591.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1381.2" y="613" width="3.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1384.16" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="578.4" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="581.44" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="892.3" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="895.28" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (131,313,130 samples, 0.83%)</title><rect x="1275.1" y="789" width="11.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1278.07" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1201.7" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1204.70" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.32%)</title><rect x="19.7" y="949" width="4.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="22.72" y="959.5" ></text>
+</g>
+<g >
+<title>access (60,606,060 samples, 0.38%)</title><rect x="1264.5" y="773" width="5.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1267.47" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1198.2" y="773" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1201.16" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="307.9" y="373" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="310.92" y="383.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1242.4" y="645" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1245.36" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="405" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1100.38" y="415.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.26%)</title><rect x="452.0" y="645" width="3.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="455.02" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1086.24" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="1217.6" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1220.61" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="860.5" y="517" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="863.45" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.51%)</title><rect x="823.3" y="757" width="7.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="826.32" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="458.2" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="461.21" y="783.5" ></text>
+</g>
+<g >
+<title>vma_interval_tree_insert_after (10,101,010 samples, 0.06%)</title><rect x="1325.5" y="725" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1328.46" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="819.8" y="773" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="822.79" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="994.8" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="997.83" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="1245.0" y="789" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1248.02" y="799.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.06%)</title><rect x="1240.6" y="757" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1243.60" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="92.2" y="933" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="95.22" y="943.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1337.8" y="901" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1340.84" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="975.4" y="661" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="978.38" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="86.0" y="693" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="89.03" y="703.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="341" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1114.52" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="292.9" y="581" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="295.90" y="591.5" ></text>
+</g>
+<g >
+<title>read (30,303,030 samples, 0.19%)</title><rect x="538.7" y="709" width="2.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="541.66" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="563.4" y="661" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="566.41" y="671.5" ></text>
+</g>
+<g >
+<title>__mutex_init (10,101,010 samples, 0.06%)</title><rect x="99.3" y="869" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="102.29" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="978.0" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="981.03" y="671.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.06%)</title><rect x="18.8" y="837" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="21.84" y="847.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.06%)</title><rect x="1382.9" y="69" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1385.93" y="79.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="786.2" y="773" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="789.19" y="783.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="693" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1392.12" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1210.89" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="717.2" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="720.24" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1203.5" y="613" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1206.47" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1086.8" y="517" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1089.77" y="527.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="825.1" y="581" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="828.09" y="591.5" ></text>
+</g>
+<g >
+<title>worker_do_run (13,686,868,550 samples, 86.80%)</title><rect x="170.9" y="965" width="1197.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="173.90" y="975.5" >worker_do_run</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="370.7" y="597" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="373.69" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="873.7" y="405" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="876.72" y="415.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="170.0" y="949" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="173.01" y="959.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.06%)</title><rect x="784.4" y="581" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="787.43" y="591.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="27.7" y="869" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="30.68" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.06%)</title><rect x="600.5" y="517" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="603.54" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1086.24" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="274.3" y="613" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="277.33" y="623.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.06%)</title><rect x="936.5" y="661" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="939.48" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (676,767,670 samples, 4.29%)</title><rect x="257.5" y="709" width="59.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="260.53" y="719.5" >do_sys..</text>
+</g>
+<g >
+<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="858.7" y="661" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="861.69" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_rename (151,515,150 samples, 0.96%)</title><rect x="688.1" y="677" width="13.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="691.07" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="900.2" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="903.24" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="1267.1" y="677" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1270.12" y="687.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_destroy (10,101,010 samples, 0.06%)</title><rect x="10.9" y="981" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="13.88" y="991.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="501" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1360.29" y="511.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.06%)</title><rect x="859.6" y="517" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="862.57" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="717.2" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="720.24" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="990.4" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="993.41" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="367.2" y="645" width="0.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="370.16" y="655.5" ></text>
+</g>
+<g >
+<title>security_current_getsecid_subj (10,101,010 samples, 0.06%)</title><rect x="323.8" y="661" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="326.84" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (90,909,090 samples, 0.58%)</title><rect x="965.7" y="581" width="7.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="968.66" y="591.5" ></text>
+</g>
+<g >
+<title>mb_set_bits (10,101,010 samples, 0.06%)</title><rect x="1043.5" y="565" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1046.45" y="575.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (20,202,020 samples, 0.13%)</title><rect x="1357.3" y="325" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1360.29" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (161,616,160 samples, 1.02%)</title><rect x="1091.2" y="693" width="14.1" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1094.19" y="703.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="122.3" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="125.27" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="858.7" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="861.69" y="559.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="18.0" y="949" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="20.96" y="959.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="289.4" y="501" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="292.36" y="511.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="565" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1011.09" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="789.7" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="792.73" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="655.4" y="597" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="658.36" y="607.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="894.0" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="897.05" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="492.7" y="757" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="495.69" y="767.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="192.1" y="565" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="195.11" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_done_internal (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="469" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1268.35" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="430.8" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="433.81" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="492.7" y="725" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="495.69" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="445.0" y="757" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="447.95" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone3 (80,808,080 samples, 0.51%)</title><rect x="24.1" y="997" width="7.1" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="27.14" y="1007.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="434.3" y="645" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="437.34" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1279.5" y="629" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1282.49" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_setb (10,101,010 samples, 0.06%)</title><rect x="843.7" y="757" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="846.66" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (676,767,670 samples, 4.29%)</title><rect x="257.5" y="725" width="59.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="260.53" y="735.5" >entry_..</text>
+</g>
+<g >
+<title>__x64_sys_unlink (131,313,130 samples, 0.83%)</title><rect x="332.7" y="709" width="11.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="335.68" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="458.2" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="461.21" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.64%)</title><rect x="1255.6" y="773" width="8.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1258.62" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="954.2" y="581" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="957.16" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.19%)</title><rect x="1191.1" y="789" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1194.09" y="799.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1021.4" y="533" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1024.35" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="991.3" y="725" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="994.29" y="735.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="932.1" y="613" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="935.06" y="623.5" ></text>
+</g>
+<g >
+<title>select_collect (10,101,010 samples, 0.06%)</title><rect x="218.6" y="581" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="221.64" y="591.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="122.3" y="773" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="125.27" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="721.7" y="613" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="724.66" y="623.5" ></text>
+</g>
+<g >
+<title>__fstat64 (10,101,010 samples, 0.06%)</title><rect x="429.0" y="853" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="432.04" y="863.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="724.3" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="727.31" y="575.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.13%)</title><rect x="872.8" y="661" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="875.83" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="460.0" y="741" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="462.98" y="751.5" ></text>
+</g>
+<g >
+<title>proc_output_dump (20,202,020 samples, 0.13%)</title><rect x="1364.4" y="949" width="1.7" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1367.36" y="959.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1356.4" y="613" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1359.41" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="853.4" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="856.38" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="999.3" y="565" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1002.25" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="794.2" y="581" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="797.15" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="158.5" y="677" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="161.52" y="687.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.13%)</title><rect x="914.4" y="773" width="1.7" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="917.38" y="783.5" ></text>
+</g>
+<g >
+<title>dentry_kill (30,303,030 samples, 0.19%)</title><rect x="802.1" y="645" width="2.7" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="805.11" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="193.9" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="196.88" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="953.3" y="613" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="956.28" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (595,959,590 samples, 3.78%)</title><rect x="96.6" y="917" width="52.2" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="99.64" y="927.5" >do_fi..</text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="891.4" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="894.40" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="170.9" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="173.90" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_rename (20,202,020 samples, 0.13%)</title><rect x="946.2" y="709" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="949.21" y="719.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1110.6" y="549" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1113.64" y="559.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (50,505,050 samples, 0.32%)</title><rect x="693.4" y="517" width="4.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="696.37" y="527.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.06%)</title><rect x="13.5" y="581" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="16.54" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="58.6" y="837" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="61.62" y="847.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="720.8" y="725" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="723.78" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (121,212,120 samples, 0.77%)</title><rect x="595.2" y="645" width="10.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="598.24" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="882.6" y="725" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="885.56" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (646,464,640 samples, 4.10%)</title><rect x="94.9" y="949" width="56.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="97.87" y="959.5" >__x64..</text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="543.1" y="741" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="546.08" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (212,121,210 samples, 1.35%)</title><rect x="1121.2" y="709" width="18.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1124.25" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="645" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1195.86" y="655.5" ></text>
+</g>
+<g >
+<title>access (60,606,060 samples, 0.38%)</title><rect x="1211.4" y="741" width="5.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1214.42" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1224.7" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1227.68" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="735.8" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="738.80" y="655.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (60,606,060 samples, 0.38%)</title><rect x="222.2" y="709" width="5.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="225.17" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="677" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1359.41" y="687.5" ></text>
+</g>
+<g >
+<title>do_symlinkat (40,404,040 samples, 0.26%)</title><rect x="1055.8" y="741" width="3.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1058.83" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_done (10,101,010 samples, 0.06%)</title><rect x="49.8" y="165" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="52.78" y="175.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="428.2" y="677" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="431.16" y="687.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1359.1" y="533" width="0.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1362.06" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="843.7" y="773" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="846.66" y="783.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="1014.3" y="597" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1017.28" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (646,464,640 samples, 4.10%)</title><rect x="94.9" y="981" width="56.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="97.87" y="991.5" >entry..</text>
+</g>
+<g >
+<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="464.4" y="405" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="467.40" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="887.0" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="889.98" y="703.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="1166.3" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1169.34" y="607.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="667.7" y="629" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="670.73" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="887.0" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="889.98" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="510.4" y="645" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="513.37" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="690.7" y="485" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="693.72" y="495.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="379.5" y="661" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="382.53" y="671.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="231.9" y="421" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="234.90" y="431.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (30,303,030 samples, 0.19%)</title><rect x="802.1" y="613" width="2.7" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="805.11" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="332.7" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="335.68" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="117.9" y="805" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="120.85" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="18.0" y="805" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="20.96" y="815.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="613" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1392.12" y="623.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="709" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1022.58" y="719.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="841.0" y="725" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="844.01" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="304.4" y="549" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="307.39" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="44.5" y="165" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="47.48" y="175.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="78.1" y="837" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="81.07" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1091.2" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1094.19" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="561.6" y="645" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="564.65" y="655.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1265.3" y="597" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1268.35" y="607.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (20,202,020 samples, 0.13%)</title><rect x="519.2" y="501" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="522.21" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="498.0" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="500.99" y="655.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="303.5" y="533" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="306.50" y="543.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="932.9" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="935.95" y="671.5" ></text>
+</g>
+<g >
+<title>git_remote_update_tips (757,575,750 samples, 4.80%)</title><rect x="933.8" y="853" width="66.3" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="936.83" y="863.5" >git_rem..</text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="639.4" y="693" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="642.44" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="709" width="3.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1359.41" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="1118.6" y="629" width="2.6" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1121.60" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1245.9" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1248.90" y="639.5" ></text>
+</g>
+<g >
+<title>inet6_release (141,414,140 samples, 0.90%)</title><rect x="42.7" y="693" width="12.4" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="45.71" y="703.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="567.8" y="869" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="570.83" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="120.5" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="123.51" y="767.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1301.94" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="1187.6" y="741" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1190.55" y="751.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.06%)</title><rect x="274.3" y="565" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="277.33" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (20,202,020 samples, 0.13%)</title><rect x="1053.2" y="645" width="1.7" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1056.18" y="655.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (373,737,370 samples, 2.37%)</title><rect x="709.3" y="821" width="32.7" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="712.28" y="831.5" >gi..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.92%)</title><rect x="788.0" y="773" width="26.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="790.96" y="783.5" >[..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="937.4" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="940.37" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="731.4" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="734.38" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="710.2" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="713.17" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="810.9" y="405" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="813.95" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="381.3" y="773" width="5.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="384.30" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1031.1" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1034.08" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="925.0" y="293" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="927.99" y="303.5" ></text>
+</g>
+<g >
+<title>make_kuid (10,101,010 samples, 0.06%)</title><rect x="1188.4" y="693" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1191.44" y="703.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1271.5" y="821" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1274.54" y="831.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="437" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1100.38" y="447.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="521.0" y="581" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="523.98" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="733.2" y="773" width="6.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.15" y="783.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="853.4" y="581" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="856.38" y="591.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (30,303,030 samples, 0.19%)</title><rect x="460.9" y="693" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="463.86" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="619.1" y="629" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="622.11" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="1148.7" y="597" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1151.65" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="18.8" y="485" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="21.84" y="495.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1205.2" y="709" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1208.23" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1088.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1091.54" y="703.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="904.7" y="517" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="907.66" y="527.5" ></text>
+</g>
+<g >
+<title>do_faccessat (191,919,190 samples, 1.22%)</title><rect x="153.2" y="949" width="16.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="156.22" y="959.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1222.38" y="655.5" ></text>
+</g>
+<g >
+<title>__poll (80,808,080 samples, 0.51%)</title><rect x="32.1" y="933" width="7.1" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="35.10" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="681.9" y="453" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="684.88" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="124.0" y="821" width="0.9" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="127.04" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.06%)</title><rect x="433.5" y="725" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="436.46" y="735.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="559.0" y="837" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="561.99" y="847.5" ></text>
+</g>
+<g >
+<title>__pagevec_release (10,101,010 samples, 0.06%)</title><rect x="1128.3" y="533" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1131.32" y="543.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="738.5" y="661" width="0.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="741.46" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="825.1" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="828.09" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="76.3" y="933" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="79.30" y="943.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="1116.8" y="757" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1119.83" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1192.9" y="741" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1195.86" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="501.5" y="693" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="504.53" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (80,808,080 samples, 0.51%)</title><rect x="675.7" y="565" width="7.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="678.69" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="477.7" y="741" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="480.66" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (13,929,292,790 samples, 88.34%)</title><rect x="170.9" y="1013" width="1219.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="173.90" y="1023.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__tcp_close (50,505,050 samples, 0.32%)</title><rect x="1380.3" y="709" width="4.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1383.28" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="310.6" y="469" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="313.58" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="477.7" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="480.66" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.32%)</title><rect x="888.7" y="805" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="891.74" y="815.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1005.4" y="693" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1008.44" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="216.9" y="453" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="219.87" y="463.5" ></text>
+</g>
+<g >
+<title>git_signature_default (30,303,030 samples, 0.19%)</title><rect x="834.8" y="805" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="837.82" y="815.5" ></text>
+</g>
+<g >
+<title>memset_erms (10,101,010 samples, 0.06%)</title><rect x="1286.6" y="789" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1289.57" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="819.8" y="725" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="822.79" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="469" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1086.24" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="1249.4" y="773" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1252.44" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="919.7" y="389" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="922.69" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="120.5" y="773" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="123.51" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="418.4" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="421.43" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="144.4" y="789" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="147.38" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="1042.6" y="565" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1045.57" y="575.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.26%)</title><rect x="323.0" y="725" width="3.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="325.95" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (70,707,070 samples, 0.45%)</title><rect x="44.5" y="469" width="6.2" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="47.48" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="469.7" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="472.71" y="687.5" ></text>
+</g>
+<g >
+<title>net_send_buf (20,202,020 samples, 0.13%)</title><rect x="1376.7" y="917" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1379.74" y="927.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="452.0" y="565" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="455.02" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="561.6" y="597" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="564.65" y="607.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (323,232,320 samples, 2.05%)</title><rect x="445.8" y="869" width="28.3" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="448.84" y="879.5" >g..</text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="910.8" y="453" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="913.85" y="463.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="919.7" y="565" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="922.69" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1023.1" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1026.12" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="437" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1011.09" y="447.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="961.2" y="485" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="964.24" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="703.1" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="706.09" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.70%)</title><rect x="658.9" y="757" width="9.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="661.89" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1222.38" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="719.9" y="517" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="722.89" y="527.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="429.9" y="789" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="432.92" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="871.1" y="773" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="874.06" y="783.5" ></text>
+</g>
+<g >
+<title>getdents64 (50,505,050 samples, 0.32%)</title><rect x="199.2" y="725" width="4.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="202.19" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (424,242,420 samples, 2.69%)</title><rect x="951.5" y="757" width="37.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="954.51" y="767.5" >[li..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="770.3" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="773.28" y="719.5" ></text>
+</g>
+<g >
+<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="1101.8" y="389" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1104.80" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="675.7" y="453" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="678.69" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="455.6" y="709" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="458.56" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="677" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1301.94" y="687.5" ></text>
+</g>
+<g >
+<title>__ctype_b_loc (10,101,010 samples, 0.06%)</title><rect x="1218.5" y="725" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1221.49" y="735.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (40,404,040 samples, 0.26%)</title><rect x="1065.6" y="613" width="3.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1068.55" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1192.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1194.97" y="655.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1206.1" y="469" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1209.12" y="479.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="500.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="503.65" y="687.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="1059.4" y="709" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1062.37" y="719.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (20,202,020 samples, 0.13%)</title><rect x="218.6" y="613" width="1.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="221.64" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.06%)</title><rect x="76.3" y="981" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="79.30" y="991.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="766.7" y="677" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="769.75" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="193.0" y="581" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="196.00" y="591.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.19%)</title><rect x="1361.7" y="709" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1364.71" y="719.5" ></text>
+</g>
+<g >
+<title>inode_init_always (20,202,020 samples, 0.13%)</title><rect x="130.2" y="789" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="133.23" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="955.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="958.05" y="607.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="1085.0" y="533" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1088.00" y="543.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="158.5" y="837" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="161.52" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1197.3" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1200.28" y="799.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="873.7" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="876.72" y="479.5" ></text>
+</g>
+<g >
+<title>iput (10,101,010 samples, 0.06%)</title><rect x="193.9" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="196.88" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="434.3" y="709" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="437.34" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="722.5" y="613" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="725.54" y="623.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="48.9" y="101" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="51.90" y="111.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="342.4" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="345.40" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.06%)</title><rect x="464.4" y="517" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="467.40" y="527.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.19%)</title><rect x="483.0" y="677" width="2.6" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="485.97" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.83%)</title><rect x="742.0" y="773" width="11.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="744.99" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="122.3" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="125.27" y="815.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.06%)</title><rect x="1350.2" y="549" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1353.22" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (171,717,170 samples, 1.09%)</title><rect x="865.8" y="789" width="15.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.76" y="799.5" ></text>
+</g>
+<g >
+<title>evict (101,010,100 samples, 0.64%)</title><rect x="368.9" y="661" width="8.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="371.92" y="671.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="171.8" y="821" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="174.78" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="556.3" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="559.34" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="422.9" y="501" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="425.85" y="511.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="773" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1346.15" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="710.2" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="713.17" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="79.0" y="853" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="81.96" y="863.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.13%)</title><rect x="1070.9" y="693" width="1.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1073.86" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.15%)</title><rect x="1200.8" y="805" width="15.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1203.81" y="815.5" ></text>
+</g>
+<g >
+<title>do_linkat (30,303,030 samples, 0.19%)</title><rect x="546.6" y="757" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="549.62" y="767.5" ></text>
+</g>
+<g >
+<title>anon_vma_interval_tree_insert (10,101,010 samples, 0.06%)</title><rect x="1296.3" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1299.29" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="994.8" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="997.83" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="899.4" y="645" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="902.35" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="78.1" y="901" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="81.07" y="911.5" ></text>
+</g>
+<g >
+<title>blk_mq_get_new_requests (10,101,010 samples, 0.06%)</title><rect x="807.4" y="405" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="810.41" y="415.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="693" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1301.94" y="703.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="899.4" y="661" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="902.35" y="671.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="213" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1100.38" y="223.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="197.4" y="677" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="200.42" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1197.3" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1200.28" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="953.3" y="645" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="956.28" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (40,404,040 samples, 0.26%)</title><rect x="1124.8" y="501" width="3.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1127.79" y="511.5" ></text>
+</g>
+<g >
+<title>path_lookupat (60,606,060 samples, 0.38%)</title><rect x="610.3" y="645" width="5.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="613.27" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="487.4" y="597" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="490.39" y="607.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (30,303,030 samples, 0.19%)</title><rect x="11.8" y="821" width="2.6" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="14.77" y="831.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1222.38" y="639.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.06%)</title><rect x="212.4" y="517" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="215.45" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="189.5" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="192.46" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (181,818,180 samples, 1.15%)</title><rect x="1271.5" y="885" width="16.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1274.54" y="895.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.19%)</title><rect x="975.4" y="693" width="2.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="978.38" y="703.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="821" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1273.65" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="894.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="897.93" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_ack (20,202,020 samples, 0.13%)</title><rect x="1347.6" y="677" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1350.57" y="687.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1026.12" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="342.4" y="629" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="345.40" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 1.02%)</title><rect x="1091.2" y="725" width="14.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1094.19" y="735.5" ></text>
+</g>
+<g >
+<title>in_group_p (10,101,010 samples, 0.06%)</title><rect x="1343.1" y="757" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="1346.15" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="45.4" y="245" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="48.36" y="255.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="1203.5" y="581" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1206.47" y="591.5" ></text>
+</g>
+<g >
+<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.06%)</title><rect x="692.5" y="245" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="695.49" y="255.5" ></text>
+</g>
+<g >
+<title>__rb_insert_augmented (10,101,010 samples, 0.06%)</title><rect x="1325.5" y="709" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1328.46" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1009.0" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1011.98" y="591.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="827.7" y="677" width="2.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="830.75" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="423.7" y="549" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="426.73" y="559.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="170.9" y="933" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="173.90" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="363.6" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="366.62" y="655.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (70,707,070 samples, 0.45%)</title><rect x="733.2" y="789" width="6.1" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="736.15" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="700.4" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="703.44" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="216.0" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="218.98" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="788.8" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="791.85" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="1083.2" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1086.24" y="671.5" ></text>
+</g>
+<g >
+<title>connect (90,909,090 samples, 0.58%)</title><rect x="1356.4" y="933" width="8.0" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1359.41" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1240.6" y="709" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1243.60" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (30,303,030 samples, 0.19%)</title><rect x="1352.9" y="837" width="2.6" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1355.87" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.06%)</title><rect x="1108.9" y="613" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1111.87" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_symlink (40,404,040 samples, 0.26%)</title><rect x="1055.8" y="757" width="3.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1058.83" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="543.1" y="789" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="546.08" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_empty_dir (10,101,010 samples, 0.06%)</title><rect x="274.3" y="629" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="277.33" y="639.5" ></text>
+</g>
+<g >
+<title>mnt_user_ns (10,101,010 samples, 0.06%)</title><rect x="760.6" y="453" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="763.56" y="463.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1085.9" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1088.89" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="902.9" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="905.89" y="607.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (20,202,020 samples, 0.13%)</title><rect x="812.7" y="501" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="815.72" y="511.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1274.2" y="677" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1277.19" y="687.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="692.5" y="261" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="695.49" y="271.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="76.3" y="869" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="79.30" y="879.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="778.2" y="693" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="781.24" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="561.6" y="581" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="564.65" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="1270.7" y="741" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1273.65" y="751.5" ></text>
+</g>
+<g >
+<title>mas_wr_walk (10,101,010 samples, 0.06%)</title><rect x="1313.1" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1316.09" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="228.4" y="645" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="231.36" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="783.5" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="786.54" y="607.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1146.0" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1149.00" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="982.5" y="645" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="985.45" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="754.4" y="693" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="757.37" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.45%)</title><rect x="1230.9" y="741" width="6.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1233.87" y="751.5" ></text>
+</g>
+<g >
+<title>mnt_user_ns (10,101,010 samples, 0.06%)</title><rect x="871.1" y="661" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="874.06" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="711.9" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="714.93" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.06%)</title><rect x="193.9" y="581" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="196.88" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (40,404,040 samples, 0.26%)</title><rect x="1174.3" y="597" width="3.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1177.29" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="735.8" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="738.80" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (50,505,050 samples, 0.32%)</title><rect x="179.7" y="613" width="4.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="182.74" y="623.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="244.3" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="247.27" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="458.2" y="661" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="461.21" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (242,424,240 samples, 1.54%)</title><rect x="112.5" y="837" width="21.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="115.55" y="847.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="919.7" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="922.69" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (80,808,080 samples, 0.51%)</title><rect x="84.3" y="869" width="7.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="87.26" y="879.5" ></text>
+</g>
+<g >
+<title>folio_alloc (20,202,020 samples, 0.13%)</title><rect x="452.9" y="549" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="455.91" y="559.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="380.4" y="773" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="383.42" y="783.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="438.8" y="869" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="441.76" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="373.3" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="376.34" y="575.5" ></text>
+</g>
+<g >
+<title>posix_acl_create (10,101,010 samples, 0.06%)</title><rect x="998.4" y="629" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1001.37" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="220.4" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="223.40" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="1108.9" y="693" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1111.87" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.26%)</title><rect x="1101.8" y="517" width="3.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1104.80" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="788.8" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="791.85" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="955.0" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="958.05" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1092.1" y="501" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1095.08" y="511.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="769.4" y="597" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="772.40" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="957.7" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="960.70" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="136.4" y="805" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="139.42" y="815.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="919.7" y="277" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="922.69" y="287.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1204.3" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1207.35" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_check_limits (10,101,010 samples, 0.06%)</title><rect x="600.5" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="603.54" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1138.9" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1141.93" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (212,121,210 samples, 1.35%)</title><rect x="360.1" y="757" width="18.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="363.08" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="667.7" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="670.73" y="687.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="1008.1" y="341" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1011.09" y="351.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="1219.4" y="565" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1222.38" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="917.9" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="920.92" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="849.0" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="851.96" y="735.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="1324.6" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1327.58" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="779.1" y="645" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="782.12" y="655.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.06%)</title><rect x="737.6" y="597" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="740.57" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="1134.5" y="325" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1137.51" y="335.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="92.2" y="997" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="95.22" y="1007.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="65.7" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="68.70" y="911.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1097.4" y="357" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1100.38" y="367.5" ></text>
+</g>
+<g >
+<title>inet_create.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1355.5" y="821" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1358.52" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="368.0" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="371.04" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_collect_stats (10,101,010 samples, 0.06%)</title><rect x="1170.8" y="597" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1173.76" y="607.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.26%)</title><rect x="1356.4" y="629" width="3.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1359.41" y="639.5" ></text>
+</g>
+<g >
+<title>rmdir (80,808,080 samples, 0.51%)</title><rect x="417.5" y="805" width="7.1" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="420.55" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="1028.4" y="533" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1031.42" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="991.3" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="994.29" y="623.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="932.9" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="935.95" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="894.0" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="897.05" y="591.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (30,303,030 samples, 0.19%)</title><rect x="11.8" y="837" width="2.6" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="14.77" y="847.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="413.1" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="416.13" y="719.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="581" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1389.46" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="940.0" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="943.02" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="786.2" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="789.19" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="816.3" y="629" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="819.25" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_wait4 (10,101,010 samples, 0.06%)</title><rect x="1337.0" y="805" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1339.96" y="815.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.19%)</title><rect x="1201.7" y="709" width="2.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1204.70" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (80,808,080 samples, 0.51%)</title><rect x="778.2" y="741" width="7.1" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="781.24" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (70,707,070 samples, 0.45%)</title><rect x="965.7" y="501" width="6.1" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="968.66" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_append (30,303,030 samples, 0.19%)</title><rect x="713.7" y="581" width="2.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="716.70" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="875.5" y="677" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="878.48" y="687.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1251.2" y="661" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1254.20" y="671.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1353.8" y="565" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1356.75" y="575.5" ></text>
+</g>
+<g >
+<title>__remove_inode_hash (10,101,010 samples, 0.06%)</title><rect x="387.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="390.49" y="687.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="841.9" y="757" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="844.89" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_conn_request (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="373" width="0.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1389.46" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="1242.4" y="565" width="1.7" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1245.36" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="868.4" y="661" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="871.41" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1245.9" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1248.90" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (50,505,050 samples, 0.32%)</title><rect x="1048.8" y="645" width="4.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1051.76" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (20,202,020 samples, 0.13%)</title><rect x="272.6" y="629" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="275.56" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="450.3" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="453.26" y="735.5" ></text>
+</g>
+</g>
+</svg>